/* Ensure the PWA install banner stays above the nav */
    .pwa-banner.show {
        bottom: 85px !important;
    }
    
    .new-arrivals {
        padding: 60px 20px;
        background: #f8fafc;
        font-family: 'Segoe UI', Tahoma, sans-serif;
        overflow: hidden;
    }
    
    .section-container {
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .section-header {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .section-header h2 {
        font-size: 28px;
        color: #0f172a;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }
    
    /* Move the pagination dots further down */
    .arrival-slider {
        padding-bottom: 50px !important; /* Increases the space under the cards */
    }
    
    .swiper-pagination {
        bottom: 10px !important; /* Moves the dots toward the very bottom of that space */
    }
    
    .swiper-wrapper {
        box-sizing: border-box;
    }
    
    .swiper-slide {
        display: flex;
        height: auto;
        flex-shrink: 0;
    }
    
    /* Card */
    .arrival-card {
        width: 100%;
        max-width: 100%;
        background: #ffffff;
        border-radius: 16px;
        padding: 25px;
        border: 1px solid #e2e8f0;
        box-shadow: 0 4px 6px rgba(0,0,0,.08);
        display: flex;
        flex-direction: column;
        position: relative;
        transition: all 0.3s ease;
        box-sizing: border-box;
    }
    
    .arrival-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 15px 25px rgba(0,0,0,.12);
        border-color: #2563eb;
    }
    
    .badge-new {
        position: absolute;
        top: 15px;
        right: 15px;
        background: #ef4444;
        color: white;
        font-size: 10px;
        font-weight: 700;
        padding: 4px 10px;
        border-radius: 20px;
    }
    
    .card-icon {
        font-size: 30px;
        color: #ef4444;
        margin-bottom: 15px;
    }
    
    .arrival-card h3 {
        font-size: 16px;
        font-weight: 700;
        color: #1e293b;
        margin-bottom: 10px;
        line-height: 1.4;
    }
    
    .dept-tag {
        background: #eff6ff;
        color: #2563eb;
        font-size: 11px;
        font-weight: 700;
        padding: 4px 10px;
        border-radius: 6px;
        width: fit-content;
        margin-bottom: 15px;
    }
    
    .arrival-card p {
        font-size: 13px;
        color: #64748b;
        margin-bottom: 25px;
    }
    
    .view-btn {
        margin-top: auto;
        background: #2563eb;
        color: #fff;
        padding: 12px;
        border-radius: 10px;
        text-align: center;
        font-weight: 600;
        text-decoration: none;
    }
    
    .view-btn:hover {
        background: #1d4ed8;
    }
    
    /* Pagination */
    .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        background: #cbd5e1;
        opacity: 1;
    }
    
    .swiper-pagination-bullet-active {
        background: #2563eb;
        width: 24px;
        border-radius: 6px;
    }
    
    /* Mobile */
    @media (max-width: 600px) {
        .section-header h2 {
            font-size: 22px;
        }
    }
    
    /* Color Palette - Keeping your favorite Indigo & Slate */
    :root {
        --bg-primary: #f0f4f8;
        --bg-card: #ffffff;
        --accent: #4f46e5; 
        --text-header: #1e293b;
        --text-body: #475569;
        --border-color: #e2e8f0;
    }
    
    .exam-countdown {
        padding: 15px 5px; /* Reduced padding for tiny screens */
        background: var(--bg-primary);
        width: 100%;
        box-sizing: border-box;
        overflow: hidden; /* Prevents horizontal scroll */
    }
    
    /* TOP HEADING: Blue and Centered */
    .top-heading {
        color: #4f46e5; /* Vibrant Blue */
        text-align: center;
        margin-bottom: 20px;
        font-weight: 800;
        display: block; /* Ensures it takes full width to center properly */
    }
    
    /* DOWN HEADING (Note): Centered only (No Blue) */
    .exam-note {
        color: #475569; /* Muted Slate/Grey */
        text-align: center;
        margin-top: 20px;
        font-weight: 600;
        display: block; /* Ensures it takes full width to center properly */
    }
    
    .countdown-container {
        width: 95%; /* Fluid width */
        max-width: 800px;
        margin: 0 auto;
        background: var(--bg-card);
        padding: 20px 10px;
        border-radius: 20px;
        border: 1px solid var(--border-color);
        text-align: center;
        box-shadow: 0 10px 25px rgba(0,0,0,0.05);
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    /* Force the heading to be FIRST */
    .top-heading {
        order: 1; 
        margin-bottom: 5px;
    }
    
    /* Force the note/date to be LAST */
    .exam-note {
        order: 3;
        margin-top: 5px;
        font-weight: bold;
    }
    
    /* --- Mobile Specific Fix --- */
    @media (max-width: 768px) {
        .countdown-container {
            flex-direction: column !important; /* Prevents any accidental 'reverse' */
        }
        
        .time-block span {
            font-size: 1.5rem; /* Shrinks digits slightly so they fit on one line */
        }
    }
    /* THE TIMER GRID */
    #timer {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 5px; /* Tight gap for small screens */
        width: 100%;
        order: 2;
    }
    
    .time-block {
        background: linear-gradient(145deg, #ffffff, #f1f5f9);
        padding: 8px 4px;
        border-radius: 10px;
        flex: 1; /* This makes all 4 boxes equal width and stay inside */
        min-width: 0; /* Critical fix for Flexbox overflow */
        border: 1px solid var(--border-color);
        text-align: center;
    }
    
    .time-block span {
        display: block;
        font-size: clamp(1rem, 5vw, 2rem); /* Dynamic font size based on screen width */
        font-weight: 900;
        color: var(--text-header);
    }
    
    .time-block label {
        font-size: clamp(0.5rem, 2vw, 0.7rem); /* Text labels shrink too */
        text-transform: uppercase;
        color: var(--accent);
        font-weight: 700;
    }
    
    .time-separator {
        font-size: 1.2rem;
        font-weight: 900;
        color: var(--border-color);
    }
    
    /* --- THE 150PX - 320PX FIX --- */
    @media (max-width: 350px) {
        #timer {
            gap: 3px;
        }
        
        .time-separator {
            display: none; /* Hide colons to save huge space */
        }
        
        .time-block {
            padding: 5px 2px;
        }
    }
    
    /* For extreme 150px shrinking */
    @media (max-width: 180px) {
        .countdown-container h3 {
            font-size: 0.7rem;
        }
        .exam-note {
            font-size: 0.6rem;
        }
    }
    
    
    /*SCHOOL FEES WHATSAPP*/
    .payment-service {
        padding: 60px 20px;
        background: #ffffff;
        display: flex;
        justify-content: center;
    }
    
    /* --- 1. DESKTOP & GENERAL STYLES --- */
    .payment-container {
        display: flex;
        align-items: center;
        gap: 40px;
        background: #f8fafc;
        padding: 40px;
        border-radius: 30px;
        max-width: 1000px;
        margin: 20px auto;
    }
    
    .payment-image {
        flex: 1;
    }
    
    .payment-image img {
        width: 100%;
        max-width: 400px;
        border-radius: 20px;
        box-shadow: 10px 10px 0px #FFD700; /* Gold accent */
    }
    
    .payment-details {
        flex: 1.2;
        display: flex;
        flex-direction: column;
    }
    
    .service-subtitle {
        color: #475569;
        font-size: 1.1rem;
        margin-bottom: 25px;
    }
    
    .how-to-pay h3 {
        color: #1e293b;
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    /* LIST ALIGNMENT: The numbering fix */
    .how-to-pay ul {
        list-style: none;
        padding: 0;
    }
    
    .how-to-pay li {
        display: flex;
        align-items: flex-start; /* Keeps numbers at the top of the text */
        margin-bottom: 15px;
        text-align: left;
        line-height: 1.4;
    }
    
    .step-num {
        background: #4f46e5;
        color: white;
        min-width: 28px; /* Prevents squishing into ovals */
        height: 28px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 15px;
        font-weight: bold;
        flex-shrink: 0;
    }
    
    .section-header h3 {
        color: #007bff !important;
        margin-top: -10px;
    }