/* Updated Navigation Styles with Color Scheme */

/* Main Navigation Links */
.navbar-nav .nav-link {
    color: #4B0082 !important; /* Indigo color */
    font-family: 'Times New Roman', Times, serif;
    font-weight: bold;
    transition: all 0.3s ease;
    padding: 10px 15px;
    margin: 0 2px;
}

.navbar-nav .nav-link:hover {
    color: #008080 !important; /* Teal color */
    background-color: rgba(75, 0, 130, 0.05);
    border-radius: 5px;
}

.navbar-nav .nav-link.active {
    color: #008080 !important; /* Teal color */
    border-bottom: 2px solid #008080;
}

/* Dropdown Styling */
.dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 10px 0;
    border-radius: 10px;
    min-width: 220px;
    border-top: 3px solid #008080; /* Teal color */
}

.dropdown-item {
    padding: 10px 20px;
    color: #4B0082 !important; /* Indigo color */
    font-family: 'Times New Roman', Times, serif;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: rgba(0, 128, 128, 0.1);
    color: #6A5ACD !important; /* Light purple color */
}

/* Dropdown Toggle Caret */
.dropdown-toggle::after {
    color: #008080; /* Teal color */
    margin-left: 5px;
}

/* Hotline Button - Already styled correctly */
.navbar-toggler {
    border-color: #4B0082; /* Indigo color */
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(75, 0, 130, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* Social Icons in Header */
.header-social-icons {
    display: flex;
    align-items: center;
    margin-left: 15px;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .navbar-nav .nav-link {
        padding: 10px 0;
    }
    
    .dropdown-menu {
        border: none;
        box-shadow: none;
        padding-left: 20px;
        background-color: rgba(75, 0, 130, 0.05);
    }
}