/* Dropdown Menu Styles for NimkarGuruji */

.nav-menu .dropdown {
    position: relative;
}

.dropdown .nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown .nav-link i {
    font-size: 0.7rem;
    transition: transform 0.3s;
}

.dropdown:hover .nav-link i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 15px);
    left: 0;
    background: white;
    min-width: 240px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    border-radius: 10px;
    padding: 15px 0;
    display: none;
    z-index: 1000;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 12px 25px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
    border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
    background: linear-gradient(90deg, rgba(201, 169, 97, 0.1), transparent);
    color: var(--primary-color);
    padding-left: 30px;
    border-left-color: var(--primary-color);
}

/* Google Translate Styling */
#google_translate_element {
    display: inline-block;
}

#google_translate_element select {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s;
}

#google_translate_element select:hover {
    background: var(--primary-dark);
}

.goog-te-banner-frame {
    display: none !important;
}

body {
    top: 0 !important;
}

.goog-te-gadget {
    color: transparent !important;
}

.goog-te-gadget .goog-te-combo {
    margin: 0 !important;
}

/* Logo Link Styling */
.logo a {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo a:hover .logo-text {
    color: var(--primary-color);
}

/* Page Hero Styles */
.page-hero {
    padding-top: 120px;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: white;
}

.page-hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Service Features List */
.service-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.service-features li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-secondary);
}

.service-features i {
    color: var(--primary-color);
    margin-right: 8px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .nav-menu .dropdown {
        position: static;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        padding-left: 20px;
        margin-top: 10px;
        background: #f9f9f9;
        border-radius: 5px;
    }

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

    .dropdown.active .dropdown-menu {
        display: block;
    }
}
