/* Header Container */
.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;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* CollegeAdmi Banner - Responsive */
.header-banner {
    height: 50px; /* Default desktop size */
    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 Elements */
.header-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.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 Responsiveness --- */
@media(max-width: 768px) {
    .top-header {
        padding: 0 10px;
    }

    .header-banner {
        height: 35px; /* Mobile par chota kiya taaki layout na bigde */
    }

    .search-box {
        width: 70px; /* Mobile par width kam kar di */
    }

    .icon-btn {
        width: 30px;
        height: 30px;
    }
}