body {
    margin: 0;
    font-family: 'Poppins', Arial, sans-serif;
}

header {
    width: 100%;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    z-index: 9999;
}

.navbar {
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 9999;
}

.dropdown-menu {
    border: none;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 1rem 0;
    margin-top: 10px;
    z-index: 10000;
    position: absolute;
}

/* Remove this as it's causing the issue */
/* .hero-section {
    position: relative;
    z-index: 1;
} */

.dropdown-item {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    padding: 0.7rem 1.5rem;
    color: #2c3e50;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: rgba(52, 152, 219, 0.1);
    color: #3498db;
    transform: translateX(5px);
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        padding: 1rem;
        border-radius: 10px;
        margin-top: 1rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .nav-link::after {
        display: none;
    }
    
    .dropdown-menu {
        box-shadow: none;
        padding: 0;
        margin: 0;
    }
    
    .dropdown-item {
        padding: 0.7rem 1rem;
    }
}

.logo {
    width: 100px !important;
    height: 80px !important;
    object-fit: contain;
}

.nav-link:hover {
    color: #009688 !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #009688;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

.dropdown-item:hover {
    background: rgba(0, 150, 136, 0.1);
    color: #009688;
    transform: translateX(5px);
}

.company-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
}

/* Remove these classes */
.top-bar,
.social-links,
.social-links a,
.social-links a:hover {
    display: none;
}
