/*=========================================
            CLASSES SECTION
=========================================*/

/*=========================================
            PAGE BANNER
=========================================*/

.page-banner{

    position:relative;

    width:100%;
    height:320px;

    background:url("../images/building.jpeg") center center/cover no-repeat;

    display:flex;
    align-items:center;
    justify-content:center;

    overflow:hidden;

}

.banner-overlay{

    position:absolute;
    inset:0;

    background:linear-gradient(
        rgba(67,56,202,.75),
        rgba(30,41,59,.75)
    );

}

.banner-content{

    position:relative;

    z-index:2;

    text-align:center;

    color:#fff;

}

.banner-content h1{

    font-size:48px;

    font-weight:700;

    margin-bottom:15px;

}

.breadcrumb{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:12px;

    font-size:16px;

}

.breadcrumb a{

    color:#06B6D4;

    transition:.3s;

}

.breadcrumb a:hover{

    color:#fff;

}

.breadcrumb span{

    color:#fff;

}

.classes-section{

    padding:90px 0;

    background:#fff;

}

.classes-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

    margin-top:50px;

}

.class-card{

    background:#fff;

    border:1px solid #EEF2F7;

    border-radius:18px;

    padding:40px 25px;

    text-align:center;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.35s;

}

.class-card:hover{

    transform:translateY(-10px);

    box-shadow:0 18px 40px rgba(0,0,0,.15);

}

.class-card i{

    width:80px;

    height:80px;

    background:#EEF2FF;

    color:#4338CA;

    font-size:34px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    margin:0 auto 20px;

    transition:.35s;

}

.class-card:hover i{

    background:#4338CA;

    color:#fff;

}

.class-card h3{

    font-size:22px;

    color:#1E293B;

    margin-bottom:10px;

}

.class-card p{

    color:#64748B;

    font-size:15px;

}



/*=========================================
            SUBJECTS
=========================================*/

/*=========================================
            SUBJECTS
=========================================*/

.subjects-section{
    padding:90px 0;
    background:#F8FAFC;
}

.subjects-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
    margin-top:55px;
}

.subject-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s;
}

.subject-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,.15);
}

/*=========================================
            CARD HEADER
=========================================*/

.subject-header{
    background:#4338CA;
    color:#fff;
    padding:22px;
    display:flex;
    align-items:center;
    gap:15px;
}

.subject-header i{
    width:55px;
    height:55px;
    background:rgba(255,255,255,.15);
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:22px;
}

.subject-header h3{
    font-size:21px;
    font-weight:600;
}

/*=========================================
        NORMAL SUBJECT LIST
=========================================*/

.subject-card > ul{
    padding:25px;
}

.subject-card > ul > li{
    list-style:none;
    padding:12px 0;
    border-bottom:1px solid #EEF2F7;
    color:#475569;
    display:flex;
    align-items:center;
    gap:12px;
    font-size:15px;
}

.subject-card > ul > li:last-child{
    border:none;
}

.subject-card > ul > li::before{
    content:"✓";
    width:24px;
    height:24px;
    background:#EEF2FF;
    color:#4338CA;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:13px;
    font-weight:700;
    flex-shrink:0;
}

/*=========================================
        STREAM SECTION
=========================================*/

.stream{
    padding:30px;
    border-top:1px solid #EEF2F7;
}

.stream:first-of-type{
    border-top:none;
}

.stream h4{
    text-align:center;
    color:#4338CA;
    font-size:26px;
    font-weight:700;
    margin-bottom:25px;
}

/*=========================================
        GROUP BOXES
=========================================*/

/*=========================================
        GROUP GRID
=========================================*/

.group-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

    gap:20px;

}

/*=========================================
        GROUP CARD
=========================================*/

.group-card{

    background:#F8FAFC;

    border:2px solid #4338CA;

    border-radius:15px;

    padding:20px;

    box-shadow:0 8px 20px rgba(0,0,0,.08);

    transition:.3s;

}

.group-card:hover{

    transform:translateY(-5px);

    box-shadow:0 15px 35px rgba(0,0,0,.15);

}

.group-card h5{

    text-align:center;

    color:#4338CA;

    font-size:18px;

    font-weight:600;

    margin-bottom:15px;

    padding-bottom:10px;

    border-bottom:2px solid #E5E7EB;

}

/*=========================================
        SUBJECT LIST
=========================================*/

.group-card ul{

    list-style:none;

    padding:0;

    margin:0;

}

.group-card ul li{

    display:flex;

    align-items:center;

    gap:10px;

    padding:10px 0;

    border-bottom:1px solid #EEF2F7;

    color:#475569;

    font-size:15px;

}

.group-card ul li:last-child{

    border-bottom:none;

}

.group-card ul li::before{

    content:"✓";

    width:22px;

    height:22px;

    background:#EEF2FF;

    color:#4338CA;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:12px;

    font-weight:700;

    flex-shrink:0;

}