.custom-top-navbar {
    width: 100%;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    font-family: Arial, sans-serif;
	border-bottom: 2px solid maroon;
}

.navbar-container {
    max-width: 1400px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
}

.logo-text {
    color: #fff;
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 1px;
}

.logo-section a {
    text-decoration: none;
}

.menu-section {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.menu-section li {
    position: relative;
}

.menu-section a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s ease;
    padding: 10px;
}

.menu-section a:hover {
    color: #38bdf8;
}

/* Dropdown */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 40px;
    left: 0;
    background: white;
    min-width: 220px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu a {
    color: #333;
    display: block;
    padding: 14px 18px;
}

.dropdown-menu a:hover {
    background: #f1f5f9;
    color: #0f172a;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

/* Login button */
.login-btn a {
    background: #38bdf8;
    color: white;
    padding: 10px 22px;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
    font-weight: bold;
}

.login-btn a:hover {
    background: #0ea5e9;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 900px) {

    .navbar-container {
        flex-direction: column;
        gap: 20px;
    }

    .menu-section {
        flex-wrap: wrap;
        justify-content: center;
    }
}