
:root {
    --deep-navy-blue: #0A192F;
    --royal-blue: #1A365D;
    --bright-yellow: #FACC15;
    --white: #FFFFFF;
    --light-sky-blue: #E0F2FE;
    --whatsapp-green: #25D366;
    --text-color: #4B5563;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Poppins', sans-serif; color: var(--text-color); background: var(--white); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-padding { padding: 80px 0; }
.text-center { text-align: center; }
.text-white { color: white; }
.text-yellow { color: var(--bright-yellow); }
.text-sky-blue { color: var(--light-sky-blue); }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 24px; font-weight: 600; border-radius: 8px; transition: 0.3s; cursor: pointer; }
.bright-yellow { background: var(--bright-yellow); color: var(--deep-navy-blue); }
.bright-yellow:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(250, 204, 21, 0.3); }
.navy-blue { background: var(--deep-navy-blue); color: white; }
.navy-blue:hover { background: var(--royal-blue); }
.wa-green { background: var(--whatsapp-green); color: white; }
.wa-green:hover { background: #1EBE5D; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3); }
.btn-outline-navy-blue { border: 2px solid var(--deep-navy-blue); color: var(--deep-navy-blue); }
.btn-outline-navy-blue:hover { background: var(--deep-navy-blue); color: white; }

/* Navbar */
.navbar-area { position: fixed; width: 100%; top: 0; z-index: 1000; background: rgba(10, 25, 47, 0.95); backdrop-filter: blur(10px); padding: 15px 0; transition: 0.3s; border-bottom: 1px solid rgba(255,255,255,0.1); }
.navbar-container { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; flex-direction: column; color: white; }
.logo a { font-size: 1.5rem; font-weight: 800; }
.tagline { font-size: 0.75rem; color: var(--bright-yellow); letter-spacing: 2px; }
.nav-links ul { list-style: none; display: flex; gap: 25px; }
.nav-links a { color: white; font-weight: 500; font-size: 0.95rem; transition: 0.3s; }
.nav-links a:hover { color: var(--bright-yellow); }
.nav-buttons { display: flex; gap: 15px; }
.mobile-menu-icon { display: none; color: white; font-size: 1.5rem; cursor: pointer; }

/* Utility */
.hero-badge { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); padding: 8px 16px; border-radius: 20px; color: white; font-weight: 500; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.trust-cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.trust-card-full { background: #F8FAFC; padding: 30px; border-radius: 16px; text-align: center; border-bottom: 4px solid var(--bright-yellow); transition: 0.3s; }
.trust-card-full:hover { transform: translateY(-10px); box-shadow: 0 10px 20px rgba(0,0,0,0.05); }

/* Programs */
.program-cards-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.program-card { background: white; border-radius: 16px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.05); border: 1px solid #E5E7EB; text-align: left; transition: 0.3s; }
.program-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.program-card-image { width: 100%; height: 250px; object-fit: cover; }
.program-card-content { padding: 30px; }
.program-card h3 { color: var(--deep-navy-blue); margin-bottom: 10px; font-size: 1.4rem; }

/* Floating Buttons */
.floating-contact-buttons { position: fixed; bottom: 30px; right: 30px; z-index: 999; display: flex; gap: 15px; }
.floating-button { width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; box-shadow: 0 10px 20px rgba(0,0,0,0.2); }

@media (max-width: 992px) {
    .nav-links, .nav-buttons { display: none; }
    .mobile-menu-icon { display: block; }
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-badges, .hero-cta-buttons { justify-content: center; }
    .trust-cards-grid { grid-template-columns: repeat(2, 1fr); }
    .program-cards-grid { grid-template-columns: 1fr; }
    .nav-links.mobile-menu-active { display: flex; position: absolute; top: 100%; left: 0; width: 100%; background: var(--deep-navy-blue); padding: 20px; flex-direction: column; }
    .nav-links.mobile-menu-active ul { flex-direction: column; gap: 15px; }
}
@media (max-width: 768px) {
    .trust-cards-grid { grid-template-columns: 1fr; }
}
/* =========================================================
   NEW UPGRADED STYLES (HERO, STATS, & PREMIUM FOOTER) 
   ========================================================= */

/* Upgraded Hero Section */
.premium-hero {
    position: relative;
    padding-top: 160px;
    padding-bottom: 120px;
    background: linear-gradient(135deg, #0A192F 0%, #1A365D 100%);
    overflow: hidden;
}

.premium-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(250, 204, 21, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-headline {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.hero-cta-buttons {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    align-items: center;
}

.btn-outline-white {
    border: 2px solid white;
    color: white;
    background: transparent;
    padding: 12px 24px;
}

.btn-outline-white:hover {
    background: white;
    color: var(--deep-navy-blue);
}

.pulse-button {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(250, 204, 21, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(250, 204, 21, 0); }
    100% { box-shadow: 0 0 0 0 rgba(250, 204, 21, 0); }
}

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

.image-backdrop {
    position: absolute;
    top: 15px;
    left: 15px;
    right: -15px;
    bottom: -15px;
    background: var(--bright-yellow);
    border-radius: 20px;
    z-index: -1;
}

.hero-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border: 4px solid white;
}

.floating-stat-card {
    position: absolute;
    bottom: -20px;
    left: -20px;
    z-index: 10;
    background: white;
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 15px;
    animation: float 3s ease-in-out infinite;
}

.stat-icon i {
    font-size: 2rem;
    color: var(--bright-yellow);
}

.stat-info strong {
    display: block;
    color: var(--deep-navy-blue);
    font-size: 1.2rem;
}

.stat-info span {
    color: #64748b;
    font-size: 0.85rem;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Decorative Wave Divider */
.hero-wave {
    position: absolute;
    bottom: -1px; /* Prevents gap */
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}
.hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

/* Academy Stats Strip (Extended Front Page) */
.stats-strip {
    background: white;
    padding: 40px 0 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.stat-item i {
    font-size: 2.5rem;
    color: var(--light-sky-blue);
    margin-bottom: 10px;
    transition: 0.3s;
}

.stat-item:hover i {
    color: var(--bright-yellow);
    transform: scale(1.1);
}

.stat-item h3 {
    font-size: 2rem;
    color: var(--deep-navy-blue);
    margin: 5px 0;
}

.stat-item p {
    color: #64748b;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* Trust Cards Enhancement */
.trust-card-full {
    background: white;
    border: 1px solid #e2e8f0;
    border-bottom: 4px solid var(--bright-yellow);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.icon-circle {
    width: 70px;
    height: 70px;
    background: var(--light-sky-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

/* =========================================================
   PREMIUM MULTI-COLUMN FOOTER 
   ========================================================= */
.site-footer {
    background: var(--deep-navy-blue);
    color: #cbd5e1;
    font-family: 'Poppins', sans-serif;
    border-top: 5px solid var(--bright-yellow);
}

.footer-top {
    padding: 80px 0 50px;
}

.footer-grid-layout {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1fr;
    gap: 40px;
}

.footer-brand .footer-logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    margin-bottom: 5px;
}

.footer-tagline {
    color: var(--bright-yellow);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-desc {
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.social-links a:hover {
    background: var(--bright-yellow);
    color: var(--deep-navy-blue);
    transform: translateY(-3px);
}

.site-footer h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.site-footer h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--bright-yellow);
    border-radius: 2px;
}

.footer-links ul, .footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #cbd5e1;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a i {
    font-size: 0.7rem;
    color: var(--bright-yellow);
}

.footer-links a:hover {
    color: var(--bright-yellow);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-contact i {
    color: var(--bright-yellow);
    font-size: 1.2rem;
    margin-top: 4px;
}

.footer-contact a {
    color: #cbd5e1;
    transition: 0.3s;
}

.footer-contact a:hover {
    color: white;
}

.footer-cta p {
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.w-100 {
    width: 100%;
}

.footer-bottom {
    background: #061122; /* Slightly darker than navy */
    padding: 25px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.legal-links a {
    color: #cbd5e1;
}

.legal-links a:hover {
    color: white;
}

.legal-links .divider {
    margin: 0 10px;
    color: #334155;
}

/* Responsive Fixes for New Layouts */
@media (max-width: 1024px) {
    .footer-grid-layout {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero-headline {
        font-size: 2.5rem;
    }
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    .footer-grid-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .bottom-flex {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .hero-wave svg {
        height: 30px;
    }
    .hero-cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    .hero-cta-buttons .btn {
        width: 100%;
    }
    .floating-stat-card {
        display: none; /* Hide on small screens for cleaner look */
    }
}
/* =========================================================
   MOBILE VIEW PREMIUM FIXES (App-Like Feel)
   ========================================================= */
@media (max-width: 768px) {
    /* Make Hero Section look amazing on phone */
    .premium-hero {
        padding-top: 120px;
        padding-bottom: 80px;
        text-align: center;
    }
    .hero-headline {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    .hero-subheading {
        font-size: 1.1rem;
    }
    .hero-badges {
        justify-content: center;
    }
    .hero-cta-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    .hero-cta-buttons .btn {
        width: 100%;
        font-size: 1.1rem;
        padding: 15px;
    }
    .hero-image-wrapper {
        margin-top: 30px;
    }
    
    /* Stats Strip for Mobile */
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    .stat-item h3 {
        font-size: 1.5rem;
    }
    
    /* Center align headings on mobile */
    .section-heading {
        font-size: 2rem !important;
        line-height: 1.3;
    }
    
    /* Add padding to all sections for breathing room */
    .section-padding {
        padding: 60px 0;
    }
    
    /* Fix Page Specific Heros */
    .page-hero {
        padding: 120px 0 60px 0 !important;
        text-align: center;
    }
    .page-hero h1 {
        font-size: 2.2rem !important;
    }
}

/* Animations for premium feel */
.fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* =========================================================
   ULTRA PREMIUM HOME PAGE & RESPONSIVENESS FIXES
   ========================================================= */

/* Typography & Colors */
.text-gradient-yellow {
    background: linear-gradient(to right, #FACC15, #fef08a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.text-navy { color: var(--deep-navy-blue); }
.bg-light-gray { background-color: #F3F4F6; }
.bg-white { background-color: #FFFFFF; }
.bg-light-sky-blue { background-color: var(--light-sky-blue); }
.mb-50 { margin-bottom: 50px; }
.mt-40 { margin-top: 40px; }
.mt-20 { margin-top: 20px; }
.w-100 { width: 100%; }

.subtitle {
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}
.section-heading {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}
.section-desc {
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 30px;
}
.section-desc.centered { margin: 0 auto; max-width: 600px; }

/* Buttons */
.btn-large {
    padding: 15px 32px;
    font-size: 1.1rem;
}

/* Image & Shadow Enhancements */
.hero-image-main {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 4px solid rgba(255,255,255,0.1);
    position: relative;
    z-index: 2;
}
.image-backdrop-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(250, 204, 21, 0.4) 0%, transparent 70%);
    z-index: 1;
    filter: blur(40px);
}
.glass-effect {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.5);
}

/* Overlapping Stats Strip */
.stats-overlap-section {
    position: relative;
    padding-bottom: 80px;
    z-index: 10;
}
.elevated-stats {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    padding: 40px 20px;
    margin-top: -60px; /* Pulls it up over the wave */
    position: relative;
}

/* Features List (About Preview) */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}
.feature-icon {
    background: var(--light-sky-blue);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--royal-blue);
    font-size: 1.2rem;
    flex-shrink: 0;
}
.feature-text h4 {
    color: var(--deep-navy-blue);
    margin-bottom: 5px;
    font-size: 1.1rem;
}
.feature-text p {
    font-size: 0.95rem;
    margin: 0;
}

/* Image Reveal Wrapper */
.image-reveal-wrapper {
    position: relative;
}
.experience-badge {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background: var(--bright-yellow);
    color: var(--deep-navy-blue);
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(250, 204, 21, 0.4);
    display: flex;
    align-items: center;
    gap: 10px;
}
.experience-badge .num {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}
.experience-badge .text {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.2;
}

/* Hover Lift Effect for Cards */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1) !important;
}

/* Final CTA Strip */
.cta-strip {
    background: linear-gradient(135deg, var(--royal-blue) 0%, var(--deep-navy-blue) 100%);
    padding: 80px 0;
    color: white;
}
.cta-strip h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}
.cta-strip p {
    font-size: 1.2rem;
    color: var(--light-sky-blue);
    opacity: 0.9;
}

/* =========================================================
   BULLETPROOF MOBILE RESPONSIVENESS
   ========================================================= */
@media (max-width: 992px) {
    .elevated-stats { margin-top: -30px; }
    .experience-badge { left: 20px; bottom: 20px; padding: 15px; }
    .experience-badge .num { font-size: 2rem; }
}

@media (max-width: 768px) {
    /* Hero */
    .premium-hero { padding-top: 130px; padding-bottom: 60px; text-align: center; }
    .hero-headline { font-size: 2.3rem; }
    .hero-cta-buttons { flex-direction: column; width: 100%; gap: 15px; }
    .hero-cta-buttons .btn { width: 100%; }
    .floating-stat-card { bottom: -15px; left: 10px; right: 10px; justify-content: center; }
    
    /* Stats */
    .elevated-stats { padding: 30px 15px; margin-top: 10px; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 25px 15px; }
    
    /* Layouts */
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .align-center { text-align: center; }
    .feature-item { text-align: left; /* Keep feature text readable */ }
    
    /* Typography */
    .section-heading { font-size: 1.8rem; }
    .cta-strip h2 { font-size: 1.8rem; }
    
    /* Trust Cards & Reviews */
    .trust-cards-grid { grid-template-columns: 1fr; gap: 20px; }
    .reviews-grid { grid-template-columns: 1fr; gap: 20px; }
}

@media (max-width: 480px) {
    .hero-headline { font-size: 2rem; }
    .elevated-stats { padding: 20px 10px; }
    .stat-item h3 { font-size: 1.5rem; }
    .experience-badge { position: relative; left: 0; bottom: 0; margin-top: -30px; justify-content: center; width: 90%; margin-left: auto; margin-right: auto; }
}
/* =========================================================
   PREMIUM TESTIMONIALS SECTION
   ========================================================= */

.premium-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.premium-review-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 30px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-top: 4px solid var(--bright-yellow);
    z-index: 1;
    border: 1px solid #f1f5f9;
}

/* Big Quote Mark in Background */
.quote-icon {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 4rem;
    color: rgba(26, 54, 93, 0.04); /* Faded Navy Blue */
    z-index: -1;
}

.review-content p {
    font-size: 1.05rem;
    color: var(--text-color);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* Bottom area with Avatar and Name */
.review-author-area {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #f1f5f9;
    padding-top: 20px;
}

/* Parent Initial Circle */
.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--light-sky-blue);
    color: var(--royal-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
}

.author-info h4 {
    color: var(--deep-navy-blue);
    font-size: 1.1rem;
    margin-bottom: 4px;
    font-weight: 700;
}

.author-info .review-stars {
    color: var(--bright-yellow);
    font-size: 0.9rem;
    display: flex;
    gap: 2px;
}

/* Mobile Responsiveness for Testimonials */
@media (max-width: 992px) {
    .premium-reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .premium-reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .premium-review-card {
        padding: 30px 20px 25px;
    }
}

/* =========================================================
   ABOUT PAGE RESPONSIVENESS FIXES
   ========================================================= */

.mb-20 { margin-bottom: 20px; }

/* About Checklist Grid */
.about-checklist {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 20px;
}

.about-checklist li {
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--deep-navy-blue);
}

.about-checklist i {
    color: var(--whatsapp-green);
    font-size: 1.2rem;
}

/* Floating Discount Badge Fix */
.responsive-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--bright-yellow);
    padding: 15px 25px;
    border-radius: 12px;
    font-weight: 800;
    box-shadow: 0 10px 20px rgba(250, 204, 21, 0.3);
    color: var(--deep-navy-blue);
    z-index: 5;
}

/* Yellow Bottom CTA Banner */
.cta-banner-yellow {
    background: var(--bright-yellow);
    padding: 60px 0;
}
.cta-banner-yellow h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

/* MOBILE FIXES SPECIFIC TO ABOUT PAGE */
@media (max-width: 768px) {
    /* Stack checklist to 1 column */
    .about-checklist {
        grid-template-columns: 1fr; 
    }
    
    /* Bring the badge inside the image box to stop horizontal scroll */
    .responsive-badge {
        bottom: 10px;
        right: 10px;
        font-size: 0.9rem;
        padding: 10px 15px;
    }
    
    /* Center align the text properly */
    .text-left-mobile {
        text-align: left; /* Makes long paragraphs easier to read on phone */
        margin-top: 20px;
    }
    
    /* Adjust CTA banner text */
    .cta-banner-yellow h2 {
        font-size: 1.6rem;
    }
}