
body{
font-family: 'Segoe UI',sans-serif;
background:#f4f7fb;
}

/* NAVBAR */

.navbar{
background:#0d3c74;
}

.navbar-brand{
font-weight:bold;
color:white !important;
}

.nav-link{
color:white !important;
font-weight:500;
}

/* HERO */

.hero{
background:linear-gradient(135deg,#0d3c74,#1f7bd9);
color:white;
padding:80px 20px;
text-align:center;
}

.hero h1{
font-size:40px;
font-weight:700;
}

/* CARDS */

.card-box{
background:white;
border-radius:12px;
box-shadow:0 6px 20px rgba(0,0,0,0.1);
padding:25px;
transition:0.3s;
height:100%;
}

.card-box:hover{
transform:translateY(-5px);
box-shadow:0 10px 30px rgba(0,0,0,0.15);
}

.banner-img{
max-width:60%;
margin:auto;
display:block;
}

/* BUTTON */

.apply-btn{
background:#0d6efd;
color:white;
border:none;
padding:10px 25px;
border-radius:6px;
font-weight:600;
transition:0.3s;
}

.apply-btn:hover{
background:#084298;
}

/* STUDENT BOX */

.student-box{
background:white;
padding:35px;
border-radius:12px;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
text-align:center;
}

.student-box h3{
color:#0d3c74;
font-weight:700;
}

/* SECTION TITLE */

.section-title{
font-weight:700;
margin-bottom:25px;
color:#0d3c74;
}

/* FOOTER */

footer{
background:#0d3c74;
color:white;
padding:20px;
text-align:center;
margin-top:50px;
}

.banner-img-full{
width:100%;
height:80%;
object-fit:cover;
}

/* TITLE STYLE */
.section-title {
    font-weight: 700;
    color: #0d3c74;
    position: relative;
}

.section-title::after {
    content: "";
    width: 300px;
    height: 3px;
    background: #0d6efd;
    display: block;
    margin: 8px auto 0;
}

/* ICON LIST */
.custom-list {
    list-style: none;
    padding: 0;
}

.custom-list li {
    margin-bottom: 12px;
    font-size: 15px;
    display: flex;
    align-items: flex-start;
}

.custom-list i {
    color: #0d6efd;
    margin-right: 10px;
    margin-top: 4px;
}

/* BUTTON UPGRADE */
.big-btn {
    padding: 12px 30px;
    font-size: 16px;
    border-radius: 30px;
}

/* COMMITTEE DESIGN */
.committee-list {
    display: grid;
    gap: 10px;
}

.committee-item {
    background: #f8fbff;
    padding: 12px 15px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    font-weight: 500;
    border-left: 4px solid #0d6efd;
    transition: 0.3s;
}

.committee-item:hover {
    background: #eef5ff;
    transform: translateX(5px);
}

.committee-item span {
    color: #6c757d;
    font-size: 14px;
}

/* CUSTOM TABLE */
.custom-table {
    border-radius: 10px;
    overflow: hidden;
}

/* HEADER */
.custom-table thead {
    background: #0d3c74;
    color: #fff;
}

.custom-table th {
    font-weight: 600;
    padding: 12px;
}

/* ROWS */
.custom-table td {
    padding: 12px;
    font-size: 15px;
}

/* STRIPED EFFECT */
.custom-table tbody tr:nth-child(even) {
    background: #f8fbff;
}

/* HOVER EFFECT */
.custom-table tbody tr:hover {
    background: #eaf2ff;
    transition: 0.3s;
}

.btn-green {
    background: #198754;
}

.btn-green:hover {
    background: #146c43;
}
