/* =====================================
   SCHOOL FEE MANAGEMENT PAGE
===================================== */

/* HERO */
.fee-hero{
    padding:75px 0;
    background:
        radial-gradient(circle at top right, rgba(37,99,235,.10), transparent 35%),
        linear-gradient(135deg,#f8fbff,#ffffff);
}

.fee-hero-grid{
    display:grid;
   grid-template-columns:0.9fr 1.1fr;
    gap:55px;
    align-items:center;
}

.fee-hero-content h1{
    font-size:48px;
    line-height:1.13;
    color:var(--primary);
    margin-bottom:22px;
}

.fee-hero-content h1 span{
    display:block;
    color:var(--accent);
}

.fee-hero-content p{
    font-size:18px;
    color:var(--muted);
    margin-bottom:28px;
    max-width:650px;
}

.fee-points{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:14px;
    margin-top:28px;
}



.fee-hero-image{
    align-self:start;
    background:#fff;
    padding:12px;
    border-radius:28px;
    box-shadow:0 25px 70px rgba(15,23,42,.14);
    
    .live-badge{
    display:inline-block;
    background:#ecfdf5;
    color:#059669;
    padding:10px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:700;
    margin-bottom:15px;
    border:1px solid #bbf7d0;
}
}

.fee-hero-image img{
    width:100%;
    display:block;
    border-radius:20px;
}

/* FEATURES */
.features-section{
    padding:90px 0;
    background:#fff;
}

.feature-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.feature-card{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:18px;
    padding:28px;
    text-align:center;
    transition:.3s;
}

.feature-card:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 35px rgba(15,23,42,.08);
}

.feature-card i{
    font-size:38px;
    color:#2563eb;
    margin-bottom:15px;
}

.feature-card h3{
    color:var(--primary);
    margin-bottom:10px;
}

.feature-card p{
    color:var(--muted);
}

/* MODULES */
.modules-section{
    padding:90px 0;
    background:#f8fbff;
}

.module-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.module-card{
    border:1px solid #e5e7eb;
    border-radius:18px;
    padding:30px;
    background:#fff;
    transition:.3s;
}

.module-card:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 35px rgba(15,23,42,.08);
}

.module-card i{
    font-size:36px;
    color:#2563eb;
    margin-bottom:15px;
}

.module-card h3{
    color:var(--primary);
    margin-bottom:12px;
}

.module-card p{
    color:var(--muted);
}

/* CTA */
.demo-cta{
    padding:90px 0;
    text-align:center;
    background:#fff;
}

.demo-cta h2{
    font-size:46px;
    color:var(--primary);
    margin-bottom:15px;
}

.demo-cta p{
    max-width:720px;
    margin:0 auto 30px;
    color:var(--muted);
}

/* RESPONSIVE */
@media(max-width:1100px){
    .fee-hero-grid,
    .feature-grid,
    .module-grid{
        grid-template-columns:1fr;
    }

    .fee-hero-content h1{
        font-size:40px;
    }
}

@media(max-width:600px){
    .fee-hero{
        padding:50px 0;
    }

    .fee-hero-content h1{
        font-size:34px;
    }

    .fee-points{
        grid-template-columns:1fr;
    }

    .demo-cta h2{
        font-size:32px;
    }
}
