:root {
    --primary: #143d79;
    --secondary: #ffb703;
    --dark: #0f172a;
    --light: #f8fafc;
    --white: #ffffff;
    --text: #475569;
    --danger: #dc3545;
    --success: #198754;
    --muted: #64748b;
    --border: #e2e8f0;
    --soft-blue: #eaf2ff;
    --soft-yellow: #fff7dc;
    --shadow: 0 18px 45px rgba(15, 23, 42, 0.10);
    --shadow-sm: 0 10px 25px rgba(15, 23, 42, 0.08);
    --radius: 22px;
}

body {
    font-family: "Segoe UI", Arial, sans-serif;
    background: #f6f8fb;
    color: var(--dark);
}

a {
    text-decoration: none;
}

.w-fit {
    width: fit-content !important;
}

.top-strip {
    background: var(--dark);
    color: #dbeafe;
    font-size: 14px;
    padding: 9px 0;
}

.site-header {
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 999;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    color: var(--primary) !important;
}

.logo-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary), #2769bd);
    color: var(--white);
    display: grid;
    place-items: center;
    font-weight: 900;
    box-shadow: 0 10px 25px rgba(20, 61, 121, 0.25);
}

.brand-small {
    display: block;
    color: var(--secondary);
    font-size: 12px;
    font-weight: 700;
    margin-top: -2px;
}

.nav-link {
    color: var(--dark);
    font-weight: 700;
    font-size: 15px;
}

.nav-link:hover {
    color: var(--primary);
}

.header-cta {
    background: var(--secondary);
    color: var(--dark) !important;
    font-weight: 800;
    border-radius: 999px;
    padding: 11px 18px !important;
}

.hero-section {
    background:
        radial-gradient(circle at top right, rgba(255, 183, 3, .22), transparent 32%),
        linear-gradient(135deg, #143d79 0%, #071b3b 100%);
    padding: 78px 0 110px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    width: 360px;
    height: 360px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    position: absolute;
    left: -120px;
    bottom: -170px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--secondary);
    color: var(--dark);
    padding: 8px 16px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 13px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: clamp(36px, 5vw, 62px);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.hero-title span {
    color: var(--secondary);
}

.hero-text {
    color: #dbeafe;
    font-size: 18px;
    line-height: 1.75;
    max-width: 670px;
}

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.btn-main {
    background: var(--secondary);
    color: var(--dark);
    border: 0;
    border-radius: 999px;
    font-weight: 900;
    padding: 13px 24px;
}

.btn-main:hover {
    background: #ffd166;
    color: var(--dark);
}

.btn-light-outline {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    padding: 12px 22px;
    font-weight: 800;
}

.btn-light-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
}

.hero-panel {
    background: rgba(255, 255, 255, 0.96);
    color: var(--dark);
    border-radius: 26px;
    padding: 28px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, .25);
    position: relative;
}

.hero-panel::after {
    content: "";
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 24px;
    background: var(--secondary);
    right: -18px;
    top: -18px;
    opacity: .9;
    z-index: -1;
}

.panel-title {
    color: var(--primary);
    font-weight: 900;
    margin-bottom: 8px;
}

.quick-stat {
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 18px;
    height: 100%;
}

.quick-stat h3 {
    color: var(--primary);
    font-size: 30px;
    font-weight: 900;
    margin-bottom: 4px;
}

.quick-stat p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
}

.floating-search-wrap {
    margin-top: -58px;
    position: relative;
    z-index: 5;
}

.search-card {
    background: var(--white);
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
    border: 1px solid var(--border);
    padding: 18px;
}

.search-card .form-control,
.search-card .form-select {
    min-height: 52px;
    border-radius: 14px;
    border: 1px solid var(--border);
    font-weight: 600;
}

.search-card .form-control:focus,
.search-card .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 .18rem rgba(20, 61, 121, .15);
}

.section-padding {
    padding: 70px 0;
}

.section-title-box {
    margin-bottom: 34px;
}

.eyebrow {
    color: var(--secondary);
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-size: 13px;
    margin-bottom: 8px;
}

.section-title {
    color: var(--dark);
    font-weight: 900;
    letter-spacing: -.5px;
    margin-bottom: 10px;
}

.section-subtitle {
    color: var(--text);
    max-width: 760px;
    line-height: 1.7;
    margin-bottom: 0;
}

.highlight-card {
    background: linear-gradient(135deg, var(--primary), #1f5ca8);
    color: var(--white);
    border-radius: 28px;
    padding: 32px;
    height: 100%;
    overflow: hidden;
    position: relative;
    box-shadow: 0 22px 55px rgba(20, 61, 121, .22);
}

.highlight-card::after {
    content: "";
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255, 183, 3, .22);
    position: absolute;
    right: -80px;
    top: -80px;
}

.highlight-card h3 {
    font-weight: 900;
    position: relative;
    z-index: 2;
}

.highlight-card p,
.highlight-card ul {
    color: #dbeafe;
    position: relative;
    z-index: 2;
}

.highlight-card li {
    margin-bottom: 10px;
}


.sticky-sidebar {
    position: sticky;
    top: 140px;
}

.sidebar-stack {
    display: grid;
    gap: 18px;
}

.sidebar-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 22px;
    box-shadow: 0 14px 38px rgba(15, 23, 42, .06);
    overflow: hidden;
}

.sidebar-card h4 {
    color: var(--primary);
    font-weight: 900;
    margin-bottom: 14px;
    font-size: 20px;
}

.sidebar-card p {
    color: var(--text);
    line-height: 1.65;
}

.sidebar-link-list {
    display: grid;
    gap: 10px;
}

.sidebar-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: var(--light);
    border: 1px solid var(--border);
    color: var(--dark);
    padding: 12px 14px;
    border-radius: 14px;
    font-weight: 800;
    transition: .25s ease;
}

.sidebar-link:hover {
    background: var(--soft-blue);
    color: var(--primary);
    border-color: #bfdbfe;
}

.mini-update {
    display: grid;
    gap: 6px;
    padding: 13px 0;
    border-bottom: 1px dashed #cbd5e1;
}

.mini-update:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.mini-update span {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    background: var(--soft-yellow);
    color: var(--dark);
    border-radius: 999px;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 900;
}

.mini-update strong {
    color: var(--dark);
    font-size: 15px;
    line-height: 1.45;
}

.sidebar-form .form-control,
.sidebar-form .form-select {
    border-radius: 14px;
    min-height: 48px;
    border-color: var(--border);
    font-weight: 600;
}

.sidebar-form .form-control:focus,
.sidebar-form .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 .18rem rgba(20, 61, 121, .15);
}

.location-chip-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.location-chip {
    background: var(--soft-blue);
    color: var(--primary);
    border: 1px solid #dbeafe;
    border-radius: 999px;
    padding: 8px 11px;
    font-weight: 800;
    font-size: 13px;
    cursor: pointer;
    transition: .25s ease;
}

.location-chip:hover {
    background: var(--primary);
    color: var(--white);
}

.checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.checklist li {
    display: flex;
    gap: 10px;
    color: var(--text);
    line-height: 1.45;
    font-weight: 700;
}

.checklist i {
    color: var(--secondary);
    font-size: 18px;
    flex: 0 0 auto;
    margin-top: 1px;
}


.college-list {
    display: grid;
    gap: 24px;
}

.college-card-new {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 14px 38px rgba(15, 23, 42, .06);
    transition: .3s ease;
    height: 100%;
}

.college-card-new:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(15, 23, 42, .12);
    border-color: rgba(20, 61, 121, .28);
}

.college-img {
    position: relative;
    height: 235px;
    overflow: hidden;
}

.college-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .45s ease;
}

.college-card-new:hover .college-img img {
    transform: scale(1.07);
}

.rank-pill {
    position: absolute;
    left: 18px;
    top: 18px;
    background: var(--secondary);
    color: var(--dark);
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 900;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .18);
}

.location-pill {
    position: absolute;
    right: 18px;
    bottom: 18px;
    background: rgba(15, 23, 42, .82);
    color: var(--white);
    border-radius: 999px;
    padding: 8px 13px;
    font-size: 13px;
    font-weight: 800;
    backdrop-filter: blur(8px);
}

.college-body {
    padding: 24px;
}

.college-body h3 {
    color: var(--primary);
    font-weight: 900;
    font-size: 22px;
    line-height: 1.35;
    min-height: 60px;
    margin-bottom: 14px;
}

.college-meta {
    display: grid;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--text);
    font-size: 15px;
    line-height: 1.5;
}

.college-meta i {
    color: var(--secondary);
    margin-right: 8px;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.tag-row span {
    background: var(--soft-blue);
    color: var(--primary);
    border: 1px solid #dbeafe;
    padding: 7px 11px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
}

.card-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.btn-view,
.btn-apply {
    border-radius: 14px;
    padding: 12px 10px;
    text-align: center;
    font-weight: 900;
    font-size: 14px;
}

.btn-view {
    background: var(--primary);
    color: var(--white);
}

.btn-view:hover {
    background: #0f2f5e;
    color: var(--white);
}

.btn-apply {
    background: var(--secondary);
    color: var(--dark);
}

.btn-apply:hover {
    background: #ffd166;
    color: var(--dark);
}

.no-result {
    display: none;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 28px;
    text-align: center;
    color: var(--muted);
    font-weight: 700;
}

.guide-section {
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.guide-box {
    border-radius: 24px;
    padding: 26px;
    background: var(--light);
    border: 1px solid var(--border);
    height: 100%;
    transition: .3s ease;
}

.guide-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 34px rgba(15, 23, 42, .08);
}

.guide-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: var(--soft-yellow);
    color: var(--primary);
    display: grid;
    place-items: center;
    font-size: 26px;
    margin-bottom: 16px;
}

.guide-box h4 {
    color: var(--dark);
    font-weight: 900;
    margin-bottom: 10px;
}

.guide-box p {
    color: var(--text);
    margin-bottom: 0;
    line-height: 1.7;
}

.architecture-highlight-section {
    padding: 75px 0;
    background: var(--white);
}

.college-toggle-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.college-tab-btn {
    border: 1px solid var(--primary);
    background: var(--white);
    color: var(--primary);
    padding: 13px 24px;
    border-radius: 50px;
    font-weight: 900;
    transition: 0.3s ease;
}

.college-tab-btn.active,
.college-tab-btn:hover {
    background: var(--primary);
    color: var(--white);
}

.college-highlight-grid {
    display: none;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.college-highlight-grid.active {
    display: grid;
}

.highlight-college-card {
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 24px;
    height: 100%;
    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
}

.highlight-college-card::before {
    content: "";
    position: absolute;
    width: 95px;
    height: 95px;
    background: rgba(255, 183, 3, 0.18);
    border-radius: 50%;
    top: -35px;
    right: -35px;
}

.highlight-college-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
    border-color: rgba(20, 61, 121, 0.25);
}

.college-rank {
    position: absolute;
    top: 24px;
    left: 24px;
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: var(--white);
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-weight: 900;
    margin-bottom: 18px;
    z-index: 2;
}

.highlight-college-card h3 {
    color: var(--dark);
    font-size: 18px;
    line-height: 1.35;
    font-weight: 900;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.highlight-college-card p {
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.highlight-college-card span {
    display: block;
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
}

.highlight-college-card a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 900;
    position: relative;
    z-index: 2;
}

.highlight-college-card a:hover {
    color: #0f2f5e;
}

.college-highlight-cta {
    margin-top: 40px;
    background: linear-gradient(135deg, var(--primary), #071b3b);
    color: var(--white);
    border-radius: 24px;
    padding: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 22px;
}

.college-highlight-cta h3 {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 8px;
}

.college-highlight-cta p {
    color: #dbeafe;
    margin: 0;
    line-height: 1.7;
}

.college-highlight-cta a {
    background: var(--secondary);
    color: var(--dark);
    text-decoration: none;
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 900;
    white-space: nowrap;
}

.college-highlight-cta a:hover {
    background: #ffd166;
    color: var(--dark);
}

@media (max-width: 1199px) {
    .college-highlight-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .college-highlight-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .college-highlight-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .college-highlight-cta a {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .architecture-highlight-section {
        padding: 55px 0;
    }

    .college-highlight-grid {
        grid-template-columns: 1fr;
    }

    .highlight-college-card {
        padding: 22px;
    }

    .college-highlight-cta h3 {
        font-size: 23px;
    }
}

.highlight-college-img {
    width: 100%;
    height: 145px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
}

.highlight-college-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.4s ease;
}

.highlight-college-card:hover .highlight-college-img img {
    transform: scale(1.08);
}

.seo-card {
    background:
        linear-gradient(135deg, rgba(20, 61, 121, .96), rgba(15, 23, 42, .96)),
        url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=1400&q=80') center/cover;
    color: var(--white);
    border-radius: 30px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.seo-card h2 {
    font-weight: 900;
    margin-bottom: 14px;
}

.seo-card p {
    color: #dbeafe;
    line-height: 1.8;
    margin-bottom: 0;
}

.footer {
    background: var(--dark);
    color: #cbd5e1;
    padding: 38px 0 20px;
}

.footer h4 {
    color: var(--white);
    font-weight: 900;
}

.footer a {
    color: #cbd5e1;
    display: block;
    margin-bottom: 8px;
}

.footer a:hover {
    color: var(--secondary);
}

.college-category-title {
    background: linear-gradient(135deg, var(--primary), #1f5ca8);
    color: var(--white);
    border-radius: 22px;
    padding: 22px 24px;
    box-shadow: 0 16px 38px rgba(20, 61, 121, .18);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.college-category-title h3 {
    margin: 0;
    font-weight: 900;
    font-size: 23px;
}

.college-category-title p {
    margin: 6px 0 0;
    color: #dbeafe;
    line-height: 1.6;
}

.category-count {
    background: var(--secondary);
    color: var(--dark);
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 900;
    white-space: nowrap;
}

@media (max-width: 991px) {
    .hero-section {
        padding: 56px 0 90px;
    }

    .hero-panel {
        margin-top: 30px;
    }

    .sticky-sidebar {
        position: static;
    }

    .college-body h3 {
        min-height: auto;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 34px;
    }

    .hero-text {
        font-size: 16px;
    }

    .card-actions {
        grid-template-columns: 1fr;
    }

    .college-img {
        height: 210px;
    }

    .seo-card {
        padding: 28px;
    }
}

.top-bar {
    background: var(--primary);
    color: #fff;
    font-size: 14px;
    padding: 8px 0;
}

.navbar {
    background: #fff;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.navbar-brand {
    font-weight: 800;
    color: var(--primary) !important;
    letter-spacing: .3px;
}

.nav-link {
    font-weight: 600;
    color: var(--dark);
}

.nav-link:hover {
    color: var(--primary);
}


.nata-hero {
    background: linear-gradient(135deg, var(--primary) 0%, #071b3b 100%);
    padding: 70px 0;
    min-height: 560px;
    display: flex;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--secondary);
    color: var(--dark);
    font-size: 13px;
    font-weight: 700;
    padding: 7px 15px;
    border-radius: 30px;
    margin-bottom: 24px;
}

.nata-hero h1 {
    color: var(--white);
    font-size: 52px;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 20px;
}

.nata-hero h1 span {
    color: var(--secondary);
}

.nata-hero p {
    color: #dbeafe;
    font-size: 18px;
    line-height: 1.6;
    max-width: 650px;
    margin-bottom: 28px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-buttons a {
    background: #fff3cd;
    color: var(--dark);
    text-decoration: none;
    padding: 15px 26px;
    border-radius: 8px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.hero-buttons a:hover {
    background: var(--secondary);
}

.nata-form-card {
    background: var(--white);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.22);
    position: relative;
    overflow: hidden;
}

.nata-form-card::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    background: rgba(255, 183, 3, 0.18);
    border-radius: 50%;
    top: -45px;
    right: -45px;
    z-index: 0;
}

.nata-form-card>* {
    position: relative;
    z-index: 2;
}

.form-icon {
    width: 62px;
    height: 62px;
    background: #dbeafe;
    color: var(--primary);
    border-radius: 16px;
    display: grid;
    place-items: center;
    font-size: 30px;
    margin-bottom: 18px;
}

.nata-form-card h3 {
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 8px;
}

.nata-form-card p {
    color: var(--text);
    font-size: 15px;
    margin-bottom: 22px;
}

.nata-form-card .form-control,
.nata-form-card .form-select {
    height: 50px;
    border-radius: 10px;
    border: 1px solid #cbd5e1;
    font-size: 15px;
}

.nata-form-card textarea.form-control {
    height: 95px;
}

.nata-form-card .form-control:focus,
.nata-form-card .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.15rem rgba(20, 61, 121, 0.16);
}

.submit-btn {
    background: var(--primary);
    color: var(--white);
    border: none;
    height: 52px;
    border-radius: 10px;
    font-weight: 800;
    width: 100%;
}

.submit-btn:hover {
    background: #0f2f5e;
    color: var(--white);
}

.quick-note {
    background: var(--light);
    border-left: 4px solid var(--secondary);
    padding: 12px 14px;
    border-radius: 8px;
    font-size: 14px;
    color: var(--text);
    margin-top: 18px;
}

@media (max-width: 991px) {
    .nata-hero {
        padding: 50px 0;
    }

    .nata-hero h1 {
        font-size: 38px;
    }

    .nata-form-card {
        margin-top: 35px;
    }
}

@media (max-width: 575px) {
    .hero-search {
        flex-direction: column;
    }

    .hero-search button {
        padding: 14px;
    }

    .nata-hero h1 {
        font-size: 34px;
    }

    .nata-form-card {
        padding: 25px;
    }
}

.section-title {
    font-weight: 800;
    color: var(--dark);
}

.section-subtitle {
    color: var(--text);
    max-width: 720px;
}

.status-card {
    border: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
    height: 100%;
    transition: .25s ease;
}

.status-card:hover {
    transform: translateY(-5px);
}

.icon-circle {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 25px;
    margin-bottom: 16px;
}

.icon-blue {
    background: #dbeafe;
    color: var(--primary);
}

.icon-yellow {
    background: #fff3cd;
    color: #b7791f;
}

.icon-green {
    background: #d1e7dd;
    color: var(--success);
}

.tag {
    display: inline-block;
    padding: 5px 11px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 10px;
}

.tag-result {
    background: #e0f2fe;
    color: #0369a1;
}

.tag-exam {
    background: #fef3c7;
    color: #92400e;
}

.tag-admission {
    background: #dcfce7;
    color: #166534;
}

.update-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 20px;
    height: 100%;
    transition: .25s ease;
}

.update-card:hover {
    border-color: var(--primary);
    box-shadow: 0 12px 28px rgba(15, 23, 42, .08);
}

.date-table {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.date-table th {
    background: var(--primary);
    color: #fff;
    white-space: nowrap;
}

.step-box {
    background: #fff;
    border-radius: 18px;
    padding: 22px;
    height: 100%;
    border: 1px solid #e2e8f0;
}

.step-number {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 800;
    margin-bottom: 14px;
}

.info-panel {
    background: linear-gradient(135deg, #ffffff 0%, #eef6ff 100%);
    border: 1px solid #dbeafe;
    border-radius: 22px;
    padding: 30px;
}

.footer {
    background: #071b3b;
    color: #cbd5e1;
    padding: 45px 0 20px;
}

.footer a {
    color: #e2e8f0;
    text-decoration: none;
}

.footer a:hover {
    color: var(--secondary);
}

.btn-main {
    background: var(--secondary);
    color: #111827;
    font-weight: 800;
    border-radius: 50px;
    padding: 11px 24px;
    border: 0;
}

.btn-main:hover {
    background: #ffd166;
    color: #111827;
}

.btn-outline-main {
    border: 1px solid var(--primary);
    color: var(--primary);
    font-weight: 700;
    border-radius: 50px;
    padding: 10px 22px;
}

.btn-outline-main:hover {
    background: var(--primary);
    color: #fff;
}

.sticky-update {
    position: sticky;
    top: 90px;
}

.blog-hero {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at top right, rgba(255, 183, 3, .28), transparent 28%), linear-gradient(135deg, var(--primary), #071b3b);
    color: var(--white);
    padding: 70px 0;
}

.blog-hero::before {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 50%;
    left: -140px;
    bottom: -160px;
}

.category-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--secondary);
    color: var(--dark);
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 18px;
}

.category-badge a {
    color: var(--dark);
}

.featured-img {
    height: 380px;
    object-fit: cover;
    width: 100%;
    border-radius: 20px;
    object-position: top center;
}

.blog-hero h1 {
    max-width: 920px;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.blog-hero p {
    max-width: 760px;
    font-size: 18px;
    color: #dbeafe;
}

.blog-section {
    padding: 55px 0;
}

.blog-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 32px;
    align-items: start;
}

.article-card {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.article-content {
    padding: 36px;
}

.article-content p {
    color: var(--text);
    font-size: 17px;
    margin: 0 0 18px;
}

.article-content p:last-child {
    margin-bottom: 0;
}

.article-content h2 {
    color: var(--primary);
    font-size: 30px;
    line-height: 1.25;
    margin: 36px 0 14px;
    font-weight: 900;
}

.article-content h2:first-child {
    margin-top: 0;
}

.article-content h3 {
    color: var(--dark);
    font-size: 22px;
    margin: 28px 0 10px;
    font-weight: 900;
}

.article-content ul,
.article-content ol {
    padding-left: 22px;
    color: var(--text);
    margin: 0 0 24px;
}

.article-content li {
    margin-bottom: 10px;
}

.article-content strong {
    color: var(--dark);
}

.side-stack {
    display: grid;
    gap: 18px;
    position: sticky;
    top: 140px;
}

.sidebar-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 22px;
    box-shadow: var(--shadow-sm);
}

.sidebar-card h3 {
    font-size: 20px;
    color: var(--primary);
    font-weight: 900;
    margin-bottom: 14px;
}

.sidebar-card p,
.sidebar-card li {
    color: var(--text);
    font-size: 15px;
}

.recent-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recent-list li {
    margin: 0;
    border-bottom: 1px solid var(--border);
}

.recent-list li:last-child {
    border-bottom: 0;
}

.recent-list a {
    display: block;
    color: var(--dark);
    font-weight: 750;
    padding: 11px 0;
}

.recent-list li:last-child a {
    padding-bottom: 0;
}

.recent-list a:hover {
    color: var(--primary);
}

.cta-card {
    background: linear-gradient(135deg, var(--primary), #071b3b);
    color: var(--white);
    border: 0;
}

.cta-card h3,
.cta-card p {
    color: var(--white);
}

.cta-card p {
    opacity: .86;
}

.subscribe-form input,
.subscribe-form select,
.subscribe-form textarea {
    width: 100%;
    height: 48px;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 0 14px;
    font-family: inherit;
    font-size: 15px;
    margin-bottom: 12px;
    outline: 0;
}

.subscribe-form textarea {
    height: 92px;
    padding-top: 12px;
    resize: vertical;
}

.subscribe-form input:focus,
.subscribe-form select:focus,
.subscribe-form textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(20, 61, 121, .10);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 34px;
}

.blog-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: .25s ease;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.blog-card img {
    height: 210px;
    width: 100%;
    object-fit: cover;
}

.blog-card-body {
    padding: 22px;
}

.blog-card h2 {
    font-size: 22px;
    line-height: 1.28;
    margin: 10px 0 12px;
    color: var(--dark);
}

.blog-card p {
    color: var(--text);
    font-size: 15px;
    margin-bottom: 16px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 900;
}

.section-heading {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.section-heading h1,
.section-heading h2 {
    color: var(--primary);
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 900;
    margin-bottom: 12px;
}

.section-heading p {
    color: var(--text);
    font-size: 17px;
}

.nata-result-hero {
    min-height: 100vh;
    padding: 80px 0;
    background:
        radial-gradient(circle at 12% 20%, rgba(255, 183, 3, 0.24), transparent 26%),
        radial-gradient(circle at 88% 78%, rgba(255, 255, 255, 0.12), transparent 28%),
        linear-gradient(135deg, var(--primary), #071b3b);
    display: flex;
    align-items: center;
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--secondary);
    color: var(--dark);
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 800;
    margin-bottom: 22px;
}

.nata-result-hero h1 {
    font-size: 54px;
    line-height: 1.12;
    font-weight: 900;
    margin-bottom: 20px;
}

.nata-result-hero p {
    color: #dbeafe;
    font-size: 18px;
    line-height: 1.7;
    max-width: 640px;
    margin-bottom: 25px;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 24px;
}

.hero-points div {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 11px 16px;
    border-radius: 12px;
    font-weight: 700;
    color: #ffffff;
}

.hero-points i {
    color: var(--secondary);
    margin-right: 6px;
}

.official-note {
    background: rgba(255, 255, 255, 0.12);
    border-left: 5px solid var(--secondary);
    padding: 15px 18px;
    border-radius: 12px;
    color: #eaf2ff;
    max-width: 590px;
}

.nata-form-card {
    background: var(--white);
    color: var(--dark);
    border-radius: 24px;
    padding: 38px;
    box-shadow: 0 25px 65px rgba(0, 0, 0, 0.22);
    position: relative;
    overflow: hidden;
}

.nata-form-card::before {
    content: "";
    position: absolute;
    width: 160px;
    height: 160px;
    background: rgba(255, 183, 3, 0.2);
    border-radius: 50%;
    top: -55px;
    right: -55px;
}

.nata-form-card>* {
    position: relative;
    z-index: 2;
}

.form-icon {
    width: 64px;
    height: 64px;
    background: #eaf2ff;
    color: var(--primary);
    border-radius: 18px;
    display: grid;
    place-items: center;
    font-size: 30px;
    margin-bottom: 18px;
}

.nata-form-card h2 {
    color: var(--primary);
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 8px;
}

.nata-form-card p {
    color: var(--text);
    margin-bottom: 22px;
}

.nata-form-card label {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 7px;
}

.nata-form-card label span {
    color: #dc3545;
}

.nata-form-card .form-control,
.nata-form-card .form-select {
    height: 52px;
    border-radius: 12px;
    border: 1px solid #cbd5e1;
    font-size: 15px;
}

.nata-form-card textarea.form-control {
    height: auto;
    min-height: 110px;
}

.nata-form-card .form-control:focus,
.nata-form-card .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.15rem rgba(20, 61, 121, 0.16);
}

.submit-btn {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 15px 24px;
    border-radius: 12px;
    font-weight: 900;
    width: 100%;
    transition: 0.3s ease;
}

.submit-btn:hover {
    background: #0f2f5e;
    color: var(--white);
}

.submit-btn:disabled {
    opacity: 0.8;
    cursor: not-allowed;
}

.privacy-text {
    font-size: 13px;
    color: var(--text);
    margin: 16px 0 0 !important;
    text-align: center;
}

.nata-info-section,
.steps-section,
.exam-update-section,
.faq-section {
    padding: 75px 0;
}

.nata-info-section,
.faq-section {
    background: var(--light);
}

.steps-section,
.exam-update-section {
    background: var(--white);
}

.section-title {
    text-align: center;
    margin-bottom: 42px;
}

.section-title span,
.update-content span {
    display: inline-block;
    background: #fff3cd;
    color: var(--primary);
    padding: 7px 16px;
    border-radius: 30px;
    font-weight: 800;
    margin-bottom: 12px;
}

.section-title h2,
.update-content h2 {
    color: var(--primary);
    font-size: 38px;
    font-weight: 900;
    margin-bottom: 10px;
}

.section-title p {
    color: var(--text);
    font-size: 16px;
    max-width: 720px;
    margin: auto;
}

.nata-info-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.nata-info-content,
.nata-enquiry-form-box {
    height: 100%;
    border-radius: 28px;
}

.nata-info-content {
    background: linear-gradient(135deg, var(--primary), #071b3b);
    padding: 42px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.nata-info-content::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    background: rgba(255, 183, 3, 0.18);
    border-radius: 50%;
    right: -80px;
    top: -80px;
}

.section-label {
    display: inline-block;
    background: rgba(255, 255, 255, 0.14);
    color: var(--secondary);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 900;
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
}

.nata-info-content h2 {
    font-size: 38px;
    line-height: 1.25;
    font-weight: 900;
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
}

.nata-info-content p {
    color: #dbeafe;
    line-height: 1.8;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.nata-points-list {
    display: grid;
    gap: 14px;
    margin-bottom: 28px;
    position: relative;
    z-index: 2;
}

.nata-points-list div {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.09);
    padding: 14px 16px;
    border-radius: 14px;
    color: #ffffff;
    font-weight: 700;
}

.nata-points-list i {
    color: var(--secondary);
    margin-top: 3px;
}

.nata-mini-highlight {
    background: var(--white);
    color: var(--dark);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.nata-mini-highlight strong {
    display: block;
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 4px;
}

.nata-mini-highlight span {
    color: var(--text);
    font-weight: 600;
}

.nata-mini-highlight a {
    background: var(--secondary);
    color: var(--dark);
    padding: 12px 18px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 900;
    white-space: nowrap;
}

.nata-enquiry-form-box {
    background: var(--white);
    padding: 34px;
    border: 1px solid var(--border);
    box-shadow: 0 18px 55px rgba(15, 23, 42, 0.12);
}

.nata-enquiry-form-box h3 {
    color: var(--dark);
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 10px;
}

.nata-enquiry-form-box p {
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 22px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid var(--border);
    background: var(--light);
    color: var(--dark);
    padding: 14px 16px;
    border-radius: 13px;
    outline: none;
    font-weight: 700;
}

.form-group textarea {
    resize: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    background: var(--white);
}

.nata-submit-btn {
    width: 100%;
    border: none;
    background: var(--primary);
    color: var(--white);
    padding: 15px 22px;
    border-radius: 14px;
    font-weight: 900;
    transition: 0.3s ease;
}

.nata-submit-btn:hover {
    background: #0f2f5e;
}

.form-alert {
    padding: 12px 14px;
    border-radius: 12px;
    margin-bottom: 16px;
    font-weight: 800;
}

.form-alert.success {
    background: #dcfce7;
    color: #166534;
}

.form-alert.error {
    background: #fee2e2;
    color: #991b1b;
}

.nata-bottom-info {
    margin-top: 65px;
}

.info-card {
    height: 100%;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 28px;
    display: flex;
    gap: 18px;
    transition: 0.3s ease;
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.06);
}

.info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
}

.info-card>i {
    width: 58px;
    height: 58px;
    min-width: 58px;
    background: rgba(20, 61, 121, 0.1);
    color: var(--primary);
    border-radius: 16px;
    display: grid;
    place-items: center;
    font-size: 26px;
}

.info-card h3 {
    font-size: 20px;
    color: var(--dark);
    font-weight: 900;
    margin-bottom: 8px;
}

.info-card p {
    color: var(--text);
    line-height: 1.7;
    margin: 0;
}

.hero-section::before {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    background: rgba(255, 183, 3, 0.18);
    border-radius: 50%;
    top: -140px;
    right: -120px;
}

.hero-section::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    background: rgba(20, 61, 121, 0.08);
    border-radius: 50%;
    bottom: -100px;
    left: -100px;
}

.hero-points {
    display: grid;
    gap: 12px;
    margin-bottom: 28px;
}

.hero-points div {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--white);
    font-weight: 800;
}

.hero-points i {
    color: var(--white);
    margin-top: 3px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.hero-stats-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-stats-row div {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 16px 20px;
    min-width: 150px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.hero-stats-row strong {
    display: block;
    color: var(--primary);
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 3px;
}

.hero-stats-row span {
    color: var(--text);
    font-weight: 700;
    font-size: 14px;
}

.hero-form-panel {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 34px;
    box-shadow: 0 22px 65px rgba(15, 23, 42, 0.14);
    position: relative;
    z-index: 2;
}

.hero-form-header {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 24px;
}

.hero-form-header>span {
    width: 58px;
    height: 58px;
    min-width: 58px;
    background: rgba(20, 61, 121, 0.1);
    color: var(--primary);
    border-radius: 16px;
    display: grid;
    place-items: center;
    font-size: 26px;
}

.hero-form-header h3 {
    color: var(--dark);
    font-size: 27px;
    font-weight: 900;
    margin-bottom: 8px;
}

.hero-form-header p {
    color: var(--text);
    line-height: 1.6;
    margin: 0;
}

.form-group {
    margin-bottom: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid var(--border);
    background: var(--light);
    color: var(--dark);
    padding: 14px 16px;
    border-radius: 13px;
    outline: none;
    font-weight: 700;
}

.form-group textarea {
    resize: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    background: var(--white);
}

.hero-submit-btn {
    width: 100%;
    border: none;
    background: var(--primary);
    color: var(--white);
    padding: 15px 22px;
    border-radius: 14px;
    font-weight: 900;
    transition: 0.3s ease;
}

.hero-submit-btn:hover {
    background: #0f2f5e;
}

.form-alert {
    padding: 12px 14px;
    border-radius: 12px;
    margin-bottom: 16px;
    font-weight: 800;
}

.form-alert.success {
    background: #dcfce7;
    color: #166534;
}

.form-alert.error {
    background: #fee2e2;
    color: #991b1b;
}

@media (max-width: 991px) {
    .hero-section {
        padding: 70px 0;
    }

    .hero-title {
        font-size: 44px;
    }
}

@media (max-width: 575px) {
    .hero-section {
        padding: 55px 0;
    }

    .hero-title {
        font-size: 34px;
    }

    .hero-text {
        font-size: 16px;
    }

    .hero-form-panel {
        padding: 26px;
        border-radius: 22px;
    }

    .hero-form-header {
        flex-direction: column;
    }

    .hero-stats-row div {
        width: 100%;
    }
}

@media (max-width: 991px) {
    .nata-info-content h2 {
        font-size: 32px;
    }

    .nata-mini-highlight {
        flex-direction: column;
        align-items: flex-start;
    }

    .nata-mini-highlight a {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 575px) {
    .nata-info-section {
        padding: 55px 0;
    }

    .nata-info-content,
    .nata-enquiry-form-box {
        padding: 26px;
        border-radius: 22px;
    }

    .nata-info-content h2 {
        font-size: 28px;
    }

    .info-card {
        flex-direction: column;
    }
}

.info-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 28px;
    /* height: 100%; */
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: 0.3s ease;
}

.info-card:hover,
.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
}

.info-card i {
    width: 58px;
    height: 58px;
    min-width: 58px;
    background: var(--secondary);
    color: var(--dark);
    display: grid;
    place-items: center;
    border-radius: 16px;
    font-size: 28px;
}

.info-card h3 {
    color: var(--dark);
    font-size: 24px;
    line-height: 1.15;
    font-weight: 900;
    margin: 0 0 10px;
}

.info-card p {
    color: var(--text);
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

.step-card {
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 30px;
    height: 100%;
    transition: 0.3s ease;
}

.step-number {
    width: 58px;
    height: 58px;
    background: var(--primary);
    color: var(--white);
    border-radius: 16px;
    display: grid;
    place-items: center;
    font-weight: 900;
    font-size: 18px;
    margin-bottom: 20px;
}

.step-card h3 {
    color: var(--dark);
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 10px;
}

.step-card p {
    color: var(--text);
    line-height: 1.7;
    margin: 0;
}

.update-content p {
    color: var(--text);
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 22px;
}

.update-content ul {
    padding: 0;
    list-style: none;
    margin: 0;
}

.update-content li {
    color: var(--text);
    margin-bottom: 14px;
    font-weight: 600;
}

.update-content li i {
    color: var(--secondary);
    margin-right: 8px;
}

.date-box {
    background: linear-gradient(180deg, #ffffff, #eef6ff);
    border: 1px solid #dbeafe;
    border-radius: 24px;
    padding: 34px;
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.08);
}

.date-box h3 {
    color: var(--primary);
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 20px;
}

.date-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 18px;
    margin-bottom: 14px;
}

.date-item strong {
    display: block;
    color: var(--dark);
    font-size: 17px;
    margin-bottom: 5px;
}

.date-item span {
    color: var(--text);
}

.official-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 12px;
    padding: 15px 20px;
    font-weight: 900;
    width: 100%;
    margin-top: 10px;
}

.official-btn:hover {
    background: #0f2f5e;
    color: var(--white);
}

.accordion-item {
    border: 1px solid var(--border);
    border-radius: 14px !important;
    overflow: hidden;
    margin-bottom: 14px;
}

.accordion-button {
    font-weight: 800;
    color: var(--dark);
    padding: 18px 22px;
}

.accordion-button:not(.collapsed) {
    background: #eaf2ff;
    color: var(--primary);
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    color: var(--text);
    line-height: 1.7;
}

@media (max-width: 991px) {
    .nata-result-hero {
        padding: 60px 0;
    }

    .nata-result-hero h1 {
        font-size: 40px;
    }

    .nata-form-card {
        margin-top: 20px;
    }

    .section-title h2,
    .update-content h2 {
        font-size: 32px;
    }
}

@media (max-width: 575px) {
    .nata-result-hero h1 {
        font-size: 32px;
    }

    .nata-result-hero p {
        font-size: 16px;
    }

    .nata-form-card {
        padding: 26px;
    }

    .hero-points {
        flex-direction: column;
    }

    .info-card {
        flex-direction: column;
        gap: 16px;
        padding: 24px;
    }

    .section-title h2,
    .update-content h2 {
        font-size: 28px;
    }
}

/* Contact Hero */
.contact-hero {
    background:
        radial-gradient(circle at 15% 20%, rgba(255, 183, 3, 0.22), transparent 28%),
        linear-gradient(135deg, var(--primary), #071b3b);
    color: var(--white);
    padding: 85px 0;
    text-align: center;
}

.hero-tag {
    display: inline-block;
    background: var(--secondary);
    color: var(--dark);
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 800;
    margin-bottom: 18px;
}

.contact-hero h1 {
    max-width: 850px;
    margin: auto;
    font-size: 48px;
    line-height: 1.15;
    font-weight: 900;
}

.contact-hero p {
    max-width: 760px;
    margin: 18px auto 0;
    color: #dbeafe;
    font-size: 18px;
    line-height: 1.7;
}

/* Contact Section */
.contact-section {
    padding: 70px 0;
}

.contact-info-box,
.contact-form-box {
    background: var(--white);
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
    height: 100%;
}

.contact-info-box {
    background: linear-gradient(180deg, #ffffff, #eef6ff);
    border: 1px solid #dbeafe;
}

.contact-info-box h2,
.contact-form-box h3 {
    color: var(--primary);
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 12px;
}

.contact-info-box>p,
.contact-form-box>p {
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 26px;
}

/* Contact Info Cards */
.info-card {
    border-bottom: 1px solid var(--border);
}

.info-card:last-child {
    border-bottom: none;
}

.info-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-size: 22px;
}

.info-card h4 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 4px;
    color: var(--dark);
}

.info-card p {
    color: var(--text);
    margin: 0;
    line-height: 1.6;
}

/* Contact Form */
.contact-form-box label {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.contact-form-box label span {
    color: #dc3545;
}

.contact-form-box .form-control,
.contact-form-box .form-select {
    height: 52px;
    border-radius: 12px;
    border: 1px solid #cbd5e1;
    font-size: 15px;
}

.contact-form-box textarea.form-control {
    height: auto;
    min-height: 140px;
}

.contact-form-box .form-control:focus,
.contact-form-box .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.15rem rgba(20, 61, 121, 0.16);
}

.submit-btn {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 15px 28px;
    border-radius: 12px;
    font-weight: 900;
    width: 100%;
    transition: 0.3s ease;
}

.submit-btn:hover {
    background: #0f2f5e;
    color: var(--white);
}

/* Quick Help Section */
.quick-help-section,
.contact-faq-section {
    padding: 65px 0;
}

.quick-help-section {
    background: var(--white);
}

.section-title {
    text-align: center;
    margin-bottom: 35px;
}

.section-title h2 {
    color: var(--primary);
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 10px;
}

.section-title p {
    color: var(--text);
    font-size: 16px;
}

.help-card {
    background: var(--light);
    border: 1px solid var(--border);
    padding: 30px;
    border-radius: 22px;
    height: 100%;
    transition: 0.3s ease;
}

.help-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.1);
}

.help-card i {
    width: 60px;
    height: 60px;
    background: var(--secondary);
    color: var(--dark);
    display: grid;
    place-items: center;
    border-radius: 16px;
    font-size: 28px;
    margin-bottom: 18px;
}

.help-card h3 {
    color: var(--dark);
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 10px;
}

.help-card p {
    color: var(--text);
    line-height: 1.7;
    margin: 0;
}

/* FAQ */
.contact-faq-section {
    background: var(--light);
}

.accordion-item {
    border: 1px solid var(--border);
    border-radius: 14px !important;
    overflow: hidden;
    margin-bottom: 14px;
}

.accordion-button {
    font-weight: 800;
    color: var(--dark);
}

.accordion-button:not(.collapsed) {
    background: #eaf2ff;
    color: var(--primary);
}

.accordion-button:focus {
    box-shadow: none;
}

/* Responsive */
@media (max-width: 991px) {
    .contact-hero h1 {
        font-size: 38px;
    }

    .contact-section {
        padding: 55px 0;
    }
}

@media (max-width: 575px) {
    .contact-hero {
        padding: 60px 0;
    }

    .contact-hero h1 {
        font-size: 30px;
    }

    .contact-hero p {
        font-size: 16px;
    }

    .contact-info-box,
    .contact-form-box {
        padding: 25px;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .info-card {
        align-items: flex-start;
    }
}

@media (max-width: 1024px) {
    .blog-layout {
        grid-template-columns: 1fr;
    }

    .side-stack {
        position: static;
    }

    .blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .header-wrap {
        flex-direction: column;
        padding: 16px 0;
    }

    .featured-img {
        height: 260px;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 14px;
    }

    .blog-hero {
        padding: 50px 0;
    }

    .article-content {
        padding: 24px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .article-content h2 {
        font-size: 25px;
    }
}

@media (max-width: 991px) {
    .sticky-update {
        position: static;
    }

    .hero {
        padding: 55px 0 45px;
    }
}