:root {
    --primary: #3b82f6;
    --dark: #0f172a;
    --darker: #020617;
    --light-bg: #f8fafc;
    --card-bg: #ffffff;
    --text-main: #334155;
    --text-muted: #64748b;
    --radius: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--light-bg);
    color: var(--text-main);
    margin: 0;
    overflow-x: hidden;
}

@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
}

.modern-nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    height: 70px;
}

.hero-slider-wrap {
    background: #000;
    height: 85vh;
    min-height: 550px;
    width: 100%;
    margin-top: 70px;
    overflow: hidden;
    position: relative;
}

.hero-item {
    position: relative;
    height: 85vh;
    min-height: 550px;
    width: 100%;
    outline: none;
    opacity: 1;
}

.slick-dots li {
    list-style: none !important;
}

.slick-dots {
    bottom: 25px !important;
}

/* CSS-First: Show first slide immediately */
.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, .85), rgba(0, 0, 0, .4), transparent);
    display: flex;
    align-items: center;
    padding-left: 10%;
    z-index: 10;
}

.hero-content {
    max-width: 700px;
    color: #ffffff !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    transition: none !important;
    position: relative;
    z-index: 20;
}

.hero-title,
.hero-desc {
    color: #ffffff !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Show content immediately on first slide */
@media (max-width: 768px) {
    .hero-slider-wrap {
        aspect-ratio: 4 / 5;
        min-height: 500px;
    }

    .hero-item {
        height: 65vh;
    }
}

/* Login Dropdown Hover */
.login-dropdown:hover .dropdown-menu {
    display: block;
    animation: fadeIn 0.2s ease-in;
}

.login-dropdown .dropdown-menu {
    margin-top: 0;
    top: 100%;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
