        /* Reset and base styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            line-height: 1.5;
        }

        /* Header styles */
        .nav-header {
            position: sticky;
            top: 0;
            z-index: 50;
            width: 100%;
            border-bottom: 1px solid #e5e7eb;
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(8px);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .nav-wrapper {
            display: flex;
            height: 3.5rem;
            align-items: center;
            justify-content: space-between;
        }

        /* Logo styles */
        .nav-logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            text-decoration: none;
            color: #000;
            font-weight: bold;
        }

        /* Navigation menu styles */
        .nav-menu {
            display: none;
        }

        @media (min-width: 1024px) {
            .nav-menu {
                display: flex;
                align-items: center;
                gap: 2rem;
                margin: 0 auto;
            }
        }

        .nav-item {
            position: relative;
            list-style: none;
        }

        .nav-link {
            display: flex;
            align-items: center;
            gap: 0.25rem;
            padding: 0.5rem 1rem;
            color: #000;
            text-decoration: none;
            font-size: 0.875rem;
            border-radius: 0.375rem;
            transition: background-color 0.2s;
        }

        .nav-link:hover {
            background-color: #f3f4f6;
        }

        /* Dropdown styles */
        .dropdown {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            min-width: 400px;
            padding: 1rem;
            background: white;
            border: 1px solid #e5e7eb;
            border-radius: 0.5rem;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }

        .nav-item:hover .dropdown {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }

        .dropdown-item {
            display: block;
            padding: 0.75rem;
            text-decoration: none;
            color: #000;
            border-radius: 0.375rem;
            transition: background-color 0.2s;
        }

        .dropdown-item:hover {
            background-color: #f3f4f6;
        }

        /* Badge styles */
        .nav-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.125rem 0.5rem;
            font-size: 0.75rem;
            font-weight: 600;
            color: #000;
            background-color: #fbbf24;
            border-radius: 9999px;
            margin-left: 0.5rem;
        }

        /* Button styles */
        .button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.5rem 1rem;
            font-size: 0.875rem;
            font-weight: 500;
            border-radius: 0.375rem;
            transition: all 0.2s;
            cursor: pointer;
            text-decoration: none;
        }

        .button-ghost {
            color: #000;
            background: transparent;
            border: none;
        }

        .button-ghost:hover {
            background-color: #f3f4f6;
        }

        .button-primary {
            color: white;
            background-color: #000;
            border: none;
        }

        .button-primary:hover {
            background-color: #1a1a1a;
        }

        /* Mobile menu styles */
        .mobile-menu-button {
            display: block;
            padding: 0.5rem;
            background: none;
            border: none;
            cursor: pointer;
        }

        @media (min-width: 1024px) {
            .mobile-menu-button {
                display: none;
            }
        }

        .mobile-menu {
            position: fixed;
            top: 0;
            left: -100%;
            width: 100%;
            max-width: 300px;
            height: 100vh;
            background: white;
            padding: 2rem 1rem;
            transition: left 0.3s ease-in-out;
            z-index: 100;
        }

        .mobile-menu.active {
            left: 0;
        }

        .mobile-menu-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 99;
        }

        .mobile-menu-overlay.active {
            display: block;
        }

        .mobile-menu-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: none;
            border: none;
            cursor: pointer;
        }

        .mobile-nav-link {
            display: block;
            padding: 0.75rem 0;
            color: #000;
            text-decoration: none;
            font-size: 1rem;
            border-bottom: 1px solid #e5e7eb;
        }

    /* Hero Main */

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1rem;
    }

    /* Hero Section */
    .hero {
        text-align: center;
        padding: 4rem 1rem;
        max-width: 64rem;
        margin: 0 auto;
    }

    .brand-name {
        color: #6b7280;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        margin-bottom: 1rem;
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInUp 0.6s ease forwards;
    }

    .title {
        font-size: 3.5rem;
        font-weight: 400;
        margin-bottom: 1.5rem;
        line-height: 1.2;
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInUp 0.6s ease forwards 0.2s;
    }

    .description {
        color: #6b7280;
        margin-bottom: 2rem;
        max-width: 36rem;
        margin-left: auto;
        margin-right: auto;
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInUp 0.6s ease forwards 0.4s;
    }

    .button-group {
        display: flex;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInUp 0.6s ease forwards 0.6s;
    }

    .button {
        display: inline-flex;
        align-items: center;
        padding: 0.75rem 1.5rem;
        border-radius: 0.375rem;
        font-weight: 500;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .button svg {
        margin-left: 0.5rem;
        transition: transform 0.3s ease;
    }

    .button:hover svg {
        transform: translateX(4px);
    }

    .button-primary {
        background-color: #004225;
        color: white;
    }

    .button-primary:hover {
        background-color: #003820;
    }

    .button-outline {
        border: 1px solid #e5e7eb;
        color: #111827;
    }

    .button-outline:hover {
        background-color: #f9fafb;
    }

    /* Brand Section */
    .brand-section {
        margin-top: 2rem;
        padding: 0 1rem;
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInUp 0.6s ease forwards 0.8s;
    }

    .brand-card {
        position: relative;
        border-radius: 1rem;
        overflow: hidden;
    }

    .brand-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to right, rgba(17, 24, 39, 0.5), rgba(17, 24, 39, 0.3));
        padding: 2rem 3rem;
    }

    .boost-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background-color: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(4px);
        padding: 0.5rem 1rem;
        border-radius: 9999px;
        color: white;
        margin-bottom: 1rem;
    }

    .boost-icon {
        width: 2rem;
        height: 2rem;
        background-color: white;
        border-radius: 9999px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: black;
        font-weight: bold;
    }

    .brand-title {
        color: white;
        font-size: 1.875rem;
        font-weight: 500;
    }

    .brand-image {
        width: 100%;
        height: 400px;
        object-fit: cover;
    }

    /* Animations */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .title {
            font-size: 2.5rem;
        }

        .brand-overlay {
            padding: 1.5rem;
        }
    }

    /* Stats Bar Section */

    .about-section {
        max-width: 1500px;
        margin: 0 auto;
        padding: 3rem 1rem;
    }

    .about-content {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }

    @media (min-width: 768px) {
        .about-content {
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
        }
    }

    .about-title {
        font-size: 2.5rem;
        font-weight: 400;
        margin-bottom: 1rem;
        text-align: center;
    }

    @media (min-width: 768px) {
        .about-title {
            text-align: left;
            font-size: 3.5rem;
        }
    }

    .about-text {
        color: #666;
        margin-bottom: 1.5rem;
        line-height: 1.6;
        text-align: justify;
    }

    @media (max-width: 640px) {
        .about-text {
            font-size: 0.9rem;
            line-height: 1.5;
        }
    }

    /* Stats Section */
    .stats-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    @media (min-width: 768px) {
        .stats-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }

    @media (min-width: 1024px) {
        .stats-grid {
            grid-template-columns: repeat(5, 1fr);
        }
    }

    .stat-item {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .stat-bar-container {
        position: relative;
        height: 150px;
        background-color: #fcfce1;
        margin-bottom: 1rem;
        width: 100%;
        max-width: 100px;
    }

    @media (min-width: 768px) {
        .stat-bar-container {
            height: 200px;
            max-width: 120px;
        }
    }

    .stat-bar {
        position: absolute;
        bottom: 0;
        width: 100%;
        background-color: #764af1;
        transition: height 1.5s ease-out;
    }

    .stat-percentage {
        font-size: 1.25rem;
        font-weight: 500;
        margin-bottom: 0.5rem;
        display: flex;
        align-items: baseline;
        gap: 0.25rem;
    }

    .stat-percentage .total {
        color: #764af1;
        font-size: 0.875rem;
    }

    .stat-label {
        color: #ff5300;
        font-size: 0.875rem;
        text-align: center;
    }

    /* Animation */
    .animate-stats .stat-bar {
        animation: growBar 1.5s ease-out forwards;
    }

    @keyframes growBar {
        from {
            height: 0;
        }
        to {
            height: var(--target-height);
        }
    }

    /* Services Section */

    .services-section {
        background-color: #004D2C;
        color: white;
        padding: 2rem 1rem;
        border-radius: 19px;
    }

    .container {
        max-width: 1280px;
        margin: 0 auto;
    }

    .header {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 2rem;
    }

    .header-content h2 {
        font-size: 2rem;
        font-weight: 500;
        margin-bottom: 1rem;
    }

    .header-content p {
        color: #d1d5db;
        max-width: 36rem;
        font-size: 1rem;
    }

    .schedule-btn {
        display: block;
        padding: 0.5rem 1rem;
        background: transparent;
        color: white;
        border: 1px solid white;
        border-radius: 0.375rem;
        cursor: pointer;
        transition: all 0.3s ease;
        margin-top: 1rem;
    }

    .schedule-btn:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }

    .services-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .service-card {
        background-color: #003D23;
        padding: 1rem;
        border-radius: 0.5rem;
        transition: transform 0.3s ease;
    }

    .service-card:hover {
        transform: translateY(-5px);
    }

    .icon-container {
        width: 3rem;
        height: 3rem;
        background-color: #E6D5B9;
        color: #004D2C;
        border-radius: 0.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1rem;
    }

    .service-card h3 {
        font-size: 1.25rem;
        font-weight: 500;
        margin-bottom: 0.5rem;
    }

    .service-card p {
        color: #d1d5db;
        font-size: 0.875rem;
        margin-bottom: 0.5rem;
    }

    .service-link {
        color: #d1d5db;
        font-size: 0.875rem;
        text-decoration: none;
        display: block;
        margin-bottom: 0.5rem;
        transition: color 0.3s ease;
    }

    .service-link:hover {
        color: white;
    }

    .card-btn {
        width: 100%;
        padding: 0.5rem;
        background: transparent;
        color: white;
        border: 1px solid white;
        border-radius: 0.375rem;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .card-btn:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }

    @media (min-width: 768px) {
        .header {
            flex-direction: row;
            justify-content: space-between;
            align-items: flex-start;
        }

        .services-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }

        .header-content h2 {
            font-size: 2.5rem;
        }

        .header-content p {
            font-size: 1rem;
        }
    }

    @media (min-width: 1024px) {
        .services-section {
            padding: 3rem 2rem;
        }

        .header-content h2 {
            font-size: 3rem;
        }

        .services-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }

    /* Work Section */

          /* Container styles */
          .work-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 4rem 2rem;
        }

        /* Header section */
        .work-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 4rem;
        }

        .header-content {
            max-width: 600px;
        }

        .title {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 1rem;
        }

        .description {
            color: #666;
            font-size: 1.125rem;
        }

        /* Button styles */
        .button {
            padding: 0.75rem 1.5rem;
            border: 1px solid #e2e8f0;
            background: transparent;
            border-radius: 0.375rem;
            cursor: pointer;
            font-size: 0.875rem;
            transition: all 0.3s ease;
        }

        .button:hover {
            background: #f8fafc;
        }

        .mobile-button {
            display: none;
            width: 100%;
            margin-top: 2rem;
        }

        /* Grid layout */
        .work-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        /* Card styles */
        .work-card {
            background: #ffffff;
            border-radius: 0.5rem;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .card-content {
            padding: 1.5rem 0;
        }

        .badge {
            display: inline-block;
            padding: 0.5rem 1rem;
            background: #f1f5f9;
            border-radius: 1rem;
            font-size: 0.875rem;
            margin-bottom: 1rem;
        }

        .card-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .card-description {
            color: #666;
            margin-bottom: 1.5rem;
            font-size: 0.875rem;
        }

        /* Image container */
        .image-container {
            position: relative;
            aspect-ratio: 4/3;
            overflow: hidden;
            border-radius: 0.5rem;
        }

        .image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .card:hover .image-container img {
            transform: scale(1.05);
        }

        /* Metric badge */
        .metric-badge {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: white;
            padding: 0.5rem 1rem;
            border-radius: 999px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            text-align: center;
        }

        .metric-value {
            font-weight: bold;
            font-size: 1.125rem;
            display: block;
        }

        .metric-label {
            font-size: 0.75rem;
            color: #666;
        }

        /* Responsive styles */
        @media (max-width: 1024px) {
            .work-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .header .button {
                display: none;
            }

            .mobile-button {
                display: block;
            }
        }

        @media (max-width: 640px) {
            .work-grid {
                grid-template-columns: 1fr;
            }

            .work-container {
                padding: 2rem 1rem;
            }

            .title {
                font-size: 2rem;
            }
        }

        /* Our Mission Section */

        .mission-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 4rem 1rem;
        }

        .mission-grid {
            display: grid;
            gap: 2rem;
        }

        @media (min-width: 1024px) {
            .mission-grid {
                grid-template-columns: repeat(2, 1fr);
                align-items: center;
            }
        }

        .space-y {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .mission-image-container {
            position: relative;
            width: 100%;
            max-width: 300px;
            aspect-ratio: 4/3;
            border-radius: 0.5rem;
            overflow: hidden;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.6s ease-out forwards;
        }

        .mission-image-container.large {
            max-width: none;
            margin-top: 2rem;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.6s ease-out 0.3s forwards;
        }

        @media (min-width: 1024px) {
            .mission-image-container.large {
                margin-top: 0;
            }
        }

        .mission-image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .mission-image-container:hover img {
            transform: scale(1.05);
        }

        .mission-content {
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.6s ease-out 0.15s forwards;
        }

        .mission-container h2 {
            font-size: 3rem;
            font-weight: 500;
            letter-spacing: -0.025em;
            margin-bottom: 1.5rem;
        }

        .mission-container p {
            font-size: 1.5rem;
            line-height: 1.75;
            color: #4B5563;
            max-width: 42rem;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Optional: Add a smooth page load animation */
        .fade-in {
            animation: fadeIn 1s ease-out;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        /* Why Choose Us Section */

        .why-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
            box-sizing: border-box;
        }

        .why-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }

        @media (max-width: 768px) {
            .why-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Left Panel Styles */
        .left-panel {
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            height: 600px;
        }

        .left-panel img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .overlay {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.4);
        }

        .badge {
            position: absolute;
            top: 1rem;
            left: 1rem;
            padding: 0.5rem 1rem;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(4px);
            border-radius: 999px;
            color: white;
            font-size: 2rem;
        }

        .why-content {
            position: absolute;
            bottom: 2rem;
            left: 2rem;
            color: white;
            max-width: 90%;
        }

        .why-content h2 {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .why-content p {
            font-size: 0.875rem;
            max-width: 32rem;
            color: #ffffff;
        }

        /* Right Panel Styles */
        .features-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .feature-card {
            padding: 1.5rem;
            border-radius: 24px;
            transition: transform 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-5px);
        }

        .white-card {
            background: white;
            box-shadow: 0 16px 16px rgba(0, 0, 0, 0.05);
        }

        .green-card {
            background: #B5FC0C;
        }

        .icon-circle {
            width: 2.5rem;
            height: 2.5rem;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
        }

        .white-card .icon-circle {
            background: #f3f4f6;
        }

        .green-card .icon-circle {
            background: black;
            color: white;
        }

        .feature-card h3 {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
            color: #111827;
        }

        .feature-card p {
            font-size: 0.875rem;
            color: #4b5563;
            line-height: 1.5;
        }

        /* Animation for cards */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .feature-card {
            animation: fadeIn 0.5s ease forwards;
            opacity: 0;
        }

        .feature-card:nth-child(1) { animation-delay: 0.1s; }
        .feature-card:nth-child(2) { animation-delay: 0.2s; }
        .feature-card:nth-child(3) { animation-delay: 0.3s; }
        .feature-card:nth-child(4) { animation-delay: 0.4s; }

        /* Team Section */

        .team-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 48px 24px;
            line-height: 1.5;
        }

        .team-header {
            margin-bottom: 48px;
        }

        .team-header h1 {
            font-size: 2.5rem;
            font-weight: 400;
            margin-bottom: 16px;
        }

        .team-header p {
            color: #666;
            max-width: 600px;
            text-align: left;
        }

        .team-slider-container {
            position: relative;
            overflow: hidden;
        }

        .team-slider {
            display: flex;
            gap: 24px;
            transition: transform 0.5s ease-in-out;
        }

        .team-member {
            flex: 0 0 calc(20% - 20px);
            opacity: 1;
            transition: opacity 0.3s ease;
        }

        .team-member.hidden {
            opacity: 0;
        }

        .member-image {
            aspect-ratio: 1;
            width: 100%;
            margin-bottom: 16px;
            position: relative;
            overflow: hidden;
            background: #f3f4f6;
        }

        .member-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: grayscale(100%);
            transition: filter 0.3s ease;
        }

        .member-image img:hover {
            filter: grayscale(0%);
        }

        .member-info h3 {
            font-size: 1.125rem;
            font-weight: 500;
            margin-bottom: 4px;
        }

        .member-info p {
            color: #666;
            font-size: 0.875rem;
        }

        .slider-nav {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            transform: translateY(-50%);
            pointer-events: none;
        }

        .nav-button {
            width: 40px;
            height: 40px;
            border: none;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            pointer-events: auto;
            transition: background-color 0.3s ease;
        }

        .nav-button:hover {
            background: rgb(10, 10, 10);
        }

        .nav-button svg {
            width: 20px;
            height: 20px;
        }

        .slider-counter {
            text-align: center;
            margin-top: 24px;
            font-size: 0.875rem;
            color: #666;
        }

        @media (max-width: 1024px) {
            .team-member {
                flex: 0 0 calc(33.333% - 16px);
            }
        }

        @media (max-width: 768px) {
            .team-member {
                flex: 0 0 calc(50% - 12px);
            }
        }

        @media (max-width: 480px) {
            .team-member {
                flex: 0 0 100%;
            }
        }

        /* Get Ready Section */

        .get-started-section {
            width: 100%;
            background: linear-gradient(45deg, #000000, #1a1a1a);
            padding: 3rem 1rem;
            position: relative;
            overflow: hidden;
        }

        /* Shining effect */
        .get-started-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(
                circle,
                rgba(255, 255, 255, 0.1) 0%,
                transparent 50%
            );
            animation: shine 8s linear infinite;
        }

        .get-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: relative;
            z-index: 1;
        }

        .get-heading {
            color: white;
            font-size: 3rem;
            font-weight: bold;
            font-family: system-ui, -apple-system, sans-serif;
        }

        .get-started-btn {
            background-color: white;
            color: black;
            border: none;
            padding: 1rem 2rem;
            font-size: 1rem;
            font-weight: 600;
            border-radius: 6px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .get-started-btn:hover {
            background-color: #f0f0f0;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
        }

        .get-started-btn:active {
            transform: translateY(0);
        }

        .arrow-icon {
            transition: transform 0.3s ease;
        }

        .get-started-btn:hover .arrow-icon {
            transform: translateX(4px);
        }

        /* Shine animation */
        @keyframes shine {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
            }
        }

        /* Responsive design */
        @media (max-width: 768px) {
            .get-container {
                flex-direction: column;
                gap: 2rem;
                text-align: center;
            }

            .heading {
                font-size: 2rem;
            }

            .get-started-btn {
                padding: 0.875rem 1.75rem;
            }
        }

        /* Button click effect */
        .get-started-btn::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            background: rgba(255, 255, 255, 0.5);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.3s ease;
        }

        .get-started-btn:active::after {
            transform: scaleX(1);
            transform-origin: left;
        }


        /* Footer Section */

         /* Scroll animation */
         @keyframes scroll-x {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        .scroll-banner {
            background: #B5FC0C;
            color: white;
            padding: 0.9rem 0;
            overflow: hidden;
            width: 100%;
        }

        .scroll-content {
            display: flex;
            white-space: nowrap;
            animation: scroll-x 20s linear infinite;
            color: #000;
        }

        .scroll-item {
            margin: 0 1rem;
        }

        /* Footer styles */
        .footer-container {
            width: 100%;
            padding: 3rem 1rem;
            max-width: 1280px;
            margin: 0 auto;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 2rem;
        }

        @media (min-width: 768px) {
            .footer-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        .logo-section {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .logo img {
            width: 250px;
            height: 50px;
        }

        .logo-icon {
            width: 2rem;
            height: 2rem;
            background: linear-gradient(135deg, #a855f7, #ec4899);
            border-radius: 0.5rem;
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-link {
            color: #4b5563;
            transition: color 0.2s;
        }

        .social-link:hover {
            color: #111827;
        }

        .footer-column h3 {
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.75rem;
        }

        .footer-links a {
            color: #4b5563;
            text-decoration: none;
            transition: color 0.2s;
        }

        .footer-links a:hover {
            color: #111827;
        }

        .badge-new {
            background: #764af1;
            padding: 0.125rem 0.5rem;
            border-radius: 9999px;
            font-size: 0.75rem;
            margin-left: 0.5rem;
        }

        .footer-bottom {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid #e5e7eb;
        }

        .bottom-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 1rem;
        }

        @media (min-width: 768px) {
            .bottom-content {
                flex-direction: row;
                justify-content: space-between;
                text-align: left;
            }
        }

        .bottom-text h2 {
            font-size: 1.5rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
        }

        .bottom-text p {
            color: #4b5563;
        }

        .copyright {
            color: #4b5563;
        }