/* ==========================================================================
   DESKTOP / BASE STYLES (Badi Screen Ke Liye)
   ========================================================================== */

.top-header {
    width: 100%;
    height: 75px;
    background: linear-gradient(135deg, #141e30, #243b55);
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    /* overflow: hidden;  <--- Isko hata diya taaki banner baahar nikal sake */
}

.header-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* CollegeAdmi Banner (Desktop) */
.header-banner {
    margin-top: 50px;    
    margin-bottom: 30px; 
    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 Search Box */
.search-box {
    padding: 8px 14px;
    border: none;
    border-radius: 30px;
    outline: none;
    width: 150px; 
}

.icon-btn {
    width: 35px;
    height: 35px;
    cursor: pointer;
    border-radius: 50%;
    background: #fff;
    padding: 5px;
}


/* ==========================================================================
   MOBILE STYLES (Patti ko bina chauda kiye banner bada karne ke liye)
   ========================================================================== */

@media (max-width: 768px) {
    
    .top-header {
        padding: 0 10px;
        height: 60px;        /* Patti ko bilkul patla (60px) kar diya mobile par */
    }

    .header-left {
        gap: 10px;
    }

    /* Mobile Banner Configuration */
    .header-banner {
        height: 110px;       /* Banner ka size bada (110px) hi rahega */
        width: auto;
        object-fit: contain;
        
        /* Magic Trick: Margins ko minus mein kiya taaki banner patti se baahar nikal jaye 
           aur patti khud chauda na ho */
        margin-top: 25px;    
        margin-bottom: 0px;  
        transform: scale(1.1); /* Thoda sa aur pop-out karne ke liye */
    }

    .search-box {
        width: 90px;        
        padding: 6px 10px;
    }

    .menu-icon {
        font-size: 24px;     
    }

    .icon-btn {
        width: 30px;
        height: 30px;
    }
}