/* Country Switcher Styles */
.country-selector {
    margin-left: 20px;
}

.country-selector .nav-link {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    color: white;
}

.country-flag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
}

.flag {
    width: 24px;
    height: 16px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.country-dropdown {
    min-width: 180px;
    padding: 8px 0;
    border: none;
    border-radius: 8px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

.country-option {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    transition: background-color 0.3s ease;
}

.country-option .flag {
    margin-right: 10px;
}

.country-option:hover {
    background-color: rgba(13, 71, 161, 0.1);
}

/* Country-specific styling classes */
body.india-services {
    /* Keep brand consistent (match logo/header/footer) */
    --primary-color: #0d47a1;
    --primary-light: #5e92f3;
    --primary-dark: #003c8f;
    --secondary-color: #1e88e5;
    --accent-color: #ffc107;
}

body.india-services .navbar {
    background-color: var(--primary-color);
}

body.india-services .navbar.scrolled {
    background-color: rgba(13, 71, 161, 0.95) !important;
}

body.india-services .btn-primary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

body.india-services .footer {
    background-color: var(--primary-dark);
}

/* Transition effect when switching */
body {
    transition: background-color 0.5s ease, color 0.5s ease;
}

.transition-fade * {
    transition: background-color 0.5s ease, color 0.5s ease, border-color 0.5s ease;
}