/* ---------------- GLOBAL ---------------- */

body{
    font-family:'Poppins',sans-serif;
    background:#f5f7fa;
    color:#333;
}

.section-title{
    font-size:38px;
    font-weight:700;
    color:#1D3557;
    margin-bottom:40px;
    text-align:center;
}

section{
    padding:80px 0;
}

/* ---------------- HERO SECTION ---------------- */

.admission-hero{
    background:linear-gradient(120deg,#1D3557,#D62828);
    color:white;
    padding:120px 0;
    text-align:center;
}

.admission-hero h1{
    font-size:48px;
    font-weight:700;
    margin-bottom:15px;
}

.admission-hero p{
    font-size:20px;
    opacity:0.9;
}

.hero-buttons{
    margin-top:25px;
}

.hero-buttons .btn{
    margin:10px;
}

/* hero stats */

.hero-stats{
    display:flex;
    justify-content:center;
    gap:60px;
    margin-top:50px;
    flex-wrap:wrap;
}

.hero-stats h3{
    font-size:32px;
    font-weight:700;
}

.hero-stats p{
    margin:0;
    font-size:14px;
}

/* ---------------- ELIGIBILITY SECTION ---------------- */

.eligibility-section{
background:#ffffff;
}

.info-box{
background:white;
padding:30px;
border-radius:12px;
box-shadow:0 8px 25px rgba(0,0,0,0.08);
height:100%;
}

.info-box h4{
font-weight:700;
color:#1D3557;
margin-bottom:15px;
}

.info-box ul{
padding-left:20px;
}

.info-box li{
margin-bottom:10px;
font-size:15px;
}
/* ---------------- SEMESTER SECTION ---------------- */

.course-section{
    background:#f8fafc;
}

.nav-tabs{
    border:none;
    justify-content:center;
    gap:10px;
}

.nav-tabs .nav-link{
    border:none;
    background:#eef2f7;
    color:#1D3557;
    font-weight:600;
    padding:10px 20px;
    border-radius:8px;
}

.nav-tabs .nav-link.active{
    background:#1D3557;
    color:white;
}

.tab-content{
    background:white;
    padding:35px;
    border-radius:12px;
    margin-top:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

/* subject list */

.course-section ul{
    padding:0;
}

.course-section li{
    background:#f8fafc;
    margin-bottom:12px;
    padding:14px 16px;
    border-radius:8px;
    font-size:15px;
    border:1px solid #e6ecf3;
    transition:0.3s;
}

.course-section li:hover{
    background:#eef3f9;
    transform:translateX(5px);
}

.course-section i{
    color:#D62828;
    margin-right:10px;
}

/* ---------------- CTA SECTION ---------------- */

.admission-cta{
    background:#1D3557;
    color:white;
    text-align:center;
}

.admission-cta h2{
    font-size:36px;
    margin-bottom:20px;
}

.admission-cta p{
    font-size:18px;
    margin-bottom:25px;
}

/* ---------------- BUTTONS ---------------- */

.btn-danger{
    background:#D62828;
    border:none;
    padding:12px 30px;
    font-weight:600;
    border-radius:6px;
}

.btn-danger:hover{
    background:#b71c1c;
}

.btn-outline-light{
    border:2px solid white;
}

/* ---------------- RESPONSIVE ---------------- */

@media(max-width:768px){

.admission-hero h1{
    font-size:34px;
}

.section-title{
    font-size:30px;
}

.hero-stats{
    gap:30px;
}

.process-step{
    width:100%;
}

}