/* ================= HERO SECTION ================= */

.admission-hero{
background:linear-gradient(120deg,#1D3557,#D62828);
color:white;
padding:110px 0;
text-align:center;
}

.admission-hero h1{
font-size:46px;
font-weight:700;
margin-bottom:10px;
}

.admission-hero p{
font-size:18px;
opacity:0.9;
}

.hero-buttons{
margin-top:25px;
}

.hero-buttons .btn{
margin:8px;
}

/* ================= ELIGIBILITY SECTION ================= */

.eligibility-section{
background:#f8fafc;
padding:80px 0;
}

.section-title{
font-size:36px;
font-weight:700;
color:#1D3557;
text-align:center;
margin-bottom:50px;
}

.info-box{
background:white;
padding:35px;
border-radius:14px;
box-shadow:0 12px 30px rgba(0,0,0,0.08);
border-top:5px solid #D62828;
transition:all .35s ease;
height:100%;
}

.info-box:hover{
transform:translateY(-8px);
box-shadow:0 20px 40px rgba(0,0,0,0.15);
}

.info-box h4{
font-size:22px;
font-weight:700;
margin-bottom:20px;
color:#1D3557;
display:flex;
align-items:center;
gap:10px;
}

.info-box h4 i{
color:#D62828;
}

.info-box ul{
list-style:none;
padding:0;
margin:0;
}

.info-box li{
background:#f8fafc;
padding:12px 15px;
border-radius:8px;
margin-bottom:12px;
font-size:15px;
display:flex;
align-items:center;
gap:10px;
border:1px solid #e6ecf3;
transition:0.3s;
}

.info-box li:hover{
background:#eef3f9;
transform:translateX(5px);
}

.info-box li i{
color:#D62828;
}

/* ================= SUBJECT TABLE ================= */

.course-section{
padding:80px 0;
background:white;
}

.table{
border-radius:10px;
overflow:hidden;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.table thead{
background:#1D3557;
color:white;
}

.table th{
padding:15px;
font-weight:600;
}

.table td{
padding:13px;
background:white;
}

.table tbody tr:hover{
background:#f4f7fb;
}

/* ================= CTA SECTION ================= */

.admission-cta{
background:#1D3557;
color:white;
padding:80px 0;
text-align:center;
}

.admission-cta h2{
font-size:34px;
margin-bottom:15px;
}

.admission-cta p{
font-size:18px;
margin-bottom:25px;
}

.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:32px;
}

.section-title{
font-size:28px;
}

.info-box{
margin-bottom:25px;
}

}