html {
    scroll-behavior: smooth;
}


/* Initial navbar style */
#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    background-color: transparent;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05); /* Optional default border */
}

    #navbar.scrolled {
        background-color: #ffffff;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    }

    /* Style after scroll */
    #navbar.scrolled {
        background-color: white; /* Or #f6f4ef if that matches your style */
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    }

.cta-button:hover {
    background-color: #f7a642;
    transform: translateY(-1px);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}


body {
    background-color: #f2f2f2; /* outer background */
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.container {
    background-color: #fefaf5;
    max-width: 960px;
    margin: 2rem auto;
    padding: 3rem 4rem;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
}

.site-header {
    height: 64px;
    display: flex;
    align-items: center;
    background: #fff;
    padding: 0 1.5rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 10;
}

.header-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    max-height: 55px;
    display: block;
}

.nav-links a {
    margin-left: 1.5rem;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.2s ease;
}

    .nav-links a:hover {
        color: #fca94c;
    }

.btn.small {
    padding: 0.4rem 0.9rem;
    font-size: 0.9rem;
    background-color: #fca94c;
    color: white;
    border-radius: 5px;
}


.hero {
    text-align: left;
    margin-bottom: 3rem;
}

    .hero h1 {
        margin-top: 0px;
        font-size: 2.5rem;
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 1rem;
        max-width: 520px;
    }

    .hero p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

.btn {
    display: inline-block;
    background-color: #fca94c;
    color: #fff;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
}

h2 {
    font-size: 1.8rem;
    margin-top: 0px;
    line-height: 1.2; /* Tighter than the default (~1.4–1.6) */
}

.section {
    margin-bottom: 3rem;
}

    .section p {
        color: #828282;
    }

    .section .vision h2 {
        margin-top: 0px;
        display: block;
        margin-left: auto;
        margin-right: auto;
        text-align: left;
        max-width: 400px;
        font-size: 1.8rem;
        color: #fca644;
        margin-bottom: 1rem;
    }

    .section .vision img {
        display: block;
        margin-left: auto;
        margin-right: auto;
        width: 50%;
        max-width: 250px;
    }


.how-it-works {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 1em;
}

.steps {
    flex: 1;
    min-width: 250px;
}

    .steps h4 {
        font-weight: 600;
        margin-bottom: 0.25rem;
    }

    .steps p {
        color: #828282;
    }

.mascot {
    flex: 1;
    text-align: center;
}

    .mascot img {
        margin-top: -70px;
        max-width: 350px;
    }

.caption {
    font-size: 0.9rem;
    margin-top: 0.5rem;
    color: #555;
}

.benefits {
    padding: 2rem 0;
}

    .benefits h2 {
        text-align: left;
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.benefit {
    flex: 1 1 calc(33.333% - 2rem); /* 3 columns minus the gap */
    max-width: calc(33.333% - 2rem);
    box-sizing: border-box;
    padding: 1.5rem;
    border-radius: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: default;
}
    .benefit:hover {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        transform: translateY(-4px);
        background-color: #fff;
    }

    .benefit img {
        max-width: 240px;
        height: auto;
        border-radius: 5px;
        margin-bottom: 1rem;
    }

    .benefit h4 {
        font-weight: 600;
        margin: 0.5rem 0;
    }

    .benefit p {
        font-size: 0.95rem;
        color: #828282;
    }

.testimonials {
    padding: 3rem 1rem;
    text-align: left;
}

    .testimonials h2 {
        margin-top: 0px;   
        font-size: 1.8rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
    }

    .testimonials .subtitle {
        font-style: italic;
        color: #888;
        margin-bottom: 2rem;
    }

.testimonial-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.testimonial-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    max-width: 225px;
    flex: 1;
    min-width: 225px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    text-align: left;
}

    .testimonial-card .quote {
        font-style: italic;
        font-size: 1rem;
        margin-bottom: 1.5rem;
        color: #222;
    }

.author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

    .author img {
        width: 35px;
        height: 35px;
        border-radius: 50%;
        object-fit: cover;
    }

.name {
    font-size: 0.85rem;
    font-weight: 600;
    color: #000;
}

.title {
    font-size: 0.65rem;
    color: #777;
}

.vision-hero {
    background-color: #fefaf5;
    padding: 3rem 1.5rem;
    text-align: center;
    margin-bottom: 2rem;
}

.vision-hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.vision-logo {
    width: 90px;
    margin-bottom: 1.5rem;
    animation: pulse 2.5s infinite;
}

.vision-hero .headline {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.vision-hero .vision-text {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 2rem;
}

/* Hidden by default */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    transition-delay: 0.3s; /* ? Add delay here */
}


    /* When revealed */
    .reveal-on-scroll.revealed {
        opacity: 1;
        transform: translateY(0);
    }


.statement {
    text-align: center;
    color: #fca644
}

.footer-centered {
    background-color: #fff;
    padding: 1.5rem 1rem;
    border-top: 1px solid #eee;
    font-size: 0.9rem;
    text-align: center;
    color: #333;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.footer-logo-icon {
    height: 80px;
}

.footer-text {
    font-weight: 500;
}

.footer-social-icons a {
    margin: 0 0.5rem;
    display: inline-block;
}

.footer-social-icons img {
    height: 50px;
    width: 50px;
    opacity: 0.85;
    transition: opacity 0.2s;
}

    .footer-social-icons img:hover {
        opacity: 1;
    }

.footer-bottom-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.8rem;
    color: #777;
}

.footer-links a {
    margin: 0 0.5rem;
    text-decoration: none;
    color: #555;
}

    .footer-links a:hover {
        text-decoration: underline;
    }


@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.10);
        opacity: 0.95;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .benefit {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 2rem 16px;
    }
}

@media (max-width: 768px) {
    .testimonial-grid {
        flex-direction: column;
        align-items: center;
    }
}


@media (max-width: 768px) {
    .benefits-grid {
        flex-direction: column;
        align-items: center;
    }
}


@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .how-it-works {
        flex-direction: column;
        align-items: center;
    }
}
