:root {
    --primary-color: #1a6b3c;
    --primary-light: #228b4f;
    --primary-dark: #145530;
    --secondary-color: #e67e22;
    --secondary-dark: #d35400;
    --accent-light: #f39c12;
    --light-bg: #f5f7fa;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
    --font-size-base: 16px;
}

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

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 {
    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 {
    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-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;
}

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;
}

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

/* ===== MODERN TOP BAR ===== */
.top-info-bar {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    font-size: 0.85rem;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.top-bar-item {
    color: rgba(255,255,255,0.9);
    font-size: 0.85rem;
}
.top-bar-divider {
    width: 1px;
    height: 18px;
    background: rgba(255,255,255,0.2);
    display: inline-block;
    vertical-align: middle;
}
.top-bar-link {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.85rem;
}
.top-bar-link:hover {
    color: var(--secondary-color);
}
.aqi-info {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
#aqi-badge {
    font-size: 0.75rem;
    font-weight: 600;
}

/* ===== MODERN NEWS TICKER ===== */
.news-ticker-bar {
    background: var(--primary-dark);
    color: white;
    padding: 0;
    position: relative;
    border-bottom: 2px solid var(--secondary-color);
}
.ticker-wrapper {
    display: flex;
    align-items: stretch;
    position: relative;
}
.news-ticker-bar .ticker-label {
    background: var(--secondary-color);
    padding: 10px 24px;
    display: flex;
    align-items: center;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    white-space: nowrap;
    flex-shrink: 0;
    z-index: 2;
}
.ticker-scroll {
    flex: 1;
    padding: 10px 20px;
    color: rgba(255,255,255,0.9);
    font-size: 0.88rem;
}
.ticker-item {
    margin: 0 40px;
}

/* ===== MODERN NAVBAR ===== */
.main-navbar {
    background: white;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    padding: 12px 0;
    z-index: 1030;
}
.brand-logo {
    height: 55px;
    margin-right: 10px;
}
.brand-text {
    line-height: 1.2;
}
.brand-name {
    font-family: 'Poppins', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
}
.brand-sub {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 500;
}
.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);
}
.navbar-nav .nav-link {
    color: var(--text-dark);
    font-weight: 600;
    padding: 10px 14px !important;
    transition: all 0.3s ease;
    position: relative;
    font-size: 0.88rem;
    letter-spacing: 0.2px;
}
.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: 14px;
    right: 14px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 3px;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}
.nav-btn {
    background: var(--primary-color) !important;
    color: white !important;
    padding: 8px 18px !important;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.82rem;
    margin-left: 6px;
    transition: all 0.3s;
    border: 2px solid var(--primary-color);
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}
.nav-btn:hover {
    background: var(--primary-light) !important;
    border-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26,54,93,0.3);
}
.nav-btn-outline {
    background: white;
    color: var(--primary-color) !important;
    padding: 8px 18px !important;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.82rem;
    margin-left: 6px;
    transition: all 0.3s;
    border: 2px solid var(--primary-color);
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}
.nav-btn-outline:hover {
    background: var(--primary-color);
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26,54,93,0.3);
}
.nav-btn-admin {
    background: #475569 !important;
    color: white !important;
    padding: 8px 18px !important;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.82rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    margin-left: 6px;
    border: 2px solid #475569;
    white-space: nowrap;
}
.nav-btn-admin:hover {
    background: #334155 !important;
    border-color: #334155;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(71,85,105,0.3);
}

.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);
}
.navbar-nav .dropdown-menu {
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    padding: 10px 0;
    min-width: 230px;
    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: 11px 22px;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.88rem;
}
.navbar-nav .dropdown-item:hover,
.navbar-nav .dropdown-item:focus {
    background: linear-gradient(90deg, rgba(230, 126, 34, 0.1), transparent);
    color: var(--secondary-color);
    padding-left: 28px;
}
.navbar-nav .dropdown-item i {
    color: var(--primary-color);
    width: 22px;
    transition: color 0.3s ease;
}
.navbar-nav .dropdown-item:hover i {
    color: var(--secondary-color);
}

@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;
    }
}

@media (max-width: 991px) {
    .navbar-nav {
        padding: 15px 0;
    }
    .navbar-nav .nav-link {
        padding: 12px 15px !important;
        border-bottom: 1px solid var(--border-color);
    }
    .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,
    .navbar-nav .nav-btn-admin {
        display: block;
        text-align: center;
        margin: 5px 15px;
    }
}

/* ===== MODERN FOOTER ===== */
.site-footer {
    font-family: 'Inter', sans-serif;
}
.footer-main {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: white;
    padding: 60px 0 30px;
}
.footer-logo {
    height: 55px;
    width: auto;
    margin-bottom: 20px;
}
.footer-about {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
}
.footer-heading {
    font-weight: 700;
    margin-bottom: 22px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--secondary-color);
    display: inline-block;
    font-size: 1rem;
    color: white;
}
.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-nav li {
    margin-bottom: 10px;
}
.footer-nav a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.88rem;
    display: inline-flex;
    align-items: center;
}
.footer-nav a::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 10px;
    font-size: 0.7rem;
    color: var(--secondary-color);
    transition: transform 0.3s;
}
.footer-nav a:hover {
    color: var(--secondary-color);
    padding-left: 6px;
}
.footer-nav a:hover::before {
    transform: translateX(3px);
}
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.75);
}
.footer-contact li i {
    color: var(--secondary-color);
    margin-top: 4px;
    flex-shrink: 0;
    width: 18px;
    text-align: center;
}
.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    padding: 8px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s;
    margin-top: 8px;
}
.footer-cta-btn:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230,126,34,0.3);
}
.footer-gov-links {
    background: rgba(0,0,0,0.15);
    padding: 14px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-gov-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.85rem;
    margin-right: 20px;
    transition: color 0.3s;
}
.footer-gov-links a:hover {
    color: var(--secondary-color);
}
.footer-copyright {
    background: var(--primary-dark);
    padding: 18px 0;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}
.footer-copyright a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 700;
}
.footer-copyright a:hover {
    color: var(--accent-light);
}

/* ===== SUB PAGES CSS STYLES ===== */

.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;
}

.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;
}

.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-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: "\2713";
    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);
}

.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: "\2022";
    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-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-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;
    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;
}

@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; }
}

.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;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(230, 126, 34, 0.25);
}

.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);
}

.lang-switch a {
    font-size: 0.85rem;
    opacity: 0.9;
}
.lang-switch a:hover {
    opacity: 1;
    color: var(--secondary-color) !important;
}

@media (min-width: 1200px) {
    .nav-btn, .nav-btn-outline, .nav-btn-admin {
        padding: 9px 20px !important;
        font-size: 0.85rem;
    }
}

.navbar-nav .nav-item.ms-lg-2 {
    margin-left: 12px !important;
}

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

/* ===== FLOATING ACCESSIBILITY PANEL ===== */
.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 {
    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 var(--border-color);
    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;
}

.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 var(--border-color);
    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;
}

body.dark-mode {
    background: #1a1a2e !important;
    color: #eee !important;
}
body.dark-mode .main-navbar,
body.dark-mode .top-info-bar,
body.dark-mode .site-footer,
body.dark-mode .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;
}

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;
}

body.hide-images img {
    visibility: hidden !important;
}

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

body.line-height-increased {
    line-height: 2 !important;
}
body.line-height-increased * {
    line-height: inherit !important;
}

.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;
}
.skiptranslate iframe {
    display: none !important;
}
