* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary-blue: #005baa;
    --dark-blue: #123a7a;
    --teal: #0089b7;
    --red: #e31e24;
    --orange: #f58220;
    --text: #1f2f46;
    --muted: #53657a;
    --line: #d5e3ef;
    --soft: #f3f8fd;
    --white: #fff;
    --font-main: Arial, Helvetica, sans-serif;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    padding-top: calc(var(--topbar-height, 0px) + var(--header-height, 0px));
    font-family: var(--font-main);
    font-optical-sizing: auto;
    font-size: 14px;
    color: var(--text);
    line-height: 1.65;
    background: var(--white);
}

button,
input,
select,
textarea {
    font-family: inherit;
}

a {
    color: inherit;
}

.top-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1200;
    background: linear-gradient(90deg, var(--dark-blue), var(--primary-blue) 62%, var(--red));
    color: #fff;
    padding: .4rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: nowrap;
    font-size: .82rem;
}

.top-header-left,
.top-header-right {
    display: flex;
    gap: .8rem 1.4rem;
    align-items: center;
    flex-wrap: nowrap;
}

.top-header-left {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
}

.top-header-left span {
    white-space: nowrap;
}

.top-header-left > span {
    flex: 0 0 auto;
}

.top-announcement {
    display: flex;
    align-items: center;
    gap: .45rem;
    flex: 1 1 260px;
    min-width: 160px;
    overflow: hidden;
}

.top-announcement-icon {
    flex: 0 0 auto;
    font-size: 1rem;
    line-height: 1;
}

.top-announcement-marquee {
    display: block;
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
}

.top-announcement-marquee span {
    display: inline-block;
    min-width: 100%;
    padding-left: 100%;
    animation: announcement-marquee 16s linear infinite;
}

@keyframes announcement-marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .top-announcement-marquee span {
        padding-left: 0;
        animation: none;
    }
}

.top-header-right {
    flex: 0 0 auto;
    margin-left: auto;
}

.top-btn,
.auth-link {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .85);
    border-radius: 999px;
    text-decoration: none;
    padding: .3rem .75rem;
    font-weight: 700;
    white-space: nowrap;
}

.live-indicator {
    position: relative;
    width: .58rem;
    height: .58rem;
    border-radius: 50%;
    background: #21e36f;
    box-shadow: 0 0 0 3px rgba(33, 227, 111, .22), 0 0 12px rgba(33, 227, 111, .72);
    flex: 0 0 auto;
}

.live-indicator::after {
    content: "";
    position: absolute;
    inset: -.35rem;
    border: 1px solid rgba(33, 227, 111, .72);
    border-radius: 50%;
    animation: live-pulse 1.35s ease-out infinite;
}

@keyframes live-pulse {
    0% {
        opacity: .9;
        transform: scale(.55);
    }

    100% {
        opacity: 0;
        transform: scale(1.4);
    }
}

header {
    position: fixed;
    top: var(--topbar-height, 0px);
    left: 0;
    right: 0;
    z-index: 1190;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: .55rem 1.5rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: .8rem;
}

.logo {
    display: block;
    text-decoration: none;
}

.site-logo {
    display: block;
    width: 158px;
    height: 48px;
    object-fit: contain;
    object-position: left center;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.explore-menu {
    position: relative;
    flex: 0 0 auto;
}

.explore-toggle {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    min-height: 38px;
    border: 0;
    border-radius: 999px;
    padding: .55rem .95rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--teal));
    color: #fff;
    font-size: .8rem;
    font-weight: 900;
    box-shadow: 0 10px 24px rgba(0, 91, 170, .2);
    cursor: pointer;
}

.toggle-caret,
.menu-caret {
    display: inline-block;
    flex: 0 0 auto;
    width: .42rem;
    height: .42rem;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transform-origin: 58% 58%;
    transition: transform .18s ease, margin .18s ease;
}

.explore-toggle-caret {
    margin-left: .08rem;
    color: currentColor;
}

.explore-menu:hover .explore-toggle-caret,
.explore-menu:focus-within .explore-toggle-caret {
    margin-top: .18rem;
    transform: rotate(-135deg);
}

.header-search {
    position: relative;
    flex: 0 0 190px;
    width: 190px;
    min-width: 190px;
    margin-left: .25rem;
}

.header-search-input {
    width: 100%;
    height: 34px;
    border: 1px solid rgba(0, 91, 170, .22);
    border-radius: 4px;
    padding: 0 2.45rem 0 .75rem;
    background: transparent;
    color: #17263a;
    font: inherit;
    font-size: .86rem;
    font-weight: 700;
    outline: none;
}

.header-search-input:focus {
    background: #fff;
    border-color: var(--primary-blue);
    box-shadow: none;
}

.header-search-btn {
    position: absolute;
    right: 2px;
    top: 2px;
    width: 32px;
    height: 30px;
    border: 0;
    background: #fff;
    color: var(--primary-blue);
    cursor: pointer;
    display: grid;
    place-items: center;
}

.header-search-results {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + .5rem);
    z-index: 1010;
    display: none;
    max-height: 340px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid #d5e3ef;
    border-top: 3px solid var(--red);
    border-radius: 0 0 8px 8px;
    box-shadow: 0 18px 46px rgba(15, 47, 84, .2);
}

.header-search-results.active {
    display: block;
}

.header-search-result {
    display: block;
    width: 100%;
    border: 0;
    border-bottom: 1px solid #edf2f7;
    background: #fff;
    color: #17263a;
    padding: .7rem .85rem;
    text-align: left;
    cursor: pointer;
}

.header-search-result:hover,
.header-search-result:focus {
    background: #f1f7ff;
    outline: none;
}

.header-search-result strong {
    display: block;
    color: var(--primary-blue);
    font-size: .86rem;
    line-height: 1.25;
}

.header-search-result span {
    display: block;
    margin-top: .15rem;
    color: var(--muted);
    font-size: .74rem;
    line-height: 1.25;
}

.header-search-empty {
    padding: .85rem;
    color: var(--muted);
    font-size: .82rem;
    font-weight: 700;
}

.explore-toggle-icon {
    display: inline-grid;
    place-items: center;
    width: 18px;
    height: 18px;
    border-radius: 5px;
    background: rgba(255, 255, 255, .18);
    font-size: .75rem;
}

.explore-panel {
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 1004;
    width: min(980px, calc(100vw - 7rem));
    max-width: calc(100vw - 7rem);
    display: none;
    grid-template-columns: 225px minmax(0, 1fr);
    background: #fff;
    border: 1px solid #d5e3ef;
    border-top: 3px solid var(--primary-blue);
    border-radius: 0 0 10px 10px;
    box-shadow: 0 20px 52px rgba(15, 47, 84, .18);
    max-height: calc(100vh - 8.5rem);
    overflow-x: hidden;
    overflow-y: auto;
}

.explore-menu:hover .explore-panel,
.explore-menu:focus-within .explore-panel {
    display: grid;
}

.explore-sidebar {
    display: grid;
    align-content: start;
    gap: .45rem;
    padding: .9rem .5rem;
    background: #f3f8fd;
    border-right: 1px solid #dbe8f3;
}

.explore-side-group {
    display: grid;
    gap: .35rem;
}

.explore-side-group summary {
    list-style: none;
}

.explore-side-group summary::-webkit-details-marker {
    display: none;
}

.explore-side-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .5rem;
    width: calc(100% - .7rem);
    margin: .15rem .35rem .25rem;
    padding: .6rem .75rem;
    border: 0;
    border-radius: 6px;
    background: var(--primary-blue);
    color: #fff;
    font: inherit;
    font-size: .78rem;
    font-weight: 900;
    cursor: pointer;
}

.explore-side-heading .explore-side-caret {
    margin-left: auto;
    color: currentColor;
}

.explore-side-group[open] .explore-side-heading .explore-side-caret {
    margin-top: .18rem;
    transform: rotate(-135deg);
}

.explore-side-group:not([open]) .explore-side-heading .explore-side-caret {
    transform: rotate(-45deg);
}

.explore-side-panel {
    display: grid;
    gap: .15rem;
}

.explore-side-group:not([open]) .explore-side-panel {
    display: none;
}

.explore-side-link {
    display: flex;
    align-items: center;
    gap: .55rem;
    padding: .48rem .75rem;
    border-radius: 6px;
    color: #17263a;
    text-decoration: none;
    font-size: .78rem;
    font-weight: 750;
}

.explore-side-link:hover {
    background: #e2efff;
    color: var(--primary-blue);
}

.explore-side-link.active {
    background: #e2efff;
    color: var(--primary-blue);
}

.explore-code {
    display: inline-grid;
    place-items: center;
    min-width: 24px;
    height: 18px;
    border-radius: 3px;
    background: #e7f1ff;
    color: var(--primary-blue);
    font-size: .95rem;
    font-weight: 900;
}

.explore-main {
    display: grid;
    grid-template-columns: 1.15fr 1.15fr 1fr;
    gap: 1rem 1.4rem;
    padding: 1rem 1.15rem;
}

.explore-column h4 {
    margin: 0 0 .35rem;
    padding-bottom: .35rem;
    border-bottom: 1px solid #e3edf7;
    color: var(--primary-blue);
    font-size: .75rem;
    line-height: 1.25;
    text-transform: uppercase;
}

.explore-column a {
    display: block;
    padding: .42rem 0;
    border-bottom: 1px solid #edf2f7;
    color: #334155;
    text-decoration: none;
    font-size: .76rem;
    line-height: 1.35;
}

.explore-column a:hover {
    color: var(--red);
}

.explore-column-empty {
    display: block;
    padding: .55rem 0;
    color: var(--muted);
    font-size: .74rem;
    line-height: 1.4;
}

.site-nav {
    /* margin-left: clamp(.75rem, 2vw, 1.27rem ); */
    margin-left: auto;
}

nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: .15rem;
    flex-wrap: nowrap;
}

nav li {
    position: relative;
}

nav a {
    display: block;
    text-decoration: none;
    padding: .55rem .48rem;
    font-weight: 700;
    font-size: .8rem;
    color: var(--text);
    white-space: nowrap;
}

.site-nav>ul>li>a {
    display: inline-flex;
    align-items: center;
    gap: .2rem;
}

nav a:hover,
nav li:hover>a {
    color: var(--primary-blue);
}

.menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #fff;
    color: var(--primary-blue);
    font-size: 1.45rem;
    font-weight: 900;
    cursor: pointer;
}

.menu-caret {
    color: var(--primary-blue);
    margin-left: .02rem;
    transform: rotate(45deg);
}

.site-nav li:hover>a .menu-caret,
.site-nav li:focus-within>a .menu-caret,
.site-nav li.is-submenu-open>a .menu-caret {
    margin-top: .18rem;
    transform: rotate(-135deg);
}

.header-submenu {
    position: absolute;
    left: 50%;
    top: 100%;
    z-index: 1002;
    width: min(760px, calc(100vw - 2rem));
    transform: translateX(-50%);
    display: none;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .55rem;
    background: #fff;
    border: 1px solid #b8d2ff;
    border-top: 2px solid var(--red);
    border-radius: 8px;
    box-shadow: 0 18px 42px rgba(0, 91, 170, .18);
    padding: .9rem;
}

nav li:hover .header-submenu,
nav li:focus-within .header-submenu,
nav li.is-submenu-open .header-submenu {
    display: grid;
}

.header-submenu a {
    display: flex;
    align-items: center;
    gap: .5rem;
    border: 1px solid #cfd9e3;
    border-radius: 6px;
    padding: .55rem .75rem;
    font-weight: 650;
    background: #fff;
}

.header-submenu a:hover {
    background: #eef6ff;
    border-color: var(--red);
    color: var(--primary-blue);
}

.header-submenu-mbbs_india {
    width: min(560px, calc(100vw - 2rem));
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top-color: var(--primary-blue);
}

.nav-item-study_abroad .header-submenu,
.nav-item-neet_pg .header-submenu,
.nav-item-neet_ug .header-submenu,
.nav-item-resource .header-submenu {
    left: auto;
    right: 0;
    transform: none;
}

.header-submenu-resource {
    width: min(380px, calc(100vw - 2rem));
    grid-template-columns: 1fr;
}

.header-submenu-mbbs_india a {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-submenu-mbbs_india a::after {
    content: ">";
    color: #7d8896;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 2rem;
}

.section-title h2 {
    color: var(--primary-blue);
    font-size: clamp(1.45rem, 2.2vw, 2rem);
}

.section-title p {
    color: var(--muted);
    max-width: 850px;
    margin: .4rem auto 0;
}

.hero-banner {
    padding: 0;
    background: #eaf5ff;
}

.about-hero {
    display: grid;
    align-items: center;
    min-height: 370px;
    padding: 5.5rem 0;
    background-color: #eef4fb;
    background-position: center right;
    background-size: cover;
    background-repeat: no-repeat;
    color: #17263a;
}

.about-hero-inner {
    display: grid;
    justify-items: start;
    gap: .75rem;
    max-width: 720px;
    margin-left: 0;
    margin-right: auto;
    text-align: left;
}

.about-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: .45rem;
    color: #17263a;
    font-weight: 800;
}

.about-breadcrumb a {
    color: #17263a;
    text-decoration: none;
}

.about-hero h1 {
    font-size: clamp(2.1rem, 4vw, 4rem);
    line-height: 1;
    color: #17263a;
}

.about-hero p {
    max-width: 680px;
    font-size: clamp(1rem, 1.8vw, 1.3rem);
    font-weight: 800;
}

.about-intro-section,
.about-mission-section,
.about-partner-section,
.about-principles-section {
    background: #fff;
}

.about-intro-grid,
.about-mission-grid {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
    align-items: center;
    gap: clamp(2rem, 5vw, 4rem);
}

.about-image-stack {
    position: relative;
    min-height: 520px;
}

.about-image-stack img,
.about-mission-media img {
    display: block;
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(15, 47, 84, .18);
}

.about-image-main {
    height: 420px;
}

.about-image-small {
    position: absolute;
    width: 42% !important;
    height: 190px;
    border: 8px solid #fff;
}

.about-image-small-top {
    right: 0;
    top: 2rem;
}

.about-image-small-bottom {
    right: 7%;
    bottom: 0;
}

.about-year-badge {
    position: absolute;
    left: 1.1rem;
    bottom: 2.1rem;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--primary-blue), var(--teal));
    color: #fff;
    box-shadow: 0 16px 34px rgba(0, 91, 170, .26);
    text-align: center;
}

.about-year-badge strong,
.about-stat-card strong {
    display: block;
    font-size: 2rem;
    line-height: 1;
}

.about-year-badge span,
.about-stat-card span {
    display: block;
    font-weight: 800;
}

.about-kicker {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    margin-bottom: .75rem;
    color: var(--red);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .04em;
    font-size: .8rem;
}

.about-intro-copy h2,
.about-mission-copy h2,
.about-cta-card h2 {
    color: var(--primary-blue);
    font-size: clamp(1.75rem, 3vw, 2.7rem);
    line-height: 1.12;
    margin-bottom: 1rem;
}

.about-intro-copy p,
.about-mission-copy p,
.about-info-card p,
.about-cta-card p {
    color: #334155;
    line-height: 1.75;
    font-weight: 650;
}

.about-number-list {
    display: grid;
    gap: .8rem;
    margin: 1.25rem 0;
    padding: 0;
    list-style: none;
}

.about-number-list li {
    display: flex;
    align-items: center;
    gap: .8rem;
    color: #17263a;
    font-weight: 900;
}

.about-number-list span {
    display: inline-grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #e7f1ff;
    color: var(--primary-blue);
    font-weight: 900;
}

.about-call,
.about-cta-card button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border: 0;
    border-radius: 999px;
    padding: .75rem 1.2rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--teal));
    color: #fff;
    text-decoration: none;
    font-weight: 900;
    cursor: pointer;
}

.about-mission-section {
    background: linear-gradient(135deg, #081d4a, #005baa);
    color: #fff;
}

.about-mission-grid {
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
}

.about-mission-copy h2,
.about-mission-copy p,
.about-mission-copy .about-kicker {
    color: #fff;
}

.about-mission-media img {
    height: 420px;
}

.about-feature-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.3rem;
    margin-top: 1.7rem;
    padding-bottom: 1.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.about-feature-pill {
    display: flex;
    align-items: center;
    gap: .75rem;
    color: #fff;
    font-weight: 900;
}

.about-feature-pill span,
.about-card-icon {
    display: inline-grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #fff;
    color: var(--teal);
    font-size: 1.45rem;
    box-shadow: 0 14px 34px rgba(15, 47, 84, .12);
    flex: 0 0 auto;
}

.about-principles-section {
    background: #f3f6fa;
}

.about-principle-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    margin-top: 3rem;
}

.about-principle-card {
    position: relative;
    min-height: 165px;
    padding: 4.3rem 1.4rem 1.5rem;
    border: 1px solid #dce7f2;
    border-radius: 8px;
    background: #fff;
    text-align: center;
}

.about-principle-card .about-card-icon {
    position: absolute;
    left: 50%;
    top: 0;
    width: 90px;
    height: 90px;
    transform: translate(-50%, -50%);
    border: 1px solid #dce7f2;
    font-size: 2rem;
}

.about-principle-card h3,
.about-testimonial-author strong {
    color: #061b5f;
}

.about-principle-card p {
    color: #334155;
    line-height: 1.65;
    font-weight: 650;
}

.about-testimonials-section {
    position: relative;
    overflow: hidden;
    background: #061b5f;
    color: #fff;
}

.about-testimonials-section::before,
.about-testimonials-section::after {
    content: "";
    position: absolute;
    border: 20px solid var(--teal);
    border-radius: 50%;
    opacity: .9;
    pointer-events: none;
}

.about-testimonials-section::before {
    left: -110px;
    bottom: -170px;
    width: 300px;
    height: 300px;
}

.about-testimonials-section::after {
    right: -60px;
    top: 70px;
    width: 200px;
    height: 200px;
}

.about-testimonials-section .section-title h2,
.about-testimonials-section .about-kicker {
    color: #fff;
}

.about-testimonial-grid {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding: .25rem .25rem 1rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.about-testimonial-grid::-webkit-scrollbar {
    display: none;
}

.about-testimonial-card {
    position: relative;
    flex: 0 0 clamp(290px, 31vw, 360px);
    overflow: hidden;
    scroll-snap-align: start;
    display: grid;
    align-content: space-between;
    min-height: 235px;
    padding: 1.8rem;
    border-radius: 8px;
    background: #fff;
    color: #334155;
    border: 1px solid transparent;
    transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.about-testimonial-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 105, 180, .12), rgba(24, 197, 209, .18), transparent 62%);
    opacity: 0;
    transition: opacity .25s ease;
    pointer-events: none;
}

.about-testimonial-card:hover,
.about-testimonial-card:focus-within {
    transform: translateY(-4px);
    border-color: rgba(24, 197, 209, .6);
    background: #f6fbff;
}

.about-testimonial-card:hover::before,
.about-testimonial-card:focus-within::before {
    opacity: 1;
}

.about-testimonial-card p {
    position: relative;
    line-height: 1.75;
    font-weight: 650;
}

.about-testimonial-author {
    position: relative;
    display: flex;
    align-items: center;
    gap: .8rem;
    margin-top: 1.4rem;
}

.about-testimonial-author span {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #49dff0, #d86bff);
    color: #fff;
}

.about-card-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.about-info-card {
    position: relative;
    overflow: hidden;
    min-height: 100%;
    padding: 1.25rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 16px 36px rgba(15, 47, 84, .09);
    text-align: center;
    transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.about-info-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 105, 180, .1), rgba(24, 197, 209, .22), transparent 68%);
    opacity: 0;
    transition: opacity .25s ease;
    pointer-events: none;
}

.about-info-card:hover,
.about-info-card:focus-within {
    transform: translateY(-5px);
    border-color: rgba(24, 197, 209, .55);
    background: #f6fbff;
}

.about-info-card:hover::before,
.about-info-card:focus-within::before {
    opacity: 1;
}

.about-info-card h3 {
    position: relative;
    color: var(--primary-blue);
    font-size: 1.05rem;
    line-height: 1.3;
    margin-bottom: .7rem;
}

.about-info-card p {
    position: relative;
}

.about-info-card .about-card-icon {
    position: relative;
    margin: 0 auto 1.1rem;
    transition: background .25s ease, color .25s ease, transform .25s ease;
}

.about-info-card:hover .about-card-icon,
.about-info-card:focus-within .about-card-icon {
    transform: scale(1.06);
    background: linear-gradient(135deg, #e7f8ff, #fff);
    color: var(--primary-blue);
}

.hero-content-section {
    background: linear-gradient(135deg, #eaf5ff, #f8fbff);
    padding: 3rem 0;
}

.hero-content {
    display: grid;
    gap: 1.2rem;
    align-items: center;
    text-align: center;
}

.hero-text h1 {
    color: var(--dark-blue);
    font-size: clamp(2.1rem, 5vw, 4.1rem);
    line-height: 1.08;
    margin-bottom: 1rem;
}

.hero-text p {
    color: var(--muted);
    font-size: 1.15rem;
    max-width: 780px;
    margin: 0 auto 1.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-primary-hero,
.btn-secondary-hero,
.btn-apply,
.btn-details,
.dest-btn,
.enquiry-submit {
    border: 0;
    border-radius: 6px;
    padding: .85rem 1rem;
    font-weight: 800;
    cursor: pointer;
}

.btn-details {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-primary-hero,
.btn-apply,
.enquiry-submit {
    color: #fff;
    background: var(--primary-blue);
}

.btn-primary-hero:hover,
.btn-apply:hover,
.enquiry-submit:hover {
    background: var(--dark-blue);
}

.btn-secondary-hero,
.btn-details,
.dest-btn {
    color: var(--primary-blue);
    background: #eef6ff;
    border: 1px solid #cfe4f8;
}

.hero-banners {
    position: relative;
    width: 100%;
    min-height: 430px;
    overflow: hidden;
    background: #dceaf5;
}

.hero-banners .bg-img {
    position: absolute;
    inset: 0;
    opacity: 0;
    background-color: #dceaf5;
    background-size: cover;
    background-position: center;
    transition: opacity .7s ease;
}

.hero-banners .bg-img.active {
    opacity: 1;
}

.hero-banners:empty::before {
    content: "KG2PG";
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: var(--primary-blue);
    font-size: 3rem;
    font-weight: 900;
}

.university-partners {
    padding-top: 1rem;
    padding-bottom: 0;
}

.university-partners .section-title {
    text-align: left;
    margin-bottom: 1.2rem;
}

.university-partners .section-title h2 {
    font-size: clamp(1.28rem, 1.85vw, 1.72rem);
}

.university-partners .country-tabs {
    justify-content: flex-start;
    margin-bottom: 2rem;
}

.grid {
    display: grid;
    gap: 1.2rem;
}

.country-tabs,
.destination-buttons {
    display: flex;
    gap: .8rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.country-tab {
    border: 1px solid var(--line);
    background: #fff;
    color: var(--primary-blue);
    padding: .7rem 1rem;
    border-radius: 999px;
    font-weight: 800;
    cursor: pointer;
}

.country-tab.active {
    background: var(--primary-blue);
    color: #fff;
    border-color: var(--primary-blue);
    box-shadow: inset 4px 0 0 var(--red);
}

.university-carousel,
.testimonial-carousel,
.services-grid,
.countries-grid,
.opportunities-grid,
.stats-grid,
.achievement-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
    gap: 1.2rem;
}

.university-card,
.testimonial-card,
.service-card,
.country-card,
.opportunity-card,
.stat-card,
.achievement-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 91, 170, .07);
    overflow: hidden;
}

.university-image {
    min-height: 145px;
    background: linear-gradient(135deg, #dff3ff, #f1fff9);
    display: grid;
    place-items: center;
    position: relative;
    font-size: 3.2rem;
    overflow: hidden;
}

.university-image img {
    width: 100%;
    height: 145px;
    object-fit: cover;
    display: block;
}

.rank-badge {
    position: absolute;
    top: .7rem;
    right: .7rem;
    background: var(--orange);
    color: #fff;
    border-radius: 999px;
    font-size: .8rem;
    padding: .3rem .6rem;
    font-weight: 800;
}

.university-info,
.testimonial-card,
.service-card,
.country-body,
.opportunity-card,
.achievement-info {
    padding: 1.2rem;
}

.university-name,
.student-name,
.service-card h3,
.country-name,
.opportunity-card h3,
.achievement-card h3 {
    color: var(--primary-blue);
    font-weight: 900;
    margin-bottom: .4rem;
}

.university-location,
.university-details,
.student-location,
.testimonial-text,
.service-card p,
.country-stat,
.opportunity-card p,
.achievement-card p {
    color: var(--muted);
}

.university-buttons {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .55rem;
    margin-top: 1rem;
}

.university-buttons .btn-apply,
.university-buttons .btn-details {
    min-height: 44px;
    padding: .65rem .5rem;
    line-height: 1.1;
    white-space: nowrap;
}

.trusted-section,
.admission-process,
.top-countries {
    background: var(--soft);
}

.trusted-section {
    padding-top: 1.25rem;
}

.trusted-section .section-title {
    text-align: left;
    margin-bottom: 1.2rem;
}

.trusted-section .section-title h2 {
    color: var(--dark-blue);
    font-size: clamp(1.35rem, 1.95vw, 1.82rem);
}

.brand-red {
    color: var(--red);
}

.trusted-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.trusted-content {
    color: var(--text);
    font-size: .96rem;
    line-height: 1.7;
    border-left: 4px solid var(--red);
    padding-left: 1rem;
}

.stat-card {
    text-align: center;
    padding: 1.4rem;
    border-top: 4px solid var(--primary-blue);
}

.stat-card:nth-child(even) {
    border-top-color: var(--red);
}

.stat-card:nth-child(3n) {
    border-top-color: var(--orange);
}

.stat-number {
    color: var(--primary-blue);
    font-size: 2rem;
    font-weight: 900;
}

.stat-card:nth-child(even) .stat-number {
    color: var(--red);
}

.stat-card:nth-child(3n) .stat-number {
    color: var(--orange);
}

.academic-departments {
    padding: 2.4rem 0 2rem;
    background: #f4f7fb;
}

.academic-departments .section-title {
    text-align: center;
    margin-bottom: 1.8rem;
}

.academic-departments .section-title h2 {
    color: #172b2b;
    font-size: clamp(1.55rem, 3vw, 2.6rem);
}

.academic-kicker {
    width: fit-content;
    display: flex;
    align-items: center;
    gap: .55rem;
    margin: 0 auto 1.5rem;
    padding: .45rem .85rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    color: #172b2b;
    font-weight: 800;
    box-shadow: 0 8px 22px rgba(15, 47, 84, .07);
}

.academic-kicker span {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #e7f5ff;
    color: var(--primary-blue);
}

.academic-tabs-wrap {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: .75rem;
    margin-bottom: 1.6rem;
}

.academic-tabs {
    display: flex;
    gap: .85rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.academic-tabs::-webkit-scrollbar {
    display: none;
}

.academic-tab {
    flex: 0 0 auto;
    min-width: 112px;
    min-height: 42px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    color: #111;
    padding: .45rem .95rem;
    font-weight: 900;
    box-shadow: 0 10px 22px rgba(15, 47, 84, .08);
}

.academic-tab.active {
    border-color: #087dff;
    background: #087dff;
    color: #fff;
}

.academic-nav {
    width: 42px;
    min-height: 42px;
    border: 0;
    border-radius: 50%;
    background: #0b48d2;
    color: #fff;
    font-size: 1.7rem;
    font-weight: 900;
    box-shadow: 0 12px 26px rgba(0, 72, 210, .22);
}

.academic-nav-prev {
    background: #747474;
}

.academic-carousel {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.academic-carousel::-webkit-scrollbar {
    display: none;
}

.academic-card {
    flex: 0 0 calc((100% - 4rem) / 5);
    display: grid;
    grid-template-rows: auto auto auto;
    height: auto;
    min-height: 305px;
    scroll-snap-align: start;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 14px 32px rgba(13, 61, 101, .08);
    overflow: hidden;
    transition: background .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.academic-card:hover,
.academic-card:focus-within {
    border-color: rgba(0, 91, 170, .34);
    background: linear-gradient(180deg, #ffffff 0%, #f1f8ff 100%);
    box-shadow: 0 20px 44px rgba(13, 61, 101, .13);
    transform: translateY(-3px);
}

.academic-card-media {
    min-height: 112px;
    padding: 16px 20px 0;
    background: #fff;
    transition: background .2s ease;
}

.academic-card-media img {
    width: 100%;
    height: 96px;
    display: block;
    object-fit: cover;
    border-radius: 8px;
    background: #e9f1f8;
}

.academic-card-media:empty::before {
    content: "";
    display: block;
    width: 100%;
    height: 96px;
    border-radius: 8px;
    background: linear-gradient(135deg, #e6f0f8, #f4fbff);
}

.academic-card-body {
    display: grid;
    align-content: start;
    grid-template-rows: auto 38px auto;
    row-gap: 4px;
    padding: 12px 20px 4px;
}

.academic-city {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    margin-bottom: 1px;
    padding: 5px 14px;
    border-radius: 999px;
    background: #e4fbfa;
    color: var(--primary-blue);
    font-size: 13px;
    font-weight: 900;
}

.academic-card h3 {
    display: -webkit-box;
    min-height: 38px;
    margin: 0;
    color: #07182c;
    font-size: 16px;
    line-height: 1.18;
    letter-spacing: 0;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.academic-meta {
    display: flex;
    gap: .55rem;
    flex-wrap: wrap;
    color: #12243a;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 0;
}

.academic-card-action {
    border-top: 1px solid var(--line);
    padding: 8px 20px 12px;
}

.academic-card-action a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: #172b2b;
    font-size: 15px;
    font-weight: 900;
    text-decoration: none;
}

.academic-card-action a:hover {
    border-color: var(--primary-blue);
    background: var(--primary-blue);
    color: #fff;
}

.college-detail-page {
    min-height: 100vh;
    background: #f4f7fb;
    padding: 1.2rem;
}

.college-detail-logo {
    display: inline-flex;
    align-items: center;
    min-height: 56px;
    margin-bottom: 1rem;
}

.college-detail-logo img {
    width: 170px;
    height: auto;
}

.college-detail-hero,
.college-detail-section {
    width: min(1100px, 100%);
    margin: 0 auto 1rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 91, 170, .07);
}

.college-detail-hero {
    display: grid;
    grid-template-columns: minmax(280px, .9fr) minmax(0, 1.1fr);
    overflow: hidden;
}

.college-detail-media {
    min-height: 300px;
    background: linear-gradient(135deg, #e6f0f8, #f4fbff);
}

.college-detail-media img {
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
    display: block;
}

.college-detail-copy,
.college-detail-section {
    padding: 1.4rem;
}

.college-detail-copy span {
    display: inline-flex;
    margin-bottom: .8rem;
    padding: .35rem .9rem;
    border-radius: 999px;
    background: #e4fbfa;
    color: var(--primary-blue);
    font-weight: 900;
}

.college-detail-copy h1,
.college-detail-section h2 {
    color: #172b2b;
    margin-bottom: .75rem;
}

.college-detail-copy a {
    display: inline-flex;
    margin-top: 1rem;
    color: var(--primary-blue);
    font-weight: 900;
}

.college-detail-section p {
    color: var(--text);
    line-height: 1.7;
}

.college-detail-content {
    color: var(--text);
    font-size: 1rem;
    line-height: 1.75;
}

.college-detail-content h1,
.college-detail-content h2,
.college-detail-content h3,
.college-detail-content h4 {
    color: var(--primary-blue);
    margin: 1.1rem 0 .55rem;
    line-height: 1.25;
}

.college-detail-content h1:first-child,
.college-detail-content h2:first-child,
.college-detail-content h3:first-child {
    margin-top: 0;
}

.college-detail-content p,
.college-detail-content ul,
.college-detail-content ol,
.college-detail-content table,
.college-detail-content blockquote {
    margin: 0 0 1rem;
}

.college-detail-content ul,
.college-detail-content ol {
    padding-left: 1.35rem;
}

.college-detail-content a {
    color: var(--primary-blue);
    font-weight: 800;
}

.college-detail-content table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.college-detail-content th,
.college-detail-content td {
    border: 1px solid var(--line);
    padding: .75rem;
    text-align: left;
    vertical-align: top;
}

.college-detail-content th {
    background: var(--primary-blue);
    color: #fff;
}

.college-detail-content blockquote {
    border-left: 4px solid var(--primary-blue);
    padding: .75rem 1rem;
    background: #f4f8fd;
}

.college-course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: .8rem;
}

.college-course-grid article {
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: .9rem;
    background: #f8fbff;
}

.college-course-grid strong,
.college-course-grid span {
    display: block;
}

.college-course-grid strong {
    color: var(--primary-blue);
    margin-bottom: .35rem;
}

.testimonial-badge {
    position: absolute;
    top: .55rem;
    right: .55rem;
    display: inline-block;
    background: #ffc928;
    color: #815c00;
    border-radius: 999px;
    padding: .18rem .45rem;
    font-weight: 900;
    font-size: .64rem;
    line-height: 1;
}

.testimonials {
    padding-top: 2rem;
    background: #e9fbff;
}

.testimonials .section-title {
    text-align: left;
    margin-bottom: 1.2rem;
}

.testimonials .section-title h2 {
    font-size: clamp(1.3rem, 1.9vw, 1.75rem);
}

.testimonials .section-title p {
    margin-left: 0;
    margin-right: 0;
}

.testimonial-carousel {
    grid-template-columns: repeat(auto-fit, minmax(205px, 1fr));
    gap: 1.65rem;
    align-items: stretch;
}

.testimonial-card {
    position: relative;
    min-height: 330px;
    padding: .65rem .75rem .55rem;
    border: 1.5px solid #0089b7;
    border-radius: 8px;
    background: radial-gradient(circle at 50% 30%, rgba(255, 255, 255, .98) 0 30%, rgba(237, 252, 255, .82) 31% 52%, transparent 53%), linear-gradient(135deg, #edfdff, #ffffff 56%, #ddf7ff);
    box-shadow: none;
    text-align: center;
}

.testimonial-brand {
    display: block;
    width: 72px;
    height: 28px;
    object-fit: contain;
    object-position: left center;
    margin-bottom: .25rem;
}

.student-photo,
.testimonial-logo,
.service-icon,
.opp-icon,
.achievement-image {
    font-size: 2.2rem;
    margin: .7rem 0;
}

.testimonial-photo {
    display: block;
    width: 108px;
    height: 108px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    border: 0;
    margin: .25rem auto .55rem;
    background: #eef6ff;
}

.testimonial-logo {
    width: 108px;
    height: 108px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin: .25rem auto .55rem;
    background: rgba(238, 246, 255, .9);
}

.testimonial-card .student-name {
    color: #d49a18;
    font-size: .84rem;
    line-height: 1.15;
    margin-bottom: .05rem;
}

.testimonial-card .student-location {
    color: #5f6f82;
    font-size: .58rem;
    line-height: 1.15;
    margin-bottom: .45rem;
}

.testimonial-university {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    border: 1.3px solid #1f2f46;
    border-radius: 7px;
    background: rgba(255, 255, 255, .86);
    color: var(--primary-blue);
    font-size: .62rem;
    font-weight: 900;
    line-height: 1.15;
    padding: .25rem .45rem;
    margin: 0 .7rem .45rem;
}

.testimonial-text {
    position: relative;
    color: #1f2f46;
    font-size: .66rem;
    line-height: 1.35;
    margin: 0;
    min-height: 58px;
}

.testimonial-text::before {
    content: ">";
    position: absolute;
    left: -.55rem;
    top: -.1rem;
    color: #d9ad25;
    font-size: 1rem;
}

.rating {
    color: #ffbd18;
    margin-top: .35rem;
    text-align: right;
    font-size: .82rem;
    letter-spacing: .02em;
}

.admission-process {
    padding-top: 2rem;
}

.admission-process .section-title {
    text-align: left;
    margin-bottom: 1.2rem;
}

.admission-process .section-title p {
    margin-left: 0;
    margin-right: 0;
}

.achievements {
    padding: 2.2rem 0;
    background: linear-gradient(135deg, var(--primary-blue), #2b66e8);
    color: #fff;
}

.achievements-inner {
    display: grid;
    grid-template-columns: minmax(250px, .45fr) minmax(0, 1fr);
    gap: 2rem;
    align-items: center;
}

.achievement-copy {
    max-width: 410px;
    padding-left: 3.8rem;
}

.achievement-copy h2 {
    color: #fff;
    font-size: clamp(1.55rem, 2.25vw, 2.2rem);
    line-height: 1.35;
    margin-bottom: .9rem;
}

.achievement-copy p {
    color: rgba(255, 255, 255, .95);
    font-weight: 700;
    line-height: 1.65;
    margin-bottom: 1.2rem;
}

.achievement-controls {
    display: flex;
    gap: .75rem;
}

.achievement-control {
    width: 44px;
    height: 44px;
    min-height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .65);
    background: rgba(255, 255, 255, .12);
    color: #fff;
    font-size: 1.55rem;
    padding: 0;
}

.achievement-control:hover {
    background: var(--red);
    border-color: var(--red);
}

.achievement-slider {
    min-width: 0;
    overflow: hidden;
}

.achievement-track {
    display: flex;
    gap: 1rem;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.achievement-card {
    flex: 0 0 calc((100% - 1rem) / 2);
    border: 0;
    border-radius: 10px;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    box-shadow: none;
    overflow: hidden;
}

.achievement-media {
    height: 225px;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #e2f7ff, #fff);
}

.achievement-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.achievement-fallback {
    display: grid;
    place-items: center;
    width: 92px;
    height: 92px;
    border-radius: 50%;
    background: #fff;
    color: var(--orange);
    font-size: 2.8rem;
    box-shadow: 0 8px 22px rgba(0, 91, 170, .12);
}

.achievement-info {
    padding: 1.15rem 1.4rem 1.25rem;
    text-align: center;
    background: rgba(255, 255, 255, .08);
    border-top: 4px solid var(--red);
    min-height: 132px;
}

.achievement-info h3 {
    color: #fff;
    font-size: 1.05rem;
    line-height: 1.35;
    margin-bottom: .55rem;
}

.achievement-info p {
    color: rgba(255, 255, 255, .95);
    font-weight: 700;
    font-size: .9rem;
    line-height: 1.65;
}

.achievement-dots {
    display: flex;
    justify-content: center;
    gap: .35rem;
    margin-top: .8rem;
}

.achievement-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .45);
}

.achievement-dots span:first-child {
    background: #fff;
}

.study-abroad {
    padding-top: 2rem;
}

.study-abroad .section-title {
    text-align: left;
    margin-bottom: 1.2rem;
}

.country-header {
    position: relative;
    min-height: 240px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
    color: #fff;
    padding: 1.45rem;
}

.country-header img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.country-header .country-flag,
.country-header .country-name {
    position: relative;
    z-index: 1;
}

.country-header .country-flag {
    display: block;
    font-size: 1.65rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.country-header .country-name {
    color: rgba(255, 255, 255, .95);
    font-size: clamp(1.55rem, 2.5vw, 2.35rem);
    line-height: 1.25;
}

.study-abroad .countries-grid {
    display: flex;
    grid-template-columns: none;
    gap: 1.35rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.study-abroad .countries-grid::-webkit-scrollbar {
    display: none;
}

.study-abroad .country-card {
    flex: 0 0 calc((100% - 4.05rem) / 4);
    min-width: 300px;
    border: 0;
    border-radius: 16px;
    box-shadow: 0 12px 24px rgba(15, 35, 63, .14);
    scroll-snap-align: start;
}

.study-abroad .country-header {
    min-height: 122px;
    height: 122px;
    padding: 0;
    background: #123b65;
}

.study-abroad .country-header::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(5, 25, 48, .7), rgba(5, 25, 48, .12));
}

.study-abroad .country-header .country-flag {
    display: inline-flex;
    position: absolute;
    z-index: 2;
    top: 12px;
    left: 16px;
    width: 34px;
    height: 24px;
    align-items: center;
    justify-content: center;
    margin: 0;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .22);
    background: #fff;
    font-size: 1.2rem;
}

.study-abroad .country-header .country-flag .country-flag-image {
    position: static;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.study-abroad .country-heading {
    position: absolute;
    z-index: 2;
    left: 16px;
    right: 16px;
    bottom: 15px;
    color: #fff;
}

.study-abroad .country-header .country-name {
    margin: 0 0 5px;
    color: #fff;
    font-size: 1.08rem;
    line-height: 1.15;
    text-shadow: 0 1px 3px rgba(0, 0, 0, .45);
}

.study-abroad .country-colleges {
    font-size: .72rem;
    font-weight: 800;
}

.study-abroad .country-body {
    padding: .65rem .7rem .75rem;
}

.study-abroad .country-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .45rem .55rem;
}

.study-abroad .country-stat {
    overflow: hidden;
    padding: .42rem .58rem;
    border: 1px solid #d5dee8;
    border-radius: 999px;
    color: #26384d;
    background: #fff;
    font-size: .7rem;
    line-height: 1.1;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.study-abroad .country-links {
    gap: 0;
    margin-top: .7rem;
    padding-top: .38rem;
    border-top: 1px solid #dbe2e9;
}

.study-abroad .country-links a {
    position: relative;
    padding: .42rem 1rem .42rem 0;
    color: #1c2735;
    font-size: .72rem;
    font-weight: 500;
}

.study-abroad .country-links a::after {
    content: '›';
    position: absolute;
    right: 0;
    color: #111827;
    font-size: 1rem;
    line-height: .8;
}

.landing-blog-section {
    padding: 3rem 0 3.4rem;
    background: linear-gradient(180deg, #f7fbff 0%, #eef6ff 100%);
}

.landing-blog-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.35rem;
}

.landing-blog-heading .section-title {
    margin: 0;
    text-align: left;
}

.landing-blog-heading .section-title p {
    margin-left: 0;
    margin-right: 0;
}

.landing-blog-view-all,
.landing-blog-read {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    border-radius: 6px;
    color: #fff;
    background: var(--primary-blue);
    text-decoration: none;
    font-weight: 800;
    white-space: nowrap;
}

.landing-blog-view-all {
    padding: .78rem 1.2rem;
}

.landing-blog-shell {
    position: relative;
}

.landing-blog-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(310px, calc((100% - 2.4rem) / 3));
    gap: 1.2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: .15rem .2rem .6rem;
    scrollbar-width: none;
}

.landing-blog-track::-webkit-scrollbar {
    display: none;
}

.landing-blog-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    overflow: hidden;
    border: 1px solid #d5dee8;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 38px rgba(14, 44, 78, .12);
    scroll-snap-align: start;
}

.landing-blog-media {
    display: block;
    aspect-ratio: 16 / 7;
    overflow: hidden;
    background: linear-gradient(135deg, #0f4e7f, #0d9ac4);
}

.landing-blog-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
}

.landing-blog-card:hover .landing-blog-media img {
    transform: scale(1.04);
}

.landing-blog-body {
    display: grid;
    gap: .85rem;
    padding: 1.1rem 1.1rem 1rem;
}

.landing-blog-date {
    color: #747d89;
    font-size: .84rem;
    font-weight: 700;
}

.landing-blog-body h3 {
    min-height: 3.2rem;
    color: #172235;
    font-size: 1rem;
    line-height: 1.6;
}

.landing-blog-body h3 a {
    color: inherit;
    text-decoration: none;
}

.landing-blog-body h3 a:hover {
    color: var(--primary-blue);
}

.landing-blog-body p {
    display: -webkit-box;
    min-height: 5rem;
    overflow: hidden;
    color: #566273;
    line-height: 1.7;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.landing-blog-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .8rem;
    margin: auto 1.1rem 1.1rem;
    padding-top: .9rem;
    border-top: 1px solid #edf1f5;
}

.landing-blog-author {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    min-width: 0;
    color: #293545;
    font-size: .82rem;
    font-weight: 800;
}

.landing-blog-author span {
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, #0476ff, #7c2df2);
    font-size: .78rem;
}

.landing-blog-read {
    flex: 0 0 auto;
    padding: .7rem .95rem;
    font-size: .84rem;
}

.landing-blog-nav {
    position: absolute;
    z-index: 2;
    top: 50%;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    color: #fff;
    background: #0d76d8;
    box-shadow: 0 10px 22px rgba(13, 89, 170, .28);
    cursor: pointer;
    transform: translateY(-50%);
}

.landing-blog-prev {
    left: -18px;
}

.landing-blog-next {
    right: -18px;
}

.blog-page-hero {
    padding: 4rem 0 3rem;
    background: linear-gradient(135deg, #eaf5ff, #f8fbff);
}

.blog-page-hero h1 {
    color: var(--dark-blue);
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1.08;
    margin: .8rem 0;
}

.blog-page-hero p {
    max-width: 760px;
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.7;
}

.blog-page-list {
    padding: 3rem 0;
    background: #f6f9fd;
}

.blog-page-grid {
    grid-auto-flow: row;
    grid-auto-columns: initial;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: visible;
}

.blog-detail-page {
    padding: 1rem 0 4rem;
    background: #fff;
}

.blog-detail-feature {
    width: min(100%, 1080px);
    margin: .55rem auto 0;
    padding: 1.8rem 2rem 1.6rem;
    border: 1px solid #d5dbe3;
    border-radius: 8px;
    background: #fff;
}

.blog-detail-header {
    position: static;
    max-width: 980px;
    margin: 0 auto 1.8rem;
    padding: 0;
    background: transparent;
    text-align: center;
}

.blog-detail-header .landing-blog-author {
    justify-content: center;
    margin-bottom: 1rem;
}

.blog-detail-header .landing-blog-author em {
    color: #667085;
    font-style: normal;
    font-weight: 700;
}

.blog-detail-header h1 {
    color: var(--dark-blue);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    line-height: 1.22;
    margin: 0;
}

.blog-detail-image {
    display: block;
    width: min(100%, 960px);
    max-height: 440px;
    object-fit: cover;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 18px 42px rgba(14, 44, 78, .14);
}

.blog-detail-content {
    min-width: 0;
    padding: .25rem 0 2rem;
    color: #172033;
    font-size: 1rem;
    line-height: 1.8;
}

.blog-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: .5rem;
    width: min(100%, 1080px);
    margin: 2rem auto 0;
}

.blog-detail-content > :first-child {
    margin-top: 0 !important;
}

.blog-detail-byline { display: flex; align-items: flex-start; gap: .75rem; padding-top: .4rem; }
.blog-detail-byline > span { display: grid; flex: 0 0 42px; width: 42px; height: 42px; place-items: center; border-radius: 50%; background: linear-gradient(135deg, var(--primary-blue), #5c44ff); color: #fff; font-weight: 800; }
.blog-detail-byline strong, .blog-detail-byline small, .blog-detail-byline time { display: block; }
.blog-detail-byline small, .blog-detail-byline time { margin-top: .2rem; color: #667085; font-size: .76rem; }
.blog-detail-content h2, .blog-detail-content h3, .blog-detail-content h4 { margin: 1.45rem 0 .55rem; color: #0060aa; line-height: 1.25; }
.blog-detail-content p, .blog-detail-content ul, .blog-detail-content ol, .blog-detail-content blockquote { margin: 0 0 1rem; }
.blog-detail-content li { margin-bottom: .4rem; }

@media (max-width: 760px) {
    .blog-detail-feature { padding: 1.15rem; }
    .blog-detail-header { margin-bottom: 1rem; }
    .blog-detail-layout { gap: .75rem; }
}

.our-services {
    padding-top: 0;
}

.our-services .section-title {
    text-align: left;
    margin-bottom: 1.2rem;
}

.our-services .section-title p {
    margin-left: 0;
    margin-right: 0;
}

.our-services .service-card {
    position: relative;
    display: grid;
    justify-items: center;
    text-align: center;
    gap: .65rem;
    min-height: 205px;
    padding: 1.55rem 1.25rem;
    border: 1px solid #bfe0f7;
    border-top: 4px solid var(--primary-blue);
    border-radius: 8px;
    background: linear-gradient(180deg, #ffffff, #f7fbff);
    box-shadow: 0 14px 30px rgba(0, 91, 170, .08);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.our-services .service-card:nth-child(even) {
    border-top-color: var(--red);
}

.our-services .service-card:nth-child(3n) {
    border-top-color: var(--orange);
}

.our-services .service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 42px rgba(0, 91, 170, .14);
    border-color: var(--primary-blue);
}

.our-services .service-icon {
    display: grid;
    place-items: center;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    margin: 0 auto .15rem;
    background: linear-gradient(135deg, #e8f5ff, #ffffff);
    border: 1px solid #cfe4f8;
    box-shadow: 0 10px 22px rgba(0, 91, 170, .12);
    font-size: 2.15rem;
}

.our-services .service-card h3 {
    margin: 0;
    color: var(--primary-blue);
    font-size: 1.05rem;
    line-height: 1.25;
}

.our-services .service-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
    max-width: 260px;
}

.top-countries {
    padding: 2.6rem 0;
}

.top-countries .section-title {
    text-align: center;
    margin-bottom: 1.55rem;
}

.top-countries .section-title h2 {
    color: var(--primary-blue);
    font-size: clamp(1.35rem, 2vw, 1.85rem);
}

.global-opportunities-badge {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    margin-bottom: .65rem;
    padding: .24rem .8rem;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary-blue), #12bfd2);
    color: #fff;
    font-size: .72rem;
    font-weight: 900;
}

.top-countries .section-title::after {
    content: "";
    display: block;
    width: 68px;
    height: 3px;
    margin: .75rem auto 0;
    border-radius: 999px;
    background: var(--orange);
}

.services-opportunities {
    padding: 2.8rem 0;
    background: linear-gradient(180deg, #f4f8fd, #eef3f9);
}

.services-opportunities .section-title {
    text-align: left;
    margin-bottom: 2rem;
}

.services-opportunities .section-title h2 {
    color: var(--primary-blue);
    font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.services-opportunities .section-title p {
    margin-left: 0;
    margin-right: 0;
    color: var(--muted);
}

.services-opportunities .opportunities-grid {
    grid-template-columns: repeat(4, minmax(220px, 1fr));
    gap: 1.45rem 1.65rem;
}

.services-opportunities .opportunity-card {
    display: grid;
    justify-items: center;
    align-content: center;
    gap: .85rem;
    min-height: 185px;
    padding: 1.55rem 1.25rem;
    text-align: center;
    border: 0;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 18px 42px rgba(15, 47, 84, .08);
    transition: transform .2s ease, box-shadow .2s ease;
}

.services-opportunities .opportunity-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 55px rgba(15, 47, 84, .14);
}

.services-opportunities .opp-icon {
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    margin: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #34d07f 0%, #2ecb91 42%, #7552df 100%);
    color: #fff;
    font-size: 1.6rem;
    line-height: 1;
    box-shadow: 0 12px 24px rgba(0, 91, 170, .12);
}

.services-opportunities .opportunity-card h3 {
    margin: .15rem 0 0;
    color: #071527;
    font-size: 1rem;
    line-height: 1.25;
}

.services-opportunities .opportunity-card p {
    max-width: 245px;
    margin: 0 auto;
    color: var(--muted);
    line-height: 1.65;
}

.latest-news-section {
    padding: 3rem 0;
    background: #fff;
}

.news-page-shell {
    min-height: 55vh;
}

.latest-news-section .section-title {
    text-align: left;
}

.latest-news-section .section-title h1 {
    color: var(--primary-blue);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    line-height: 1.15;
}

.latest-news-section .section-title p {
    margin-left: 0;
    margin-right: 0;
}

.latest-news-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.35rem;
}

.latest-news-card {
    display: grid;
    grid-template-rows: auto 1fr;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 16px 36px rgba(15, 47, 84, .08);
}

.latest-news-media {
    display: grid;
    place-items: center;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #edf5ff;
    color: var(--primary-blue);
    font-weight: 900;
}

.latest-news-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.latest-news-fallback {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #eaf5ff, #fff3f3);
}

.latest-news-body {
    display: grid;
    gap: .55rem;
    align-content: start;
    padding: 1rem;
}

.latest-news-date {
    color: var(--red);
    font-size: .78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.latest-news-card h3 {
    color: #071527;
    font-size: 1.02rem;
    line-height: 1.3;
}

.latest-news-card h3 a {
    color: inherit;
    text-decoration: none;
}

.latest-news-card h3 a:hover {
    color: var(--primary-blue);
}

.latest-news-card p {
    color: var(--muted);
    line-height: 1.65;
}

.news-details-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    min-width: 150px;
    min-height: 42px;
    margin-top: .35rem;
    padding: .65rem 1rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 900;
}

.news-details-btn:hover {
    border-color: var(--primary-blue);
    background: #eef6ff;
}

.news-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: .35rem;
    margin-top: 2rem;
}

.news-pagination a,
.news-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    min-height: 38px;
    padding: .45rem .8rem;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #fff;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 800;
}

.news-pagination .active {
    border-color: var(--primary-blue);
    background: var(--primary-blue);
    color: #fff;
}

.news-pagination .disabled {
    background: #eef1f5;
    color: #6b7280;
    cursor: not-allowed;
}

.news-detail-shell {
    padding: 3rem 0;
    background: #fff;
}

.news-detail-shell .container {
    max-width: 980px;
}

.news-back-link {
    display: inline-flex;
    margin-bottom: 1rem;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 900;
}

.news-detail-shell h1 {
    margin: .5rem 0 1.2rem;
    color: #071527;
    font-size: clamp(1.8rem, 3vw, 2.7rem);
    line-height: 1.15;
}

.news-detail-image {
    display: block;
    width: 100%;
    max-height: 520px;
    object-fit: cover;
    border-radius: 8px;
    margin: 0 0 1.5rem;
}

.news-detail-content {
    color: #334155;
    font-size: 1rem;
    line-height: 1.8;
}

.news-detail-content p,
.news-detail-content ul,
.news-detail-content ol {
    margin-bottom: 1rem;
}

.news-detail-content h2,
.news-detail-content h3 {
    margin: 1.45rem 0 .65rem;
    color: #24364d;
    line-height: 1.2;
}

.news-detail-content h2 {
    font-size: clamp(1.25rem, 2vw, 1.6rem);
}

.news-detail-content h3 {
    font-size: 1.1rem;
}

.news-detail-content strong {
    color: #071527;
    font-weight: 900;
}

.news-detail-content mark {
    border-radius: 4px;
    padding: .05rem .25rem;
    background: #fff2a8;
    color: #071527;
    font-weight: 900;
}

.news-detail-content img {
    max-width: 100%;
    height: auto;
}

.news-detail-content table {
    width: 100%;
    max-width: 100%;
    margin: 1.25rem 0;
    border-collapse: collapse;
    border: 1px solid var(--line);
}

.blog-detail-content table {
    display: table;
    width: max-content;
    min-width: 100%;
    white-space: normal;
}

.blog-detail-content {
    overflow-x: auto;
}

.news-detail-content th,
.news-detail-content td {
    padding: .75rem;
    border: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}

.news-detail-content th {
    background: #eef6ff;
    color: #071527;
}

.blog-detail-content table tbody tr:first-child td {
    background: #eef6ff;
    color: #071527;
    font-weight: 800;
}

.process-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(7, minmax(145px, 1fr));
    align-items: center;
    gap: .3rem;
    min-width: 1060px;
    padding: 2.4rem 0 2.2rem;
}

.process-timeline-wrap {
    overflow-x: auto;
    padding-bottom: .5rem;
}

.process-step {
    position: relative;
    min-height: 330px;
    display: grid;
    justify-items: center;
    text-align: center;
}

.process-step:nth-child(even) {
    align-content: end;
    padding-top: 11.5rem;
}

.process-step:nth-child(odd) {
    align-content: start;
    padding-bottom: 11.5rem;
}

.process-copy {
    max-width: 150px;
}

.process-step h3 {
    color: var(--step-color);
    font-size: 1rem;
    font-weight: 900;
    line-height: 1.15;
    margin: 0 0 .35rem;
}

.process-step p {
    color: #111827;
    font-size: .7rem;
    font-weight: 700;
    line-height: 1.15;
    margin: 0;
}

.step-number {
    position: absolute;
    left: .2rem;
    top: var(--icon-top, 50%);
    transform: translateY(-50%);
    color: #111827;
    font-size: 1.45rem;
    font-weight: 500;
}

.process-step:nth-child(even) .step-number {
    left: -.15rem;
}

.process-step:nth-child(odd) .process-copy {
    transform: translateY(-.25rem);
}

.process-step:nth-child(even) .process-copy {
    transform: translateY(.25rem);
}

.process-icon {
    position: absolute;
    top: var(--icon-top, 50%);
    left: 50%;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    display: grid;
    place-items: center;
    background: #fff;
    border: 8px solid var(--step-color);
    box-shadow: inset 0 0 0 3px #fff, 0 0 0 1px rgba(0, 0, 0, .2);
    color: var(--step-color);
    font-size: 1.8rem;
}

.process-icon::before {
    content: "";
    position: absolute;
    inset: -16px;
    border-radius: 50%;
    border: 1px dashed #334155;
    opacity: .65;
}

.process-icon::after {
    display: none;
}

.process-arrow-head {
    position: absolute;
    width: 42px;
    height: 5px;
    right: -43px;
    bottom: 2px;
    border-radius: 999px;
    background: var(--step-color);
    transform: rotate(35deg);
}

.process-arrow-head::after {
    content: "";
    position: absolute;
    right: -2px;
    top: 50%;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 14px solid var(--step-color);
    transform: translateY(-50%);
}

.process-step:nth-child(even) .process-arrow-head {
    right: -43px;
    top: 2px;
    bottom: auto;
    transform: rotate(-35deg);
}

.process-step:last-child .process-icon::after,
.process-step:last-child .process-arrow-head {
    display: none;
}

.process-step:nth-child(odd) {
    --icon-top: 42%;
}

.process-step:nth-child(even) {
    --icon-top: 58%;
}

.process-step:nth-child(1) {
    --step-color: var(--red);
}

.process-step:nth-child(2) {
    --step-color: var(--primary-blue);
}

.process-step:nth-child(3) {
    --step-color: var(--orange);
}

.process-step:nth-child(4) {
    --step-color: #7ac70c;
}

.process-step:nth-child(5) {
    --step-color: var(--teal);
}

.process-step:nth-child(6) {
    --step-color: var(--dark-blue);
}

.process-step:nth-child(7) {
    --step-color: #c02d8c;
}

.country-header {
    padding: 1.4rem;
    font-size: 2.4rem;
    color: #fff;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
}

.country-links {
    display: grid;
    gap: .4rem;
    margin-top: .8rem;
}

.country-links a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 700;
}

.destinations-box {
    background: #fff;
    border: 1px solid var(--line);
    border-top: 3px solid var(--orange);
    border-radius: 12px;
    padding: 1.15rem 1rem;
    margin-bottom: 1.35rem;
    box-shadow: 0 14px 34px rgba(0, 91, 170, .05);
}

.destinations-box.study-destinations {
    border-top-color: var(--teal);
}

.destinations-box h3 {
    display: flex;
    align-items: center;
    gap: .7rem;
    margin: 0 0 1rem;
    padding-bottom: .9rem;
    border-bottom: 1px solid #dfe8f2;
    color: #091a32;
    font-size: .95rem;
    font-weight: 900;
}

.destination-card-icon {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: #fff7df;
    color: var(--dark-blue);
    font-size: 1.05rem;
}

.study-destinations .destination-card-icon {
    background: #e7f8ff;
}

.top-countries .destination-buttons {
    display: grid;
    grid-template-columns: repeat(6, minmax(130px, 1fr));
    gap: .55rem .65rem;
    justify-content: stretch;
    margin-bottom: 0;
}

.top-countries .dest-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 34px;
    width: 100%;
    padding: .45rem .65rem;
    border: 1px solid #111827;
    border-radius: 6px;
    background: #fff;
    color: #091a32;
    font-size: .78rem;
    font-weight: 900;
    text-align: left;
    text-decoration: none;
    transition: border-color .18s ease, color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.top-countries .dest-btn::after {
    content: ">";
    color: #64748b;
    font-weight: 900;
}

.top-countries .dest-btn:hover {
    color: var(--primary-blue);
    border-color: var(--primary-blue);
    box-shadow: 0 8px 18px rgba(0, 91, 170, .12);
    transform: translateY(-1px);
}

.destination-label {
    display: inline-flex;
    align-items: center;
    min-width: 0;
    gap: .45rem;
}

.destination-flag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    flex: 0 0 22px;
    font-size: .95rem;
    line-height: 1;
}

.office-locations {
    background: linear-gradient(120deg, #006fae 0%, #0098a8 100%);
    padding: 2rem 0;
}

.office-grid {
    display: grid;
    grid-template-columns: .9fr repeat(2, minmax(240px, 1fr));
    gap: 1rem;
    align-items: stretch;
}

.office-card {
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 10px;
    background: rgba(255, 255, 255, .1);
    color: #fff;
    padding: 1.2rem;
    box-shadow: 0 16px 36px rgba(0, 38, 79, .12);
}

.office-card h3 {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: .7rem;
    color: #fff;
    font-size: 1.05rem;
}

.office-card p {
    color: rgba(255, 255, 255, .86);
    line-height: 1.7;
}

.office-phone {
    display: inline-flex;
    margin-top: .75rem;
    color: #fff;
    text-decoration: none;
    font-weight: 900;
}

.office-cta {
    display: grid;
    align-content: center;
}

.office-cta h3 {
    display: block;
    margin-bottom: .7rem;
}

.office-call {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: .45rem;
    margin-top: 1rem;
    padding: .75rem 1rem;
    border-radius: 8px;
    background: var(--orange);
    color: #fff;
    text-decoration: none;
    font-weight: 900;
}

.office-pin {
    display: inline-grid;
    place-items: center;
    width: 22px;
    height: 22px;
    border-radius: 6px;
    background: rgba(255, 255, 255, .18);
    font-size: .85rem;
}

.college-list {
    display: grid;
    gap: .45rem;
}

.college-item {
    color: var(--muted);
}

footer {
    background: #fff;
    color: var(--text);
    border-top: 1px solid var(--line);
    padding: 2.5rem 0 1rem;
}

.footer-container {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 3vw, 2rem);
}

.country-flag-image {
    display: inline-block;
    width: 24px;
    height: 16px;
    flex: 0 0 24px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 0 0 1px rgba(15, 23, 42, .12);
    vertical-align: middle;
}

.footer-content {
    display: grid;
    grid-template-columns: minmax(270px, 1.2fr) minmax(115px, .48fr) minmax(115px, .52fr) minmax(215px, .85fr) minmax(175px, .58fr);
    align-items: start;
    gap: clamp(1.1rem, 2vw, 2.1rem);
    justify-content: space-between;
}

.footer-about {
    grid-template-columns: minmax(150px, 180px) minmax(130px, 1fr);
    align-items: start;
    column-gap: 1.2rem;
}

.footer-about-links {
    display: grid;
    gap: .55rem;
}

.footer-section {
    display: grid;
    gap: .55rem;
    min-width: 0;
}

.footer-logo {
    width: 180px;
    max-width: 100%;
    height: auto;
    margin-bottom: 0;
}

.footer-logo-link {
    display: inline-flex;
    width: fit-content;
    max-width: 100%;
}

.footer-section h4 {
    color: var(--dark-blue);
    font-size: .95rem;
    margin-bottom: .25rem;
}

.footer-section a {
    color: var(--text);
    text-decoration: none;
    line-height: 1.45;
}

.footer-section a:hover {
    color: var(--primary-blue);
}

.social-links {
    display: flex;
    flex-wrap: nowrap;
    gap: .35rem;
    margin-top: .25rem;
}

.footer-social {
    min-width: 0;
}

.footer-social h4 {
    white-space: normal;
}

.social-link {
    display: inline-grid;
    place-items: center;
    width: 26px;
    height: 26px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: #f7fbff;
    color: var(--primary-blue);
    font-size: .68rem;
    font-weight: 900;
    text-transform: uppercase;
    overflow: hidden;
    transition: background .2s ease, transform .2s ease;
}

.social-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 50%;
}

.social-link:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid var(--line);
    /* margin-top: 2rem; */
    padding-top: 1rem;
    text-align: center;
    color: var(--muted);
}

.inquiry-box {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
    background: var(--red);
    color: #fff;
    padding: 1.5rem .75rem;
    writing-mode: vertical-rl;
    font-weight: 900;
    border-radius: 4px 0 0 4px;
    cursor: pointer;
}

.tawk-fallback-btn {
    position: fixed;
    right: 2rem;
    bottom: 2rem;
    z-index: 1000003;
    width: 58px;
    height: 58px;
    border: 0;
    border-radius: 50%;
    background: #061b5f;
    color: #fff;
    display: grid;
    place-items: center;
    cursor: pointer;
    font-size: 1.45rem;
    box-shadow: 0 14px 32px rgba(0, 20, 60, .28);
}

.tawk-fallback-btn.hidden {
    display: none;
}

.tawk-fallback-btn.is-loading {
    cursor: wait;
    animation: chatbotPulse 1s ease-in-out infinite alternate;
}

@keyframes chatbotPulse {
    from { box-shadow: 0 10px 30px rgba(8, 31, 103, .25); }
    to { box-shadow: 0 10px 40px rgba(0, 174, 239, .65); transform: scale(1.06); }
}

.flash-message {
    position: fixed;
    left: 50%;
    top: 5.5rem;
    transform: translateX(-50%);
    z-index: 2200;
    width: min(92vw, 620px);
    padding: .9rem;
    border-radius: 6px;
    font-weight: 800;
    text-align: center;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .18);
}

.flash-success {
    background: #e8fff2;
    color: #096b35;
    border: 1px solid #9be2b9;
}

.flash-error {
    background: #ffecec;
    color: #a30000;
    border: 1px solid #ffb8b8;
}

.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 2100;
    background: rgba(0, 28, 58, .58);
    display: none;
    align-items: center;
    justify-content: center;
    padding: .75rem;
    overflow: hidden;
}

.modal-overlay.active {
    display: flex;
}

.enquiry-modal {
    width: min(100%, 540px);
    max-height: calc(100vh - 1.5rem);
    max-height: calc(100dvh - 1.5rem);
    overflow-y: auto;
    background: #fff;
    border-radius: 8px;
    padding: .9rem 1.15rem 1rem;
    box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
}

.modal-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: .8rem;
    margin-bottom: .55rem;
}

.modal-head h2 {
    color: var(--primary-blue);
    font-size: 1.45rem;
    line-height: 1.15;
}

.modal-close {
    border: 0;
    background: #eef6ff;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1.15rem;
}

.enquiry-form {
    display: grid;
    gap: .52rem;
}

.enquiry-form label {
    display: grid;
    gap: .18rem;
    font-weight: 800;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: .55rem .65rem;
    font: inherit;
}

.enquiry-form textarea {
    min-height: 68px;
    resize: vertical;
}

.enquiry-submit {
    position: sticky;
    bottom: 0;
    min-height: 42px;
}

@media (max-width: 1180px) {

    html,
    body {
        max-width: 100%;
        overflow-x: hidden;
    }

    .top-header {
        align-items: flex-start;
        flex-direction: column;
        flex-wrap: wrap;
    }

    .top-header-left,
    .top-header-right {
        flex-wrap: wrap;
    }

    .top-header-left {
        overflow: visible;
    }

    .top-header-right {
        margin-left: 0;
    }

    .header-container {
        align-items: center;
        flex-direction: row;
        gap: .75rem;
        position: relative;
    }

    .logo {
        margin-right: auto;
    }

    .explore-menu {
        order: 2;
        min-width: 0;
        position: static;
    }

    .header-search {
        order: 3;
        flex: 1 1 260px;
        min-width: 220px;
        margin-left: 0;
    }

    .header-search-results {
        max-height: 280px;
    }

    .explore-toggle {
        min-height: 36px;
        padding: .5rem .8rem;
    }

    .explore-panel {
        left: max(1rem, env(safe-area-inset-left));
        right: max(1rem, env(safe-area-inset-right));
        width: auto;
        max-width: none;
        grid-template-columns: 1fr;
        max-height: calc(100vh - 9rem);
        overflow-x: hidden;
        overflow-y: auto;
    }

    .explore-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-content {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .footer-about {
        grid-template-columns: 1fr;
    }

    .site-nav {
        margin-left: 0;
    }

    .menu-toggle {
        display: inline-flex;
        order: 4;
    }

    .site-nav {
        position: absolute;
        left: 1rem;
        right: 1rem;
        top: calc(100% + .35rem);
        z-index: 1003;
        display: none;
        max-height: calc(100vh - 8rem);
        overflow-y: auto;
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 8px;
        box-shadow: 0 18px 42px rgba(0, 91, 170, .18);
        padding: .85rem;
    }

    .site-nav.open {
        display: block;
    }

    nav ul {
        justify-content: flex-start;
    }

    .site-nav ul {
        align-items: stretch;
        flex-direction: column;
        width: 100%;
    }

    .site-nav li {
        width: 100%;
    }

    .site-nav>ul>li>a {
        justify-content: space-between;
        width: 100%;
    }

    .site-nav>ul>li>a .menu-caret {
        margin-left: auto;
    }

    .site-nav .header-submenu {
        position: static;
        width: 100%;
        transform: none;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin: .2rem 0 .6rem;
        display: none;
        box-shadow: none;
    }

    .site-nav li:not(.is-submenu-open)>.header-submenu {
        display: none;
    }

    .site-nav li.is-submenu-open>.header-submenu {
        display: grid;
    }

    .site-nav li.is-submenu-open>a .menu-caret {
        margin-top: .18rem;
        transform: rotate(-135deg);
    }

    .hero-banners {
        min-height: 360px;
    }

    .about-hero {
        min-height: 300px;
        padding: 4rem 0;
    }

    .process-timeline {
        min-width: 980px;
    }

    .top-countries .destination-buttons {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .services-opportunities .opportunities-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .latest-news-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-principle-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-testimonial-grid {
        gap: 1rem;
    }
}

@media (max-width: 840px) {
    .academic-carousel {
        gap: 1rem;
    }

    .header-container,
    .hero-content,
    .trusted-grid {
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    .header-search {
        width: 100%;
        flex-basis: auto;
        order: 3;
    }

    .header-search-results {
        position: static;
        margin-top: .35rem;
    }

    .office-grid {
        grid-template-columns: 1fr;
    }

    .about-intro-grid,
    .about-mission-grid {
        grid-template-columns: 1fr;
    }

    .about-image-stack {
        min-height: auto;
        display: grid;
        gap: .85rem;
    }

    .about-image-main,
    .about-mission-media img {
        height: auto;
        max-height: 420px;
    }

    .about-image-small {
        position: static;
        width: 100% !important;
        height: auto;
        border: 0;
    }

    .about-year-badge {
        left: 1rem;
        top: 1rem;
        bottom: auto;
    }

    .about-feature-strip {
        grid-template-columns: 1fr;
    }

    .achievements-inner {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .achievement-copy {
        max-width: none;
        padding-left: 0;
    }

    .achievement-card {
        flex-basis: min(82vw, 340px);
    }

    .achievement-media {
        height: 190px;
    }

    .hero-content {
        display: grid;
    }

    .top-header,
    .header-container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .top-header {
        align-items: flex-start;
        flex-direction: column;
        flex-wrap: wrap;
    }

    .top-header-left,
    .top-header-right {
        flex-wrap: wrap;
    }

    .top-header-left {
        overflow: visible;
    }

    .top-header-right {
        margin-left: 0;
    }

    .header-container {
        align-items: center;
        flex-direction: row;
    }

    .site-nav .header-submenu {
        grid-template-columns: 1fr;
    }

    .explore-main {
        grid-template-columns: 1fr;
    }

    .hero-banners {
        aspect-ratio: 1365 / 498;
        min-height: 0;
    }

    .hero-banners .bg-img {
        background-position: center top;
        background-size: contain;
        background-repeat: no-repeat;
    }

    .process-timeline {
        min-width: 960px;
    }

    .top-countries .destination-buttons {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-content {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-about {
        grid-template-columns: 1fr;
    }

    .services-opportunities .opportunities-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .container {
        padding: 0 1rem;
    }

    .footer-container {
        padding: 0 1rem;
    }

    .inquiry-box {
        writing-mode: horizontal-tb;
        top: auto;
        bottom: 0;
        left: 0;
        right: auto;
        transform: none;
        border-radius: 0 4px 0 0;
        padding: .75rem 1rem;
    }
}

@media (max-width: 560px) {
    section {
        padding: 2.5rem 0;
    }

    .about-hero {
        min-height: 240px;
        padding: 3rem 0;
    }

    .top-header {
        font-size: .78rem;
        gap: .65rem;
        padding: .55rem .85rem;
    }

    .top-header-left,
    .top-header-right {
        gap: .5rem;
    }

    .top-header-left {
        width: 100%;
        display: grid;
        grid-template-columns: max-content minmax(0, 1fr);
        gap: .42rem .5rem;
        overflow: visible;
    }

    .top-header-left::-webkit-scrollbar {
        display: none;
    }

    .top-header-left>span {
        min-width: 0;
        font-size: .68rem;
        line-height: 1.2;
    }

    .top-header-left>span:empty {
        display: none;
    }

    .top-announcement {
        grid-column: 1 / -1;
        justify-content: center;
        min-width: 0;
        width: 100%;
        text-align: center;
    }

    .top-announcement-marquee span {
        padding-left: 100%;
        animation: announcement-marquee 16s linear infinite;
    }

    .top-btn,
    .auth-link {
        padding: .28rem .58rem;
    }

    .header-container {
        padding-top: .45rem;
        padding-bottom: .45rem;
        display: grid;
        grid-template-columns: 84px auto minmax(86px, 1fr) 34px;
        gap: .4rem;
        align-items: center;
    }

    .logo {
        min-width: 0;
        margin-right: 0;
    }

    .site-logo {
        width: 84px;
        height: 34px;
    }

    .explore-menu {
        min-width: 0;
        position: static;
    }

    .explore-toggle {
        gap: .32rem;
        min-height: 34px;
        padding: .42rem .58rem;
        font-size: .72rem;
    }

    .explore-toggle-icon {
        font-size: .74rem;
    }

    .header-search {
        width: auto;
        min-width: 0;
        flex-basis: auto;
    }

    .header-search-input {
        height: 34px;
        padding-left: .55rem;
        padding-right: 1.9rem;
        font-size: .76rem;
    }

    .header-search-btn {
        width: 28px;
        height: 30px;
    }

    .menu-toggle {
        width: 34px;
        height: 34px;
        font-size: 1.28rem;
    }

    .site-nav {
        left: .85rem;
        right: .85rem;
        top: calc(100% + .3rem);
    }

    .explore-panel {
        left: max(.85rem, env(safe-area-inset-left));
        right: max(.85rem, env(safe-area-inset-right));
        top: 100%;
        width: calc(100vw - max(.85rem, env(safe-area-inset-left)) - max(.85rem, env(safe-area-inset-right)));
        max-width: calc(100vw - max(.85rem, env(safe-area-inset-left)) - max(.85rem, env(safe-area-inset-right)));
        grid-template-columns: 1fr;
        max-height: calc(100vh - var(--topbar-height, 0px) - var(--header-height, 0px) - 1rem);
        overflow-x: hidden;
        overflow-y: auto;
        transform: none;
    }

    .explore-sidebar,
    .explore-main {
        min-width: 0;
    }

    .explore-main {
        padding: .75rem;
    }

    nav a {
        padding: .48rem .55rem;
        font-size: .8rem;
    }

    .header-submenu {
        padding: .65rem;
        gap: .45rem;
    }

    .hero-banners {
        aspect-ratio: 1365 / 498;
        min-height: 0;
    }

    .hero-content-section {
        padding: 2rem 0;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .university-partners {
        padding-top: .9rem;
    }

    .university-partners .section-title {
        margin-bottom: 1rem;
    }

    .university-partners .section-title h2 {
        font-size: 1.08rem;
        line-height: 1.45;
    }

    .university-partners .country-tabs {
        justify-content: flex-start;
        flex-wrap: nowrap;
        gap: .5rem;
        margin-bottom: 1rem;
        overflow-x: auto;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .university-partners .country-tabs::-webkit-scrollbar {
        display: none;
    }

    .university-partners .country-tab {
        flex: 0 0 auto;
        padding: .5rem .7rem;
        font-size: .78rem;
    }

    .university-carousel {
        display: flex;
        grid-template-columns: none;
        gap: .8rem;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .university-carousel::-webkit-scrollbar {
        display: none;
    }

    .university-card {
        flex: 0 0 100%;
        display: grid;
        grid-template-columns: 96px minmax(0, 1fr);
        align-items: stretch;
        scroll-snap-align: start;
    }

    .university-image {
        min-height: 100%;
        height: auto;
        font-size: 1.9rem;
    }

    .university-image img {
        height: 100%;
        min-height: 138px;
    }

    .rank-badge {
        top: .45rem;
        right: .4rem;
        font-size: .66rem;
        padding: .18rem .42rem;
    }

    .university-info {
        min-width: 0;
        padding: .75rem .8rem;
    }

    .university-name {
        margin-bottom: .3rem;
        font-size: .84rem;
        line-height: 1.35;
    }

    .university-location,
    .university-details {
        font-size: .75rem;
        line-height: 1.5;
    }

    .university-buttons {
        gap: .4rem;
        margin-top: .7rem;
    }

    .university-buttons .btn-apply,
    .university-buttons .btn-details {
        min-height: 36px;
        padding: .48rem .35rem;
        font-size: .72rem;
    }

    .academic-departments {
        padding: 1.8rem 0;
    }

    .academic-kicker {
        margin-bottom: 1rem;
        font-size: .8rem;
    }

    .academic-departments .section-title {
        margin-bottom: 1rem;
    }

    .academic-departments .section-title h2 {
        font-size: 1.28rem;
        line-height: 1.35;
    }

    .academic-tabs-wrap {
        gap: .45rem;
        margin-bottom: 1rem;
    }

    .academic-nav {
        width: 36px;
        min-height: 36px;
        font-size: 1.35rem;
    }

    .academic-tab {
        min-width: 88px;
        min-height: 36px;
        padding: .38rem .68rem;
        font-size: .78rem;
    }

    .academic-carousel {
        display: flex;
        grid-template-columns: none;
        gap: .9rem;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .academic-carousel::-webkit-scrollbar {
        display: none;
    }

    .academic-card {
        flex: 0 0 100%;
        height: 365px;
        scroll-snap-align: start;
    }

    .academic-card-media {
        min-height: 118px;
        padding: .85rem .85rem 0;
    }

    .academic-card-media img {
        height: 104px;
    }

    .academic-card-media:empty::before {
        height: 104px;
    }

    .academic-card-body {
        grid-template-rows: auto 44px auto;
        padding: .75rem .9rem .55rem;
    }

    .academic-card h3 {
        min-height: 40px;
        font-size: .92rem;
        margin-bottom: 0;
    }

    .academic-card-action {
        padding: .65rem .9rem .75rem;
    }

    .testimonials {
        padding-top: 1.8rem;
    }

    .testimonials .section-title {
        margin-bottom: 1rem;
    }

    .testimonials .section-title h2 {
        font-size: 1.08rem;
    }

    .testimonials .section-title p {
        font-size: .78rem;
    }

    .testimonial-carousel {
        display: flex;
        grid-template-columns: none;
        gap: .9rem;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .testimonial-carousel::-webkit-scrollbar {
        display: none;
    }

    .testimonial-card {
        flex: 0 0 100%;
        scroll-snap-align: start;
        min-height: 246px;
        padding: .65rem .75rem .55rem;
    }

    .testimonial-photo,
    .testimonial-logo {
        width: 92px;
        height: 92px;
        margin-top: .15rem;
        margin-bottom: .45rem;
    }

    .testimonial-university {
        margin-left: .3rem;
        margin-right: .3rem;
    }

    .testimonial-text {
        min-height: 44px;
    }

    .top-countries .destination-buttons {
        grid-template-columns: 1fr;
    }

    .study-abroad .countries-grid {
        display: flex;
        grid-template-columns: none;
        gap: .9rem;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .study-abroad .countries-grid::-webkit-scrollbar {
        display: none;
    }

    .study-abroad .country-card {
        flex: 0 0 min(86vw, 360px);
        scroll-snap-align: start;
    }

    .destinations-box {
        padding: 1rem .85rem;
    }

    .services-opportunities .opportunities-grid {
        grid-template-columns: 1fr;
    }

    .latest-news-grid {
        display: flex;
        grid-template-columns: none;
        gap: .9rem;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .latest-news-grid::-webkit-scrollbar {
        display: none;
    }

    .latest-news-card {
        flex: 0 0 100%;
        scroll-snap-align: start;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .about-card-grid {
        grid-template-columns: 1fr;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .hero-buttons {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-buttons button {
        width: 100%;
    }

    .process-timeline {
        min-width: 860px;
    }

    .tawk-fallback-btn {
        right: 1rem;
        bottom: 1rem;
        width: 52px;
        height: 52px;
    }

}

@media (max-width: 900px) {
    .landing-blog-heading {
        align-items: stretch;
        flex-direction: column;
    }

    .landing-blog-view-all {
        width: max-content;
    }

    .landing-blog-track {
        grid-auto-columns: minmax(280px, 82vw);
    }

    .blog-page-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .landing-blog-section {
        padding: 2.3rem 0;
    }

    .landing-blog-track {
        grid-auto-columns: 100%;
        gap: .9rem;
    }

    .landing-blog-nav {
        width: 36px;
        height: 36px;
    }

    .landing-blog-prev {
        left: -8px;
    }

    .landing-blog-next {
        right: -8px;
    }

    .landing-blog-footer {
        align-items: stretch;
        flex-direction: column;
    }

    .landing-blog-read {
        width: 100%;
    }

    .blog-detail-content {
        padding: 1rem;
    }
}
