        :root {
            --header-height: 80px;
            --primary: rgb(43, 92, 135);
            /* Dark Blue */
            --primary-dark: #244C71;
            /* Slightly darker for hover */
            --primary-darker: #1A3A59;
            /* Even darker */
            --secondary: #C3E4F3;
            /* Light Blue */
            --accent: #EA5444;
            /* Red/Accent color */
            --text-dark: #2B5C87;
            /* Use dark blue for text instead of black */
            --text-gray: #5F7D99;
            /* Muted tone of the blue */
            --text-light: #90ABC2;
            /* Lighter text */
            --border: #D9E6EF;
            /* Light border */
            --shadow: 0 4px 6px -1px rgba(43, 92, 135, 0.1), 0 2px 4px -1px rgba(43, 92, 135, 0.06);
            --shadow-lg: 0 10px 15px -3px rgba(43, 92, 135, 0.1), 0 4px 6px -2px rgba(43, 92, 135, 0.05);
            --shadow-xl: 0 20px 25px -5px rgba(43, 92, 135, 0.1), 0 10px 10px -5px rgba(43, 92, 135, 0.04);
        }


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

        .visually-hidden {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0 0 0 0);
            white-space: nowrap;
            border: 0;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background: #ffffff;
            overflow-x: hidden;
        }

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

        /* Header Styles */
        header {
            position: fixed;
            height: var(--header-height);
            top: 0;
            left: 0;
            right: 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1rem 2rem;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(6px);
            border-bottom: 1px solid var(--border);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .header-scrolled {
            padding: 0.75rem 2rem;
            box-shadow: var(--shadow-lg);
        }

        .logo img {
            height: 48px;
            max-width: 180px;
            width: auto;
            transition: height 0.3s ease;
        }

        /* hide default nav on mobile, show hamburger */
        .nav-toggle {
            display: none;
            font-size: 2rem;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
        }

        .site-nav ul {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            gap: 1rem;
        }

        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
                z-index: 1100;
                /* sit above header content */
            }

            .site-nav {
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: white;
                max-height: 0;
                /* start closed */
                overflow: hidden;
                transition: max-height 0.3s ease;
                z-index: 1099;
            }

            .site-nav.open {
                max-height: 300px;
                /* adjust to fit your 4 links + padding */
            }

            .site-nav ul {
                flex-direction: column;
                padding: 1rem;
            }
        }

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

            .site-nav {
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: white;
                transform: translateY(-100%);
                transition: transform 0.3s ease;
            }

            .site-nav.open {
                transform: translateY(0);
            }

            .site-nav ul {
                flex-direction: column;
                padding: 1rem;
            }
        }

        nav {
            display: flex;
            gap: 0.5rem;
        }

        nav a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            padding: 0.75rem 1.25rem;
            border-radius: 50px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        /*nav a:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(26, 26, 231, 0.1), transparent);
            transition: left 0.5s ease;
        }

        nav a:hover:before {
            left: 100%;
        }*/

        nav a:hover {
            background: var(--secondary);
            color: var(--primary);
            transform: translateY(-2px);
        }

        /* Mobile Header */
        @media (max-width: 768px) {
            header {
                padding: 1rem;
                position: relative;
                flex-direction: row;
                justify-content: space-between;

            }

            .logo img {
                height: 56px;
                max-width: 90vw;
            }

            nav {
                flex-wrap: wrap;
                gap: 0.5rem;
                justify-content: center;
            }

            nav a {
                padding: 0.5rem 1rem;
                font-size: 0.9rem;
            }
        }

        /* Main content offset for fixed header */
        main {
            padding-top: var(--header-height);
        }

        @media (max-width: 768px) {
            main {
                padding-top: 0px;
            }
        }

        .section-container {
            max-width: 1200px;
            width: 100%;
            margin-left: auto;
            margin-right: auto;
            padding-left: 2rem;
            padding-right: 2rem;
            box-sizing: border-box;
        }

        /* Hero Section */
        .hero {
            height: calc(100vh - var(--header-height));
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 4rem 2rem;
            /*min-height: 100vh;*/
            background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
            position: relative;
            overflow: hidden;
        }

        .hero:before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(26, 26, 231, 0.05) 0%, transparent 70%);
            animation: float 20s ease-in-out infinite;
        }

        @keyframes float {

            0%,
            100% {
                transform: translate(0, 0) rotate(0deg);
            }

            50% {
                transform: translate(-20px, -20px) rotate(180deg);
            }
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

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

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero h1 {
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 700;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero p {
            font-size: clamp(1.1rem, 2.5vw, 1.4rem);
            margin-bottom: 2.5rem;
            color: #fff;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-grid {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 2rem;
            margin: 0 auto;
        }

        .hero-text {
            flex: 1;
            text-align: left;
        }

        /* Mobile responsiveness */
        @media (max-width: 768px) {
            .hero-grid {
                flex-direction: column;
            }

            .hero-text,
            .hero-video {
                text-align: center;
            }
        }

        .cta-btn {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            border: none;
            padding: 1.2rem 2.5rem;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: var(--shadow);
            position: relative;
            overflow: hidden;
        }

        .cta-btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .cta-btn:hover:before {
            left: 100%;
        }

        .cta-btn:hover {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-darker) 100%);
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
        }

        /* Video Section */
        /* 1) center the iframe block, give it a max-width and an aspect ratio */
        .video-section iframe {
            display: block;
            /* so margin:auto works */
            margin: 4rem auto;
            /* your space above/below */
            width: 100%;
            max-width: 100%;
            /* fill up to the container’s width */
            aspect-ratio: 16 / 9;
            /* desktop shape */
            box-shadow: var(--shadow-xl);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        /* keep your hover if you like it */
        .video-section iframe:hover {
            transform: scale(1.02);
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        }

        /* on mobile, flip to portrait (“shorts”) */
        @media (max-width: 768px) {
            .video-section iframe {
                max-width: 360px;
                /* cap at a phone-ish width */
                aspect-ratio: 9 / 16;
                /* tall video */
            }
        }


        .testimonials-carousel-wide {
            width: 100%;
            display: flex;
            justify-content: center;
            padding: 0;
            margin: 3.5rem auto 4rem auto;
            background: none;
            border-radius: 0;
            box-shadow: none;
            min-height: 0;
            overflow: visible;
        }

        /* ↓ This was originally zeroing out all padding: */
        .testimonials-carousel-wide .section-container {
            /*   max-width: 1200px;
            width: 100%;*/
            margin: 0 auto;
            background: rgba(43, 92, 135, 0.14);
            border-radius: 2rem;
            min-height: 345px;
            box-shadow: var(--shadow-lg, 0 8px 32px rgba(43, 92, 135, 0.10));

            /* re-enable horizontal padding (2rem each side) */
            padding: 0 2rem;
            position: relative;
            overflow: hidden;

        }

        @media (max-width: 700px) {

            /* 1rem gutters left & right on the outer carousel */
            .testimonials-carousel-wide {
                margin: 3.5rem 0 4rem;
                /* vertical spacing stays */
                padding: 0 1rem;
                /* 1rem on left and right */
                max-width: 100vw;
                /* never overflow viewport */
                border-radius: 1.2rem;
                min-height: 290px;
            }

            /* zero-out any width constraints and give the inner card 1rem padding */
            .testimonials-carousel-wide>.section-container {
                margin: 0;
                /* we’ve already set the gutter */
                padding: 1rem;
                /* breathing room inside the grey card */
                width: auto;
                max-width: none;
            }
        }


        /* nav buttons must be absolutely positioned relative to .section-container */
        .testimonials-carousel-wide .testimonial-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(43, 92, 135, 0.27);
            color: #fff;
            border: none;
            border-radius: 50%;
            width: 36px;
            height: 36px;
            font-size: 2rem;
            cursor: pointer;
            z-index: 2;
            transition: background 0.18s, transform 0.16s;
            box-shadow: 0 1px 5px rgba(43, 92, 135, 0.13);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .testimonials-carousel-wide .testimonial-nav.prev {
            left: 1.5rem;
        }

        .testimonials-carousel-wide .testimonial-nav.next {
            right: 1.5rem;
        }

        .testimonials-carousel-wide .testimonial-nav:hover,
        .testimonials-carousel-wide .testimonial-nav:focus {
            background: var(--primary-dark, #244C71);
            box-shadow: 0 4px 12px rgba(43, 92, 135, 0.17);
        }

        /* Keep the track layout the same */
        .testimonials-carousel-wide .testimonial-track {
            display: flex;
            transition: transform 0.6s cubic-bezier(.7, .1, .35, 1);
            will-change: transform;
            min-width: 0;
        }

        /* Each card still occupies 100% of the inner container’s width */
        .testimonials-carousel-wide .testimonial-card {
            min-width: 100%;
            padding: 2.5rem 2.2rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .testimonial-photo {
            width: 74px;
            height: 74px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 1rem;
            box-shadow: 0 2px 10px 0 rgba(43, 92, 135, 0.12);
        }

        .testimonial-stars {
            color: #fff;
            font-size: 1.23rem;
            letter-spacing: .1em;
            margin-bottom: 0.66rem;
            filter: drop-shadow(0 0 2px #fff9);
            text-shadow: 0 1px 2px #2b5c87;
        }

        .testimonial-card blockquote {
            color: #234367;
            font-size: 1.20rem;
            font-style: italic;
            margin: 0 0 0.55rem 0;
            /* Less margin below the quote */
            line-height: 1.6;
            min-height: 62px;
            font-weight: 700;
            /* Bolder! */
            text-shadow: 0 1px 6px rgba(255, 255, 255, 0.4), 0 0px 1px #2b5c8722;
        }

        .testimonial-title {
            color: var(--primary);
            font-size: 1.08rem;
            margin-bottom: 0.13rem;
            /* Was 0.09rem, increase if needed */
            font-weight: 600;
        }

        .testimonial-name {
            color: #5F7D99;
            font-size: 1rem;
            letter-spacing: .03em;
            opacity: .92;
            margin-top: -0.14rem;
            /* Bring it closer to the title */
        }

        .testimonials-carousel-wide:hover .testimonial-nav {
            opacity: 1;
        }

        .service-block h3 {
            margin-bottom: 0.25rem;
            /* Smaller space now */
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--text-dark);
            text-align: center;
        }

        /* Highlight Section (all viewport sizes) */

        .highlight-section {
            margin: 4rem auto;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .highlight-section.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Default: image on left, text on right */
        .highlight-section .section-container {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            grid-template-areas: "image text";
            align-items: center;
            gap: 3rem;
            /* space between columns */
        }

        /* If .highlight-reverse is present, swap (text on left, image on right) */
        .highlight-reverse .section-container {
            grid-template-areas: "text image";
        }

        /* Assign grid areas explicitly */
        .highlight-section .section-container img {
            display: block;
            margin: 0 auto;
            width: 50%;
            height: auto;
            object-fit: cover;
            filter: drop-shadow(0 10px 30px rgba(136, 136, 136, 0.3));
            transition: transform 0.3s ease;
        }

        .highlight-section .section-container>div {
            grid-area: text;
        }

        /* Hover effect on image */
        .highlight-section:hover img {
            transform: scale(1.05);
        }

        /* Text styling remains the same */
        .highlight-section h2 {
            font-size: 1.8rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--primary-darker);
        }

        .highlight-section p {
            font-size: 1.1rem;
            color: var(--text-gray);
            line-height: 1.7;
        }

        @media (max-width: 768px) {
            .highlight-section .section-container {
                display: flex;
                /* fallback: use flex for stacking */
                flex-direction: column;
                text-align: center;
                gap: 2rem;
            }

            .highlight-section .section-container img {
                width: 150px;
                /* smaller on mobile */
                margin: 0 auto;
                filter: none;
                /* if you want to remove drop-shadow on very small screens */
            }
        }



        /* Services Section */
        .services {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            margin: 4rem auto;
            max-width: 1200px;
            padding: 0 2rem;
        }

        .service-block {
            background: white;
            border: 1px solid var(--border);
            border-radius: 24px;
            padding: 1.5rem;
            box-shadow: var(--shadow);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(30px);
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .service-block.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .service-block:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--primary-dark));
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .service-block:hover:before {
            transform: scaleX(1);
        }

        .service-block:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-xl);
            border-color: var(--primary);
        }

        .service-icon {
            width: 120px;
            height: auto;
            margin: 0 auto 1.5rem auto;
        }

        .service-icon img {
            width: 100%;
            height: auto;
            max-width: 120px;
            object-fit: contain;
            animation: float 3s ease-in-out infinite;
        }

        .star {
            color: var(--secondary);
            /* The light blue */
            font-size: 1.2em;
            /* Optional: Make it a little bigger */
        }


        @media (max-width: 768px) {
            .service-icon {
                width: 80px;
            }

            .service-icon img {
                max-width: 80px;
            }
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-10px);
            }
        }

        .service-block h3 {
            margin-bottom: 0.75rem;
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--text-dark);
            text-align: center;
        }

        .service-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            min-height: 300px;
        }

        .service-block .upgrade-item {
            padding: 0.5rem 0;
            margin: 0.5rem 0 1rem 0;
            font-weight: 600;
            color: var(--primary);
            font-size: 0.95rem;
            text-align: center;
        }

        .service-block ul {
            list-style: none;
            margin-bottom: 2rem;
            padding: 0;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
        }

        .service-block li {
            padding: 0.5rem 0;
            position: relative;
            padding-left: 1.5rem;
            color: var(--text-gray);
        }

        .service-block li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--primary);
            font-weight: bold;
        }

        .service-block .upgrade-item {
            padding: 0.5rem 0;
            margin: 1rem 0 1.5rem 0;
            font-weight: 600;
            color: var(--primary);
            position: relative;
            padding-left: 2rem;
            font-size: 0.95rem;
        }

        .service-block .upgrade-item:before {
            display: none;
        }

        .service-bottom {
            margin-top: auto;
        }

        .price {
            font-size: 1.2rem;
            font-weight: 500;
            color: var(--primary);
        }

        .service-block button {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            width: 100%;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            margin-bottom: 2rem;
        }

        .service-block button:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .service-block button:hover:before {
            left: 100%;
        }

        .service-block button:hover {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-darker) 100%);
            transform: translateY(-2px);
        }

        .service-note {
            margin: -2rem auto 4rem;
            /* Pull it up close */
            max-width: 800px;
            text-align: center;
            font-size: 1rem;
            color: var(--text-gray);
            padding: 0 1rem;
        }

        .service-note a {
            text-decoration: none;
            /* No underline */
            font-weight: 600;
            /* Bold */
            color: inherit;
            /* Same color as paragraph */
            transition: color 0.3s ease;
        }

        .service-note a:hover {
            color: var(--primary);
            /* Primary color on hover */
        }

        .faq-section {
            margin: 4rem auto;
            padding: 2.5rem 2rem;
            background: white;
            border-radius: 24px;
            box-shadow: var(--shadow-lg);
        }

        .faq-section h2 {
            text-align: center;
            margin-bottom: 2.2rem;
            color: var(--primary-darker);
            font-size: 2rem;
            font-weight: 700;
        }

        .faq-accordion {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .faq-item {
            border-radius: 18px;
            border: 1.5px solid var(--border);
            background: var(--secondary);
            box-shadow: 0 2px 6px rgba(43, 92, 135, 0.05);
            overflow: hidden;
            transition: border 0.2s, box-shadow 0.2s;
        }

        .faq-question {
            width: 100%;
            background: none;
            border: none;
            outline: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 1.13rem;
            font-weight: 600;
            color: var(--primary);
            padding: 1.2rem 1.4rem;
            cursor: pointer;
            transition: background 0.18s;
        }

        .faq-question:hover {
            background: var(--primary);
            color: #fff;
        }

        .faq-arrow {
            font-size: 1.5rem;
            transform: rotate(0deg);
            transition: transform 0.2s cubic-bezier(.7, .1, .35, 1);
            margin-left: 1rem;
            color: var(--primary);
        }

        .faq-question[aria-expanded="true"] .faq-arrow {
            transform: rotate(90deg);
            color: var(--primary-darker);
        }

        .faq-answer {
            max-height: 0;
            opacity: 0;
            overflow: hidden;
            padding: 0 1.4rem;
            background: white;
            color: var(--text-gray);
            font-size: 1rem;
            line-height: 1.7;
            border-top: 1px solid var(--border);
            transition: max-height 0.3s cubic-bezier(.7, .1, .35, 1), opacity 0.28s;
        }

        .faq-item.open .faq-answer {
            opacity: 1;
            max-height: 180px;
            /* adjust if longer answer */
            padding-bottom: 1.4rem;
        }

        /* Bio Section */
        .bio {
            margin: 5rem auto;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .bio.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ─── Desktop: make .section-container into a 2-column grid ─── */
        .bio .section-container {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            align-items: center;
            gap: 3rem;

            /* move the padding, background, border-radius, and box-shadow here */
            padding: 3rem;
            background: white;
            border-radius: 24px;
            box-shadow: var(--shadow-lg);
        }

        /* Image now occupies the left column at full width of its cell */
        .bio .section-container img {
            grid-column: 1;
            width: 50%;
            height: auto;
            object-fit: cover;
            border-radius: 50%;
            box-shadow: var(--shadow-lg);
            transition: transform 0.3s ease;
            justify-self: center;
            /* center the circular image in its grid cell */
        }

        /* Hover zoom remains the same */
        .bio:hover img {
            transform: scale(1.05);
        }

        /* The text wrapper fills the right column */
        .bio .bio-text {
            grid-column: 2;
        }

        /* ─── Mobile (≤768px): fall back to stacked flex layout ─── */
        @media (max-width: 768px) {
            .bio .section-container {
                display: flex;
                flex-direction: column;
                text-align: left;
                gap: 2rem;

                /* Preserve the existing mobile margin/padding */
                margin: 3rem 1rem;
                padding: 2rem;
            }

            .bio .section-container img {
                /* On mobile, keep the old fixed 120px circle */
                width: 50%;
                margin: 0 auto;
                filter: none;
                /* if you prefer to drop the shadow on small screens */
            }
        }

        .bio-text h3 {
            font-size: 1.8rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--text-dark);
        }

        .bio-text p {
            font-size: 1.1rem;
            color: var(--text-gray);
            line-height: 1.7;
        }

        @media (max-width: 768px) {
            .bio {
                flex-direction: column;
                text-align: center;
                gap: 2rem;
                margin: 3rem 1rem;
                padding: 2rem;
            }
        }

        /* Lead Form Section */
        .lead-section {
            background: linear-gradient(135deg, var(--secondary) 0%, white 100%);
            border-radius: 24px;
            padding: 3rem;
            box-shadow: var(--shadow-xl);
            margin: 4rem auto;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .lead-section.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .lead-section h2 {
            margin-bottom: 2rem;
            font-size: 1.8rem;
            font-weight: 600;
            text-align: center;
            color: var(--text-dark);
        }

        .lead-form input,
        .lead-form textarea {
            width: 100%;
            padding: 1rem;
            margin-bottom: 1rem;
            border: 2px solid var(--border);
            border-radius: 12px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: white;
        }

        .lead-form input:focus,
        .lead-form textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(26, 26, 231, 0.1);
        }

        .lead-form button {
            width: 100%;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            border: none;
            padding: 1.2rem;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .lead-form button:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .lead-form button:hover:before {
            left: 100%;
        }

        .lead-form button:hover {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-darker) 100%);
            transform: translateY(-2px);
        }

        .lead-section .section-container {
            /* Keep existing padding/background, but also use flex so we can center the form */
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        /* 2) Constrain the form itself to a reasonable max width */
        .lead-section .lead-form {
            width: 100%;
            /* allow it to fill available space up to max-width */
            max-width: 600px;
            /* ← change this value to taste (e.g., 500px or 700px) */
            margin: 0 auto;
            /* center the form in its parent */
        }

        /* 3) (Optional) Reduce vertical spacing between inputs to make it even tighter */
        .lead-section .lead-form input,
        .lead-section .lead-form textarea {
            margin-bottom: 0.75rem;
            /* shaving down from 1rem to 0.75rem for a more “compact” feel */
        }

        /* 4) (Optional) Slightly reduce the button’s padding so it aligns better with the narrower form */
        .lead-section .lead-form button {
            padding: 0.9rem 1rem;
            /* instead of 1.2rem vertically, making the overall card shorter */
        }

        /* Popup */
        #thankyou-popup {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(5px);
            align-items: center;
            justify-content: center;
            z-index: 9999;
            animation: fadeIn 0.3s ease;
        }

        #thankyou-popup .popup-content {
            background: white;
            padding: 3rem;
            border-radius: 24px;
            font-size: 1.3rem;
            font-weight: 500;
            box-shadow: var(--shadow-xl);
            text-align: center;
            color: var(--text-dark);
            max-width: 400px;
            margin: 2rem;
            animation: slideUp 0.3s ease;
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Footer */
        .footer {
            text-align: center;
            padding: 3rem 2rem;
            font-size: 0.9rem;
            color: var(--text-light);
            background: var(--secondary);
            margin-top: 4rem;
        }

        .social-links {
            display: flex;
            gap: 1.1rem;
            margin-top: 1.2rem;
            align-items: center;
        }

        .social-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: transparent;
            transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
            box-shadow: none;
            opacity: 0.85;
            border: none;
            outline: none;
            cursor: pointer;
        }

        .social-btn img {
            width: 24px;
            height: 24px;
            filter: grayscale(100%) brightness(1.1);
            transition: filter 0.2s, transform 0.2s;
        }

        .social-btn:hover,
        .social-btn:focus {
            background: var(--secondary);
            box-shadow: 0 4px 16px -2px var(--primary);
            transform: translateY(-3px) scale(1.08);
            opacity: 1;
        }

        .social-btn:hover img,
        .social-btn:focus img {
            filter: none;
            transform: scale(1.18);
        }


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

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

        /* Loading animation */
        @keyframes pulse {

            0%,
            100% {
                opacity: 1;
            }

            50% {
                opacity: 0.5;
            }
        }

        .loading {
            animation: pulse 2s infinite;
        }

        .policy-content a {
            color: var(--primary-dark);
            font-weight: 600;
            text-decoration: none;
        }

        .policy-content a:hover {
            color: var(--primary);
            text-decoration: underline;
        }

        .responsive-video {
            position: relative;
            width: 100%;
            padding-top: 56.25%;
            /* 16:9 aspect ratio */
        }

        .responsive-video iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 0;
            border-radius: 20px;
            box-shadow: var(--shadow-xl);
        }

        /* Container & toggle button */
        .footer-language {
            position: relative;
            display: inline-block;
        }

        .lang-toggle {
            display: flex;
            align-items: center;
            background: var(--secondary);
            border: 0px solid var(--border);
            border-radius: 8px;
            padding: 0.5rem;
            cursor: pointer;
            box-shadow: var(--shadow);
            transition: transform 0.2s, box-shadow 0.2s;
            width: 2.5rem;
            justify-content: center;
        }

        .lang-toggle:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }

        .flag-img {
            width: 1.2em;
            height: auto;
            vertical-align: middle;
            margin: 0;
        }

        .chevron {
            display: none;
        }

        .lang-menu {
            position: absolute;
            top: calc(100% + 0.25rem);
            left: 50%;
            transform: translateX(-50%);
            background: var(--background);
            border: 1px solid var(--border);
            border-radius: 8px;
            box-shadow: var(--shadow);
            list-style: none;
            margin: 0;
            padding: 0.25rem 0;
            display: none;
            z-index: 10;
            width: 3rem;
        }

        .lang-menu.open {
            display: block;
        }

        .lang-menu li {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0.25rem 0;
            cursor: pointer;
        }

        .lang-menu li:hover {
            background: var(--hover);
        }

        /*  @media (max-width: 700px) {
            .section-container {
                padding-left: 18px !important;
                padding-right: 18px !important;
            }
        }*/