/* Global Reset */
body{
    margin:0;
    font-family: Arial, sans-serif;
    background:#ffffff;
    scroll-behavior:smooth;
}

/* ------------------ HEADER ------------------ */
.top-header{
    width:100%;
    background:#00008B;
    padding:8px 0px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    border-bottom:1px solid #ddd;
    position:sticky;
    top:0;
    z-index:10;
    color:#ffffff;
}

.header-left{
    display:flex;
    align-items:center;
    gap:12px;
    color:#ffffff;
}

.menu-icon{
    font-size:26px;
    cursor:pointer;
    user-select:none;
    color:#ffffff;
}

.dropdown{
    display:none;
    position:absolute;
    top:50px;
    left:10px;
    background:#fff;
    width:180px;
    border-radius:8px;
    box-shadow:0 2px 10px rgba(0,0,0,0.15);
    padding:10px 0;
    z-index:20;
}

.dropdown a{
    display:block;
    padding:10px 15px;
    font-size:15px;
    text-decoration:none;
    color:#333;
}

.dropdown a:hover{
    background:#f2f2f2;
}

.header-left img{
    width:32px;
    height:32px;
}

.header-left span{
    font-size:20px;
    font-weight:700;
    color:#ffffff;
}

.header-right{
    display:flex;
    align-items:center;
    gap:12px;
}

.search-box{
    padding:3px 5px;
    border-radius:5px;
    border:1px solid #ccc;
    font-size:14px;
    width:100px;
}

.header-right img{
    width:25px;
    height:25px;
    cursor:pointer;
}

/* ------------------ COLLEGE HERO ------------------ */
.college-banner{
    width:100%;
    height:260px;
    background:#ddd;
    background-size:cover;
    background-position:center;
    position:relative;
}

.college-logo{
    width:120px;
    height:120px;
    position:absolute;
    bottom:-40px;
    left:20px;
    border-radius:10px;
    background:#fff;
    padding:5px;
    box-shadow:0 2px 10px rgba(0,0,0,0.2);
}

.container{
    width:95%;
    margin:auto;
    margin-top:60px;
    color:#000000;
}

.college-header h1{
    font-size:28px;
    font-weight:700;
    margin-bottom:5px;
}

.college-meta{
    display:flex;
    gap:10px;
    font-size:13px;
    flex-wrap:wrap;
}

.college-meta span{
    background:#222;
    color:#fff;
    padding:4px 10px;
    border-radius:5px;
    font-weight:600;
}

.nav-slider-box{
    margin:25px 0;
    padding:8px;
    border:1px solid #ccc;
    border-radius:8px;
    overflow-x:auto;
    white-space:nowrap;
    background:#fff;
}

.nav-item{
    display:inline-block;
    margin-right:20px;
    font-size:15px;
    padding-bottom:4px;
    cursor:pointer;
    font-weight:600;
    color:#333;
}

.info-card{
    background:#ffffff;
    padding:15px;
    border-radius:10px;
    box-shadow:0 2px 10px rgba(0,0,0,0.1);
    margin-bottom:20px;
}

.info-card p{
    margin:7px 0;
    font-size:16px;
}

.branch-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:15px;
}

.branch-card{
    background:#fff;
    padding:15px;
    border-radius:10px;
    box-shadow:0 2px 10px rgba(0,0,0,0.08);
}

.course-tag{
    display:inline-block;
    margin-bottom:6px;
    font-size:14px;
    font-weight:700;
    color:#0b5ed7;
    background:#eaf2ff;
    padding:4px 10px;
    border-radius:6px;
    letter-spacing:0.6px;
}

.salary-tag{
    display:inline-block;
    margin-top:8px;
    font-size:13px;
    font-weight:600;
    color:#28a745;
    background:#d4edda;
    padding:4px 8px;
    border-radius:5px;
    border-left:4px solid #28a745;
}

.branch-card h3{
    margin-bottom:8px;
    font-size:18px;
    font-weight:700;
    color:#222;
}

.section{
    background:#fff;
    padding:15px;
    margin-top:10px;
    border-radius:10px;
    box-shadow:0 2px 10px rgba(0,0,0,0.1);
}