/* --- CRITICAL CURSOR FIX --- */
/* Ye rule aapke HTML ke inline style="cursor: pointer;" ko override karega */
.nav-wrapper,
.nav-wrapper *,
.custom-navbar a,
.dropdown a,
.dropdown-menu a {
    cursor: pointer !important;
}

.nav-wrapper {
    position: fixed; 
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    padding: 0;
    box-sizing: border-box;
    background: #000000; 
}

.custom-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    box-sizing: border-box;
    border-bottom: 1px solid #333333; 
    border-radius: 0; 
    background: #000000;
}

.nav-logo {
    display: flex;
    align-items: center;
    color: #ffffff;
    font-family: 'Inter', sans-serif; /* Consistent Premium Font */
    font-weight: 900;
    font-size: 20px;
    text-decoration: none;
}

.nav-logo img {
    height: 30px;
    margin-right: 12px;
}

.nav-menu {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700; /* Made slightly cleaner */
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #aaaaaa;
}

.nav-menu a span {
    font-size: 10px;
    margin-top: 2px;
}

.nav-cta {
    background: #ffffff;
    color: #000000;
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 15px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.nav-cta:hover {
    background: #cccccc;
    transform: translateY(-2px);
}

/* --- Dropdown Styling (Solid Black) --- */
.dropdown {
    position: relative;
    padding: 10px 0;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%; 
    left: -20px; 
    
    /* Forced Solid Black */
    background: #000000 !important; 
    backdrop-filter: none !important; 
    -webkit-backdrop-filter: none !important;
    
    border: 1px solid #333333;
    border-radius: 12px;
    padding: 15px 0;
    min-width: 240px; 
    flex-direction: column;
    gap: 12px;
    z-index: 999;
    box-shadow: 0 10px 30px rgba(0,0,0,0.9);
}

.dropdown:hover .dropdown-menu {
    display: flex;
}

.dropdown-menu a {
    padding: 0 20px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.dropdown-menu a:hover {
    color: #cccccc; 
    padding-left: 25px; 
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
}

@media (max-width: 900px) {
    .nav-menu { 
        display: none; 
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #000;
        padding: 20px 0;
        border-top: 1px solid #333;
        border-bottom: 1px solid #333;
    }
    .nav-menu.active {
        display: flex;
    }
    .nav-wrapper { padding: 0; }
    .custom-navbar {
        padding: 15px 20px;
    }
    .mobile-menu-btn {
        display: block;
    }
    .nav-cta {
        padding: 8px 12px;
        font-size: 12px;
    }
}