/* 1. Body & Top Red Line */
body {
    margin: 0;
    padding: 0;
    padding-top: 3px;
    font-family: 'Inter', -apple-system, sans-serif;
    background-color: #F9F9F9;
    color: #333333;
}

body::before {
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    background-color: #ff0000;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}

/* 2. Navigation Bar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
    background-color: #FFFFFF;
    border-bottom: 1px solid #EAEAEA;
    position: relative;
    z-index: 1000;
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

/* 3. Menu Styling */
.menu {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.menu a {
    color: #1a1a1a;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

.menu a:hover {
    color: #FF0000;
}

/* 4. Dropdown Logic */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    list-style: none;
    padding: 10px 0;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    min-width: 180px;
    z-index: 1000;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content li a {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-transform: none;
    letter-spacing: 0;
}

/* 5. Mobile Menu Toggle */
.menu-toggle {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #333;
    transition: all 0.3s ease;
}

/* Media Query - Mobile View */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    .menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fff;
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 8px 16px rgba(0,0,0,0.1);
        text-align: center;
    }
    .menu.active {
        display: flex !important;
    }
    .menu li {
        margin: 10px 0;
    }
}

/* 6. Social Media Float */
.social-float {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 9998;
}

.social-float a {
    padding: 10px 15px;
    background: #FF0000;
    color: white;
    text-decoration: none;
    border-radius: 5px 0 0 5px;
    font-size: 0.8rem;
    transition: 0.3s;
}

.social-float a:hover {
    padding-right: 30px;
    background: #333;
}