.top-header{
    width:100%;
    height:75px;
    background:linear-gradient(135deg,#141e30,#243b55);
    padding:0 2px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    position:sticky;
    top:0;
    z-index:1000;
    overflow:hidden;
    
    
}

.header-left{
    display:flex;
    align-items:center;
    gap:15px;
}

/* CollegeAdmi Banner */

.header-banner{
    
    margin-top: 30px;    /* Upar ka gap */
    margin-bottom: 10px; /* Neeche ka gap */

    height:200px;
    width:auto;
    object-fit:contain;
}
/* Menu Icon */

.menu-icon{
    font-size:28px;
    color:#fff;
    cursor:pointer;
}

/* Dropdown Menu */

.dropdown{
    display:none;
    position:absolute;
    top:70px;
    left:20px;
    background:#fff;
    width:220px;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 5px 15px rgba(0,0,0,.2);
}

.dropdown a{
    display:block;
    padding:14px;
    text-decoration:none;
    color:#222;
    border-bottom:1px solid #eee;
}

.dropdown a:hover{
    background:#f1f1f1;
}

/* Right Side */

.header-right{
    display:flex;
    align-items:center;
    gap:10px;
}

/* ---- DESKTOP YA BADI SCREEN KE LIYE ---- */
.search-box {
    padding: 8px 14px;
    border: none;
    border-radius: 30px;
    outline: none;
    width: 150px; /* <--- Pehle 220px tha, ab chhota karke 150px kar diya */
}

/* ---- MOBILE SCREEN KE LIYE ---- */
@media(max-width:768px){

    .top-header {
        padding: 8px 10px;
    }

    .header-banner {
        height: 40px;
    }

    .search-box {
        width: 80px; /* <--- Pehle 110px tha, ab aur chhota karke 80px kar diya */
    }

    .icon-btn {
        width: 30px;
        height: 30px;
    }
}
.icon-btn{
    width:35px;
    height:35px;
    cursor:pointer;
    border-radius:50%;
    background:#fff;
    padding:5px;
}

/* Mobile */

@media(max-width:768px){

    .top-header{
        padding:8px 10px;
    }

    .header-banner{
        height:40px;
    }

    .search-box{
        width:110px;
    }

    .icon-btn{
        width:30px;
        height:30px;
    }
}