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

body {
    font-family: 'Noto Sans Devanagari','Segoe UI',Arial,sans-serif;
    background: #f0f4f8;
    color: #1a2a3a;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
}

/* TOP STRIP */
.top-strip {
    background: #003082;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 16px;
    font-size: 12px;
    color: #b8cce8;
    border-bottom: 1px solid #1a4ba0;
    flex-wrap: wrap;
    gap: 6px;
}

.top-strip-left {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

    .top-strip-left a {
        color: #b8cce8;
        font-size: 11px;
        transition: color 0.2s;
    }

        .top-strip-left a:hover {
            color: #fff;
        }

.top-strip-right {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

.date-box {
    background: #00235f;
    border: 1px solid #1a4ba0;
    padding: 3px 10px;
    border-radius: 3px;
    font-size: 10px;
    color: #d0e4f7;
    display: flex;
    gap: 6px;
    align-items: center;
    flex-wrap: wrap;
}

    .date-box .bs-date {
        color: #ffcc00;
        font-weight: 600;
        font-size: 10px;
    }

    .date-box .ad-date {
        color: #b8d4f0;
        font-size: 10px;
    }

.lang-toggle {
    display: flex;
    border: 1px solid #2a5baa;
    border-radius: 3px;
    overflow: hidden;
}

    .lang-toggle button {
        background: transparent;
        border: none;
        color: #b8cce8;
        padding: 3px 8px;
        font-size: 10px;
        cursor: pointer;
        transition: all 0.2s;
    }

        .lang-toggle button.active, .lang-toggle button:hover {
            background: #1a4ba0;
            color: #fff;
        }

/* HEADER */
.header {
    background: linear-gradient(135deg,#003082 0%,#0047b8 60%,#0055d4 100%);
    padding: 0;
    border-bottom: 3px solid #cc0000;
}

.header-inner {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    gap: 12px;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.logo-block {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
}

.nepal-emblem {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
}

.org-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.gov-label {
    font-size: 11px;
    color: #b8d4f0;
    letter-spacing: 0.3px;
}

.ministry-name {
    font-size: 10px;
    color: #90b8e0;
    letter-spacing: 0.2px;
    margin-bottom: 3px;
    line-height: 1.3;
}

.system-name-ne {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
    line-height: 1.1;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.system-name-en {
    font-size: 11px;
    color: #a8ccf0;
    font-weight: 400;
    letter-spacing: 0.3px;
    margin-top: 2px;
}

.restricted-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #cc0000;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 2px;
    margin-top: 5px;
    letter-spacing: 0.3px;
}

.header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
    flex-shrink: 0;
}

.header-date-box {
    background: rgba(0,0,0,0.25);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 6px;
    padding: 8px 12px;
    text-align: right;
}

.header-date-bs {
    font-size: 13px;
    font-weight: 700;
    color: #ffcc00;
    letter-spacing: 0.3px;
}

.header-date-en {
    font-size: 10px;
    color: #c0d8f4;
    margin-top: 2px;
}

.header-day {
    font-size: 10px;
    color: #90b8e0;
    margin-top: 1px;
}

.header-time {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 2px;
    margin-top: 3px;
    font-variant-numeric: tabular-nums;
}

/* HAMBURGER */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    border: none;
    flex-shrink: 0;
}

    .hamburger span {
        display: block;
        width: 22px;
        height: 2px;
        background: #fff;
        border-radius: 2px;
        transition: all 0.3s;
    }

    .hamburger.open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger.open span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

/* NAVBAR */
.navbar {
    background: #0047b8;
    border-bottom: 2px solid #003082;
}

.nav-inner {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 16px;
    flex-wrap: wrap;
}

.nav-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.nav-item {
    position: relative;
}

    .nav-item > a {
        display: block;
        color: #cce0ff;
        font-size: 13px;
        padding: 12px 14px;
        font-weight: 500;
        transition: all 0.2s;
        white-space: nowrap;
    }

        .nav-item > a:hover, .nav-item > a.active {
            background: #003082;
            color: #fff;
        }

        .nav-item > a.active {
            border-bottom: 3px solid #ffcc00;
        }

.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #002a7a;
    min-width: 220px;
    z-index: 200;
    border: 1px solid #1a4ba0;
    border-top: 2px solid #ffcc00;
}

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

.dropdown a {
    display: block;
    color: #b8d0f0;
    font-size: 12.5px;
    padding: 10px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: background 0.15s;
}

    .dropdown a:hover {
        background: #003082;
        color: #fff;
    }

.nav-search {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 0;
}

    .nav-search input {
        background: rgba(255,255,255,0.1);
        border: 1px solid rgba(255,255,255,0.2);
        border-radius: 3px;
        color: #fff;
        padding: 6px 10px;
        font-size: 12px;
        width: 160px;
        outline: none;
    }

        .nav-search input::placeholder {
            color: #90b0d8;
        }

    .nav-search button {
        background: #cc0000;
        border: none;
        color: #fff;
        padding: 7px 12px;
        border-radius: 3px;
        font-size: 12px;
        cursor: pointer;
        white-space: nowrap;
    }

/* ACCESS BAR */
.access-bar {
    background: #7a0000;
    border-bottom: 2px solid #cc0000;
    padding: 10px 16px;
}

.access-bar-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    flex-wrap: wrap;
}

.access-icon {
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.access-text {
    font-size: 12px;
    color: #ffd0d0;
    font-weight: 500;
    line-height: 1.5;
}

    .access-text strong {
        color: #fff;
    }

/* MARQUEE */
.marquee-bar {
    background: #003082;
    border-top: 2px solid #cc0000;
    border-bottom: 1px solid #1a4ba0;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.marquee-label {
    background: #cc0000;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 8px 12px;
    white-space: nowrap;
    letter-spacing: 1px;
    flex-shrink: 0;
}

.marquee-inner {
    overflow: hidden;
    flex: 1;
}

.marquee-track {
    display: inline-block;
    white-space: nowrap;
    animation: marquee 35s linear infinite;
    color: #b8d0f4;
    font-size: 12px;
    padding: 8px 0;
}

@keyframes marquee {
    0% {
        transform: translateX(100%)
    }

    100% {
        transform: translateX(-100%)
    }
}

/* BREADCRUMB */
.breadcrumb {
    background: #e8f0f8;
    border-bottom: 1px solid #c8d8e8;
    padding: 7px 16px;
}

.breadcrumb-inner {
    max-width: 1400px;
    margin: 0 auto;
    font-size: 11px;
    color: #5a7090;
}

    .breadcrumb-inner a {
        color: #0047b8;
    }

/* STATS STRIP */
.stats-strip {
    background: #003082;
    padding: 16px;
    border-bottom: 2px solid #0047b8;
}

.stats-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 1px;
    background: #1a4ba0;
}

.stat-item {
    background: #003082;
    text-align: center;
    padding: 14px 8px;
}

.stat-num {
    font-size: 22px;
    font-weight: 700;
    color: #ffcc00;
}

.stat-label {
    font-size: 11px;
    color: #90b8e0;
    margin-top: 4px;
    line-height: 1.3;
}

/* HERO */
.hero {
    background: linear-gradient(135deg,#00235f 0%,#003082 40%,#003d9e 100%);
    padding: 36px 16px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 200'%3E%3Cpath d='M0 100 Q200 40 400 100 Q600 160 800 100 L800 200 L0 200Z' fill='rgba(255,255,255,0.03)'/%3E%3C/svg%3E") no-repeat bottom;
        background-size: cover;
    }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #cc0000;
    color: #fff;
    font-size: 11px;
    padding: 5px 14px;
    border-radius: 2px;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    font-weight: 700;
}

.hero h1 {
    font-size: 26px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 8px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 14px;
    color: #a8c8f0;
    max-width: 650px;
    margin: 0 auto 10px;
    line-height: 1.7;
}

.hero-note {
    display: inline-block;
    background: rgba(204,0,0,0.25);
    border: 1px solid rgba(204,0,0,0.5);
    color: #ffa0a0;
    font-size: 12px;
    padding: 6px 14px;
    border-radius: 3px;
    margin-bottom: 20px;
}

.hero-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: #cc0000;
    color: #fff;
    border: none;
    padding: 12px 22px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

    .btn-primary:hover {
        background: #aa0000;
    }

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.4);
    padding: 10px 22px;
    border-radius: 4px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
}

    .btn-outline:hover {
        border-color: #fff;
        background: rgba(255,255,255,0.1);
    }

/* LOGIN STRIP */
.login-strip {
    background: #f7f0e0;
    border-bottom: 2px solid #e0c060;
    padding: 14px 16px;
}

.login-strip-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.login-label {
    font-size: 13px;
    color: #6a4a00;
    font-weight: 700;
    white-space: nowrap;
}

.login-fields {
    display: flex;
    gap: 8px;
    flex: 1;
    align-items: center;
    flex-wrap: wrap;
}

    .login-fields input {
        background: #fff;
        border: 1px solid #c8b070;
        border-radius: 3px;
        padding: 8px 12px;
        font-size: 13px;
        color: #1a2a3a;
        outline: none;
        flex: 1;
        min-width: 140px;
    }

        .login-fields input:focus {
            border-color: #003082;
        }

.login-btn {
    background: #003082;
    color: #fff;
    border: none;
    padding: 9px 18px;
    border-radius: 3px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}

    .login-btn:hover {
        background: #cc0000;
    }

.login-forgot {
    font-size: 12px;
    color: #0047b8;
    cursor: pointer;
    white-space: nowrap;
}

    .login-forgot:hover {
        text-decoration: underline;
    }

/* MAIN LAYOUT */
.main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 16px;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 20px;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

    .section-title h2 {
        font-size: 17px;
        color: #003082;
        font-weight: 700;
    }

.section-title-bar {
    width: 4px;
    height: 20px;
    background: #cc0000;
    border-radius: 2px;
    flex-shrink: 0;
}

/* ELIGIBILITY */
.eligibility-box {
    background: #fff;
    border: 1px solid #d0dde8;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 20px;
    border-left: 4px solid #003082;
}

.elig-header {
    background: #003082;
    color: #fff;
    padding: 12px 18px;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.elig-body {
    padding: 16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.elig-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #1a3060;
    background: #f4f8ff;
    border-radius: 4px;
    padding: 12px;
}

    .elig-item .elig-icon {
        font-size: 18px;
        flex-shrink: 0;
    }

    .elig-item strong {
        display: block;
        font-size: 13px;
        color: #003082;
        margin-bottom: 3px;
    }

    .elig-item span {
        font-size: 12px;
        color: #5a7090;
        line-height: 1.4;
    }

.elig-note {
    margin: 0 16px 16px;
    background: #fff8e0;
    border: 1px solid #e0c060;
    border-radius: 4px;
    padding: 10px 14px;
    font-size: 12px;
    color: #6a4a00;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

/* RIDE TYPES */
.ride-types {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.ride-card {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #d0dde8;
}

.ride-card-header {
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}

    .ride-card-header.daily {
        background: linear-gradient(135deg,#0047b8,#0055d4);
    }

    .ride-card-header.official {
        background: linear-gradient(135deg,#003082,#0047b8);
    }

.ride-card-icon {
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.ride-card-title {
    color: #fff;
}

    .ride-card-title h3 {
        font-size: 15px;
        font-weight: 700;
    }

    .ride-card-title p {
        font-size: 11px;
        opacity: 0.8;
    }

.ride-card-body {
    padding: 14px 18px;
}

.ride-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #2a4060;
    margin-bottom: 7px;
}

    .ride-feature::before {
        content: '✓';
        color: #0047b8;
        font-weight: 700;
        flex-shrink: 0;
    }

.ride-card-btn {
    display: block;
    margin: 10px 16px 14px;
    background: #003082;
    color: #fff;
    text-align: center;
    padding: 10px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

    .ride-card-btn:hover {
        background: #cc0000;
    }

/* HOW TO USE */
.how-box {
    background: #fff;
    border: 1px solid #d0dde8;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 20px;
}

.how-header {
    background: #003082;
    color: #fff;
    padding: 12px 18px;
    font-size: 14px;
    font-weight: 700;
}

.how-steps {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 0;
}

.how-step {
    padding: 18px 14px;
    text-align: center;
    border-right: 1px solid #e8f0f8;
    position: relative;
}

    .how-step:last-child {
        border-right: none;
    }

    .how-step::after {
        content: '→';
        position: absolute;
        right: -10px;
        top: 50%;
        transform: translateY(-50%);
        color: #0047b8;
        font-size: 14px;
        font-weight: 700;
        z-index: 1;
    }

    .how-step:last-child::after {
        display: none;
    }

.how-num {
    width: 34px;
    height: 34px;
    background: #003082;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    margin: 0 auto 9px;
}

.how-step h4 {
    font-size: 13px;
    color: #003082;
    font-weight: 700;
    margin-bottom: 5px;
}

.how-step p {
    font-size: 11px;
    color: #5a7090;
    line-height: 1.4;
}

/* NOTICES */
.notices-box {
    background: #fff;
    border: 1px solid #d0dde8;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 20px;
}

.notices-header {
    background: #003082;
    color: #fff;
    padding: 11px 16px;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.notice-item {
    padding: 11px 16px;
    border-bottom: 1px solid #e8f0f8;
    cursor: pointer;
    transition: background 0.15s;
}

    .notice-item:hover {
        background: #f0f6ff;
    }

    .notice-item:last-child {
        border-bottom: none;
    }

.notice-date {
    font-size: 11px;
    color: #cc0000;
    font-weight: 600;
    margin-bottom: 3px;
}

.notice-title {
    font-size: 13px;
    color: #1a3060;
    font-weight: 500;
    line-height: 1.4;
}

.notice-tag {
    display: inline-block;
    background: #e8f0fb;
    color: #0047b8;
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 2px;
    margin-top: 4px;
}

.new-badge {
    display: inline-block;
    background: #cc0000;
    color: #fff;
    font-size: 9px;
    padding: 1px 6px;
    border-radius: 2px;
    margin-left: 6px;
    font-weight: 700;
    vertical-align: middle;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%,100% {
        opacity: 1
    }

    50% {
        opacity: 0.6
    }
}

/* SIDEBAR */
.sidebar-box {
    background: #fff;
    border: 1px solid #d0dde8;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 18px;
}

.sidebar-header {
    background: #003082;
    color: #fff;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .sidebar-header.red {
        background: #cc0000;
    }

    .sidebar-header.gold {
        background: #7a5500;
    }

.quick-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-bottom: 1px solid #e8f0f8;
    font-size: 13px;
    color: #1a3060;
    cursor: pointer;
    transition: all 0.15s;
}

    .quick-link:hover {
        background: #f0f6ff;
        color: #003082;
        padding-left: 18px;
    }

    .quick-link::before {
        content: '›';
        color: #0047b8;
        font-size: 16px;
        font-weight: 700;
    }

    .quick-link:last-child {
        border-bottom: none;
    }

/* LOGIN CARD */
.login-card {
    background: #fff;
    border: 1px solid #d0dde8;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 18px;
}

.login-card-header {
    background: #003082;
    color: #fff;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
}

.login-card-body {
    padding: 16px;
}

.lc-input {
    width: 100%;
    background: #f4f8ff;
    border: 1px solid #c0d0e8;
    border-radius: 4px;
    padding: 10px 12px;
    font-size: 13px;
    color: #1a2a3a;
    margin-bottom: 10px;
    outline: none;
}

    .lc-input:focus {
        border-color: #003082;
    }

.lc-btn {
    width: 100%;
    background: #003082;
    color: #fff;
    border: none;
    padding: 11px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    margin-bottom: 10px;
}

    .lc-btn:hover {
        background: #cc0000;
    }

.lc-links {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #0047b8;
    cursor: pointer;
}

    .lc-links span:hover {
        text-decoration: underline;
    }

.lc-divider {
    border: none;
    border-top: 1px solid #e0e8f0;
    margin: 12px 0;
}

.lc-note {
    font-size: 11px;
    color: #5a7090;
    text-align: center;
    line-height: 1.5;
}

    .lc-note strong {
        color: #cc0000;
    }

.contact-box {
    background: #fff;
    border: 1px solid #d0dde8;
    border-radius: 6px;
    padding: 16px;
    margin-bottom: 18px;
}

    .contact-box h3 {
        font-size: 14px;
        color: #003082;
        font-weight: 700;
        margin-bottom: 12px;
        padding-bottom: 7px;
        border-bottom: 2px solid #e8f0f8;
    }

.contact-row {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 9px;
    font-size: 13px;
    color: #2a4060;
}

.contact-icon {
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 1px;
}

.hotline {
    background: #003082;
    color: #fff;
    border-radius: 6px;
    padding: 14px;
    text-align: center;
    margin-bottom: 18px;
}

    .hotline p {
        font-size: 12px;
        color: #90b8e0;
        margin-bottom: 4px;
    }

    .hotline .number {
        font-size: 26px;
        font-weight: 700;
        color: #ffcc00;
        letter-spacing: 2px;
    }

    .hotline small {
        font-size: 11px;
        color: #90b8e0;
    }

.today-box {
    padding: 12px 14px;
}

.today-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 9px;
    font-size: 13px;
}

    .today-row span:first-child {
        color: #5a7090;
    }

    .today-row span:last-child {
        font-weight: 700;
        color: #003082;
    }

/* FOOTER */
.footer-top {
    background: #002060;
    padding: 28px 16px 20px;
    border-top: 3px solid #cc0000;
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 28px;
}

.footer-brand .system-name-ne {
    font-size: 17px;
    color: #fff;
    margin: 8px 0 5px;
}

.footer-brand p {
    font-size: 12px;
    color: #7090b8;
    line-height: 1.6;
}

.footer-col h4 {
    font-size: 12px;
    color: #90b8e0;
    font-weight: 700;
    margin-bottom: 12px;
    padding-bottom: 7px;
    border-bottom: 1px solid #1a3a70;
    letter-spacing: 0.5px;
}

.footer-col a {
    display: block;
    color: #7090b8;
    font-size: 12px;
    margin-bottom: 7px;
    transition: color 0.2s;
}

    .footer-col a:hover {
        color: #fff;
    }

.footer-bottom {
    background: #001540;
    padding: 12px 16px;
    text-align: center;
    font-size: 11px;
    color: #4a6a90;
    border-top: 1px solid #1a3060;
}

/* ── TABLET 900px ── */
@media (max-width:900px) {
    .main {
        grid-template-columns: 1fr;
    }

    .sidebar {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

        .sidebar > * {
            margin-bottom: 0;
        }

    .how-steps {
        grid-template-columns: 1fr 1fr;
    }

    .how-step::after {
        display: none;
    }

    .how-step {
        border-right: none;
        border-bottom: 1px solid #e8f0f8;
    }

        .how-step:nth-child(odd) {
            border-right: 1px solid #e8f0f8;
        }

    .stats-inner {
        grid-template-columns: repeat(2,1fr);
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .header-right {
        display: none;
    }

    .nav-search input {
        width: 120px;
    }
}

/* ── MOBILE 640px ── */
@media (max-width:640px) {
    /* Top strip */
    .top-strip-left a:not(:first-child) {
        display: none;
    }

    .date-box .ad-date {
        display: none;
    }

    /* Header */
    .nepal-emblem {
        width: 46px;
        height: 46px;
    }

    .system-name-ne {
        font-size: 18px;
    }

    .gov-label {
        font-size: 10px;
    }

    .ministry-name {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    /* Nav */
    .nav-inner {
        flex-direction: column;
        align-items: stretch;
        padding: 0;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
    }

        .nav-links.open {
            display: flex;
        }

    .nav-item {
        width: 100%;
    }

        .nav-item > a {
            padding: 12px 16px;
            border-bottom: 1px solid rgba(255,255,255,0.07);
            font-size: 14px;
            white-space: normal;
        }

            .nav-item > a.active {
                border-bottom: 1px solid rgba(255,255,255,0.07);
            }

    .dropdown {
        position: static;
        display: none;
        background: #002060;
        border: none;
        border-top: none;
        min-width: unset;
        width: 100%;
    }

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

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

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

    .dropdown a {
        padding: 10px 28px;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .nav-search {
        width: 100%;
        padding: 10px 16px;
        background: #003082;
        box-sizing: border-box;
    }

        .nav-search input {
            flex: 1;
            width: auto;
        }

    /* Stats */
    .stat-num {
        font-size: 18px;
    }

    /* Hero */
    .hero {
        padding: 28px 14px;
    }

        .hero h1 {
            font-size: 22px;
        }

        .hero p {
            font-size: 13px;
        }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

        .hero-actions .btn-primary, .hero-actions .btn-outline {
            text-align: center;
        }

    /* Login strip */
    .login-strip-inner {
        flex-direction: column;
        align-items: stretch;
    }

    .login-fields {
        flex-direction: column;
    }

        .login-fields input {
            min-width: unset;
            width: 100%;
        }

    .login-btn {
        width: 100%;
    }

    /* Eligibility */
    .elig-body {
        grid-template-columns: 1fr;
    }

    /* Ride types */
    .ride-types {
        grid-template-columns: 1fr;
    }

    /* How steps */
    .how-steps {
        grid-template-columns: 1fr;
    }

    .how-step {
        border-right: none;
        border-bottom: 1px solid #e8f0f8;
    }

        .how-step:last-child {
            border-bottom: none;
        }

        .how-step::after {
            display: none;
        }

    /* Sidebar */
    .sidebar {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-inner {
        grid-template-columns: 1fr;
    }

    /* Access bar */
    .access-bar-inner {
        flex-direction: column;
        gap: 6px;
    }

    .marquee-label {
        font-size: 10px;
        padding: 7px 10px;
    }

    .marquee-track {
        font-size: 11px;
    }
}

/* ── XS 380px ── */
@media (max-width:380px) {
    .system-name-ne {
        font-size: 15px;
    }

    .stat-num {
        font-size: 16px;
    }

    .hero h1 {
        font-size: 19px;
    }

    .top-strip-left {
        gap: 6px;
    }

        .top-strip-left a {
            font-size: 10px;
        }
}
