/**
 * Aadhaar website – UIDAI / Government of India style
 * Orange accent (#E85D04), blue (#1e3a8a), white background
 */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #f8f9fa;
    color: #1e293b;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a {
    text-decoration: none;
    color: #E85D04;
}

a:hover {
    text-decoration: underline;
}

/* Page content container */
.page {
    max-width: 1360px;
    margin: 0 auto;
    padding: 32px 20px 48px;
    flex: 1;
}

/* ----- Page subbanner (dynamic pages: title banner below main header) ----- */
.page-subbanner {
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 45%, #2563eb 100%);
    background-size: cover;
    background-position: center;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 20px rgba(30, 58, 138, 0.2);
}
.page-subbanner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    pointer-events: none;
}
.page-subbanner-inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 48px 20px;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 1;
}
.page-subbanner-title {
    margin: 0;
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}
/* Mobile: subbanner + full page layout */
@media (max-width: 767px) {
    .page-subbanner {
        min-height: 140px;
        padding: 24px 0;
    }
    .page-subbanner-inner {
        padding: 24px 16px;
    }
    .page-subbanner-title {
        font-size: 20px;
        line-height: 1.3;
        padding: 0 8px;
    }
    .page-content-wrap {
        padding: 24px 16px 40px;
        border-radius: 0 0 10px 10px;
    }
    .page-featured-image {
        margin-bottom: 20px;
        border-radius: 8px;
    }
    .page-body {
        font-size: 15px;
        line-height: 1.7;
    }
    .page-body h2 {
        font-size: 18px;
        margin: 24px 0 10px;
        padding-bottom: 6px;
    }
    .page-body h3 {
        font-size: 16px;
        margin: 18px 0 8px;
    }
    .page-body ul, .page-body ol {
        padding-left: 20px;
        margin-bottom: 14px;
    }
    .page-body blockquote {
        margin: 16px 0;
        padding: 12px 14px;
    }
}

/* Dynamic page content wrap (below subheader) */
.page-content-wrap {
    max-width: 1360px;
    margin: 0 auto;
    padding: 32px 10px 48px;
}
.page-featured-image {
    margin-bottom: 24px;
    border-radius: 8px;
    overflow: hidden;
}
.page-featured-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}
/* Page body: typography and content blocks with icons */
.page-body {
    font-size: 16px;
    line-height: 1.75;
    color: #1e293b;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.page-body img {
    max-width: 100%;
    height: auto;
}
.page-body p {
    margin: 0 0 16px;
}
.page-body p:last-child {
    margin-bottom: 0;
}
.page-body a {
    color: #E85D04;
}
.page-body a:hover {
    text-decoration: underline;
}
.page-body h2 {
    font-size: 22px;
    color: #1e3a8a;
    margin: 32px 0 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e2e8f0;
    font-weight: 700;
        text-align: center;
}
.page-body h2:first-child {
    margin-top: 0;
}
.page-body h3 {
    font-size: 14px;
    color: #334155;
    margin: 10px 0 10px;
    font-weight: 600;
}
.page-body ul, .page-body ol {
    margin: 0 0 16px;
    padding-left: 24px;
}
.page-body li {
    margin-bottom: 6px;
}
.page-body blockquote {
    margin: 20px 0;
    padding: 16px 20px;
    background: #f0f9ff;
    border-left: 4px solid #2563eb;
    color: #475569;
    font-style: italic;
}

/* Content block with icon (used in page content from DB) */
.page-content-block {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}
.page-block-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    color: #fff;
    border-radius: 10px;
    font-size: 22px;
}
.page-content-block h2,
.page-content-block h3 {
    margin-top: 0;
    border-bottom: none;
    padding-bottom: 0;
}
.page-content-block .block-text {
    flex: 1;
    min-width: 0;
}
.page-content-block .block-text p:last-child {
    margin-bottom: 0;
}

/* Page module section: dynamic module items displayed below page content */
.page-module-section {
    margin-top: 48px;
    padding-top: 8px;
    border-top: 1px solid #e2e8f0;
}
.page-module-heading {
    font-size: 22px;
    color: #1e3a8a;
    margin: 0 0 24px;
    padding-bottom: 10px;
    border-bottom: 3px solid #e0e7ff;
    font-weight: 700;
}
.page-module-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 10px;
}
/* Module display: 1 to 8 columns (set from c_panel per module) */
.page-module-grid.cols-1 { grid-template-columns: repeat(1, 1fr); }
.page-module-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.page-module-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.page-module-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.page-module-grid.cols-5 { grid-template-columns: repeat(5, 1fr); }
.page-module-grid.cols-6 { grid-template-columns: repeat(6, 1fr); }
.page-module-grid.cols-7 { grid-template-columns: repeat(7, 1fr); }
.page-module-grid.cols-8 { grid-template-columns: repeat(8, 1fr); }
.page-module-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.page-module-card:hover {
    box-shadow: 0 8px 24px rgba(30, 58, 138, 0.1);
    border-color: #c7d2fe;
}
.page-module-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    color: #fff;
    border-radius: 10px;
    font-size: 20px;
    margin-bottom: 16px;
}
.page-module-card-img {
    margin-bottom: 16px;
    border-radius: 8px;
    overflow: hidden;
}
.page-module-card-img img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}
.page-module-card-title {
    font-size: 18px;
    color: #1e40af;
    margin: 0 0 8px;
    font-weight: 600;
}
.page-module-card-desc {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
    margin: 0 0 12px;
}
.page-module-card-number {
    display: inline-block;
    font-size: 24px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 8px;
}
.page-module-card-link {
    font-size: 14px;
    color: #2563eb;
    font-weight: 500;
}
.page-module-card-link:hover {
    text-decoration: underline;
}
/* Theme color from c_panel color picker: --module-accent set on section */
.page-module-section.page-module-has-accent .page-module-heading {
    border-bottom-color: var(--module-accent);
    color: var(--module-accent);
}
.page-module-section.page-module-has-accent .page-module-card-icon {
    background: var(--module-accent);
}
.page-module-section.page-module-has-accent .page-module-card:hover {
    border-color: var(--module-accent);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.page-module-section.page-module-has-accent .page-module-card-title,
.page-module-section.page-module-has-accent .page-module-card-number,
.page-module-section.page-module-has-accent .page-module-card-link {
    color: var(--module-accent);
}
@media (max-width: 991px) {
    .page-module-grid.cols-3,
    .page-module-grid.cols-4,
    .page-module-grid.cols-5,
    .page-module-grid.cols-6,
    .page-module-grid.cols-7,
    .page-module-grid.cols-8 {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 767px) {
    .page-module-section {
        margin-top: 36px;
        padding-top: 24px;
    }
    .page-module-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Mobile: content blocks with icon – stack and compact */
@media (max-width: 767px) {
    .page-content-block {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 20px;
        padding: 18px;
        border-radius: 10px;
    }
    .page-block-icon {
        width: 46px;
        height: 46px;
        font-size: 21px;
    }
    .page-content-block h2 {
        font-size: 17px;
    }
    .page-content-block h3 {
        font-size: 16px;
    }
    .page-content-block .block-text p {
        margin-bottom: 12px;
    }
}

/* ----- Header ----- UIDAI style: orange top bar, white main header */
.site-header {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

/* Top bar: orange strip like UIDAI / Government of India */
.top-header-bar {
    background: #003b44;
    border-bottom: none;
}

.bar-inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 8px 20px;
}

.top-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #fff;
}

.top-header a {
    color: #fff;
    font-weight: 600;
}

.top-header a:hover {
    color: #fff;
    text-decoration: underline;
}

.top-header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.top-header-social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-header-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    opacity: 0.9;
}

.top-header-social a:hover {
    opacity: 1;
    text-decoration: none;
}

.main-header-bar {
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
}

.main-header-bar .bar-inner {
    padding: 12px 20px 14px;
}

.brand-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 10px;
}

.brand-row {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* Wrapper for logo image (ggss-logo.png) */
.brand-logo-wrap {
    flex-shrink: 0;
}

.brand-logo-img {
    display: block;
    height: 48px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
}

/* Fallback: old circular icon style if image not used */
.brand-logo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c2410c 0%, #9a3412 100%);
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(194, 65, 12, 0.4);
}

.brand-text-main {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
}

.brand-text-main {
    color: #1e3a8a;
}

.brand-text-sub {
    font-size: 11px;
    color: #64748b;
}

.btn-primary {
    display: inline-block;
    padding: 6px 12px;
    background: #E85D04;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary:hover {
    background: #c44d03;
    text-decoration: none;
}

/* Navigation – UIDAI style dark text on white */
.nav {
    border-top: 1px solid #e5e7eb;
    padding-top: 10px;
}

.nav-toggle {
    display: none;
    padding: 15px 5px;
    background: #fff;
    border: 1px solid #1e3a8a;
    border-radius: 6px;
    color: #1e3a8a;
    font-size: 12px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

/* Hamburger icon (3 lines) – shown on mobile only */
.nav-toggle-icon {
    display: none;
    width: 22px;
    height: 2px;
    background: currentColor;
    border-radius: 1px;
    box-shadow: 0 -6px 0 currentColor, 0 6px 0 currentColor;
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 2px 6px;
    align-items: center;
}

.nav-links > a,
.nav-item .dropdown-trigger {
    color: #1e3a8a;
    padding: 5px 10px;
    border-radius: 4px;
    display: inline-block;
    font-size: 14px;
}

.nav-links > a:hover,
.nav-item .dropdown-trigger:hover {
    background: #E85D04;
    color: #fff;
    text-decoration: none;
}

/* Dropdown (GGSS-style menu) */
.nav-item.dropdown {
    position: relative;
    display: inline-block;
}

.nav-item .dropdown-trigger {
    cursor: pointer;
    text-decoration: none;
}

/* Single arrow: sirf HTML wala <i class="fas fa-chevron-down"> use hota hai, CSS ::after hata diya */

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    padding: 8px 0;
    margin-top: 0;
    display: none;
    z-index: 100;
}

/* Desktop: invisible bridge so hover stays when moving from trigger to dropdown */
.nav-item.dropdown::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 10px;
}

.nav-item.dropdown:hover .nav-dropdown {
    display: block;
}

.nav-dropdown a {
    display: block;
    padding: 10px 16px;
    color: #334155;
    font-size: 13px;
}

.nav-dropdown a:hover {
    background: rgba(232, 93, 4, 0.12);
    color: #E85D04;
    text-decoration: none;
}

/* Mobile: show toggle, collapse nav + dropdowns */
@media (max-width: 900px) {
    .nav-links {
        gap: 4px 12px;
    }
}

@media (max-width: 640px) {
    .top-header-bar .bar-inner {
        padding: 6px 14px;
    }

    .top-header {
        font-size: 11px;
    }

    .top-header-right {
        gap: 10px;
    }

    .top-header-social {
        gap: 6px;
    }

    .top-header-social a svg {
        width: 16px;
        height: 16px;
    }

    /* Mobile: compact header – one row: logo + company (small) + navbar icon (no Book Appointment) */
    .main-header-bar .bar-inner {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        padding: 8px 14px 10px;
    }

    .brand-strip {
        padding-bottom: 0;
        flex: 1;
        min-width: 0;
    }

    .brand-actions {
        display: none;
    }

    .nav {
        border-top: none;
        padding-top: 0;
        flex: 0 0 auto;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle-icon {
        display: block;
    }

    .nav-toggle-text {
        display: none;
    }

    /* Mobile: smaller company branding so header is compact */
    .brand-logo-img {
        height: 36px;
        max-width: 100px;
    }

    .brand-text-main {
        font-size: 14px;
    }

    .brand-text-sub {
        font-size: 10px;
    }

    /* Banner: mobile par full image display – desktop jesa, kuch cut nahi */
    .banner-slide-img {
        object-fit: contain;
        object-position: center;
    }

    /* Banner content: mobile par padding thoda kam, button same content-width */
    .banner-content {
        padding: 20px 16px 24px;
    }

    /* Important Notice: mobile par header jaisa padding (14px = main header bar-inner) */
    .important-notice-inner {
        flex-wrap: wrap;
        padding: 10px 14px;
        gap: 8px;
    }

    .important-notice-label {
        font-size: 12px;
        width: 100%;
        margin-bottom: 2px;
    }

    .important-notice-wrap {
        width: 100%;
    }

    .important-notice-text {
        font-size: 12px;
    }

    /* Welcome to GG: mobile par image upar, content neeche (stack) */
    .welcome-gg-inner {
        flex-direction: column;
        padding: 24px 14px;
        gap: 20px;
    }

    .welcome-gg-image {
        flex: 0 0 auto;
        max-width: 100%;
        width: 100%;
    }
    .welcome-gg-image img {
        max-height: 220px;
    }

    .welcome-gg-title {
        font-size: 20px;
    }

    .welcome-gg-content p {
        font-size: 14px;
    }

    /* Menu: when open, fixed below header so scroll krne par bhi dikhe (bada menu ho to bhi) */
    .nav-links {
        width: 100%;
        order: 10;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 0;
        gap: 0;
        overflow-x: hidden;
        overflow-y: auto;
        max-height: 70vh;
        min-height: 0;
        -webkit-overflow-scrolling: touch;
        background: #1e3a8a;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
    }

    /* Menu open: fixed panel *below* header so header (logo + navbar icon) bhi dikhe */
    .nav-links.nav-open {
        display: flex;
        position: fixed;
        top: 82px;
        left: 0;
        right: 0;
        bottom: 0;
        max-height: none;
        height: calc(100vh - 82px);
        padding-top: 12px;
        z-index: 90;
        box-sizing: border-box;
    }

    /* Each menu item: line below (white on blue) */
    .nav-links > a,
    .nav-item.dropdown {
        display: block;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        flex-shrink: 0;
    }

    /* Mobile menu open: blue panel – sab links white (submenu wale + bina submenu wale) */
    .nav-links.nav-open > a,
    .nav-links.nav-open .nav-item .dropdown-trigger {
        color: #fff;
    }

    .nav-links.nav-open > a:hover,
    .nav-links.nav-open .nav-item .dropdown-trigger:hover {
        background: rgba(255, 255, 255, 0.15);
        color: #fff;
    }

    .nav-links.nav-open .nav-dropdown a {
        color: #e0e7ff;
    }

    .nav-links.nav-open .nav-dropdown a:hover {
        color: #fff;
    }

    .nav-links > a:last-child,
    .nav-item.dropdown:last-child {
        border-bottom: none;
    }

    .nav-links > a {
        padding: 10px 14px;
    }

    .nav-item .dropdown-trigger {
        padding: 10px 14px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        text-align: left;
        box-sizing: border-box;
        order: 0;
    }

    /* Mobile: single arrow (same as desktop – fa-chevron-down) */

    /* Mobile: parent + submenu in one column – submenu always below parent, no side column */
    .nav-item.dropdown {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    /* Mobile submenu: no left orange bar; line below each item; less padding */
    .nav-dropdown {
        position: static;
        min-width: 0;
        width: 100%;
        box-shadow: none;
        border: none;
        margin: 0;
        padding: 6px 0 0 14px;
        display: none;
        background: rgba(0, 0, 0, 0.2);
    }

    .nav-item.dropdown.open .nav-dropdown {
        display: block;
    }

    /* Mobile: hover must not show dropdown (only .open from tap); this way cursor move doesn’t hide it */
    .nav-item.dropdown:hover .nav-dropdown {
        display: none;
    }
    .nav-item.dropdown.open:hover .nav-dropdown {
        display: block;
    }

    .nav-dropdown a {
        padding: 8px 12px 8px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .nav-dropdown a:last-child {
        border-bottom: none;
    }
}

/* ----- Banner full width (no News & Updates), height 400px ----- */
.banner-section {
    width: 100%;
    background: #fff;
    color: #1e293b;
}

.banner-full {
    width: 100%;
    position: relative;
    height: 400px;
}

/* Slider container: full width, 400px height */
.banner-slider {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.banner-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(8px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.banner-slide.is-active {
    opacity: 1;
    transform: translateX(0);
}

.banner-slide-img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

/* Gradient full width; text between prev/next arrows (padding) */
.banner-content {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start; /* Button sirf content+padding jitna wide, full width nahi */
    max-width: none;
    padding: 32px 60px 32px 60px;
    background: linear-gradient(90deg, rgba(30, 58, 138, 0.92) 0%, rgba(30, 58, 138, 0.5) 75%, transparent 100%);
}

.banner-eyebrow {
    margin: 0 0 8px;
    font-size: 12px;
    letter-spacing: 0.08em;
    color: #FCD34D;
    font-weight: 700;
}

.banner-content h1 {
    margin: 0 0 12px;
    font-size: clamp(22px, 2.5vw, 28px);
    line-height: 1.25;
    color: #fff;
}

.banner-lead {
    margin: 0 0 20px;
    font-size: 15px;
    line-height: 1.5;
    color: #e0e7ff;
}

.banner-content .btn-primary {
    background: #E85D04;
}

.banner-content .btn-primary:hover {
    background: #c44d03;
}

/* Slider arrows */
.banner-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.95);
    color: #1e3a8a;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.banner-arrow:hover {
    background: #fff;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.banner-arrow-prev {
    left: 12px;
}

.banner-arrow-next {
    right: 12px;
}

/* Slider dots – hidden (user request: remove three dots from banner) */
.banner-dots {
    display: none;
}

.banner-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: transparent;
    cursor: pointer;
    padding: 0;
}

.banner-dot.is-active {
    background: #E85D04;
    border-color: #E85D04;
}

/* ----- Important Notice: background full width; content header se align (inner max-width) ----- */
.important-notice-bar {
    width: 100%;
    background: #E85D04;
    border-bottom: 2px solid #c44d03;
}

.important-notice-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 1360px;
    margin: 0 auto;
    padding: 10px 20px;
    color: #fff;
    overflow: hidden;
}

.important-notice-label {
    flex-shrink: 0;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
}

.important-notice-wrap {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.important-notice-track {
    display: flex;
    gap: 40px;
    animation: noticeScroll 40s linear infinite;
}

.important-notice-track:hover {
    animation-play-state: paused;
}

@keyframes noticeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.important-notice-text {
    flex-shrink: 0;
    font-size: 13px;
    line-height: 1.4;
    color: #fff;
}

/* ----- Welcome to GG: image left (fixed size), text right ----- */
.welcome-gg {
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
}

/* Inner: image left, text right on desktop; stacked on mobile */
.welcome-gg-inner,
.welcome-gg-inner.row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 32px;
    max-width: 1360px;
    margin: 0 auto;
    padding: 32px 20px;
}

/* Right side: text content takes remaining space */
.welcome-gg-content {
    flex: 1;
    min-width: 0;
}

/* col-md-6: 50% from 768px up, full width below (like Bootstrap md) */
.welcome-gg-inner .col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
    min-width: 0;
}
@media (min-width: 768px) {
    .welcome-gg-inner .col-md-6 {
        flex: 0 0 calc(50% - 16px);
        max-width: calc(50% - 16px);
    }
}

/* Image column: limit size so welcome image is not too big (like before) */
.welcome-gg-image {
    flex: 0 0 auto;
    max-width: 100%;
    width: 100%;
}
@media (min-width: 768px) {
    .welcome-gg-image {
        max-width: 380px;
        width: 380px;
        flex: 0 0 380px;
    }
}

.welcome-gg-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 280px;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

.welcome-gg-title {
    margin: 0 0 12px;
    font-size: 22px;
    color: #1e3a8a;
    font-weight: 700;
}

.welcome-gg-content p {
    margin: 0 0 12px;
    font-size: 15px;
    line-height: 1.6;
    color: #1e293b;
}

.welcome-gg-content p:last-child {
    margin-bottom: 0;
}

.welcome-gg-content a {
    color: #E85D04;
}

.welcome-gg-content a:hover {
    text-decoration: underline;
}

/* ----- Book An Appointment: Select City & View Centers (table view) ----- */
.book-appointment-centers {
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1px solid #e2e8f0;
    max-width: 100%;
}

.bac-heading-box {
    margin-bottom: 20px;
}

.bac-heading {
    margin: 0 0 6px;
    font-size: 1.35rem;
    font-weight: 700;
    color: #1e3a8a;
}

.bac-sub {
    margin: 0;
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.5;
}

.bac-select-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 20px 24px;
    margin-bottom: 28px;
}

.bac-city-form .bac-label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    color: #334155;
}

.bac-select-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.bac-select {
    min-width: 260px;
    max-width: 320px;
    padding: 10px 14px;
    font-size: 1rem;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    background: #fff;
    color: #1e293b;
}

.bac-select:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.15);
}

.bac-btn {
    padding: 10px 20px;
    font-size: 0.95rem;
    border-radius: 8px;
    cursor: pointer;
}

.bac-table-wrap {
    margin-top: 8px;
}

.bac-table-title {
    margin: 0 0 14px;
    font-size: 1.15rem;
    font-weight: 600;
    color: #334155;
}

.bac-empty {
    color: #64748b;
    font-size: 0.95rem;
    margin: 0;
}

.bac-table-responsive {
    overflow-x: auto;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    background: #fff;
}

.bac-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.bac-table thead {
    background: #1e3a8a;
    color: #fff;
}

.bac-table th {
    padding: 14px 16px;
    text-align: left;
    font-weight: 600;
}

.bac-table th:first-child { width: 80px; text-align: center; }
.bac-table th:last-child { width: 100px; text-align: center; }

.bac-table tbody tr {
    border-bottom: 1px solid #e2e8f0;
}

.bac-table tbody tr:last-child {
    border-bottom: none;
}

.bac-table tbody tr:hover {
    background: #f8fafc;
}

.bac-table td {
    padding: 14px 16px;
    vertical-align: middle;
}

.bac-table .bac-sr {
    text-align: center;
    color: #64748b;
    font-weight: 600;
}

.bac-table .bac-name {
    font-weight: 600;
    color: #1e293b;
}

.bac-table .bac-addr {
    color: #475569;
    line-height: 1.4;
}

.bac-table .bac-book {
    text-align: center;
}

.bac-book-btn {
    display: inline-block;
    padding: 8px 18px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    background: #2563eb;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.2s;
}

.bac-book-btn {
    border: none;
    cursor: pointer;
}
.bac-book-btn:hover {
    background: #1d4ed8;
    color: #fff;
}

/* Book calendar modal */
.bac-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.25s, visibility 0.25s;
}
.bac-modal.bac-modal-open {
    visibility: visible;
    opacity: 1;
}
.bac-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
}
.bac-modal-box {
    position: relative;
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.bac-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    background: #1e3a8a;
    color: #fff;
    flex-shrink: 0;
}
.bac-modal-title {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}
.bac-modal-close {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
    padding: 0 6px;
    opacity: 0.9;
}
.bac-modal-close:hover {
    opacity: 1;
}
.bac-modal-iframe {
    width: 100%;
    height: 75vh;
    min-height: 400px;
    border: none;
    display: block;
}

@media (max-width: 640px) {
    .bac-select-row {
        flex-direction: column;
        align-items: stretch;
    }
    .bac-select {
        max-width: none;
    }
    .bac-table th, .bac-table td {
        padding: 10px 12px;
        font-size: 0.875rem;
    }
    .bac-book-btn {
        padding: 6px 14px;
        font-size: 0.85rem;
    }
}

/* ----- Why Choose Us (ggssgroup.com style) – cards with icons ----- */
.why-choose-us {
    width: 100%;
    background: linear-gradient(180deg, #f0fdf4 0%, #fff 100%);
    border-bottom: 1px solid #e2e8f0;
}

.why-choose-us-inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 40px 20px 48px;
}

.why-choose-us-heading {
    margin: 0 0 4px;
    font-size: 26px;
    color: #1e3a8a;
    font-weight: 700;
    text-align: center;
}

.why-choose-us-sub {
    margin: 0 0 28px;
    font-size: 15px;
    color: #1e3a8a;
    text-align: center;
}

.why-choose-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Card: icon → title → description (ek niche ek, hamesha vertical) */
.why-choose-us-card {
    background: #fff;
    border-radius: 10px;
    padding: 24px 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
}

/* 1. Icon (sabse upar) */
.why-choose-us-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    color: #E85D04;
}

.why-choose-us-icon i {
    font-size: 28px;
}

.why-choose-us-icon svg {
    width: 40px;
    height: 40px;
}

/* 2. Title (icon ke niche) */

.why-choose-us-card h3 {
    margin: 0;
    font-size: 17px;
    color: #1e3a8a;
    font-weight: 700;
}

/* 3. Description (title ke niche) */
.why-choose-us-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
    color: #475569;
}

/* Why Choose Us: tablet – 2 columns */
@media (max-width: 900px) {
    .why-choose-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Why Choose Us: mobile – 1 column */
@media (max-width: 640px) {
    .why-choose-us-inner {
        padding: 28px 14px 36px;
    }

    .why-choose-us-heading {
        font-size: 22px;
    }

    .why-choose-us-sub {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .why-choose-us-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .why-choose-us-card {
        padding: 20px 16px;
        text-align: center;
        align-items: center;
        flex-direction: column;
        gap: 12px;
    }

    .why-choose-us-icon {
        flex-shrink: 0;
    }

    .why-choose-us-card h3 {
        font-size: 16px;
    }

    .why-choose-us-card p {
        font-size: 13px;
    }
}

/* ----- Facts & Figures – UIDAI blue ----- */
.facts-figures {
    width: 100%;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    color: #fff;
}

.facts-figures-inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 40px 20px 48px;
}

.facts-figures-heading {
    margin: 0 0 28px;
    font-size: 26px;
    font-weight: 700;
    text-align: center;
    color: #fff;
}

.facts-figures-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.facts-figures-item {
    text-align: center;
    padding: 24px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.facts-figures-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
    color: #FCD34D;
}

.facts-figures-icon svg {
    width: 32px;
    height: 32px;
}

/* Font Awesome icons in Facts & Figures (when using fa- classes from DB) */
.facts-figures-icon i {
    font-size: 32px;
}

.facts-figures-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 6px;
    color: #FCD34D;
}

.facts-figures-label {
    font-size: 14px;
    font-weight: 600;
    color: #e0e7ff;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* Facts & Figures: tablet – 2 columns */
@media (max-width: 900px) {
    .facts-figures-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Facts & Figures: mobile – 1 column or 2x2 */
@media (max-width: 640px) {
    .facts-figures-inner {
        padding: 28px 14px 36px;
    }

    .facts-figures-heading {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .facts-figures-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .facts-figures-item {
        padding: 20px 12px;
    }

    .facts-figures-number {
        font-size: 28px;
    }

    .facts-figures-label {
        font-size: 11px;
    }
}

/* ----- Our Services – UIDAI style (white/light grey, blue headings, orange accents) ----- */
.our-services {
    width: 100%;
    background: linear-gradient(180deg, #f8f9fa 0%, #fff 50%, #f1f5f9 100%);
    border-bottom: 1px solid #e2e8f0;
}

.our-services-inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 52px 20px 60px;
}

.our-services-heading {
    margin: 0 0 16px;
    font-size: 30px;
    color: #1e3a8a;
    font-weight: 700;
    text-align: center;
    position: relative;
}

/* Decorative line under heading */
.our-services-heading::after {
    content: '';
    display: block;
    width: 48px;
    height: 4px;
    margin: 14px auto 0;
    background: #E85D04;
    border-radius: 2px;
}

.our-services-intro {
    max-width: 680px;
    margin: 0 auto 40px;
    font-size: 15px;
    line-height: 1.7;
    color: #475569;
    text-align: center;
}

.our-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.our-services-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 30px 24px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    border-left: 4px solid transparent;
    text-decoration: none;
    color: inherit;
    min-height: 280px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

/* Hover par top-right corner mein image dikhe */
.our-services-card-hover-img {
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 85px;
    border-radius: 0 14px 0 24px;
    overflow: hidden;
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 1;
    box-shadow: -4px 4px 12px rgba(0, 0, 0, 0.15);
}

.our-services-card-hover-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.our-services-card:hover .our-services-card-hover-img {
    opacity: 1;
    transform: scale(1);
}

.our-services-card:hover {
    border-color: #e2e8f0;
    border-left-color: #E85D04;
    box-shadow: 0 12px 32px rgba(20, 83, 45, 0.14);
    transform: translateY(-4px);
}

.our-services-card:focus-visible {
    outline: 2px solid #E85D04;
    outline-offset: 2px;
}

.our-services-card:hover .our-services-icon {
    background: rgba(232, 93, 4, 0.15);
    transform: scale(1.05);
}

.our-services-card:hover .our-services-link {
    color: #E85D04;
    transform: translateX(4px);
}

.our-services-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: 18px;
    background: rgba(232, 93, 4, 0.1);
    border-radius: 12px;
    color: #E85D04;
    transition: background 0.25s ease, transform 0.25s ease;
}

.our-services-icon svg {
    width: 30px;
    height: 30px;
}

.our-services-card h3 {
    margin: 0 0 12px;
    font-size: 19px;
    font-weight: 700;
    color: #1e3a8a;
    line-height: 1.3;
}

.our-services-card p {
    margin: 0 0 18px;
    font-size: 14px;
    line-height: 1.6;
    color: #475569;
    flex: 1;
}

.our-services-link {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #E85D04;
    transition: color 0.25s ease, transform 0.25s ease;
}

/* Home: dual promo (Gallery + Appreciation Letters) */
.home-dual-promo {
    width: 100%;
    background: #f1f5f9;
    border-bottom: 1px solid #e2e8f0;
}

.home-dual-promo-inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 36px 20px 40px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.home-dual-card {
    display: flex;
    flex-direction: column;
    padding: 22px 20px 18px;
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.home-dual-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
    border-color: #cbd5e1;
}

.home-dual-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 6px;
}

.home-dual-title {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #1e3a8a;
}

.home-dual-pill {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.1);
    color: #1d4ed8;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.home-dual-pill-alt {
    background: rgba(232, 93, 4, 0.1);
    color: #c2410c;
}

.home-dual-text {
    margin: 0 0 16px;
    font-size: 14px;
    color: #4b5563;
    line-height: 1.6;
}

.home-dual-strip {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    background: #e5e7eb;
    padding: 6px 6px 4px;
    margin-bottom: 10px;
}

.home-dual-strip-alt {
    background: #e5e7eb;
}

.home-dual-strip-track {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
}

.home-dual-thumb {
    width: 100%;
    padding-top: 70%;
    border-radius: 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.25);
    cursor: pointer;
}

.home-dual-thumb-doc {
    background: linear-gradient(135deg, #eab308 0%, #f97316 100%);
}

.home-dual-link {
    font-size: 13px;
    font-weight: 600;
    color: #E85D04;
    margin-top: auto;
}

.home-dual-card:hover .home-dual-link {
    text-decoration: underline;
}

@media (max-width: 900px) {
    .home-dual-promo-inner {
        grid-template-columns: 1fr;
        padding: 30px 16px 34px;
    }
}

/* Lightbox for home dual thumbnails */
.home-dual-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.home-dual-lightbox.is-open {
    opacity: 1;
    visibility: visible;
}

.home-dual-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.7);
}

.home-dual-lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    z-index: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    background: #000;
}

.home-dual-lightbox-content img {
    display: block;
    max-width: 100%;
    max-height: 90vh;
}

.home-dual-lightbox-close {
    position: absolute;
    top: 8px;
    right: 10px;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: none;
    background: rgba(15, 23, 42, 0.7);
    color: #fff;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
}

.home-dual-lightbox-close:hover {
    background: rgba(15, 23, 42, 0.9);
}

.home-dual-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 999px;
    border: none;
    background: rgba(15, 23, 42, 0.7);
    color: #fff;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-dual-lightbox-prev {
    left: 8px;
}

.home-dual-lightbox-next {
    right: 8px;
}

.home-dual-lightbox-nav:hover {
    background: rgba(15, 23, 42, 0.9);
}

/* Our Services: 2 columns on medium screens */
@media (max-width: 1000px) {
    .our-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Our Services: mobile */
@media (max-width: 640px) {
    .our-services-inner {
        padding: 36px 14px 44px;
    }

    .our-services-heading {
        font-size: 24px;
    }

    .our-services-heading::after {
        margin-top: 12px;
    }

    .our-services-intro {
        font-size: 14px;
        margin-bottom: 28px;
        padding: 0 8px;
    }

    .our-services-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .our-services-card {
        padding: 24px 20px;
        min-height: 0;
    }

    .our-services-card h3 {
        font-size: 17px;
    }

    .our-services-card p {
        font-size: 13px;
    }
}

/* Right: News & Updates panel – fixed 400px height */
.banner-right {
    flex: 0 0 25%;
    max-width: 25%;
    background: rgba(0, 0, 0, 0.15);
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    flex-direction: column;
    height: 400px;
}

.news-panel-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 0;
    min-height: 0;
    position: relative;
}

.news-panel-title {
    margin: 0;
    padding: 18px 18px 8px;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
}

.news-badge {
    position: absolute;
    top: 14px;
    right: 18px;
    font-size: 11px;
    font-weight: 600;
    background: #c2410c;
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
}

.news-ticker-wrap {
    flex: 1;
    overflow: hidden;
    min-height: 0;
}

.news-ticker {
    display: flex;
    flex-direction: column;
    animation: newsScrollUp 30s linear infinite;
}

.news-ticker:hover {
    animation-play-state: paused;
}

@keyframes newsScrollUp {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

.news-panel-card .news-list {
    list-style: none;
    margin: 0;
    padding: 12px 18px 20px;
    font-size: 13px;
}

.news-panel-card .news-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    line-height: 1.4;
}

.news-panel-card .news-list li:last-child {
    border-bottom: none;
}

.news-panel-card .news-list strong {
    display: block;
    margin-bottom: 4px;
    color: #fef08a;
}

.news-view-all {
    display: block;
    padding: 12px 18px 18px;
    font-size: 13px;
    font-weight: 600;
    color: #86efac;
}

.news-view-all:hover {
    color: #fff;
    text-decoration: none;
}

@media (max-width: 900px) {
    .banner-news-inner {
        flex-direction: column;
        height: auto;
    }

    .banner-left,
    .banner-right {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .banner-left {
        height: 400px;
    }

    .banner-right {
        height: 320px;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
    }
}

/* ----- Hero section (home) ----- UIDAI blue + orange */
.hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    color: #fff;
    padding: 48px 32px;
    border-radius: 12px;
    margin-bottom: 32px;
    text-align: center;
}

.hero h1 {
    font-size: 28px;
    margin-bottom: 12px;
    color: #fff;
}

.hero p {
    font-size: 16px;
    color: #e0e7ff;
    max-width: 560px;
    margin: 0 auto 24px;
    line-height: 1.5;
}

.hero-cta {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.hero-cta .btn-primary {
    background: #E85D04;
}

.hero-cta .btn-secondary {
    display: inline-block;
    padding: 6px 12px;
    border: 2px solid #fff;
    color: #fff;
    border-radius: 6px;
    font-weight: 600;
}

.hero-cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    text-decoration: none;
}

/* ----- Content sections ----- */
.section {
    margin-bottom: 32px;
}

.section h2 {
    font-size: 22px;
    color: #1e3a8a;
    margin-bottom: 12px;
    padding-bottom: 6px;
    border-bottom: 2px solid #E85D04;
}

.section p {
    line-height: 1.6;
    margin-bottom: 12px;
}

/* Feature / step cards */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.card {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #E85D04;
}

.card h3 {
    font-size: 17px;
    color: #1e3a8a;
    margin-bottom: 8px;
}

.card p {
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

/* ----- Forms (status check) ----- */
.form-box {
    background: #fff;
    border-radius: 10px;
    padding: 28px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    max-width: 480px;
    margin: 24px 0;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    color: #334155;
}

.form-group input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 15px;
}

.form-group input:focus {
    outline: none;
    border-color: #E85D04;
    box-shadow: 0 0 0 2px rgba(232, 93, 4, 0.2);
}

.form-actions {
    margin-top: 20px;
}

.form-actions button,
.form-actions .btn-primary {
    padding: 8px 14px;
    font-size: 15px;
}

/* Demo result message */
.demo-result {
    background: #ecfdf5;
    border: 1px solid #10b981;
    border-radius: 8px;
    padding: 20px;
    margin-top: 24px;
    color: #065f46;
}

.demo-result strong {
    display: block;
    margin-bottom: 8px;
}

/* ----- Footer ----- UIDAI style: Government blue, orange accents */
.site-footer {
    background: linear-gradient(180deg, #1e3a8a 0%, #1e40af 35%, #14532d 70%, #0f4222 100%);
    color: #e0e7ff;
    margin-top: auto;
    padding: 0;
}

.footer-inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 40px 20px 24px;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-social-label {
    font-size: 13px;
    font-weight: 700;
    color: #FCD34D;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.footer-social-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e0e7ff;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-social-icons a:hover {
    color: #FCD34D;
    transform: scale(1.1);
    text-decoration: none;
}

.footer-logo {
    width: 48px;
    height: auto;
    object-fit: contain;
}

.footer-company {
    display: block;
    font-size: 16px;
    color: #fff;
    margin-bottom: 2px;
}

.footer-tagline {
    font-size: 13px;
    color: #e0e7ff;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 32px;
    margin-bottom: 28px;
}

.footer-col-title {
    margin: 0 0 14px;
    font-size: 14px;
    font-weight: 700;
    color: #FCD34D;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-list,
.footer-contact {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-list li,
.footer-contact li {
    margin-bottom: 8px;
}

.footer-list a,
.footer-contact a {
    color: #e0e7ff;
    text-decoration: none;
    font-size: 14px;
}

.footer-list a:hover,
.footer-contact a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-contact li {
    font-size: 14px;
    line-height: 1.5;
    color: #e0e7ff;
}

.footer-contact a {
    color: #FCD34D;
}

.footer-disclaimer {
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 16px;
}

.footer-disclaimer p {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
    color: #e0e7ff;
    max-width: 800px;
}

.footer-disclaimer a {
    color: #FCD34D;
}

.footer-disclaimer a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-bottom {
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-copy {
    margin: 0;
    font-size: 12px;
    color: #e0e7ff;
}

/* Footer: tablet – 2 columns */
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px 24px;
    }
}

/* Footer: mobile */
@media (max-width: 640px) {
    .footer-inner {
        padding: 28px 14px 20px;
    }

    .footer-top {
        margin-bottom: 24px;
        padding-bottom: 20px;
    }

    .footer-brand {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-social {
        width: 100%;
        justify-content: flex-start;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 20px;
    }

    .footer-col-title {
        margin-bottom: 10px;
    }

    .footer-disclaimer p {
        font-size: 12px;
    }
}

/* Careers page: job postings list */
.careers-job-section {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid #e2e8f0;
}

.careers-job-heading {
    font-size: 26px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.careers-job-intro {
    margin-bottom: 20px;
    color: #4b5563;
    font-size: 15px;
}

.careers-job-intro a {
    color: #E85D04;
    font-weight: 600;
}

.careers-job-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.careers-job-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 18px 18px 16px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.careers-job-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.careers-job-title {
    font-size: 17px;
    font-weight: 700;
    color: #111827;
}

.careers-job-type {
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(232, 93, 4, 0.1);
    color: #B45309;
    font-weight: 600;
    white-space: nowrap;
}

.careers-job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.careers-job-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    background: #eff6ff;
    color: #1d4ed8;
    font-size: 12px;
}

.careers-job-chip i {
    font-size: 11px;
}

.careers-job-body {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.6;
}

.careers-job-body ul {
    margin-left: 18px;
    margin-top: 4px;
}

.careers-job-body li {
    margin-bottom: 3px;
}

.careers-job-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 8px;
    border-top: 1px dashed #e5e7eb;
    margin-top: 4px;
}

.careers-job-dates {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 12px;
    color: #6b7280;
}

.careers-job-apply-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: #1e3a8a;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.careers-job-apply-btn:hover {
    background: #172554;
    text-decoration: none;
}

@media (max-width: 900px) {
    .careers-job-list {
        grid-template-columns: 1fr;
    }
}
