﻿
:root {
    --navy: #015491;
    --sky-blue: #00AEEF;
    --deep-blue: #005B94;
    --btn-green: #00B050;
    --text-darkblue: #015492;
    --btn-darkblue: #3F4C6B;
    --card-radius: 20px;
    --title-font-size: 3rem;
    --subtitle-font-size: 2.4rem;
    --primary-font-size: 1.5rem;
    --pure-white: #ffffff;
    --subtitle-features-color: #464646;

    body {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        color: var(--text-dark);
    }

    h1 {
        font-size: 3rem;
    }

    h3 {
        font-size: 1.4rem;
    }

    h6 {
        font-size: 1.5rem;
        font-weight: 500;
    }
    /* HERO SECTION: Matches the Blue Gradient and Mascot Overflow */
    /*     .hero-wrap {
                        background: linear-gradient(to bottom, var(--sky-blue) 0%, var(--deep-blue) 100%);
                        color: #fff;
                        padding: 5rem 0 7rem;
                        position: relative;
                        overflow: visible;
                        margin-bottom: 0rem;
                        margin-top: 0rem;
                    } */

    .hero-wrap {
        background-image: url("/images/Blue_BG.jpg");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        color: #fff;
        padding: 5rem 0 7rem;
        position: relative;
    }


    .hero-heading {
        font-size: 3.5rem;
        font-weight: 800;
        line-height: 1.1;
        margin-bottom: 1.5rem;
    }

    .hero-sub {
        font-size: 1.25rem;
        max-width: 600px;
        margin-bottom: 2rem;
        opacity: 0.9;
    }
    /* THE MASCOT: Absolute positioned to "burst" through the layout */
    .hero-mascot-bg {
        width: 100%;
        height: 100%;
        min-height: 300px; /* or whatever looks good */
        background-image: url('~/images/bunny.png');
        background-position: center right; /* stick to right side */
        background-size: contain; /* scale without cropping */
        background-repeat: no-repeat;
    }

    .hero-mascot-wrapper {
        width: 100%; /* fill the column */
        height: auto; /* let height adjust automatically */
        display: flex; /* center the image */
        justify-content: center;
        align-items: center;
        overflow: hidden; /* crop anything overflowing */
        margin: 0 auto; /* center horizontally */
    }

    .hero-mascot {
        width: 100%; /* scale with container width */
        height: auto; /* keep aspect ratio */
        object-fit: contain; /* scale inside box without stretching */
        display: block; /* remove inline spacing issues */
    }

    .features-cointainer-wrap {
        background-image: url("/images/Light_Blue_BG.jpg");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        color: #fff;
        padding: 5rem 0 7rem;
        position: relative;
    }

    .experience-feature-cointainer-wrap {
        text-align: center;
        background-image: url("/images/Blue_BG.jpg");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        color: #fff;
        padding: 5rem 0 7rem;
        position: relative;
    }

    .amazing-features-cointainer-wrap {
        color: darkslategrey;
        background-image: url("/images/Light_Blue_BG.jpg");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        padding: 5rem 0 7rem;
        position: relative;
    }

    .amazing-features-hero-image {
        width: 700px;
    }
    /* BUTTONS: Matches the green and white styles */
    .btn-custom {
        padding: 0.8rem 2rem;
        border-radius: 10px;
        font-weight: 700;
        text-decoration: none;
        display: inline-block;
        transition: transform 0.2s;
    }

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

    .btn-white {
        background-color: white;
        color: var(--navy);
        margin-left: 1rem;
    }


    .btn-darkblue {
        background-color: var(--btn-darkblue);
        color: white;
        margin-left: 1rem;
    }

    .btn-download {
        display: inline-block;
        background: linear-gradient(to bottom, #007bbd 0%, #005a8e 100%); /* Blue gradient */
        color: white;
        padding: 12px 45px;
        border-radius: 8px; /* Rounded corners */
        text-decoration: none;
        font-weight: 600;
        font-size: 16px;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1); /* Subtle shadow */
        border: none;
        cursor: pointer;
    }

    .btn-custom:hover {
        transform: scale(1.05);
        color: inherit;
    }

    .btn-white:hover {
        color: var(--navy);
    }
    /* VALUE PROP CARDS: White cards with icons as per image center */
    .value-card {
        background: white;
        border-radius: var(--card-radius);
        text-align: center;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        height: 100%;
        border: 1px solid #f0f0f0;
        margin: 0px;
        padding: 0.25rem 0 0.5rem 0;
        color: var(--subtitle-features-color);
    }

    .value-icon {
        width: 150px;
        margin: 0px;
        padding: 0px;
    }

    .value-title {
        font-weight: 700;
        font-size: 2rem;
        margin: 0px;
        padding: 1px;
    }

    .value-text {
        font-size: 1.2rem;
        line-height: 1.2;
        font-weight: 500;
        margin: 0px;
        padding: 0.25rem;
    }
    /* APP PROMO CARD (Dark Blue/Gradient Wide Card) */
    .app-promo-card {
        background: white;
        border-radius: var(--card-radius);
        padding: 3rem;
        box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        margin: 4rem 0;
    }
    /* EXPERIENCE CARDS */
    .experience-card {
        text-align: center;
        padding: 0rem;
        margin: 0rem;
        height: 100%;
        transition: transform 0.3s ease;
    }

        .experience-card:hover {
            transform: translateY(-5px);
        }

    .experience-title {
        font-weight: 500;
        font-size: 1.6rem;
        margin: 0px;
        padding: 0 1rem 0 0;
    }

    .experience-text {
        font-size: 1.1rem;
        line-height: 1;
        font-weight: 450;
        margin: 0px;
        padding: 0.25rem 1.5rem 0rem 1.5rem;
    }

    .experience-icon {
        width: 15rem;
        object-fit: contain;
        margin: 0px;
        padding: 0px;
        align-content: center;
    }

    .experience-card-footer {
        padding: 3rem 3rem 0rem 3rem;
        color: var(--secondary-text);
        font-size: 1.4rem;
        line-height: 1.4;
        font-weight: 700;
    }
    /* HOW IT WORKS: Blue Section */
    .how-section {
        background: linear-gradient(to bottom, #00AEEF, #0081C9);
        padding: 5rem 0;
        color: white;
        text-align: center;
    }

    .how-step-img {
        max-width: 200px;
        margin-bottom: 1.5rem;
        border-radius: 15px;
    }
    /* Section Titles */
    .section-title {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 1rem;
        color: var(--text-darkblue);
    }

    .section-subtitle {
        font-size: 1.25rem;
        color: var(--secondary-text);
        max-width: 700px;
        margin: 0 auto 3rem;
    }
    /* Features List */
    .features-list {
        list-style: none;
        font-size: 1.2rem;
        font-weight: 500;
        padding: 0;
        margin: 0;
    }

        .features-list li {
            margin: 0px;
            padding: 0.1rem 0 0.5rem 1.6rem;
            position: relative;
            color: var(--text-darkblue);
            font-size: 1.4rem;
        }

            .features-list li:before {
                content: "★"; /* Unicode star character */
                color: #00B050; /* Green color - matching your existing btn-green */
                font-weight: bold;
                position: absolute;
                left: 0;
                font-size: 1.5rem;
            }

    .coming-soon {
        color: var(--text-darkblue);
        font-size: 1.8rem;
        margin: 2rem 0;
        font-weight: 600;
    }
    /* Video Container */
    .video-container {
        background: var(--pure-white);
        border-radius: 20px;
        padding: 20px;
        box-shadow: 0 15px 35px rgba(0,0,0,0.05);
        max-width: 90%;
        margin: 0 auto;
        border: 1px solid white;
        ;
    }

    .ratio iframe {
        border-radius: 15px;
    }
    /* Social Media Section */
    .social-links {
        display: flex;
        gap: 1.5rem;
        justify-content: center;
        margin-top: 2rem;
    }

    .social-link {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: var(--hero-bg-lavender);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }
    /* Mobile Devices - 500px and below */
    @@media (max-width: 500px) {
        .hero-mascot {
            /*    max-width: 200px;
                position: absolute;
                right: 5px;
                top: -360px;
                filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3)); */
        }

        .hero-heading {
            font-size: 1.5rem;
        }

        .amazing-features-hero-image {
            display: none;
        }

        .features-list li {
            font-size: 1.2rem;
        }
    }
    /* Mobile Devices -  501px to 701px */
    @@media (min-width: 501px) and (max-width: 701px) {
        .hero-mascot {
            /*                 max-width: 400px;
                position: absolute;
                right: -10px;
                top: -50px;
                filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3)); */
        }

        .hero-heading {
            font-size: 1.5rem;
        }

        .amazing-features-hero-image {
            display: none;
        }

        .features-list li {
            font-size: 0.8rem;
        }
    }
    /* Tablet Devices - 701px to 900px */
    @@media (min-width: 701px) and (max-width: 764px) {
        .hero-mascot {
            /*           max-width: 400px;
                position: absolute;
                right: -40px;
                top: -80px;
                filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3)); */
        }

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

        .amazing-features-hero-image {
            display: none;
        }

        .features-list li {
            font-size: 1rem;
        }
    }
    /* Tablet Devices - 701px to 900px */
    @@media (min-width: 765px) and (max-width: 790px) {
        .hero-mascot {
            /*  max-width: 800px;
                position: absolute;
                right: 10px;
                top: -250px;
                filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3)); */
        }

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

        .amazing-features-hero-image {
            width: 300px;
        }

        .features-list li {
            font-size: 1rem;
        }
    }
    /* Tablet Devices - 790px to 900px */
    @@media (min-width: 790px) and (max-width: 900px) {
        .hero-mascot {
            /* max-width: 800px;
                position: absolute;
                right: 10px;
                top: -250px;
                filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3)); */
        }

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

        .amazing-features-hero-image {
            width: 400px;
        }

        .features-list li {
            font-size: 1rem;
        }
    }
    /* Desktop Devices - 901px and above */
    @@media (min-width: 901px) and (max-width: 1100px) {
        .hero-mascot {
            /*   max-width: 1100px;
                position: absolute;
                right: -30px;
                top: -250px;
                filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3)); */
        }

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

        .amazing-features-hero-image {
            width: 560px;
            padding: 0px;
            margin: 0px;
        }

        .features-list li {
            font-size: 1rem;
        }
    }

    @@media (min-width: 1100px) {
        .hero-mascot {
            /*                 max-width: 1400px;
                position: absolute;
                right: 60px;
                top: -360px;
                filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3)); */
        }

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

        .amazing-features-hero-image {
            width: 600px;
            padding: 0px;
            margin: 0px;
        }

        .features-list li {
            font-size: 1.4rem;
        }
    }

