/*=====================================
            PAGE BANNER
======================================*/

.page-banner{

    position:relative;

    height:350px;

    background:url("../images/building2.jpeg") center/cover no-repeat;

    display:flex;

    justify-content:center;

    align-items:center;

}

.banner-overlay{

    position:absolute;

    inset:0;

    background:rgba(76,29,149,.75);

}

.banner-content{

    position:relative;

    z-index:2;

    color:#fff;

    text-align:center;

}

.banner-content h1{

    font-size:48px;

    margin-bottom:15px;

}

.banner-content p{

    font-size:18px;

}

.banner-content a{

    color:#FBBF24;

    text-decoration:none;

    font-weight:600;

}

.banner-content span{

    margin:0 10px;

}

/*=====================================
        COMMON SECTION
======================================*/

.admission-hero,
.admission-process,
.available-courses,
.documents,
.fee-section,
.instructions,
.apply-online{

    padding:90px 8%;

}

.section-heading{

    text-align:center;

    margin-bottom:60px;

}

.section-heading h4{

    color:#6D28D9;

    text-transform:uppercase;

    letter-spacing:2px;

}

.section-heading h2{

    font-size:40px;

    color:#2E1065;

    margin:12px 0;

}

.title-line{

    width:90px;

    height:4px;

    background:#FBBF24;

    margin:auto;

    border-radius:20px;

}

/*=====================================
        ADMISSION HERO
======================================*/

.admission-hero{

    background:#F8F5FF;

    text-align:center;

}

.admission-content{

    max-width:800px;

    margin:auto;

}

.admission-content h4{

    color:#6D28D9;

    font-size:20px;

}

.admission-content h2{

    font-size:46px;

    color:#2E1065;

    margin:20px 0;

}

.admission-content p{

    color:#555;

    line-height:1.8;

    margin-bottom:35px;

}

.apply-btn{

    display:inline-block;

    background:#4C1D95;

    color:#fff;

    text-decoration:none;

    padding:14px 35px;

    border-radius:30px;

    font-weight:600;

    transition:.3s;

}

.apply-btn:hover{

    background:#FBBF24;

    color:#2E1065;

}

/*=====================================
        PROCESS
======================================*/

.process-container{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:25px;

}

.process-card{

    background:#fff;

    padding:30px 20px;

    text-align:center;

    border-radius:15px;

    box-shadow:0 8px 25px rgba(0,0,0,.08);

    transition:.3s;

}

.process-card:hover{

    transform:translateY(-8px);

}

.step-number{

    width:60px;

    height:60px;

    margin:auto;

    margin-bottom:20px;

    border-radius:50%;

    background:#4C1D95;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:24px;

    font-weight:700;

}

.process-card h3{

    color:#2E1065;

    margin-bottom:10px;

}

/*=====================================
        COURSE CARDS
======================================*/

.available-courses{

    background:#F8F5FF;

}

.course-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:30px;

}

.course-box{

    background:#fff;

    text-align:center;

    padding:40px;

    border-radius:15px;

    box-shadow:0 8px 25px rgba(0,0,0,.08);

    transition:.3s;

}

.course-box:hover{

    transform:translateY(-8px);

}

.course-box i{

    font-size:45px;

    color:#4C1D95;

    margin-bottom:20px;

}

.course-box h3{

    color:#2E1065;

    margin-bottom:10px;

}

.course-box span{

    color:#666;

}

/*=====================================
        DOCUMENTS
======================================*/

.document-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}

.document-card{

    background:#fff;

    padding:30px;

    text-align:center;

    border-radius:15px;

    box-shadow:0 8px 20px rgba(0,0,0,.08);

    transition:.3s;

}

.document-card:hover{

    transform:translateY(-8px);

}

.document-card i{

    font-size:36px;

    color:#4C1D95;

    margin-bottom:15px;

}

.document-card p{

    font-weight:500;

}

/*=====================================
        FEE TABLE
======================================*/

.fee-section{

    background:#F8F5FF;

}

.fee-table{

    overflow-x:auto;

}

.fee-table table{

    width:100%;

    border-collapse:collapse;

    background:#fff;

    border-radius:15px;

    overflow:hidden;

    box-shadow:0 8px 25px rgba(0,0,0,.08);

}

.fee-table th{

    background:#4C1D95;

    color:#fff;

    padding:18px;

}

.fee-table td{

    padding:18px;

    text-align:center;

    border-bottom:1px solid #eee;

}

.fee-table tr:hover{

    background:#F8F5FF;

}

/*=====================================
        INSTRUCTIONS
======================================*/

.instruction-box{

    max-width:900px;

    margin:auto;

    background:#fff;

    padding:40px;

    border-left:6px solid #FBBF24;

    border-radius:15px;

    box-shadow:0 8px 20px rgba(0,0,0,.08);

}

.instruction-box ul{

    padding-left:20px;

}

.instruction-box li{

    margin-bottom:15px;

    line-height:1.7;

}

/*=====================================
        APPLY ONLINE
======================================*/

.apply-online{

    background:#4C1D95;

    text-align:center;

    color:#fff;

}

.apply-online h2{

    font-size:40px;

    margin-bottom:20px;

}

.apply-online p{

    margin-bottom:35px;

    font-size:18px;

}

.apply-btn-large{

    display:inline-block;

    background:#FBBF24;

    color:#2E1065;

    text-decoration:none;

    padding:16px 45px;

    border-radius:40px;

    font-size:18px;

    font-weight:600;

    transition:.3s;

}

.apply-btn-large:hover{

    background:#fff;

}