 /* Global Styles */
    :root {
        --primary-red: #BB262C;
        --primary-blue: #005596;
        --primary-yellow: #FCEE35;
        --light-gray: #f5f5f5;
        --dark-gray: #333333;
        --white: #ffffff;
    }
    
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    body {
        font-family: 'Open Sans', sans-serif;
        line-height: 1.6;
        color: var(--dark-gray);
    }
    
    h1, h2, h3, h4 {
        font-family: 'Montserrat', sans-serif;
        font-weight: 900;
    }
    
    b, strong{
        font-weight: 700;
    }
    .container {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .flex-container {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .btn {
        display: inline-block;
        padding: 12px 30px;
        background-color: var(--primary-yellow);
        color: #0E0E0E;
        text-decoration: none;
        border-radius: 50px;
        font-weight: 600;
        text-align: center;
        transition: all 0.3s ease;
        border: none;
        cursor: pointer;
        font-size: 18	px;
    }
    #features-btn {
        margin-bottom: 15px;
    }
    
    .btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
    
    .section-padding {
        padding: 100px 0;
    }
    
    .text-center {
        text-align: center;
    }
    
    /* Header Styles */
    header {
        background-color: var(--white);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
    }
    
    .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
    }
    
    .logo {
        height: 60px;
    }
    
    .nav-links {
        display: flex;
        list-style: none;
        align-items: center;
        text-align: center;
    }
    
    .nav-links li {
        margin-left: 30px;
    }
    
    .nav-links a {
        text-decoration: none;
        color: var(--dark-gray);
        font-weight: 600;
        transition: color 0.3s ease;
    }
    
    .nav-links a:hover {
        color: var(--primary-red);
    }
    
    .mobile-menu {
        display: none;
        font-size: 24px;
        cursor: pointer;
    }
    
    /* Hero Section */
    .hero-wrapper{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .hero {
        background: linear-gradient(rgba(0, 85, 150, 0.4), rgba(0, 85, 150, 0.4)), url('https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80') no-repeat center center/cover;
        height: 100vh;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: left;
        color: var(--white);
        margin: 90px 0 90px 0;
    }
    
    .hero-content {
        max-width: 800px;
    }
    .hero-btn {
        margin: 0 15px;
    }
    .hero h1 {
        font-size: 3.5rem;
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .hero h2 {
        font-size: 1.5rem;
        margin-bottom: 20px;
        line-height: 1.2;
    }
    
    .hero p {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
    
    .app-badge {
        height: 50px;
        /* margin-top: 20px; */
        transition: transform 0.3s ease;
    }
    
    .app-badge:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
    
    /* Features Section */
    .features {
        background-color: var(--white);
    }
    
    .section-title {
        font-size: 2.5rem;
        margin-bottom: 20px;
        color: var(--primary-blue);
    }
    
    .section-subtitle {
        font-size: 1.2rem;
        margin-bottom: 50px;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-top: 50px;
    }
    
    .feature-card {
        background-color: var(--light-gray);
        border-radius: 10px;
        padding: 30px;
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }
    
    .feature-icon {
        font-size: 70px;
        color: var(--primary-blue);
        margin-bottom: 20px;
    }
    
    .feature-card h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
        color: var(--primary-blue);
    }
    
    /* AI Section */
    .ai-section {
        background-color: var(--light-gray);
    }
    
    .ai-container {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
    }
    .ai-container > p {
        font-size: 1.25rem;
        padding: 0 0 10px 0;
    }
    
    .ai-content {
        flex: 1;
        min-width: 300px;
        padding-right: 30px;
    }
    
    .ai-image {
        flex: 1;
        min-width: 300px;
        text-align: center;
    }
    
    .ai-mascot {
        max-width: 300px;
        animation: steeringWheel 3s infinite ease-in-out;
    }
    
    @keyframes steeringWheel {
        0%, 100% { transform: rotate(0deg); }
        25% { transform: rotate(30deg); }
        75% { transform: rotate(-30deg); }
    }
    
    .ai-feature {
        display: flex;
        align-items: flex-start;
        margin-bottom: 30px;
    }
    
    .ai-feature-icon {
        font-size: 50px;
        color: var(--primary-red);
        margin-right: 20px;
        min-width: 40px;
    }
    
    /* About Section */
    .about {
        background-color: var(--white);
    }
    
    .about-container {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
    }
    
    .about-content {
        flex: 1;
        min-width: 300px;
    }
    
    .about-image {
        flex: 1;
        min-width: 300px;
        text-align: center;
    }
    
    .about-image img {
        max-width: 100%;
        border-radius: 10px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }
    
    .stats-container {
        display: flex;
        flex-wrap: wrap;
        margin-top: 40px;
        justify-content: space-between;
    }
    
    .stat-item {
        flex: 1;
        min-width: 150px;
        text-align: center;
        margin: 15px;
    }
    
    .stat-number {
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--primary-red);
        margin-bottom: 10px;
    }
    
    /* Testimonials Section */
    .testimonials {
        background-color: var(--light-gray);
    }
    
    .testimonial-slider {
        max-width: 800px;
        margin: 0 auto;
        position: relative;
    }
    
    .testimonial-card {
        background-color: var(--white);
        padding: 40px;
        border-radius: 10px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
        margin: 20px;
        text-align: center;
    }
    
    .testimonial-quote {
        font-style: italic;
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
    
    .testimonial-author {
        font-weight: 600;
        color: var(--primary-blue);
    }
    
    /* CTA Section */
    .cta {
        background: linear-gradient(to right, var(--primary-blue), var(--primary-red));
        color: var(--white);
        text-align: center;
    }
    
    .cta h2 {
		font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .cta p {
        margin-bottom: 30px;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .cta-buttons {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
    }
    .cta-buttons a{
        display: flex;
        height: 100%;
        margin: 0 10px 0 10px;
        align-items: center;
    }
    
    .btn-secondary {
        background-color: var(--white);
        color: var(--primary-blue);
        text-align: center;
        height: 50%;
        /* border: 2px solid; */
    }
    
    /* Footer */
    footer {
        background-color: var(--dark-gray);
        color: var(--white);
        padding: 60px 0 30px;
    }
    
    .footer-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    
    .footer-column {
        flex: 1;
        min-width: 200px;
        margin-bottom: 30px;
    }
    
    .footer-column h3 {
        margin-bottom: 20px;
        font-size: 1.2rem;
    }
    
    .footer-links {
        list-style: none;
    }
    
    .footer-links li {
        margin-bottom: 10px;
    }
    
    .footer-links a {
        color: var(--white);
        text-decoration: none;
        transition: color 0.3s ease;
    }
    
    .footer-links a:hover {
        color: var(--primary-yellow);
    }
    
    .footer-bottom {
        text-align: center;
        margin-top: 40px;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    /* Privacy Policy Page Specific CSS */
    .privacy-policy{
        display: flex;
        flex-direction: column;
        margin: 90px 0 90px 0;
        width: 60%;
    }
    .privacy-policy h1{
        padding: 25px 0 0 0;
    }
    .privacy-subtitle {
        font-size: 1.4rem;
        margin: 0 0 10px 0;
    }
    .privacy-wrapper{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    /* Responsive Design */
    @media (max-width: 768px) {
        .nav-links {
            display: block;
            position: absolute;
            margin: 0;
            padding: 0;
            /* top: -350px; */
            left: 0;
            width: 100vw;
            background: #f0f0f0;    
            z-index: 3;
              /* hidden state */
            transform: translateY(-100%);
            opacity: 0;
            pointer-events: none;         /* prevents accidental clicks   */
            transition: transform .75s ease, opacity .75s ease;  /* GPU‑friendly */
        }
        .nav-links.open {     
            margin-top: 40px;          /* shown state */
            transform: translateY(0);
            opacity: 1;
            pointer-events: auto;         /* re‑enable clicking           */
        }
        /* simple variant without extra class for closing ------------ */
        .nav-links:not(.open) {
            /* keeps it hidden when .open is removed */
            transform: translateY(-100%);
            opacity: 0;
        }
        .nav-links li{
            text-align: center;
            padding: 15px 0 15px 0;
            margin: 0;
        }
        .nav-links li a {
            text-align: center;
            font-size: 20px;
            flex: grow;
        }
        .mobile-menu {
            display: block;
        }
        .hero h1 {
            font-size: 2.5rem;
        }
        
        .section-title {
            font-size: 2rem;
        }
        
        .ai-content, .about-content {
            padding-right: 0;
            margin-bottom: 30px;
        }
        .section-padding {
            padding: 60px 0;
        }
        .privacy-policy{
            width: 90%;
        }
        .privacy-policy h1{
            text-align: center;
            font-size: 1.65rem;
            padding: 25px 0 0 0;
        }
        .privacy-subtitle {
            font-size: 1.1rem;
            margin: 0 0 5px 0;
        }
        .cta-buttons a{
            margin-bottom: 10px;
        }
    }

    @media (max-width: 425px) {
        .ai-image img {
            width: 50%;
        }
    }
    .iframe-holder{
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px;
        width: 100%;
    }
    
