:root {
    --primary: #059669;
    --primary-dark: #047857;
    --primary-deep: #064e3b;
    --primary-light: #ecfdf5;
    --accent-gold: #d97706;
    --accent-amber: #f59e0b;
    --accent-red: #dc2626;
    --text-main: #0f172a;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    --border-color: #e2e8f0;
    --card-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.01);
    --card-shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.03);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Tiro Devanagari Hindi', 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

main {
    flex: 1;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    main {
        padding: 0 12px;
    }
}

a {
    text-decoration: none;
    color: inherit;
}

/* Top Bar */
.top-bar {
    background: linear-gradient(90deg, #064e3b 0%, #047857 100%);
    color: #f0fdf4;
    font-size: 13px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    width: 100%;
}

.top-bar-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 7px 20px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    box-sizing: border-box;
}

.top-bar-right {
    display: flex;
    gap: 20px;
    align-items: center;
}

.status-dot {
    height: 8px;
    width: 8px;
    background-color: #34d399;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px #34d399;
}

/* Header Navigation */
.header-main {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 3px solid var(--primary);
    position: sticky;
    top: 0;
    z-index: 9999;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    width: 100%;
}

.header-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    position: relative;
}

.logo-box {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
    text-decoration: none;
}

.emblem {
    height: 52px;
    width: 52px;
    object-fit: contain;
    border-radius: 50%;
    border: 1.5px solid var(--primary);
    box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.portal-title {
    min-width: 0;
}

.portal-title h1 {
    font-size: 22px;
    color: var(--primary-deep);
    font-weight: 800;
    letter-spacing: -0.3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.portal-title p {
    font-size: 12.5px;
    color: var(--text-muted);
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links a {
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14.5px;
    color: #334155;
    transition: all 0.2s ease;
}

.nav-links a:hover, .nav-links a.active {
    background-color: var(--primary-light);
    color: var(--primary-dark);
}

/* Mobile Hamburger Toggle */
.mobile-nav-toggle {
    display: none;
    background: transparent;
    border: none;
    font-size: 24px;
    color: var(--primary-deep);
    cursor: pointer;
    padding: 6px;
}

.container {
    max-width: 100%;
    margin: 20px auto;
    padding: 0;
    width: 100%;
    box-sizing: border-box;
}

.alert-banner {
    background: #f0fdf4;
    border-left: 5px solid var(--primary);
    padding: 16px 20px;
    margin-bottom: 24px;
    border-radius: 10px;
    color: var(--primary-deep);
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.08);
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.25);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(5, 150, 105, 0.35);
}

/* Footer */
footer {
    background-color: #0f172a;
    color: #94a3b8;
    padding: 40px 24px 30px;
    margin-top: 60px;
    border-top: 4px solid var(--primary);
    font-size: 14px;
}

.footer-grid {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
    text-align: left;
    padding: 0 20px;
}

.footer-col h4 {
    color: #f8fafc;
    font-size: 16px;
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #94a3b8;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: #34d399;
}

/* Native Hindi AI Chatbot Floating Widget */
.chatbot-fab {
    position: fixed;
    bottom: 28px;
    right: 28px;
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 12px 30px rgba(4, 120, 87, 0.4);
    cursor: pointer;
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.chatbot-fab:hover {
    transform: scale(1.06) translateY(-2px);
}

.chatbot-box {
    position: fixed;
    bottom: 96px;
    right: 28px;
    width: 410px;
    max-width: calc(100vw - 32px);
    height: 560px;
    max-height: calc(100vh - 120px);
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    display: none;
    flex-direction: column;
    z-index: 10000;
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.8);
    animation: popIn 0.3s ease-out;
}

@keyframes popIn {
    from { opacity: 0; transform: scale(0.9) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.chatbot-header {
    background: linear-gradient(90deg, #064e3b 0%, #047857 100%);
    color: #ffffff;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
}

.chatbot-messages {
    flex: 1;
    padding: 18px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
    background-color: #f8fafc;
}

.chat-msg {
    max-width: 88%;
    padding: 12px 16px;
    border-radius: 14px;
    font-size: 14px;
    line-height: 1.6;
}

.chat-msg.bot {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    align-self: flex-start;
    color: #0f172a;
    box-shadow: 0 2px 6px rgba(0,0,0,0.02);
}

.chat-msg.user {
    background: linear-gradient(135deg, #059669, #047857);
    color: #ffffff;
    align-self: flex-end;
}

.chatbot-chips {
    padding: 10px 14px;
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    white-space: nowrap;
}

.chip-btn {
    background: var(--primary-light);
    color: var(--primary-dark);
    border: 1px solid #a7f3d0;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
}

.chatbot-input-bar {
    padding: 12px 16px;
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
    display: flex;
    gap: 8px;
}

.chatbot-input-bar input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    outline: none;
    font-size: 14px;
}

.btn-send {
    background: var(--primary);
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
}

/* Responsive Breakpoints (Mobile, Tablet, Laptop) */
@media (max-width: 992px) {
    .header-main {
        position: sticky;
        top: 0;
        z-index: 9999;
    }

    .header-inner {
        padding: 10px 16px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        padding: 12px 16px;
        box-shadow: 0 16px 32px rgba(0, 0, 0, 0.15);
        border-bottom: 3px solid var(--primary);
        z-index: 10000;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav-links.show {
        display: flex;
    }

    .nav-links a {
        padding: 12px 16px;
        width: 100%;
        border-bottom: 1px solid #f1f5f9;
        font-size: 15px;
        border-radius: 6px;
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .mobile-nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        width: 42px;
        height: 42px;
        border-radius: 8px;
        background: var(--primary-light);
        border: 1.5px solid var(--primary);
        font-size: 22px;
        color: var(--primary-deep);
        cursor: pointer;
        transition: all 0.2s ease;
        margin-left: 12px;
    }

    .mobile-nav-toggle:active {
        transform: scale(0.95);
        background: var(--primary);
        color: white;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
}

@media (max-width: 640px) {
    .top-bar {
        flex-direction: column;
        gap: 4px;
        text-align: center;
        font-size: 11.5px;
        padding: 6px 12px;
    }

    .top-bar-right {
        gap: 10px;
    }

    .logo-box {
        gap: 10px;
        max-width: calc(100% - 56px);
    }

    .portal-title h1 {
        font-size: 16px;
        line-height: 1.25;
    }

    .portal-title p {
        font-size: 10px;
        line-height: 1.2;
    }

    .emblem {
        height: 38px;
        width: 38px;
    }

    .top-green-nav-wrapper {
        padding: 0 12px !important;
        margin-top: 10px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .top-green-nav-container {
        -webkit-overflow-scrolling: touch;
    }

    .top-green-nav-link {
        padding: 8px 12px;
        font-size: 13px;
    }

    .container {
        padding: 0 16px;
        margin: 16px auto;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .chatbot-fab {
        bottom: 18px;
        right: 18px;
        padding: 12px 18px;
        font-size: 14px;
    }

    .chatbot-box {
        bottom: 80px;
        right: 16px;
        width: calc(100vw - 32px);
        height: 480px;
    }
}

/* Dynamic ChatGPT AI Styles */
.online-indicator {
    width: 9px;
    height: 9px;
    background-color: #10b981;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.4);
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.chat-header-btn {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: white;
    font-size: 15px;
    cursor: pointer;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.chat-header-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.typing-indicator-box {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
}

.typing-dots {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.typing-dots span {
    width: 6px;
    height: 6px;
    background-color: #059669;
    border-radius: 50%;
    display: inline-block;
    animation: typingBounce 1.4s infinite ease-in-out both;
}

.typing-dots span:nth-child(1) { animation-delay: 0s; }
.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingBounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1.0); }
}

.typing-cursor {
    display: inline-block;
    margin-left: 2px;
    color: #059669;
    animation: blinkCursor 0.8s infinite;
}

@keyframes blinkCursor {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.chat-list {
    margin: 6px 0 6px 18px;
    padding: 0;
}

.chat-list li {
    margin-bottom: 4px;
}

.inline-code {
    background: #f1f5f9;
    color: #0f172a;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: monospace;
    font-size: 0.9em;
}

/* ==========================================================================
   Banner Slider & Navigation Enhancements (Matching Screenshot Layout)
   ========================================================================== */

/* 1. Top Green Navigation Bar */
.top-green-nav-container {
    background-color: #98e4b8;
    border: 1px solid #1b4332;
    margin-top: 16px;
    margin-bottom: 14px;
    border-radius: 4px;
    overflow-x: auto;
    scrollbar-width: none;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
}

.top-green-nav-container::-webkit-scrollbar {
    display: none;
}

.top-green-nav-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    white-space: nowrap;
}

.top-green-nav-item {
    border-right: 1.5px solid #1b4332;
    flex-shrink: 0;
}

.top-green-nav-item:last-child {
    border-right: none;
}

.top-green-nav-link {
    display: block;
    padding: 10px 14px;
    font-size: 14.5px;
    font-weight: 700;
    color: #0b3c26;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
    font-family: 'Tiro Devanagari Hindi', sans-serif;
}

.top-green-nav-link:hover {
    background-color: #79d69f;
    color: #042d1b;
}

/* Standard Section FAQ Card */
.faq-section-wrapper {
    width: 100%;
    max-width: 1440px;
    margin: 36px auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.faq-section-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 28px 32px;
    box-shadow: var(--card-shadow);
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .faq-section-wrapper {
        padding: 0 12px !important;
        margin-bottom: 24px !important;
    }
    .faq-section-card {
        padding: 20px 16px !important;
        border-radius: 12px !important;
    }
}

/* 2. Hero Banner Arrow Controls Overlay */
.hero-slider-wrapper {
    position: relative;
    margin-bottom: 16px;
}

.slider-arrow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 25;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.85);
    border: 2px solid #334155;
    border-radius: 50%;
    color: #0f172a;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(4px);
    user-select: none;
}

.slider-arrow-btn:hover {
    background: #ffffff;
    color: #059669;
    border-color: #059669;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 18px rgba(5, 150, 105, 0.3);
}

.slider-arrow-btn.prev {
    left: 14px;
}

.slider-arrow-btn.next {
    right: 14px;
}

/* 3. Barcode & Yellow Circular Icon Slider Bar Below Banner */
.yellow-nav-card {
    background: #ffffff;
    border: 2px solid #0f172a;
    border-radius: 4px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    margin-bottom: 32px;
    overflow: hidden;
}

.barcode-icon-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    background: #ffffff;
    border-bottom: 2px solid #0f172a;
    gap: 10px;
    overflow-x: auto;
}

.barcode-side {
    width: 90px;
    height: 44px;
    background: repeating-linear-gradient(
        90deg,
        #1e293b 0px,
        #1e293b 3px,
        #ffffff 3px,
        #ffffff 5px,
        #1e293b 5px,
        #1e293b 9px,
        #ffffff 9px,
        #ffffff 11px,
        #1e293b 11px,
        #1e293b 12px,
        #ffffff 12px,
        #ffffff 15px
    );
    border: 1px solid #334155;
    flex-shrink: 0;
    border-radius: 2px;
}

.yellow-icons-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    flex: 1;
}

.yellow-icon-badge {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffd600;
    border: 3px solid #111827;
    box-shadow: inset 0 0 0 2px #ffffff, 0 3px 6px rgba(0, 0, 0, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #111827;
    cursor: pointer;
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.2s ease;
    text-decoration: none;
    user-select: none;
}

.yellow-icon-badge:hover {
    transform: scale(1.18);
    background: #ffea00;
    box-shadow: inset 0 0 0 2px #ffffff, 0 6px 14px rgba(0, 0, 0, 0.3);
}

.yellow-icon-badge.active {
    background: #059669;
    color: #ffffff;
    border-color: #064e3b;
}

/* 4. Slogan Quote Strip with Dots */
.slogan-dot-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    background: #f8fafc;
    gap: 14px;
    flex-wrap: wrap;
}

.dots-group {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dot-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #111827;
    display: inline-block;
    cursor: pointer;
    transition: all 0.2s ease;
}

.dot-indicator:hover, .dot-indicator.active {
    background-color: #059669;
    transform: scale(1.4);
}

.slogan-text {
    font-size: 15.5px;
    font-weight: 800;
    color: #0f172a;
    font-family: 'Tiro Devanagari Hindi', serif;
    letter-spacing: 0.2px;
}

/* ==========================================================================
   Clean, Catchy & Responsive Priority Quick Services Grid
   ========================================================================== */
.priority-services-section-wrapper {
    margin-top: 32px;
    margin-bottom: 40px;
}

.priority-services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
    margin-top: 20px;
}

@media (max-width: 1200px) {
    .priority-services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
}

@media (max-width: 576px) {
    .priority-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

.priority-service-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-top: 4px solid #059669;
    border-radius: 16px;
    padding: 24px 16px 20px;
    text-align: center;
    text-decoration: none;
    color: #0f172a;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 185px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.priority-service-card:hover {
    transform: translateY(-6px);
    border-color: #059669;
    box-shadow: 0 12px 30px rgba(5, 150, 105, 0.16);
}

.priority-icon-box {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: white;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    margin-bottom: 12px;
    transition: transform 0.25s ease;
}

.priority-service-card:hover .priority-icon-box {
    transform: scale(1.1);
}

.priority-service-title {
    font-size: 15px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.35;
    margin-bottom: 4px;
}

.priority-service-sub {
    font-size: 11.5px;
    color: #64748b;
    font-weight: 600;
    letter-spacing: 0.1px;
}

.priority-service-cta {
    font-size: 12px;
    font-weight: 700;
    color: #059669;
    margin-top: 12px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.2s ease;
}

.priority-service-card:hover .priority-service-cta {
    gap: 8px;
    color: #047857;
}

