        /* ===== RESET & BASE ===== */
        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #1F9D55;
            --primary-dark: #153d31;
            --primary-light: #e8f5e9;
            --accent: #E8443A;
            --accent-hover: #d33a30;
            --dark: #1a1a2e;
            --dark-text: #1f2937;
            --gray-text: #374151;
            --light-gray: #f3f4f6;
            --lighter-gray: #f9fafb;
            --white: #ffffff;
            --border: #e5e7eb;
            --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
            --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
            --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
            --radius: 12px;
            --radius-lg: 16px;
            --radius-xl: 24px;
            --transition: all 0.3s ease;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            color: var(--dark-text);
            line-height: 1.6;
            overflow-x: hidden;
            background: var(--white);
        }

        .container {
            max-width: 1450px;
            margin: 0 auto;
            padding: 0 30px;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        img {
            max-width: 100%;
        }

        /* ===== ANIMATIONS ===== */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-10px);
            }
        }

        @keyframes pulse {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.05);
            }
        }

        @keyframes progressBar {
            from {
                width: 0;
            }

            to {
                width: 94%;
            }
        }

        @keyframes dotPulse {

            0%,
            100% {
                opacity: 1;
            }

            50% {
                opacity: 0.5;
            }
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }

        /* ===== NAVBAR ===== */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: white;
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid transparent;
            transition: var(--transition);
            /* padding: 16px 0; */
        }

        .navbar.scrolled {
            border-bottom-color: var(--border);
            box-shadow: var(--shadow-sm);
            /* padding: 12px 0; */
        }

        .navbar .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .btn-green .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 1.3rem;
            color: var(--primary);
        }

        .logo-icon {
            /* width: 42px;
            height: 42px;
            background: var(--primary); */
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.1rem;
            font-weight: 800;
            width: 50%;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 32px;
            list-style: none;
        }

        .nav-links a {
            font-size: 0.925rem;
            font-weight: 500;
            color: var(--white);
            transition: var(--transition);
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: var(--transition);
        }

        /* .nav-links a:hover {
            color: var(--primary);
        }

        .nav-links a:hover::after {
            width: 100%;
        } */

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.925rem;
            cursor: pointer;
            transition: var(--transition);
            border: none;
            font-family: inherit;
        }

        .btn-primary {
            background: var(--primary);
            color: white;
        }

        .btn-primary:hover {
            background: #0A2540;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(232, 68, 58, 0.4);
        }

        .btn-green {
            background: var(--primary);
            color: white;
        }

        .btn-green:hover {
            background: var(--primary);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(27, 77, 62, 0.4);
            color: white;
        }

        .btn-outline {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
        }

        .btn-outline:hover {
            background: var(--primary);
            color: white;
        }

        .btn-nav {
            padding: 10px 20px;
            font-size: 0.875rem;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 5px;
            background: none;
            border: none;
        }

        .hamburger span {
            width: 25px;
            height: 2.5px;
            background: var(--dark-text);
            border-radius: 2px;
            transition: var(--transition);
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        /* ===== MOBILE MENU ===== */
        .mobile-menu {
            display: none;
            position: fixed;
            top: 74px;
            left: 0;
            right: 0;
            background: white;
            padding: 24px;
            box-shadow: var(--shadow-lg);
            z-index: 999;
            animation: slideDown 0.3s ease;
        }

        .mobile-menu.active {
            display: block;
        }

        .mobile-menu a {
            display: block;
            padding: 12px 0;
            font-weight: 500;
            color: var(--dark-text);
            border-bottom: 1px solid var(--border);
        }

        .mobile-menu a:last-child {
            border: none;
        }

        .mobile-menu .btn {
            width: 100%;
            justify-content: center;
            margin-top: 50px;
        }

        /* ===== HERO SECTION ===== */
        .hero {
            padding: 140px 0 80px;
            /* background: linear-gradient(135deg, #fafbfc 0%, #f0f4f8 100%); */
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(27, 77, 62, 0.05) 0%, transparent 70%);
            border-radius: 50%;
        }

        .hero .container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .hero-content {
            animation: fadeInLeft 1s ease;
        }

        .hero-content h1 {
            font-size: 3.2rem;
            font-weight: 800;
            line-height: 1.15;
            color: var(--dark);
            margin-bottom: 20px;
        }

        .hero-content h1 .highlight {
            color: var(--primary);
        }

        .hero-content p {
            font-size: 1.1rem;
            color: var(--gray-text);
            margin-bottom: 32px;
            line-height: 1.7;
            max-width: 500px;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            margin-bottom: 48px;
        }

        .hero-stats {
            display: flex;
            gap: 40px;
        }

        .hero-stat {
            text-align: left;
        }

        .hero-stat .number {
            font-size: 2rem;
            font-weight: 800;
            color: var(--gray-text);
            ;
        }

        .hero-stat .label {
            font-size: 0.85rem;
            color: var(--gray-text);
            font-weight: 500;
        }

        /* Hero Cards */
        .hero-visual {
            animation: fadeInRight 1s ease;
            position: relative;
        }

        .hero-cards {
            position: relative;
            height: 550px;
        }

        .hero-visual {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .hero-cards {
            background: #eef1f5;
            padding: 20px;
            border-radius: 30px;
            box-shadow: 0px 25px 50px -12px #00000040;
            max-width: 520px;
            width: 100%;
        }

        .ai-card-main {
            /* background: #ffffff; */
            border-radius: 20px;
            padding: 25px;
            /* box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08); */
        }

        .ai-card-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }

        .ai-card-icon {
            width: 50px;
            height: 50px;
            background: #1f8f4e;
            color: #fff;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
        }

        .ai-card-title {
            font-weight: 600;
            font-size: 18px;
        }

        .ai-card-subtitle {
            font-size: 13px;
            color: #777;
        }

        .match-accuracy {
            margin-top: 15px;
        }

        .match-label {
            display: flex;
            justify-content: space-between;
            font-size: 14px;
            margin-bottom: 8px;
        }

        .match-percentage {
            color: #1f8f4e;
            font-weight: 600;
        }

        .progress-bar {
            width: 100%;
            height: 8px;
            background: #e5e7eb;
            border-radius: 10px;
            overflow: hidden;
        }

        .progress-fill {
            width: 94%;
            height: 100%;
            background: #1f8f4e;
            border-radius: 10px;
        }

        .match-tags {
            display: flex;
            gap: 20px;
            margin-top: 15px;
            font-size: 13px;
            color: #555;
        }

        .match-tag {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .dot {
            width: 6px;
            height: 6px;
            background: #1f8f4e;
            border-radius: 50%;
        }

        .ai-card-small-group {
            display: flex;
            gap: 20px;
            margin-top: 25px;
        }

        .ai-card-small {
            flex: 1;
            background: #ffffff;
            border-radius: 15px;
            padding: 18px;
            text-align: left;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
        }

        .small-icon {
            width: 40px;
            height: 40px;
            background: #0f2a44;
            color: #fff;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 10px;
        }

        .platform-badge {
            margin-top: 25px;
            background: #ffffff;
            border-radius: 50px;
            padding: 12px 20px;
            display: flex;
            justify-content: space-between;
            font-size: 13px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
        }

        .badge-item {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .badge-dot {
            width: 8px;
            height: 8px;
            background: #1f8f4e;
            border-radius: 50%;
        }

        /* .ai-card-main {
            background: white;
            border-radius: var(--radius-lg);
            padding: 24px;
            box-shadow: var(--shadow-xl);
            border: 1px solid var(--border);
            position: absolute;
            top: 0;
            right: 0;
            width: 340px;
            animation: float 6s ease-in-out infinite;
        } */

        .ai-card-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 16px;
        }

        .ai-card-icon {
            width: 44px;
            height: 44px;
            background: var(--primary);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.1rem;
        }

        .ai-card-title {
            font-weight: 700;
            font-size: 1rem;
            color: var(--dark-text);
        }

        .ai-card-subtitle {
            font-size: 0.8rem;
            color: var(--gray-text);
        }

        .match-accuracy {
            margin-bottom: 16px;
        }

        .match-label {
            display: flex;
            justify-content: space-between;
            margin-bottom: 6px;
            font-size: 0.85rem;
            font-weight: 500;
        }

        .match-percentage {
            color: var(--primary);
            font-weight: 700;
            background: var(--primary-light);
            padding: 2px 10px;
            border-radius: 20px;
            font-size: 0.8rem;
        }

        .progress-bar {
            height: 8px;
            background: #e8f5e9;
            border-radius: 10px;
            overflow: hidden;
        }

        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, var(--primary), #2ecc71);
            border-radius: 10px;
            width: 0;
            transition: width 2s ease;
        }

        .progress-fill.animated {
            width: 94%;
        }

        .match-tags {
            display: flex;
            gap: 8px;
            margin-bottom: 16px;
        }

        .match-tag {
            display: flex;
            align-items: center;
            gap: 4px;
            font-size: 0.75rem;
            color: var(--gray-text);
            background: var(--lighter-gray);
            padding: 4px 10px;
            border-radius: 20px;
        }

        .match-tag .dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--primary);
            animation: dotPulse 2s infinite;
        }

        .ai-card-small-group {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }

        .ai-card-small {
            background: white;
            border-radius: var(--radius);
            padding: 16px;
            box-shadow: var(--shadow-md);
            border: 1px solid var(--border);
            text-align: start;
        }

        .ai-card-small .small-icon {
            width: 40px;
            height: 40px;
            /* background: var(--primary); */
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            margin: 13px 0px;
            font-size: 0.95rem;
        }

        .background-white {

            opacity: 1;
            padding: 20px;
            border-radius: 20px;
            top: 48.8px;
            left: 48.8px;
            border-width: 0.8px;
            background: #ffffff;
        }


        .ai-card-small h4 {
            font-size: 0.85rem;
            font-weight: 700;
            margin-bottom: 2px;
        }

        .ai-card-small p {
            font-size: 0.7rem;
            color: var(--gray-text);
        }

        /* .platform-badge {
            position: absolute;
            bottom: 0;
            right: 20px;
            background: white;
            padding: 10px 20px;
            border-radius: 30px;
            box-shadow: var(--shadow-md);
            display: flex;
            align-items: center;
            gap: 16px;
            font-size: 0.8rem;
            border: 1px solid var(--border);
        } */

        .badge-item {
            display: flex;
            align-items: center;
            gap: 6px;
            font-weight: 500;
            color: var(--gray-text);
        }

        .badge-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #2ecc71;
            animation: dotPulse 2s infinite;
        }

        @media (max-width: 992px) {
            .hero-container {
                flex-direction: column;
                gap: 40px;
            }

            .hero-cards {
                max-width: 100%;
            }

            .ai-card-small-group {
                flex-direction: column;
            }

            .platform-badge {
                flex-direction: column;
                gap: 10px;
                text-align: center;
            }
        }


        /* ===== BUILT FOR SECTION ===== */
        .built-for {
            padding: 100px 0;
            background: #F9FAFB;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-header h2 {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 12px;
        }

        .section-header p {
            font-size: 1.05rem;
            color: var(--gray-text);
            max-width: 600px;
            margin: 0 auto;
        }

        .built-for-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
        }

        .built-card {
            background: #EDF3F9;
            border-radius: var(--radius-lg);
            padding: 40px;
            border: 1px solid var(--border);
            transition: var(--transition);
        }

        .built-card:hover {
            border-color: var(--primary);
            box-shadow: var(--shadow-lg);
            transform: translateY(-4px);
        }

        .built-card-icon {
            width: 52px;
            height: 52px;
            /* background: var(--primary); */
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.3rem;
            margin-bottom: 20px;
        }



        .built-card h3 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .built-card>p {
            font-size: 0.9rem;
            color: var(--gray-text);
            margin-bottom: 20px;
        }

        .built-card ul {
            list-style: none;
            padding-left: 0;
        }

        .built-card li {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 0;
            font-size: 0.925rem;
            color: var(--dark-text);
        }

        .built-card li .check {
            width: 20px;
            height: 20px;
            /* background: var(--primary); */
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 0.65rem;
            flex-shrink: 0;
        }

        /* ===== AI FEATURES ===== */
        .ai-features {
            padding: 100px 0;
            background: #fff;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .feature-card {
            background: white;
            border-radius: var(--radius-lg);
            padding: 36px 28px;
            text-align: start;
            border: 1px solid var(--border);
            transition: var(--transition);
            position: relative;
        }

        .feature-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-xl);
            border-color: var(--primary);
        }

        .feature-card-icon {
            width: 60px;
            height: 60px;
            /* background: var(--primary-light); */
            border-radius: 14px;
            display: flex;
            align-self: start;
            /* align-items: center; */
            justify-content: center;
            color: var(--primary);
            font-size: 1.5rem;
            margin: 25px 0px;
            transition: var(--transition);
        }

        /* .feature-card:hover .feature-card-icon {
            background: var(--primary);
            color: white;
        } */

        .feature-card h3 {
            font-size: 1.05rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .feature-card p {
            font-size: 0.875rem;
            color: var(--gray-text);
            line-height: 1.6;
        }

        /* ===== HOW IT WORKS ===== */
        .how-it-works {
            padding: 100px 0;
            background: #F9FAFB;
        }

        .steps-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            position: relative;
        }

        /* .steps-grid::before {
            content: '';
            position: absolute;
            top: 50px;
            left: 20%;
            right: 20%;
            height: 2px;
            background: linear-gradient(90deg, var(--primary), var(--border), var(--primary));
            z-index: 0;
        } */

        .step-card {
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .step-icon-wrapper {
            position: relative;
            width: 80px;
            height: 80px;
            margin: 0 auto 24px;
        }

        /* .step-icon {
            width: 80px;
            height: 80px;
            background: var(--primary-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 1.8rem;
            transition: var(--transition);
        } */

        .step-card:hover .step-icon {
            /* background: var(--primary); */
            /* color: white; */
            transform: scale(1.1);
        }

        .step-number {
            position: absolute;
            top: -5px;
            right: -5px;
            width: 28px;
            height: 28px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            font-weight: 700;
            border: 3px solid white;
        }

        .step-card h3 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .step-card p {
            font-size: 0.9rem;
            color: var(--gray-text);
            max-width: 280px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* ===== ABOUT ===== */
        .about {
            padding: 100px 0;
            background: var(--white);
        }

        /* Middle Line Above About Heading */
        .about-middle-line {
            width: 60px;
            /* Line width */
            height: 4px;
            /* Line thickness */
            background-color: #2e8b57;
            /* Green color (change if needed) */
            margin: 0 auto 20px;
            /* Center align + space below */
            border-radius: 2px;
            /* Slight rounded edges */
        }

        .about-content {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

        .about-content h2 {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 20px;
        }

        .about-content p {
            font-size: 1rem;
            color: var(--gray-text);
            line-height: 1.8;
            margin-bottom: 16px;
        }

        .about-content .legal-text {
            font-size: 0.85rem;
            color: #9ca3af;
            font-style: italic;
        }

        .about-badges {
            display: flex;
            justify-content: center;
            gap: 48px;
            margin-top: 40px;
        }

        .about-badge {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }

        .about-badge-icon {
            width: 277px;
            height: 152px;
            display: flex;
            /* background: white; */
            background: #F9FAFB;
            /* border-radius: 50%; */
            display: flex;
            align-items: center;
            justify-content: space-evenly;
            color: var(--primary);
            font-size: 1.4rem;
            /* box-shadow: var(--shadow-md); */
            /* border: 1px solid var(--border); */
            transition: var(--transition);
            flex-direction: column;
        }

        .about-badge:hover .about-badge-icon {
            transform: translateY(-6px);
            box-shadow: var(--shadow-xl);
            border-color: var(--primary);
        }

        .about-badge span {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--dark-text);
        }

        /* ===== CTA & REGISTER ===== */
        .cta-register {
            padding: 100px 0;
            background: #0A2540;
            position: relative;
            overflow: hidden;
        }

        .cta-register::before {
            content: '';
            position: absolute;
            top: -100px;
            left: -100px;
            width: 400px;
            height: 400px;
            background: #0A2540;
            border-radius: 50%;
        }

        .cta-register::after {
            content: '';
            position: absolute;
            bottom: -100px;
            right: -100px;
            width: 400px;
            height: 400px;
            background: #0A2540;
            border-radius: 50%;
        }

        .cta-content {
            text-align: center;
            margin-bottom: 48px;
            position: relative;
            z-index: 1;
        }

        .cta-content h2 {
            font-size: 2.4rem;
            font-weight: 800;
            color: white;
            margin-bottom: 16px;
        }

        .cta-content p {
            font-size: 1.05rem;
            color: rgba(255, 255, 255, 0.7);
            max-width: 550px;
            margin: 0 auto;
        }

        .register-form-container {
            max-width: 480px;
            margin: 0 auto;
            background: white;
            border-radius: var(--radius-xl);
            padding: 40px;
            box-shadow: var(--shadow-xl);
            position: relative;
            z-index: 1;
        }

        .register-form-container h3 {
            text-align: center;
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 28px;
            color: var(--dark);
        }

        .form-group {
            margin-bottom: 16px;
        }

        .form-group input,
        .form-group select {
            width: 100%;
            padding: 14px 18px;
            border: 1.5px solid var(--border);
            border-radius: 10px;
            font-size: 0.95rem;
            font-family: inherit;
            transition: var(--transition);
            background: var(--lighter-gray);
            color: var(--dark-text);
        }

        .form-group input::placeholder {
            color: #9ca3af;
        }

        .form-group input:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--primary);
            background: white;
            box-shadow: 0 0 0 4px rgba(27, 77, 62, 0.1);
        }

        .form-group select {
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 16px center;
            cursor: pointer;
            color: #9ca3af;
        }

        .form-group select:has(option:checked:not([value=""])) {
            color: var(--dark-text);
        }

        .btn-submit {
            width: 100%;
            padding: 16px;
            font-size: 1rem;
            border-radius: 10px;
            margin-top: 8px;
        }

        .form-success {
            display: none;
            text-align: center;
            padding: 32px 0;
        }

        .form-success .success-icon {
            width: 72px;
            height: 72px;
            background: var(--primary-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 2rem;
            margin: 0 auto 16px;
        }

        .form-success h4 {
            font-size: 1.3rem;
            color: var(--primary);
            margin-bottom: 8px;
        }

        .form-success p {
            color: var(--gray-text);
            font-size: 0.95rem;
        }

        /* --- Footer Container Settings --- */
        .footer {
            background-color: #1e1e24;
            /* Dark background - change as needed */
            color: #ffffff;
            padding: 50px 0 20px;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }


        /* --- Main 3-Column Layout --- */
        .footer-main {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            /* Allows graceful wrapping on smaller screens */
            gap: 30px;
            margin-bottom: 40px;
        }

        /* 1. Left: Logo Section */
        .footer-logo {
            flex: 1;
            display: flex;
            align-items: center;
            gap: 12px;
        }



        /* 2. Middle: Text Section */
        .footer-center {
            flex: 2;
            /* Gives the text section a bit more room */
            text-align: center;
        }

        .footer-center p {
            margin: 5px 0;
            font-size: 14px;
            line-height: 1.6;
            color: #a1a1aa;
            /* Softer text color for reading */
        }

        .footer-center p:first-child {
            /* font-size: 18px; */
            /* font-weight: bold; */
            color: var(--gray-text);
        }

        /* 3. Right: Contact Section */
        .footer-contact {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            /* Aligns text to the right side */
            gap: 12px;
        }

        .footer-contact a {
            color: #e4e4e7;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 15px;
            transition: color 0.3s ease;
        }

        .footer-contact a:hover {
            color: #3b82f6;
            /* Hover color */
        }

        .contact-icon {
            font-size: 16px;
        }

        /* --- Bottom Copyright Line --- */
        .footer-bottom {
            text-align: center;
            border-top: 1px solid #3f3f46;
            padding-top: 20px;
            font-size: 13px;
            color: #71717a;
        }

        /* --- Mobile Responsiveness --- */
        @media (max-width: 850px) {
            .footer-main {
                flex-direction: column;
                text-align: center;
                gap: 40px;
            }

            .footer-logo {
                justify-content: center;
            }

            .footer-contact {
                align-items: center;
                /* Centers the contact links on mobile */
            }
        }

        /* ===== FOOTER ===== */
        .footer {
            background: white;
            border-top: 1px solid var(--border);
            padding: 48px 0 24px;
        }

        .footer-main {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 32px;
            flex-wrap: wrap;
            gap: 24px;
        }

        /* 
        .footer-logo {
            display: flex;
            align-items: center;
            gap: 10px;
        } */

        .footer-logo .logo-icon {
            width: 38px;
            height: 38px;
            font-size: 0.95rem;
        }



        .footer-brand img {
            width: 50%;
        }

        .footer-center {
            font-weight: 600;
            color: var(--dark-text);
        }

        .footer-contact {
            display: flex;
            flex-direction: column;
            gap: 8px;
            align-items: flex-end;
        }

        .footer-contact a {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.875rem;
            color: var(--gray-text);
            transition: var(--transition);
        }

        .footer-contact a:hover {
            color: var(--primary);
        }

        .footer-contact a .contact-icon {
            color: var(--primary);
        }

        .phone-outline {
            color: white;
            /* background color */
            -webkit-text-stroke: 1px var(--primary);
        }


        .footer-bottom {
            text-align: center;
            padding-top: 24px;
            border-top: 1px solid var(--border);
            font-size: 0.85rem;
            color: var(--gray-text);
        }

        /* ===== SCROLL TO TOP ===== */
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 48px;
            height: 48px;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            box-shadow: var(--shadow-lg);
            opacity: 0;
            transform: translateY(20px);
            transition: var(--transition);
            z-index: 900;
        }

        .scroll-top.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .scroll-top:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .hero .container {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .hero-content h1 {
                font-size: 2.6rem;
            }

            .hero-visual {
                display: flex;
                justify-content: center;
            }

            .hero-cards {
                height: 560px;
                width: 100%;
                max-width: 400px;
            }

            .ai-card-main {
                width: 100%;
                /* max-width: 340px; */
                right: auto;
            }

            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .steps-grid::before {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .hero {
                padding: 120px 0 60px;
            }

            .hero-content h1 {
                font-size: 2.2rem;
            }

            .hero-stats {
                gap: 24px;
            }

            .hero-stat .number {
                font-size: 1.6rem;
            }

            .hero-cards {
                height: 50%;
            }

            .section-header h2 {
                font-size: 1.8rem;
            }

            .built-for-grid {
                grid-template-columns: 1fr;
            }

            .built-card {
                padding: 32px;
            }

            .features-grid {
                grid-template-columns: 1fr;
                max-width: 400px;
                margin: 0 auto;
            }

            .steps-grid {
                grid-template-columns: 1fr;
                gap: 48px;
            }

            .about-badges {
                gap: 24px;
                flex-wrap: wrap;
            }

            .cta-content h2 {
                font-size: 1.8rem;
            }

            .register-form-container {
                padding: 32px 24px;
                margin: 0 auto;
            }

            .footer-main {
                flex-direction: column;
                text-align: center;
            }

            .footer-contact {
                align-items: center;
            }

            .platform-badge {
                display: none;
            }
        }

        @media (max-width: 480px) {
            .hero-content h1 {
                font-size: 1.9rem;
            }

            .hero-container {
                padding-top: 1rem;
            }

            .match-tags {
                display: flex;
                align-items: center;

                align-content: center;
                justify-content: center;
                flex-wrap: nowrap;
            }

            .match-tag {
                padding: 0;
            }

            .hero-content p {
                font-size: 1rem;
            }

            .hero-buttons {
                flex-direction: column;
            }

            .hero-buttons .btn {
                justify-content: center;
            }

            .hero-stats {
                flex-wrap: wrap;
                gap: 20px;
            }

            .hero-cards {
                height: 50%;
                padding: 0;
            }

            .ai-card-main {
                padding: 20px;
            }

            .ai-card-small {
                padding: 15px 25px;
            }

            .ai-card-small-group {
                gap: 8px;
            }

            .section-header h2 {
                font-size: 1.5rem;
            }

            .about-content h2 {
                font-size: 1.5rem;
            }

            .cta-content h2 {
                font-size: 1.5rem;
            }
        }

        .form-success {
            display: none;
            text-align: center;
        }

        button,
        a,
        .btn,
        .cursor-pointer {
            cursor: pointer;
        }
        .custom-marquee-container {
    width: 100%;
    background-color: #000; /* Change to your preferred brand color */
    color: #fff;
    padding: 10px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    z-index: 10;
    margin-bottom: 1rem;

}

.custom-marquee-content {
    display: inline-block;
    padding-left: 100%;
    animation: marquee-scroll 20s linear infinite;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.5px;
    cursor: pointer;
    
}

@keyframes marquee-scroll {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(-100%, 0);
    }
}
.error {
  color: #dc3545;
  font-size: 12px;
  display: block;
  margin-top: 4px;
}

.input-error {
  border-color: #dc3545 !important;
}
/* Pause the marquee when a user hovers over it */
.custom-marquee-container:hover .custom-marquee-content {
    animation-play-state: paused;
}
