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

        :root {
            --primary-blue: #1e3a8a;
            --accent-blue: #3b82f6;
            --light-blue: #dbeafe;
            --dark-blue: #1e293b;
            --text-dark: #1e293b;
            --text-gray: #64748b;
            --bg-light: #f8fafc;
            --white: #ffffff;
            --shadow: 0 10px 30px rgba(30, 58, 138, 0.1);
            --shadow-lg: 0 20px 50px rgba(30, 58, 138, 0.15);
        }

        body {
            font-family: 'Lora', serif;
            color: var(--text-dark);
            line-height: 1.8;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'DM Sans', sans-serif;
            font-weight: 700;
            line-height: 1.3;
        }

        button, .cta-button, .hero-cta, .pricing-cta, .tab-button {
            font-family: 'DM Sans', sans-serif;
        }

        /* Smooth scroll */
        html {
            scroll-behavior: smooth;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1.75rem 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        nav.scrolled {
            padding: 1.25rem 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }

        .nav-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logoImg {
            height: 30px;
            width: auto;
        }

        .nav-links {
            display: flex;
            gap: 3rem;
            list-style: none;
            align-items: center;
        }

        .nav-links a {
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.3s ease;
            position: relative;
        }

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

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-blue);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .cta-button {
            background: var(--accent-blue);
            color: white;
            padding: 0.75rem 1.75rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
        }

        .cta-button:hover {
            background: var(--primary-blue);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
        }

        /* Mobile menu toggle */
        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
        }

        .mobile-menu-toggle span {
            width: 25px;
            height: 3px;
            background: var(--primary-blue);
            transition: all 0.3s ease;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
            padding: 180px 5rem 120px;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
            animation: float 20s linear infinite;
            opacity: 0.5;
        }

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

        .hero-container {
            max-width: 1280px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            margin-bottom: 2rem;
            animation: fadeInUp 0.8s ease;
        }

        .hero-content p {
            font-size: 1.3rem;
            margin-bottom: 2.5rem;
            opacity: 0.95;
            line-height: 1.9;
            animation: fadeInUp 0.8s ease 0.2s backwards;
        }

        .hero-cta {
            display: inline-block;
            background: white;
            color: var(--primary-blue);
            padding: 1.25rem 3rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            animation: fadeInUp 0.8s ease 0.4s backwards;
            cursor: pointer;
            border: none;
        }

        .hero-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
        }

        .hero-image {
            position: relative;
            animation: fadeInRight 1s ease 0.3s backwards;
        }

        .hero-image img {
            width: 100%;
            max-width: 500px;
            margin: 0 auto;
            display: block;
            filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
        }

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

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Stats Section */
        .stats {
            padding: 100px 5rem;
            background: white;
        }

        .stats-container {
            max-width: 1280px;
            margin: 0 auto;
            text-align: center;
        }

        .section-label {
            font-size: 0.875rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--accent-blue);
            margin-bottom: 1.5rem;
        }

        .stats-title {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: var(--primary-blue);
            padding: 0 2rem;
        }

        .stats-subtitle {
            font-size: 1.3rem;
            color: var(--text-gray);
            margin-bottom: 5rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3.5rem;
            margin-top: 4rem;
        }

        .stat-card {
            padding: 3rem 2.5rem;
            background: var(--bg-light);
            border-radius: 20px;
            transition: all 0.3s ease;
        }

        .stat-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--accent-blue);
            margin-bottom: 1rem;
        }

        .stat-label {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 1.5rem;
        }

        .stat-description {
            color: var(--text-gray);
            font-size: 1rem;
            line-height: 1.8;
        }

        /* Services Section - NEW DESIGN */
        .services {
            padding: 120px 5rem;
            background: var(--bg-light);
        }

        .services-container {
            max-width: 1280px;
            margin: 0 auto;
        }

        .services-header {
            text-align: center;
            margin-bottom: 5rem;
        }

        .services-title {
            font-size: 2.75rem;
            color: var(--primary-blue);
            margin-bottom: 2rem;
        }

        .services-layout {
            display: grid;
            grid-template-columns: 400px 1fr;
            gap: 4rem;
            align-items: start;
        }

        /* Service Navigation - Left Side */
        .service-nav {
            background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
            border-radius: 30px;
            padding: 2.5rem;
            box-shadow: 0 20px 50px rgba(30, 58, 138, 0.3);
            position: sticky;
            top: 120px;
        }

        .service-nav-button {
            display: block;
            width: 100%;
            padding: 1.5rem 2rem;
            margin-bottom: 1rem;
            background: rgba(255, 255, 255, 0.1);
            border: none;
            border-radius: 50px;
            color: white;
            font-family: 'DM Sans', sans-serif;
            font-size: 1.05rem;
            font-weight: 600;
            text-align: left;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .service-nav-button:last-child {
            margin-bottom: 0;
        }

        .service-nav-button:hover {
            background: rgba(59, 130, 246, 0.8);
            transform: translateX(5px);
        }

        .service-nav-button.active {
            background: var(--accent-blue);
            box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
            transform: translateX(5px);
        }

        /* Service Content - Right Side */
        .service-panel {
            display: none;
            animation: fadeIn 0.5s ease;
        }

        .service-panel.active {
            display: block;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .service-content-wrapper {
            background: white;
            border-radius: 30px;
            padding: 3.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #dbeafe, #bfdbfe);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            margin-bottom: 2rem;
        }

        .service-content-wrapper h3 {
            font-size: 2.25rem;
            color: var(--primary-blue);
            margin-bottom: 1.5rem;
        }

        .service-content-wrapper p {
            font-size: 1.15rem;
            color: var(--text-gray);
            margin-bottom: 2.5rem;
            line-height: 1.9;
        }

        .service-features {
            list-style: none;
            margin-bottom: 2.5rem;
        }

        .service-features li {
            padding: 1rem 0;
            padding-left: 2.5rem;
            position: relative;
            color: var(--text-dark);
            font-size: 1.05rem;
            display: flex;
            align-items: center;
        }

        .service-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            width: 28px;
            height: 28px;
            background: var(--accent-blue);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.875rem;
        }

        .learn-more {
            display: inline-block;
            color: var(--accent-blue);
            font-weight: 600;
            text-decoration: none;
            font-size: 1.05rem;
            transition: all 0.3s ease;
        }

        .learn-more:hover {
            transform: translateX(5px);
        }

        .learn-more::after {
            content: ' →';
        }

        /* Case Studies */
        .case-studies {
            padding: 120px 5rem;
            background: var(--primary-blue);
            color: white;
        }

        .case-studies-container {
            max-width: 1280px;
            margin: 0 auto;
        }

        .case-studies-header {
            text-align: center;
            margin-bottom: 5rem;
        }

        .case-studies-title {
            font-size: 2.75rem;
            margin-bottom: 2rem;
        }

        .case-studies-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 3.5rem;
        }

        .case-study-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 3rem;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .case-study-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.15);
        }

        .case-study-image {
            width: 100%;
            height: 270px;
            background: white;
            border-radius: 15px;
            margin-bottom: 2.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: var(--primary-blue);
            overflow: hidden;
        }

        .case-study-image img {
           max-width: 100%;
           max-height: 100%;
           object-fit: cover;
        }

        .case-study-card h3 {
            font-size: 1.75rem;
            margin-bottom: 1.5rem;
        }

        .case-study-card p {
            opacity: 0.9;
            line-height: 1.9;
            font-size: 1.05rem;
        }

        /* Pricing */
        .pricing {
            padding: 120px 5rem;
            background: white;
        }

        .pricing-container {
            max-width: 1280px;
            margin: 0 auto;
        }

        .pricing-header {
            text-align: center;
            margin-bottom: 5rem;
        }

        .pricing-title {
            font-size: 2.75rem;
            color: var(--primary-blue);
            margin-bottom: 2rem;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
            align-items: start;
        }

        .pricing-card {
            background: var(--bg-light);
            border-radius: 20px;
            padding: 3rem;
            transition: all 0.3s ease;
            border: 3px solid transparent;
            position: relative;
        }

        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }

        .pricing-card.featured {
            background: var(--accent-blue);
            color: white;
            border-color: var(--accent-blue);
            transform: scale(1.05);
        }

        .pricing-card.featured:hover {
            transform: scale(1.05) translateY(-10px);
        }

        .pricing-badge {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--primary-blue);
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-size: 0.875rem;
            font-weight: 700;
        }

        .pricing-card h3 {
            font-size: 1.5rem;
            margin-bottom: 0.75rem;
        }

        .pricing-card .subtitle {
            font-size: 0.9rem;
            opacity: 0.7;
            margin-bottom: 2rem;
        }

        .pricing-card.featured .subtitle {
            opacity: 0.9;
        }

        .price {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
        }

        .price-note {
            font-size: 0.875rem;
            opacity: 0.7;
            margin-bottom: 2.5rem;
        }

        .pricing-features {
            list-style: none;
            margin-bottom: 2.5rem;
        }

        .pricing-features li {
            padding: 1rem 0;
            padding-left: 2.5rem;
            position: relative;
            font-size: 0.95rem;
        }

        .pricing-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--accent-blue);
            font-weight: 700;
        }

        .pricing-card.featured .pricing-features li::before {
            color: white;
        }

        .pricing-description {
            font-size: 0.95rem;
            opacity: 0.8;
            line-height: 1.8;
            margin-bottom: 2.5rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(0, 0, 0, 0.1);
        }

        .pricing-card.featured .pricing-description {
            border-top-color: rgba(255, 255, 255, 0.2);
        }

        .pricing-cta {
            display: block;
            text-align: center;
            padding: 1.25rem;
            background: var(--accent-blue);
            color: white;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
            width: 100%;
        }

        .pricing-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(59, 130, 246, 0.3);
        }

        .pricing-card.featured .pricing-cta {
            background: white;
            color: var(--accent-blue);
        }

        /* FAQ */
        .faq {
            padding: 120px 5rem;
            background: var(--bg-light);
        }

        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-header {
            text-align: center;
            margin-bottom: 5rem;
        }

        .faq-title {
            font-size: 2.75rem;
            color: var(--primary-blue);
            margin-bottom: 2rem;
        }

        .faq-item {
            background: white;
            border-radius: 15px;
            margin-bottom: 2rem;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

        .faq-question {
            padding: 2rem 2.5rem;
            font-size: 1.125rem;
            font-weight: 600;
            color: var(--text-dark);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            color: var(--accent-blue);
        }

        .faq-icon {
            font-size: 1.5rem;
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-answer-content {
            padding: 0 2.5rem 2.5rem;
            color: var(--text-gray);
            line-height: 1.9;
            font-size: 1.05rem;
        }

        .faq-item.active .faq-answer {
            max-height: 2000px;
        }

        /* Footer */
        footer {
            background: var(--primary-blue);
            color: white;
            padding: 100px 5rem 2.5rem;
        }

        .footer-container {
            max-width: 1280px;
            margin: 0 auto;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 5rem;
            margin-bottom: 4rem;
        }

        .footer-section h3 {
            margin-bottom: 2rem;
            font-size: 1.25rem;
        }

        .footer-section p {
            opacity: 0.8;
            line-height: 1.9;
            font-size: 1.05rem;
            margin-bottom: 1rem;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 1rem;
        }

        .footer-links a {
            color: white;
            text-decoration: none;
            opacity: 0.8;
            transition: all 0.3s ease;
            font-size: 1.05rem;
        }

        .general-email {
            color: white;
            text-decoration: none;
            opacity: 0.8;
            transition: all 0.3s ease;
            font-size: 1.05rem;
        }

        .footer-links a:hover {
            opacity: 1;
            transform: translateX(5px);
            display: inline-block;
        }

        .newsletter-form {
            display: flex;
            gap: 0.75rem;
            margin-top: 1.5rem;
        }

        .newsletter-form input {
            flex: 1;
            padding: 1rem 1.5rem;
            border: none;
            border-radius: 50px;
            font-family: 'Lora', serif;
        }

        .newsletter-form button {
            padding: 1rem 2rem;
            background: var(--accent-blue);
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'DM Sans', sans-serif;
        }

        .newsletter-form button:hover {
            background: white;
            color: var(--accent-blue);
        }

        .social-links {
            display: flex;
            gap: 1.25rem;
            margin-top: 2rem;
        }

        .social-links a {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: white;
            color: var(--primary-blue);
            transform: translateY(-3px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            opacity: 0.8;
            font-size: 1rem;
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 10000;
            animation: fadeIn 0.3s ease;
        }

        .modal.active {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .modal-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(30, 58, 138, 0.8);
            backdrop-filter: blur(8px);
            animation: fadeIn 0.3s ease;
        }

        .modal-content {
            position: relative;
            background: white;
            border-radius: 24px;
            padding: 3rem;
            max-width: 600px;
            width: 90%;
            max-height: 90vh;
            overflow-y: auto;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            animation: slideUp 0.4s ease;
            z-index: 10001;
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .modal-close {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            width: 40px;
            height: 40px;
            border: none;
            background: var(--bg-light);
            color: var(--text-gray);
            font-size: 2rem;
            line-height: 1;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'DM Sans', sans-serif;
        }

        .modal-close:hover {
            background: var(--accent-blue);
            color: white;
            transform: rotate(90deg);
        }

        .modal-header {
            text-align: center;
            margin-bottom: 2.5rem;
        }

        .modal-header h2 {
            font-size: 2.25rem;
            color: var(--primary-blue);
            margin-bottom: 1rem;
        }

        .modal-header p {
            font-size: 1.1rem;
            color: var(--text-gray);
            line-height: 1.6;
        }

        /* Form Styles */
        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .form-group label {
            font-family: 'DM Sans', sans-serif;
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--text-dark);
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            padding: 1rem 1.25rem;
            border: 2px solid var(--bg-light);
            border-radius: 12px;
            font-family: 'Lora', serif;
            font-size: 1rem;
            color: var(--text-dark);
            background: var(--bg-light);
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--accent-blue);
            background: white;
            box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
            transform: translateY(-2px);
        }

        .form-group input:hover,
        .form-group select:hover,
        .form-group textarea:hover {
            border-color: var(--accent-blue);
            background: white;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
            line-height: 1.6;
        }

        .form-group select {
            cursor: pointer;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 1.25rem center;
            padding-right: 3rem;
        }

        .form-submit {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            padding: 1.25rem 2.5rem;
            background: var(--accent-blue);
            color: white;
            border: none;
            border-radius: 50px;
            font-family: 'DM Sans', sans-serif;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
            margin-top: 1rem;
        }

        .form-submit:hover {
            background: var(--primary-blue);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
        }

        .form-submit:active {
            transform: translateY(-1px);
        }

        .form-submit svg {
            transition: transform 0.3s ease;
        }

        .form-submit:hover svg {
            transform: translateX(5px);
        }

        .form-note {
            text-align: center;
            font-size: 0.875rem;
            color: var(--text-gray);
            margin-top: 1rem;
        }

        /* Form Success State */
        .form-success {
            text-align: center;
            padding: 3rem 2rem;
        }

        .form-success-icon {
            width: 80px;
            height: 80px;
            background: #10b981;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            animation: scaleIn 0.5s ease;
        }

        @keyframes scaleIn {
            from {
                transform: scale(0);
            }
            to {
                transform: scale(1);
            }
        }

        .form-success-icon svg {
            width: 40px;
            height: 40px;
            color: white;
        }

        .form-success h3 {
            font-size: 1.75rem;
            color: var(--primary-blue);
            margin-bottom: 1rem;
        }

        .form-success p {
            font-size: 1.1rem;
            color: var(--text-gray);
            line-height: 1.6;
        }

        /* Custom Scrollbar for Modal */
        .modal-content::-webkit-scrollbar {
            width: 8px;
        }

        .modal-content::-webkit-scrollbar-track {
            background: var(--bg-light);
            border-radius: 10px;
        }

        .modal-content::-webkit-scrollbar-thumb {
            background: var(--accent-blue);
            border-radius: 10px;
        }

        .modal-content::-webkit-scrollbar-thumb:hover {
            background: var(--primary-blue);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .nav-container {
                padding: 0 3.5rem;
            }

            .hero {
                padding-left: 3.5rem;
                padding-right: 3.5rem;
            }

            .stats,
            .services,
            .case-studies,
            .pricing,
            .faq,
            footer {
                padding-left: 3.5rem;
                padding-right: 3.5rem;
            }

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

            .hero-content h1 {
                font-size: 2.75rem;
            }

            .services-layout {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .service-nav {
                position: static;
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
            }

            .service-nav-button {
                margin-bottom: 0;
            }

            .stats-grid {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }

            .pricing-grid {
                grid-template-columns: 1fr;
            }

            .pricing-card.featured {
                transform: scale(1);
            }

            .case-studies-grid {
                grid-template-columns: 1fr;
            }

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

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .mobile-menu-toggle {
                display: flex;
            }

            .nav-container {
                padding: 0 2rem;
            }

            .hero {
                padding: 140px 2.5rem 100px;
            }

            .hero-content h1 {
                font-size: 2.25rem;
            }

            .hero-content p {
                font-size: 1.15rem;
            }

            .stats,
            .services,
            .case-studies,
            .pricing,
            .faq,
            footer {
                padding-left: 2.5rem;
                padding-right: 2.5rem;
            }

            .stats {
                padding-top: 80px;
                padding-bottom: 80px;
            }

            .services {
                padding-top: 80px;
                padding-bottom: 80px;
            }

            .case-studies {
                padding-top: 80px;
                padding-bottom: 80px;
            }

            .pricing {
                padding-top: 80px;
                padding-bottom: 80px;
            }

            .faq {
                padding-top: 80px;
                padding-bottom: 80px;
            }

            footer {
                padding-top: 80px;
            }

            .stats-title,
            .services-title,
            .case-studies-title,
            .pricing-title,
            .faq-title {
                font-size: 2rem;
            }

            .service-nav {
                grid-template-columns: 1fr;
            }

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

            .modal-content {
                padding: 2rem;
                max-width: 95%;
            }

            .modal-header h2 {
                font-size: 1.75rem;
            }

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

            .form-submit {
                width: 100%;
            }
        }

        /* Scroll animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

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

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

        .nav-container {
            justify-content: center;
            align-items: center;
        }
    }

        /* Desktop */
        @media (min-width: 769px) {
        .mobile-menu-toggle {
        display: none;
        }
        }