:root {
    --primary-color: #1a365d; /* Deep Blue */
    --secondary-color: #dd6b20; /* Saffron */
    --light-bg: #f8f9fa;
    --text-dark: #2d3748;
    --font-size-base: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
    font-size: var(--font-size-base);
}

/* High Contrast Mode */
body.high-contrast {
    background: #000 !important;
    color: #ffff00 !important;
}
body.high-contrast * {
    background-color: #000 !important;
    color: #ffff00 !important;
    border-color: #ffff00 !important;
}
body.high-contrast a {
    color: #00ffff !important;
}
body.high-contrast img {
    filter: grayscale(100%) contrast(1.2);
}

/* Skip to Content - GIGW */
.skip-to-content {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: #fff;
    padding: 12px 24px;
    z-index: 10000;
    text-decoration: none;
    font-weight: 600;
    border-radius: 0 0 8px 8px;
    transition: top 0.3s;
}
.skip-to-content:focus {
    top: 0;
    color: #fff;
}

/* GIGW Accessibility Bar */
.gigw-accessibility-bar {
    background: #0a1628;
    color: #fff;
    padding: 6px 0;
    font-size: 0.8rem;
    border-bottom: 2px solid var(--secondary-color);
}
.gigw-accessibility-bar .accessibility-links {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.gigw-accessibility-bar .accessibility-links a {
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s;
}
.gigw-accessibility-bar .accessibility-links a:hover {
    color: var(--secondary-color);
}
.gigw-accessibility-bar .india-gov-logo {
    height: 18px;
    vertical-align: middle;
}
.gigw-accessibility-bar .divider {
    color: rgba(255,255,255,0.3);
    margin: 0 4px;
}
.gigw-accessibility-bar .accessibility-controls {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    flex-wrap: wrap;
}
.gigw-accessibility-bar .control-label {
    color: rgba(255,255,255,0.7);
    font-size: 0.75rem;
}
.gigw-accessibility-bar .font-btn {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.4);
    color: #fff;
    padding: 2px 8px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.75rem;
    font-weight: 600;
    transition: all 0.2s;
}
.gigw-accessibility-bar .font-btn:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}
.gigw-accessibility-bar .contrast-btn {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.4);
    color: #fff;
    padding: 2px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.75rem;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.gigw-accessibility-bar .contrast-btn:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

/* Google Translate Widget Styling */
.google-translate-wrapper {
    display: inline-block;
}
#google_translate_element {
    display: inline-block;
}
#google_translate_element select {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.4);
    color: #fff;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.75rem;
    cursor: pointer;
}
#google_translate_element .goog-te-gadget {
    font-size: 0 !important;
}
#google_translate_element .goog-te-gadget span {
    display: none !important;
}
.goog-te-banner-frame {
    display: none !important;
}
body {
    top: 0 !important;
}
.goog-te-menu-frame {
    box-shadow: 0 4px 20px rgba(0,0,0,0.15) !important;
}

/* GIGW Focus Indicators for Keyboard Navigation */
a:focus, button:focus, input:focus, select:focus, textarea:focus, [tabindex]:focus {
    outline: 3px solid var(--secondary-color) !important;
    outline-offset: 2px;
}
.btn:focus, .nav-link:focus, .dropdown-item:focus {
    outline: 3px solid var(--secondary-color) !important;
    outline-offset: 2px;
    box-shadow: none !important;
}

/* GIGW Footer Links */
.gigw-footer-links a {
    text-decoration: none;
    transition: color 0.2s;
}
.gigw-footer-links a:hover {
    color: var(--secondary-color) !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
}

/* Top Bar */
.top-bar {
    background-color: var(--primary-color);
    color: white;
    font-size: 0.85rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.top-bar a {
    color: white;
    text-decoration: none;
    margin-left: 15px;
    transition: color 0.3s;
}

.top-bar a:hover {
    color: var(--secondary-color);
}

/* AQI Display */
.aqi-info {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.aqi-location {
    font-size: 0.8rem;
    opacity: 0.9;
}

#aqi-badge {
    font-size: 0.75rem;
    font-weight: 600;
}

/* Navbar */
.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 15px 0;
}

.navbar-brand img {
    height: 60px;
    margin-right: 15px;
}

.indian-bank-logo {
    height: 45px;
    margin-left: 20px;
    padding-left: 20px;
    border-left: 1px solid #eee;
}

.brand-text h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    line-height: 1.2;
    text-transform: uppercase;
}

.brand-text span {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
}

/* Header Action Buttons */
.nav-btn {
    background-color: var(--primary-color);
    color: white !important;
    padding: 6px 14px !important;
    border-radius: 5px;
    font-weight: 500;
    font-size: 0.8rem;
    margin-left: 6px;
    transition: all 0.3s;
    border: 1px solid var(--primary-color);
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.nav-btn:hover {
    background-color: #2a4365;
    border-color: #2a4365;
    transform: translateY(-1px);
}

.nav-btn-outline {
    background-color: white;
    color: var(--primary-color) !important;
    padding: 6px 14px !important;
    border-radius: 5px;
    font-weight: 500;
    font-size: 0.8rem;
    margin-left: 6px;
    transition: all 0.3s;
    border: 1px solid var(--primary-color);
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.nav-btn-outline:hover {
    background-color: var(--primary-color);
    color: white !important;
    transform: translateY(-1px);
}

/* Hero Carousel */
.carousel-item {
    height: 600px;
}

.carousel-item img {
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.carousel-caption {
    bottom: 30%;
    text-align: left;
}

.carousel-caption h2 {
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    animation: fadeInUp 1s;
}

.carousel-caption p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    animation: fadeInUp 1s 0.2s;
    animation-fill-mode: both;
}

/* Marquee */
.news-ticker {
    background: var(--primary-color);
    color: white;
    padding: 10px 0;
    position: relative;
}

.ticker-label {
    background: var(--secondary-color);
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 10;
    padding: 0 20px;
    display: flex;
    align-items: center;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
}

/* Quick Actions Section */
.action-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    border: 1px solid #eee;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.action-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: var(--secondary-color);
}

.action-icon {
    width: 80px;
    height: 80px;
    background: rgba(26, 54, 93, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-color);
    font-size: 2rem;
    transition: all 0.3s;
}

.action-card:hover .action-icon {
    background: var(--primary-color);
    color: white;
}

.action-title {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

/* Guide Banner */
.guide-banner {
    background: linear-gradient(to right, #1a365d, #2a4365);
    color: white;
    padding: 25px 0;
    /* margin-bottom: 40px; */
    position: relative;
    z-index: 5;
}

/* Places to Visit */
.place-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 100%;
    background: white;
}

.place-img {
    height: 200px;
    overflow: hidden;
}

.place-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.place-card:hover .place-img img {
    transform: scale(1.1);
}

.place-content {
    padding: 20px;
}

.place-title {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

/* Social Feeds */
.social-feed-box {
    background: white;
    border-radius: 10px;
    padding: 20px;
    height: 100%;
    border: 1px solid #e1e1e1;
}

.social-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 10px;
}

.fb-icon { background: #1877f2; }
.insta-icon { background: #e4405f; }

.mock-post {
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.mock-post-img {
    height: 150px;
    background: #ddd;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 0.8rem;
}

.mock-post-content {
    padding: 10px;
    font-size: 0.85rem;
    color: #555;
}

/* Useful Links */
.link-list {
    list-style: none;
    padding: 0;
}

.link-list li {
    margin-bottom: 10px;
    border-bottom: 1px dashed #ddd;
    padding-bottom: 10px;
}

.link-list a {
    text-decoration: none;
    color: #444;
    font-weight: 500;
    transition: 0.3s;
    display: flex;
    align-items: center;
}

.link-list a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.link-list i {
    margin-right: 10px;
    color: var(--secondary-color);
}

/* Partners Section */
.partners-section {
    background: #f8f9fa;
    padding: 30px 0;
    border-top: 1px solid #e2e8f0;
}

/* Footer */
footer {
    background: var(--primary-color);
    color: white;
    padding: 50px 0 20px;
}

.footer-title {
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary-color);
    display: inline-block;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #e2e8f0;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.copyright-bar {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: #cbd5e0;
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .carousel-item { height: 400px; }
    .carousel-caption h2 { font-size: 2rem; }
    .brand-text h1 { font-size: 1.2rem; }
    .ticker-label { font-size: 0.7rem; padding: 0 10px; }
    .indian-bank-logo { display: none; }
}

.site-footer-logo img {
    height: 53px;
    width: auto;
    margin-bottom: 20px;
}
/* ===== SUB PAGES CSS STYLES ===== */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), #2a4365);
    color: white;
    padding: 60px 0 40px;
    margin-bottom: 0;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.page-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 0;
}

.breadcrumb {
    background: rgba(255,255,255,0.1);
    border-radius: 25px;
    padding: 8px 20px;
    margin-bottom: 0;
}

.breadcrumb-item a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: white;
}

/* About Page Styles */
.content-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    height: 100%;
}

.info-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border-left: 4px solid var(--secondary-color);
}

.fact-list {
    list-style: none;
    padding: 0;
}

.fact-list li {
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
}

.fact-list li:last-child {
    border-bottom: none;
}

.leader-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    height: 100%;
}

.leader-card:hover {
    transform: translateY(-5px);
}

.leader-img {
    margin-bottom: 20px;
}
.leader-card .leader-img img{
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.leader-name {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.leader-title {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.achievement-card {
    text-align: center;
    padding: 20px;
}

.achievement-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 1.5rem;
}

.achievement-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.achievement-text {
    color: #666;
    font-weight: 500;
    margin-bottom: 0;
}

/* Services Page Styles */
.service-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    border: 1px solid #eee;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: var(--secondary-color);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(26, 54, 93, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 1.8rem;
    transition: all 0.3s;
}

.service-card:hover .service-icon {
    background: var(--primary-color);
    color: white;
}

.service-title {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.service-features li {
    padding: 5px 0;
    color: #666;
    font-size: 0.9rem;
}

.service-features li:before {
    content: "✓";
    color: var(--secondary-color);
    font-weight: bold;
    margin-right: 8px;
}

.process-step {
    text-align: center;
    padding: 20px;
}

.process-number {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
}

.process-title {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.support-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* Tenders Page Styles */
.category-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s;
    cursor: pointer;
    border: 2px solid transparent;
}

.category-card:hover, .active-category {
    border-color: var(--secondary-color);
    transform: translateY(-5px);
}

.category-icon {
    width: 60px;
    height: 60px;
    background: rgba(26, 54, 93, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.active-category .category-icon {
    background: var(--secondary-color);
    color: white;
}

.category-title {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.category-count {
    color: #666;
    margin-bottom: 0;
}

.tender-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    overflow: hidden;
}

.tender-header {
    background: #f8f9fa;
    padding: 20px 30px;
    border-bottom: 1px solid #eee;
}

.tender-title {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.tender-ref {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.tender-status {
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-active {
    background: #d4edda;
    color: #155724;
}

.status-closing {
    background: #fff3cd;
    color: #856404;
}

.tender-body {
    padding: 30px;
}

.tender-description {
    color: #666;
    margin-bottom: 15px;
}

.tender-details {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.detail-item {
    color: #666;
    font-size: 0.9rem;
}

.detail-item i {
    color: var(--secondary-color);
    margin-right: 5px;
}

.tender-value {
    text-align: right;
}

.value-label {
    display: block;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.value-amount {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.tender-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.guidelines-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.guidelines-list {
    list-style: none;
    padding: 0;
}

.guidelines-list li {
    padding: 8px 0;
    color: #666;
    border-bottom: 1px dashed #eee;
}

.guidelines-list li:before {
    content: "•";
    color: var(--secondary-color);
    font-weight: bold;
    margin-right: 10px;
}

.contact-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border-left: 4px solid var(--secondary-color);
}

.contact-info p {
    margin-bottom: 10px;
    color: #666;
}

/* Contact Page Styles */
.contact-info-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    height: 100%;
}

.contact-info-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.8rem;
}

.contact-title {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-text {
    color: #666;
    margin-bottom: 0;
}

.contact-text a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-form-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.map-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    height: 100%;
}

.map-placeholder {
    background: #f8f9fa;
    border-radius: 10px;
    /* padding: 60px 20px; */
    text-align: center;
    border: 2px dashed #ddd;
}

.hours-list {
    list-style: none;
    padding: 0;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    border-bottom: 1px dashed #eee;
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-list span:first-child {
    font-weight: 600;
    color: var(--primary-color);
}

.department-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    height: 100%;
}

.department-card:hover {
    transform: translateY(-5px);
}

.dept-icon {
    width: 60px;
    height: 60px;
    background: rgba(26, 54, 93, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.dept-name {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.dept-contact {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.emergency-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border-left: 4px solid #dc3545;
}

.emergency-numbers {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.emergency-item {
    color: #666;
    font-size: 0.95rem;
}

/* Mobile Responsive for Sub Pages */
@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }
    
    .tender-details {
        flex-direction: column;
        gap: 10px;
    }
    
    .tender-actions {
        justify-content: center;
        margin-top: 20px;
    }
    
    .tender-value {
        text-align: center;
        margin-bottom: 20px;
    }
    
    .emergency-numbers {
        text-align: center;
    }
    
    .emergency-item {
        margin-bottom: 10px;
    }
}

/* ===== NAVIGATION DROPDOWN STYLES ===== */

/* Main Nav Link Styles */
.navbar-nav .nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding: 10px 12px !important;
    transition: all 0.3s ease;
    position: relative;
    font-size: 0.9rem;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--secondary-color);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 12px;
    right: 12px;
    height: 2px;
    background: var(--secondary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

/* Action Buttons Group */
.navbar-nav .action-buttons-group {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: 10px;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

/* Dropdown Toggle */
.navbar-nav .dropdown-toggle::after {
    margin-left: 5px;
    vertical-align: middle;
    border-top-color: var(--primary-color);
    transition: transform 0.3s ease;
}

.navbar-nav .dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.navbar-nav .dropdown-menu {
    border: none;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    padding: 10px 0;
    min-width: 220px;
    animation: fadeInDown 0.3s ease;
    margin-top: 0;
    top: 100%;
    left: 0;
    z-index: 1050;
}

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

.navbar-nav .dropdown > .nav-link {
    padding-bottom: 20px !important;
    margin-bottom: -10px;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.navbar-nav .dropdown-item {
    padding: 10px 20px;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease;
}

.navbar-nav .dropdown-item:hover,
.navbar-nav .dropdown-item:focus {
    background: linear-gradient(90deg, rgba(221, 107, 32, 0.1), transparent);
    color: var(--secondary-color);
    padding-left: 25px;
}

.navbar-nav .dropdown-item i {
    color: var(--primary-color);
    width: 20px;
    transition: color 0.3s ease;
}

.navbar-nav .dropdown-item:hover i {
    color: var(--secondary-color);
}

/* Desktop Hover Dropdown */
@media (min-width: 992px) {
    .navbar-nav .dropdown:hover > .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .navbar-nav .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.3s ease;
        pointer-events: none;
    }
    
    .navbar-nav .dropdown:hover > .dropdown-menu {
        pointer-events: auto;
    }
}

/* Mobile Navigation */
@media (max-width: 991px) {
    .navbar-nav {
        padding: 15px 0;
    }
    
    .navbar-nav .nav-link {
        padding: 12px 15px !important;
        border-bottom: 1px solid #eee;
    }
    
    .navbar-nav .nav-link::after {
        display: none;
    }
    
    .navbar-nav .dropdown-menu {
        box-shadow: none;
        background: #f8f9fa;
        border-radius: 0;
        margin: 0;
        padding-left: 20px;
    }
    
    .navbar-nav .nav-btn,
    .navbar-nav .nav-btn-outline {
        display: block;
        text-align: center;
        margin: 5px 15px;
    }
}

/* Gallery Tab Pills */
.nav-pills .nav-link {
    color: var(--primary-color);
    border-radius: 25px;
    padding: 10px 25px;
    margin: 0 5px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-pills .nav-link:hover {
    background: rgba(26, 54, 93, 0.1);
}

.nav-pills .nav-link.active {
    background: var(--primary-color);
    color: white;
}

/* Enhanced Form Styles */
.form-control:focus,
.form-select:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(221, 107, 32, 0.25);
}

/* Button Enhancements */
.btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #2a4365;
    border-color: #2a4365;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 54, 93, 0.3);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Language Switch */
.lang-switch a {
    font-size: 0.85rem;
    opacity: 0.9;
}

.lang-switch a:hover {
    opacity: 1;
    color: var(--secondary-color) !important;
}

/* Admin Button Style */
.nav-btn-admin {
    background: #475569 !important;
    color: white !important;
    padding: 6px 14px !important;
    border-radius: 5px;
    font-weight: 500;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    margin-left: 6px;
    border: 1px solid #475569;
    white-space: nowrap;
}

.nav-btn-admin:hover {
    background: #334155 !important;
    border-color: #334155;
    transform: translateY(-1px);
}

/* Action Buttons Container */
.navbar-nav .nav-item.ms-lg-2 {
    margin-left: 12px !important;
}

/* Header buttons spacing on larger screens */
@media (min-width: 1200px) {
    .nav-btn, .nav-btn-outline, .nav-btn-admin {
        padding: 8px 16px !important;
        font-size: 0.85rem;
    }
}

/* ============================================
   FLOATING ACCESSIBILITY PANEL
   ============================================ */

/* Accessibility Toggle Button */
.accessibility-toggle-btn {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9998;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.accessibility-toggle-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-50%) scale(1.1);
}

/* Accessibility Panel */
.accessibility-panel {
    position: fixed;
    right: -400px;
    top: 50%;
    transform: translateY(-50%);
    width: 320px;
    max-height: 90vh;
    background: #fff;
    border-radius: 16px 0 0 16px;
    box-shadow: -5px 0 30px rgba(0,0,0,0.2);
    z-index: 9999;
    transition: right 0.4s ease;
    overflow-y: auto;
}
.accessibility-panel.open {
    right: 0;
}
.accessibility-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
    background: #f8f9fa;
    border-radius: 16px 0 0 0;
}
.accessibility-panel-header h5 {
    margin: 0;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
}
.accessibility-panel-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}
.accessibility-panel-close:hover {
    color: #000;
}
.accessibility-panel-body {
    padding: 20px;
}
.accessibility-section {
    margin-bottom: 24px;
}
.accessibility-section h6 {
    font-size: 0.85rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
}
.accessibility-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.accessibility-grid.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}
.accessibility-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px 10px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}
.accessibility-btn:hover {
    border-color: var(--primary-color);
    background: #f8fafc;
}
.accessibility-btn.active {
    border-color: var(--primary-color);
    background: #e0f2fe;
}
.accessibility-btn i {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: #333;
}
.accessibility-btn span {
    font-size: 0.75rem;
    color: #555;
    font-weight: 500;
}

/* India Flag in Header */
.india-flag-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
}
.india-flag-img {
    width: 45px;
    height: auto;
    border-radius: 3px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Language Translator Panel */
.translator-toggle-btn {
    position: fixed;
    right: 20px;
    top: calc(50% + 70px);
    transform: translateY(-50%);
    z-index: 9998;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #138808;
    border: none;
    color: white;
    font-size: 1.3rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.translator-toggle-btn:hover {
    background: #0d6e06;
    transform: translateY(-50%) scale(1.1);
}

.translator-panel {
    position: fixed;
    right: -400px;
    top: 50%;
    transform: translateY(-50%);
    width: 340px;
    max-height: 90vh;
    background: #fff;
    border-radius: 16px 0 0 16px;
    box-shadow: -5px 0 30px rgba(0,0,0,0.2);
    z-index: 9999;
    transition: right 0.4s ease;
    overflow-y: auto;
}
.translator-panel.open {
    right: 0;
}
.translator-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: linear-gradient(135deg, #FF9933, #fff, #138808);
    border-radius: 16px 0 0 0;
}
.translator-panel-header h5 {
    margin: 0;
    font-weight: 600;
    color: #1a365d;
    font-size: 1rem;
}
.translator-panel-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #333;
    cursor: pointer;
}
.translator-panel-body {
    padding: 15px;
}
.language-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}
.language-btn {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
}
.language-btn:hover {
    border-color: #138808;
    background: #f0fff4;
}
.language-btn.active {
    border-color: #138808;
    background: #c6f6d5;
}
.language-btn .lang-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: #333;
}
.language-btn .lang-native {
    font-size: 0.75rem;
    color: #666;
}

/* Dark Mode Styles */
body.dark-mode {
    background: #1a1a2e !important;
    color: #eee !important;
}
body.dark-mode .navbar,
body.dark-mode .top-bar,
body.dark-mode .hero-section,
body.dark-mode footer,
body.dark-mode .card,
body.dark-mode .service-card,
body.dark-mode section {
    background: #16213e !important;
    color: #eee !important;
}
body.dark-mode .text-dark,
body.dark-mode h1, body.dark-mode h2, body.dark-mode h3,
body.dark-mode h4, body.dark-mode h5, body.dark-mode h6,
body.dark-mode p, body.dark-mode span, body.dark-mode a {
    color: #ddd !important;
}
body.dark-mode .card {
    border-color: #333 !important;
}

/* Big Cursor Mode */
body.big-cursor,
body.big-cursor * {
    cursor: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 24 24" fill="%23000"><path d="M7 2l12 11.2-5.8.8 3.4 7.8-2.1.9-3.4-7.8-4.1 4.1z"/></svg>'), auto !important;
}

/* Hide Images Mode */
body.hide-images img {
    visibility: hidden !important;
}

/* Text Spacing Mode */
body.text-spacing {
    letter-spacing: 0.12em !important;
    word-spacing: 0.16em !important;
}
body.text-spacing * {
    letter-spacing: inherit !important;
    word-spacing: inherit !important;
}

/* Line Height Mode */
body.line-height-increased {
    line-height: 2 !important;
}
body.line-height-increased * {
    line-height: inherit !important;
}

/* Overlay when panel is open */
.accessibility-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    z-index: 9997;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.accessibility-overlay.show {
    opacity: 1;
    visibility: visible;
}