* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        :root {
            --primary: #007AFF;
            --secondary: #00C6AE;
            --accent: #FFD43B;
            --foreground: #334155;
            --muted: #64748b;
            --background: #ffffff;
            --border: #e2e8f0;
            --card: #ffffff;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--foreground);
            background: var(--background);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            transition: all 0.3s;
        }

        nav.scrolled {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        }

        .nav-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
        }

        .nav-links {
            display: flex;
            gap: 32px;
            list-style: none;
        }

        .nav-links a {
            color: var(--foreground);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .btn {
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            border: none;
            font-size: 1rem;
            font-family: 'Poppins', sans-serif;
        }

        .btn-primary {
            background: var(--primary);
            color: white;
        }

        .btn-primary:hover {
            opacity: 0.9;
            transform: translateY(-2px);
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
        }

        .btn-outline:hover {
            background: var(--primary);
            color: white;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
        }
.mobile-menu {
    display: none;
    padding: 20px 0;
    background: rgba(255, 255, 255, 0.97); /* Add this */
    backdrop-filter: blur(10px); /* Optional for modern glass effect */
    border-radius: 0 0 12px 12px; /* Optional for styling */
}


        .mobile-menu.active {
            display: block;
        }

        .mobile-menu a {
            display: block;
            padding: 12px 0;
            color: var(--foreground);
            text-decoration: none;
            font-weight: 500;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            padding-top: 80px;
            background: linear-gradient(to bottom, rgba(0, 122, 255, 0.05), var(--background));
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            overflow: hidden;
            pointer-events: none;
        }

        .hero-bg-circle {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
        }

        .hero-bg-circle-1 {
            top: 80px;
            left: 40px;
            width: 300px;
            height: 300px;
            background: rgba(0, 122, 255, 0.1);
        }

        .hero-bg-circle-2 {
            bottom: 80px;
            right: 40px;
            width: 400px;
            height: 400px;
            background: rgba(0, 198, 174, 0.1);
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
            position: relative;
            z-index: 10;
        }

        .hero-text {
            animation: fadeInUp 0.8s ease-out;
        }

        .hero h1 {
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 24px;
        }

        .hero h1 .highlight {
            color: var(--primary);
        }

        .hero p {
            font-size: 1.25rem;
            color: var(--muted);
            margin-bottom: 32px;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .hero-buttons .btn {
            padding: 16px 32px;
            font-size: 1.1rem;
        }

        .hero-image {
            position: relative;
            animation: fadeIn 1s ease-out 0.3s both;
        }

        .globe-container {
            width: 100%;
            max-width: 500px;
            aspect-ratio: 1;
            position: relative;
            margin: 0 auto;
        }

        .globe-svg {
            width: 100%;
            height: 100%;
            opacity: 0.2;
        }

        .floating-dot {
            position: absolute;
            border-radius: 50%;
            animation: float 3s ease-in-out infinite;
        }

        .dot-1 {
            top: 25%;
            left: 25%;
            width: 16px;
            height: 16px;
            background: var(--primary);
            animation-delay: 0s;
        }

        .dot-2 {
            bottom: 33%;
            right: 25%;
            width: 12px;
            height: 12px;
            background: var(--secondary);
            animation-delay: 0.5s;
        }

        .dot-3 {
            top: 50%;
            right: 33%;
            width: 20px;
            height: 20px;
            background: var(--accent);
            animation-delay: 1s;
        }

        /* Section Styles */
        section {
            padding: 96px 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 64px;
        }

        .section-header h2 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .section-header p {
            font-size: 1.25rem;
            color: var(--muted);
            max-width: 700px;
            margin: 0 auto;
        }

        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 32px;
        }

        .service-card {
            background: var(--card);
            padding: 32px;
            border-radius: 16px;
            border: 1px solid var(--border);
            transition: all 0.3s;
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .service-icon {
            width: 56px;
            height: 56px;
            background: rgba(0, 122, 255, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 28px;
        }

        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 12px;
        }

        .service-card p {
            color: var(--muted);
            line-height: 1.6;
        }

        /* Languages Grid */
        .bg-muted {
            background: rgba(100, 116, 139, 0.05);
        }

        .languages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 24px;
        }

        .language-card {
            background: var(--card);
            padding: 24px;
            border-radius: 16px;
            border: 1px solid var(--border);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            transition: all 0.3s;
            cursor: pointer;
        }

        .language-card:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .language-flag {
            font-size: 3rem;
        }

        .language-name {
            font-weight: 500;
        }

        /* Industries Grid */
        .industries-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 32px;
        }

        .industry-card {
            background: var(--card);
            padding: 32px;
            border-radius: 16px;
            border: 1px solid var(--border);
            transition: all 0.3s;
        }

        .industry-card:hover {
            transform: scale(1.02);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .industry-icon {
            width: 64px;
            height: 64px;
            background: rgba(0, 198, 174, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            font-size: 32px;
        }

        /* Why Choose Us */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 32px;
        }

        .feature-item {
            text-align: center;
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: rgba(0, 122, 255, 0.1);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            font-size: 40px;
        }

        .feature-item h3 {
            font-size: 1.25rem;
            margin-bottom: 12px;
        }

        .feature-item p {
            color: var(--muted);
        }

        /* Testimonials */
        .testimonials-container {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
        }

        .testimonial-track {
            display: flex;
            gap: 24px;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scrollbar-width: none;
            -ms-overflow-style: none;
            padding: 20px 0;
        }

        .testimonial-track::-webkit-scrollbar {
            display: none;
        }

        .testimonial-card {
            flex: 0 0 calc(50% - 12px);
            scroll-snap-align: start;
            background: var(--card);
            padding: 32px;
            border-radius: 16px;
            border: 1px solid var(--border);
        }

        .stars {
            display: flex;
            gap: 4px;
            margin-bottom: 16px;
            color: var(--accent);
        }

        .testimonial-content {
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 24px;
            color: var(--foreground);
        }

        .testimonial-author {
            font-weight: 600;
        }

        .testimonial-role {
            color: var(--muted);
            font-size: 0.9rem;
        }

        /* Client Logos */
        .clients-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 32px;
            align-items: center;
        }

        .client-logo {
            text-align: center;
            font-size: 1.5rem;
            font-weight: 700;
            color: rgba(100, 116, 139, 0.4);
            transition: color 0.3s;
        }

        .client-logo:hover {
            color: rgba(100, 116, 139, 0.7);
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before,
        .cta-section::after {
            content: '';
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            filter: blur(80px);
        }

        .cta-section::before {
            top: 0;
            left: 0;
            width: 400px;
            height: 400px;
        }

        .cta-section::after {
            bottom: 0;
            right: 0;
            width: 400px;
            height: 400px;
        }

        .cta-content {
            position: relative;
            z-index: 10;
            max-width: 800px;
            margin: 0 auto;
        }

        .cta-section h2 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 24px;
        }

        .cta-section p {
            font-size: 1.5rem;
            margin-bottom: 40px;
            opacity: 0.9;
        }

        .cta-section .btn {
            background: white;
            color: var(--primary);
            padding: 20px 48px;
            font-size: 1.1rem;
        }

        .cta-section .btn:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }

        /* Footer */
        footer {
            background: rgba(100, 116, 139, 0.05);
            padding: 80px 0 40px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 48px;
            margin-bottom: 64px;
        }

        .footer h3 {
            font-size: 1.5rem;
            margin-bottom: 24px;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid var(--border);
            border-radius: 8px;
            font-family: 'Poppins', sans-serif;
            font-size: 1rem;
        }

        .contact-form textarea {
            resize: vertical;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .contact-item {
            display: flex;
            gap: 12px;
        }

        .contact-icon {
            color: var(--primary);
            font-size: 20px;
        }

        .contact-details p:first-child {
            font-weight: 600;
            margin-bottom: 4px;
        }

        .contact-details p:last-child {
            color: var(--muted);
        }

        .social-links {
            display: flex;
            gap: 16px;
            margin-top: 32px;
        }

        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(0, 122, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            text-decoration: none;
            transition: all 0.3s;
        }

        .social-link:hover {
            background: var(--primary);
            color: white;
        }

        .footer-bottom {
            border-top: 1px solid var(--border);
            padding-top: 32px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
        }

        .footer-links {
            display: flex;
            gap: 24px;
        }

        .footer-links a {
            color: var(--muted);
            text-decoration: none;
            font-size: 0.9rem;
        }

        .footer-links a:hover {
            color: var(--primary);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-20px);
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-links,
            .nav-cta {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            .hero-buttons {
                justify-content: center;
            }

            .section-header h2 {
                font-size: 2rem;
            }

            .services-grid,
            .industries-grid {
                grid-template-columns: 1fr;
            }

            .languages-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .testimonial-card {
                flex: 0 0 100%;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .cta-section h2 {
                font-size: 2rem;
            }

            .cta-section p {
                font-size: 1.1rem;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }
        .section-header h2 {
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: "";
    display: block;
    width: 100px; /* adjust size */
    height: 4px; /* thickness */
    background: linear-gradient(90deg, var(--primary), var(--secondary));

    margin: 12px auto 0;
    border-radius: 2px;
}



.about-content {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
    color: var(--text);
}

.about-highlights {
    list-style: none;
    margin-top: 24px;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px;
}

.about-highlights li {
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 1rem;
}

.about-highlights i {
    color: var(--primary);
    margin-right: 8px;
}
