 *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
    --navy: #0a1f5c; --blue: #1a6fc4; --gold: #e8a020;
    --red: #c0392b; --light: #f4f6fb; --text: #333; --gray: #888;
    --border: #dde4f0;
}
body { font-family: 'Nunito Sans', sans-serif; color: var(--text); background: #fff; }
html {scroll-behavior: smooth;}

/* ─── TOP BAR ─── */
.topbar { background: var(--navy); color: #cdd7f0; font-size: 12px; padding: 6px 0; }
.topbar-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; justify-content: space-between; align-items: center; }
.topbar a { color: #cdd7f0; text-decoration: none; margin-left: 16px; }
.topbar .contact-info { display: flex; align-items: center; gap: 20px; }
.topbar .contact-info span { display: flex; align-items: center; gap: 6px; }
.topbar .social { display: flex; align-items: center; gap: 12px; }
.topbar .social a { font-size: 14px; }

/* ─── NAV ─── */
nav { background: #fff; box-shadow: 0 2px 12px rgba(0,0,0,0.10); position: sticky; top: 0; z-index: 200; }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; justify-content: space-between; align-items: center; height: 72px; }
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-icon { width: 52px; height: 52px; background: var(--navy); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.nav-links { display: flex; list-style: none; gap: 4px; align-items: center; }
.nav-links li a { display: block; padding: 8px 12px; font-family: 'Rajdhani', sans-serif; font-weight: 900; font-size: 13.5px; letter-spacing: 1px; text-transform: uppercase; color: var(--navy); text-decoration: none; border-radius: 8px; transition: all 0.2s; }
.nav-links li a:hover { background: var(--navy); color: #fff; }
.nav-links li.contact-btn a { background: var(--gold); color: #fff; border-radius: 20px; padding: 8px 18px; }
.nav-links li.contact-btn a:hover { background: var(--navy); }
section {scroll-margin-top: 74px;}

/* ─── HERO ─── */
.hero { position: relative; height: 540px; display: flex; align-items: flex-end; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; background-repeat: no-repeat; opacity: 1; transition: opacity 0.7s ease-in-out; z-index: 0; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(10,31,92,0.65) 0%, rgba(10,31,92,0.25) 100%); z-index: 1;}
.hero-content { position: relative; z-index: 2; padding: 0 80px 70px; }
.hero-content .tag { font-family: 'Rajdhani', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.hero-content h1 { font-family: 'Rajdhani', sans-serif; font-size: clamp(42px, 7vw, 72px); font-weight: 700; color: #fff; line-height: 1; text-transform: uppercase; letter-spacing: 2px; }
.hero-content h1 span { color: var(--gold); }
.hero-content p { font-size: 15px; color: rgba(255,255,255,0.85); margin-top: 8px; font-style: italic; }
.hero-dots { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; gap: 8px; }
.hero-dots span { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.4); cursor: pointer; transition: background 0.2s; }
.hero-dots span.active { background: var(--gold); }

/* ─── WELCOME ─── */
.welcome { max-width: 1200px; margin: 0 auto; padding: 64px 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.welcome-left h2 { font-family: 'Rajdhani', sans-serif; font-size: 22px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--navy); margin-bottom: 4px; }
.welcome-left h3 { font-family: 'Rajdhani', sans-serif; font-size: 28px; font-weight: 700; color: var(--gold); margin-bottom: 24px; }
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-btn { width: 100%; background: none; border: none; padding: 14px 0; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-family: 'Nunito Sans', sans-serif; font-size: 15px; font-weight: 600; color: var(--navy); text-align: left; }
.accordion-btn .icon { width: 22px; height: 22px; border-radius: 50%; background: var(--navy); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 12px; flex-shrink: 0; transition: background 0.2s; }
.accordion-btn:hover .icon { background: var(--gold); }
.accordion-body { font-size: 14px; color: black; line-height: 1.7; max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s; }
.accordion-body.open { max-height: 200px; padding-bottom: 14px; }
.welcome-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.welcome-photos img { width: 100%; height: 190px; object-fit: cover; border-radius: 8px; }

/* ─── DESTINATIONS ─── */
.destinations { background: var(--light); padding: 64px 0; }
.section-header { text-align: center; margin-bottom: 40px; }
.section-header h2 { font-family: 'Rajdhani', sans-serif; font-size: 32px; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: 2px; }
.section-header p { font-size: 14px; color: var(--gray); margin-top: 6px; }
.dest-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; }
.dest-card { position: relative; border-radius: 10px; overflow: hidden; height: 240px; cursor: pointer; width: 380px;}
.dest-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.dest-card:hover img { transform: scale(1.06); }
.dest-card .overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(10,31,92,0.85)); padding: 20px; display: flex; align-items: flex-end; }
.dest-card .overlay span { font-family: 'Rajdhani', sans-serif; font-size: 22px; font-weight: 700; color: #fff; letter-spacing: 3px; text-transform: uppercase; }

/* ─── SERVICES ─── */
.services { padding: 64px 0; background: #fff; }
.services-grid { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.service-card { border-radius: 10px; overflow: visible; box-shadow: 0 4px 20px rgba(0,0,0,0.08); transition: transform 0.3s, box-shadow 0.3s; background: #fff; }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 12px 30px rgba(0,0,0,0.14); }
.service-card .photo { height: 160px; overflow: visible; position: relative; border-radius: 10px 10px 0 0; }
.service-card .photo img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 10px 10px 0 0; }
.service-card .photo .svc-icon { position: absolute; bottom: -22px; left: 50%; transform: translateX(-50%); width: 44px; height: 44px; background: var(--blue); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 18px; border: 3px solid #fff; box-shadow: 0 2px 8px rgba(0,0,0,0.18); z-index: 2; }
.service-card .body { padding: 36px 16px 24px; text-align: center; }
.service-card .body h3 { font-family: 'Rajdhani', sans-serif; font-size: 16px; font-weight: 700; color: var(--blue); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.5px; }
.service-card .body p { font-size: 12px; color: var(--gray); line-height: 1.6; margin-bottom: 12px; }
.btn-outline { display: inline-block; border: 2px solid var(--blue); color: var(--blue); padding: 6px 20px; border-radius: 20px; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; text-decoration: none; transition: all 0.2s; cursor: pointer; background: none; }
.btn-outline:hover { background: var(--blue); color: #fff; }

/* ══════════════════════════════════════════
    INSTITUTION SEARCH
══════════════════════════════════════════ */
.inst-search-bar {
    max-width: 900px; margin: 0 auto 0; padding: 28px 24px 0 100px;
    display: flex; flex-direction: column; gap: 0; align-items: flex-start; width:100%;

}
.inst-search-wrap {
    position: relative; display: flex; align-items: center; width:100%;}

.inst-search-wrap i.search-icon {
    position: absolute; left: 16px; color: var(--gray); font-size: 16px; pointer-events: none; z-index: 2;
}
.inst-search-input {
    width: 100%; padding: 13px 44px 13px 44px;
    border: 2px solid var(--border); border-radius: 10px;
    font-family: 'Nunito Sans', sans-serif; font-size: 14px;
    color: var(--text); background: #fff; outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.inst-search-input:focus { border-color: var(--blue); }
.inst-search-input::placeholder { color: var(--gray); }
.inst-search-clear {
    position: absolute; right: 14px; background: none; border: none;
    color: var(--gray); cursor: pointer; font-size: 14px; padding: 4px;
    display: none; align-items: center; justify-content: center;
    border-radius: 50%; width: 24px; height: 24px; transition: background 0.15s;
}
.inst-search-clear:hover { background: var(--border); color: var(--navy); }
.inst-search-clear.visible { display: flex; }

/* Results dropdown */
.inst-search-results {
    background: #fff; border: 1.5px solid var(--border); border-top: none;
    border-radius: 0 0 10px 10px; max-height: 420px; overflow-y: auto;
    box-shadow: 0 8px 32px rgba(10,31,92,0.12); display: none;
    position: absolute; top: 100%; left: 0; right: 0; z-index: 500;
}
.inst-search-results.open { display: block; }
.inst-search-results::-webkit-scrollbar { width: 5px; }
.inst-search-results::-webkit-scrollbar-thumb { background: var(--border); border-radius: 10px; }

.search-result-item {
    display: flex; align-items: center; gap: 14px;
    padding: 12px 16px; border-bottom: 1px solid var(--border);
    cursor: pointer; text-decoration: none; transition: background 0.15s;
}
.search-result-item:last-child { border-bottom: none; }
.search-result-item:hover { background: var(--light); }

.search-result-thumb {
    width: 52px; height: 52px; border-radius: 8px; object-fit: cover; flex-shrink: 0;
}
.search-result-info { flex: 1; min-width: 0; }
.search-result-name {
    font-family: 'Rajdhani', sans-serif; font-size: 15px; font-weight: 700;
    color: var(--navy); margin-bottom: 2px;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.search-result-name mark {
    background: rgba(232,160,32,0.25); color: var(--navy);
    border-radius: 2px; padding: 0 2px;
}
.search-result-meta { font-size: 11px; color: var(--gray); display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.search-result-region {
    font-size: 10px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase;
    padding: 2px 8px; border-radius: 10px; color: #fff;
}
.search-result-region.Malaysia    { background: var(--blue); }
.search-result-region.China       { background: #d4380d; }
.search-result-region.Middle-East { background: var(--gold); color: #fff; }
.search-result-region.Europe      { background: #027a48; }

.search-result-match { font-size: 11px; color: var(--blue); flex-shrink: 0; font-weight: 600; white-space: nowrap; }
.search-result-arrow {
    width: 28px; height: 28px; border-radius: 50%;
    background: var(--light); border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    color: var(--navy); font-size: 11px; flex-shrink: 0; transition: all 0.18s;
}
.search-result-item:hover .search-result-arrow { background: var(--navy); color: #fff; border-color: var(--navy); }

.search-no-results { padding: 32px 16px; text-align: center; color: var(--gray); font-size: 13px; }
.search-no-results i { font-size: 28px; display: block; margin-bottom: 8px; color: var(--border); }

.search-result-count {
    padding: 7px 16px; font-size: 11px; font-weight: 700; letter-spacing: 0.5px;
    text-transform: uppercase; color: var(--gray); border-bottom: 1px solid var(--border);
    background: var(--light); position: sticky; top: 0; z-index: 2;
}

/* ── Filter icon + dropdown ── */
.inst-search-filters {
    display: flex; gap: 8px; margin-top: 10px; align-items: center; flex-wrap: wrap;
}
.filter-icon-wrap { position: relative; }
.filter-icon-btn {
    display: flex; align-items: center; gap: 7px;
    padding: 6px 14px 6px 10px; border-radius: 20px;
    border: 1.5px solid var(--border); background: #fff;
    color: var(--navy); cursor: pointer; font-family: 'Nunito Sans', sans-serif;
    font-size: 12px; font-weight: 700; transition: all 0.18s; white-space: nowrap;
}
.filter-icon-btn i.fi-icon { font-size: 14px; color: var(--blue); }
.filter-icon-btn i.fi-caret { font-size: 10px; color: var(--gray); transition: transform 0.2s; }
.filter-icon-btn:hover, .filter-icon-btn.active { border-color: var(--blue); background: var(--light); }
.filter-icon-btn.has-active { border-color: var(--navy); background: var(--navy); color: #fff; }
.filter-icon-btn.has-active i { color: #fff !important; }
.filter-icon-btn.open i.fi-caret { transform: rotate(180deg); }

.filter-dropdown {
    display: none; position: absolute; top: calc(100% + 8px); left: 0; z-index: 600;
    background: #fff; border: 1.5px solid var(--border); border-radius: 12px;
    box-shadow: 0 8px 32px rgba(10,31,92,0.14); padding: 8px;
    min-width: 180px; animation: fdropIn 0.18s ease;
}
.filter-dropdown.open { display: block; }
@keyframes fdropIn { from { opacity:0; transform:translateY(-6px); } to { opacity:1; transform:none; } }

.filter-dropdown-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 4px 8px 8px; border-bottom: 1px solid var(--border); margin-bottom: 6px;
}
.filter-dropdown-header span { font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--gray); }
.filter-clear-all { font-size: 10px; font-weight: 700; color: var(--blue); cursor: pointer; border: none; background: none; padding: 0; text-transform: uppercase; letter-spacing: 0.5px; }
.filter-clear-all:hover { text-decoration: underline; }

.filter-option {
    display: flex; align-items: center; gap: 10px; padding: 8px 10px;
    border-radius: 8px; cursor: pointer; font-size: 13px; font-weight: 600;
    color: var(--navy); transition: background 0.15s; user-select: none;
}
.filter-option:hover { background: var(--light); }
.filter-option .fo-check {
    width: 18px; height: 18px; border-radius: 5px; border: 2px solid var(--border);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    transition: all 0.15s; background: #fff;
}
.filter-option.selected .fo-check { background: var(--navy); border-color: var(--navy); }
.filter-option.selected .fo-check::after { content: ''; display: block; width: 5px; height: 9px; border: 2px solid #fff; border-top: none; border-left: none; transform: rotate(45deg) translate(-1px,-1px); }
.filter-option .fo-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.fo-dot-malaysia { background: var(--blue); }
.fo-dot-china { background: #d4380d; }
.fo-dot-me { background: var(--gold); }
.fo-dot-europe { background: #027a48; }

.filter-active-tags { display: flex; gap: 6px; flex-wrap: wrap; align-items: center; }
.filter-tag {
    display: flex; align-items: center; gap: 5px;
    padding: 3px 10px 3px 10px; border-radius: 20px; font-size: 11px; font-weight: 700;
    background: var(--navy); color: #fff; cursor: pointer; transition: background 0.15s;
}
.filter-tag:hover { background: var(--red); }
.filter-tag i { font-size: 8px; }

/* ══════════════════════════════════════════
    INSTITUTIONS SECTION
══════════════════════════════════════════ */
.institutions { background: var(--light); padding: 0; }
.institutions-hero {
    position: relative; height: 270px;
    background: url('/assets/images/institution-head.webp') center 40%/cover no-repeat;
    display: flex; align-items: flex-end;
}
.institutions-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient( to top, rgba(0,0,0,0.55), rgba(0,0,0,0.18),rgba(0,0,0,0.08));}
.institutions-hero h2 {
    position: relative; z-index: 2; padding: 0 48px 10px;
    font-family: 'Rajdhani', sans-serif; font-size: 45px; font-weight: 900;
    color: #fff; text-transform: uppercase; letter-spacing: 3px;
    text-rendering: geometricPrecision;
    text-shadow: 0 1px 0 rgba(255,255,255,0.15), 0 2px 4px rgba(0,0,0,0.12);
    border-radius: 4px;
}

.inst-content { max-width: 1200px; margin: 0 auto; padding: 56px 24px; display: flex; flex-direction: column; gap: 50px; }

/* ── Region row ── */
.inst-region { display: grid; grid-template-columns: 200px 1fr; gap: 20px; align-items: start; }

.inst-region .region-photo { border-radius: 8px; overflow: hidden; flex-shrink: 0; }
.inst-region .region-photo img { width: 100%; height: 160px; object-fit: cover; display: block; }
.inst-region .region-photo .region-label {
    background: var(--navy); color: #fff; font-family: 'Rajdhani', sans-serif;
    font-size: 14px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
    text-align: center; padding: 8px;
}

.inst-region-right { display: flex; flex-direction: column; gap: 10px; min-width: 0; }

/* ── Strip with edge arrows ── */
.inst-strip-outer {
    position: relative; min-width: 0;
    display: flex; align-items: center; gap: 0;
}

/* edge arrow buttons on the strip */
.strip-edge-btn {
    flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%;
    background: #fff; border: 1.5px solid var(--border);
    color: var(--navy); font-size: 13px; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s; z-index: 5; box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    flex: 0 0 36px;
}
.strip-edge-btn:hover { background: var(--navy); color: white;}

/* fade edges on scroll area */
.inst-strip-fade {
    flex: 1; min-width: 0; position: relative; overflow: hidden;
}
.inst-strip-fade::before,
.inst-strip-fade::after {
    content: ''; position: absolute; top: 0; bottom: 16px; width: 28px;
    z-index: 2; pointer-events: none;
}
.inst-strip-fade::before { left: 0; background: linear-gradient(to right, var(--light), transparent); }
.inst-strip-fade::after  { right: 0; background: linear-gradient(to left, var(--light), transparent); }

/* The scrollable row */
.inst-strip {
    display: flex; flex-direction: row; flex-wrap: nowrap; align-items: stretch;
    gap: 14px; overflow-x: auto; overflow-y: visible;
    padding: 8px 4px 16px; scroll-behavior: smooth;
    scrollbar-width: none; -ms-overflow-style: none;
    
}
.inst-strip::-webkit-scrollbar { display: none; }

/* bottom nav arrows (existing, kept) */
.inst-scroll-nav {
    display: flex; justify-content: flex-end;
    align-items: center; gap: 6px;
}
.inst-nav-btn {
    width: 30px; height: 30px; border-radius: 50%;
    background: #fff; border: 1.5px solid var(--border);
    color: var(--navy); font-size: 11px; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s;
}
.inst-nav-btn:hover { background: var(--navy); color: #fff; border-color: var(--navy); }

/* Portrait card */
.uni-scroll-card {
    flex: 0 0 190px; border-radius: 12px; overflow: hidden;
    position: relative; height: 280px;
    text-decoration: none; display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: var(--navy);
}
.uni-scroll-card:hover { transform: translateY(-6px); box-shadow: 0 9px 8px rgba(10,31,92,0.22); }
.uni-scroll-card.hidden { display: none; }

.uni-scroll-card .usc-img { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.45s ease; }
.uni-scroll-card:hover .usc-img { transform: scale(1.07); }
.uni-scroll-card .usc-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(10,31,92,0.93) 0%, rgba(10,31,92,0.45) 55%, rgba(10,31,92,0.06) 100%);
}
.uni-scroll-card .usc-logo {
    position: absolute; top: 10px; left: 10px; z-index: 3;
    width: 38px; height: 38px; border-radius: 8px;
    background: rgba(255,255,255,0.93);
    display: flex; align-items: center; justify-content: center;
    padding: 4px; box-shadow: 0 2px 8px rgba(0,0,0,0.22); overflow: hidden;
}
.uni-scroll-card .usc-logo img { max-width: 100%; max-height: 100%; object-fit: contain; display: block; }
.uni-scroll-card .usc-logo .usc-flag { font-size: 22px; line-height: 1; }
.uni-scroll-card .usc-rank {
    position: absolute; top: 10px; right: 10px; z-index: 3;
    background: var(--gold); color: #fff;
    font-family: 'Rajdhani', sans-serif; font-size: 9.5px; font-weight: 700;
    letter-spacing: 0.3px; padding: 2px 7px; border-radius: 20px;
    white-space: nowrap; max-width: 100px; overflow: hidden; text-overflow: ellipsis;
}
.uni-scroll-card .usc-body { position: absolute; bottom: 0; left: 0; right: 0; z-index: 3; padding: 10px 10px 32px; }
.uni-scroll-card .usc-city { font-size: 9px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 3px; }
.uni-scroll-card .usc-name { font-family: 'Rajdhani', sans-serif; font-size: 14px; font-weight: 700; color: #fff; line-height: 1.2; }
.uni-scroll-card .usc-arrow {
    position: absolute; bottom: 10px; right: 10px; z-index: 3;
    width: 24px; height: 24px; border-radius: 50%;
    background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.28);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 9px; transition: background 0.2s, transform 0.2s;
}
.uni-scroll-card:hover .usc-arrow { background: var(--gold); transform: translateX(3px); }

/* ─── NEWS & EVENTS ─── */
.news-events { padding: 0; }
.news-hero { position: relative; height: 170px; background: url('/assets/images/news-head.webp') center/cover; display: flex; align-items: flex-end; }
.news-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,31,92,0.75), transparent); }
.news-hero h2 { position: relative; z-index: 2; padding: 0 48px 24px; font-family: 'Rajdhani', sans-serif; font-size: 40px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 3px; }
.news-body { max-width: 1200px; margin: 0 auto; padding: 56px 24px; display: grid; grid-template-columns: 1fr 2fr; gap: 48px; }
.corporate-video { background: var(--light); border-radius: 10px; padding: 28px; text-align: center; }
.corp-logo { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 16px; }
.corp-logo-icon { width: 44px; height: 44px; background: var(--navy); border-radius: 6px; display: flex; align-items: center; justify-content: center; }
.corp-video-label { font-family: 'Rajdhani', sans-serif; font-size: 22px; font-weight: 700; color: var(--blue); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 6px; }
.corp-divider { display: flex; gap: 4px; justify-content: center; margin-bottom: 20px; }
.corp-divider span { display: block; height: 3px; background: var(--navy); border-radius: 2px; }
.corp-divider span:first-child { width: 40px; } .corp-divider span:last-child { width: 12px; }
.video-placeholder { border-radius: 8px; overflow: hidden; position: relative; background: #dde4f0; height: 140px; display: flex; align-items: center; justify-content: center; cursor: pointer; }
.video-placeholder img { width: 100%; height: 100%; object-fit: cover; opacity: 0.6; }
.play-btn { position: absolute; width: 48px; height: 48px; background: rgba(255,255,255,0.9); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--blue); font-size: 20px; }
.corp-meta { font-size: 12px; color: var(--gray); margin-top: 10px; }
.news-col h3 { font-family: 'Rajdhani', sans-serif; font-size: 20px; font-weight: 700; color: var(--blue); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px; }
.news-featured { border-radius: 8px; overflow: hidden; position: relative; height: 180px; margin-bottom: 12px; cursor: pointer; }
.news-featured img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.news-featured:hover img { transform: scale(1.04); }
.news-featured .news-overlay { backdrop-filter: blur(1.2px); position: absolute; inset: 0; background:linear-gradient(to top,rgba(10,31,92,0.88) 0%,rgba(10,31,92,0.45) 45%,rgba(10,31,92,0.15) 100%); display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; padding: 24px; text-align: left;}
.news-featured .news-overlay .news-cat { font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-bottom: 6px; }
.news-featured .news-overlay p { font-family: 'Rajdhani', sans-serif; font-size: 18px; font-weight: 700; color: #fff; text-align: left; line-height: 1.3; margin-bottom: 10px; max-width: 75%; }
.news-featured .news-overlay .news-date { font-size: 12px; color: rgba(255,255,255,0.65); margin-bottom: 10px; }
.btn-red { display: inline-block; background: transparent; color: #fff; border: 1px solid #fff; padding: 5px 16px; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; border-radius: 4px; text-decoration: none; transition: all .5s ease;}
.btn-red:hover {color: #001F3F; background-color: #fff;}
.news-thumbs { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.news-thumb-card { border-radius: 6px; overflow: hidden; position: relative; height: 110px; cursor: pointer; }
.news-thumb-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; display: block; }
.news-thumb-card:hover img { transform: scale(1.06); }
.news-thumb-card .t-overlay { backdrop-filter: blur(1.5px); position: absolute; inset: 0; background:linear-gradient(to top,rgba(7,18,45,0.9),rgba(7,18,45,0.35));display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; padding: 14px; }
.news-thumb-card .t-overlay p { font-family: 'Rajdhani', sans-serif; font-size: 12px; font-weight: 700; color: #fff; text-align: left; line-height: 1.2; margin-bottom: 20px;}
.btn-red-sm { transition: all .5s ease; font-size: 12px; font-weight: 700; color: #fff; border: 1px solid #fff; padding: 5px 10px; text-transform: uppercase; background: transparent; cursor: pointer; border-radius: 3px; text-decoration: none; display: inline-block; }
.btn-red-sm:hover{color: #001F3F; background-color: #fff;}
.news-show-more { display: none; margin-top: 10px; }
.news-show-more.has-extra { display: block; }
.news-extra-grid { display: none; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 8px; }
.news-extra-grid.open { display: grid; }
.btn-news-toggle { width: 100%; background: none; border: 1.5px solid var(--border); color: var(--gray); padding: 8px; border-radius: 6px; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; cursor: pointer; transition: border-color 0.2s, color 0.2s; }
.btn-news-toggle:hover {color: var(--blue); }
.no-news { text-align: center; padding: 32px 16px; color: var(--gray); }
.no-news i { font-size: 32px; color: var(--border); margin-bottom: 10px; display: block; }
.events-col h3 { font-family: 'Rajdhani', sans-serif; font-size: 20px; font-weight: 700; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px; }
.events-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.event-card { display: flex; flex-direction: column; height: 100%;border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
.event-card .event-img { height: 80px; overflow: hidden; }
.event-card .event-img img { width: 100%; height: 100%; object-fit: cover; }
.event-card .event-body { padding: 12px; display: flex; flex-direction: column; flex: 1;}
.event-card .event-body h4 { font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 6px; line-height: 1.3; }
.event-card .event-body p { font-size: 12px; color: var(--gray); line-height: 1.5; margin-bottom: 10px; }
.event-meta { display: flex; flex-direction: column; gap: 4px; margin-bottom: 10px; }
.event-meta span { font-size: 10px; color: var(--gray); display: flex; align-items: flex-start; gap: 6px; }
.event-meta span i { color: var(--blue); margin-top: 2px; }
.event-card .btn-primary {margin-top: auto;}
.btn-primary { display: block; text-align: center; background: var(--blue); color: #fff; padding: 8px; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; text-decoration: none; border-radius: 4px; transition: background 0.2s; }
.btn-primary:hover { background: var(--navy); }
.no-events { grid-column: 1/-1; text-align: center; padding: 40px 20px; color: var(--gray); }
.no-events i { font-size: 40px; color: var(--border); margin-bottom: 12px; display: block; }
.no-events p { font-size: 15px; line-height: 1.6; }
.no-events p a{text-decoration: none;}
.no-events p a:hover{text-decoration: underline;}
/* ─── MAILING ─── */
.mailing { background: var(--light); padding: 48px 24px; }
.mailing-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.mailing-left h3 { font-family: 'Rajdhani', sans-serif; font-size: 22px; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.mailing-left p { font-size: 13px; color: var(--gray); line-height: 1.6; }
.mailing-left .freq { display: flex; align-items: center; gap: 16px; margin-top: 12px; font-size: 13px; }
.mailing-left .freq label { display: flex; align-items: center; gap: 6px; cursor: pointer; }
.mailing-right { display: flex; flex-direction: column; gap: 10px; }
.mailing-right input { border: 1px solid #ccd4e8; padding: 10px 14px; border-radius: 4px; font-size: 13px; font-family: 'Nunito Sans', sans-serif; width: 100%; outline: none; }
.mailing-right input:focus { border-color: var(--blue); }
.btn-join { background: var(--navy); color: #fff; border: none; padding: 11px; font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; border-radius: 4px; cursor: pointer; transition: background 0.2s; }
.btn-join:hover { background: var(--blue); }
.mailing-field { display: flex; flex-direction: column; gap: 4px; }
.field-error { font-size: 11px; color: var(--red); min-height: 14px; padding-left: 2px; }
.mailing-right input.input-error { border-color: var(--red); }
.mailing-right input.input-valid { border-color: #27ae60; }


/* ─── PARTNERS ─── */
.partners { padding: 56px 0; background: transparent; }
.partners-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.partners h2 { font-family: 'Rajdhani', sans-serif; font-size: 30px; font-weight: 700; color: var(--blue); text-align: center; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 36px; }
.partners-logos { display: flex; justify-content: center; align-items: center; gap: 32px; flex-wrap: wrap; }
.partner-logo { width: 160px; height: 110px; background: transparent; border: none; flex-direction: column; display: flex; align-items: center; justify-content: space-between; padding: 10px; gap:6px; transition: transform 0.2s ease, opacity 0.2s ease; }
.partner-logo:hover { transform: translateY(-3px) scale(1.10); }
.partner-logo img { max-width: 100%; max-height: 80%; object-fit: contain; }
.partner-subtitle { font-size: 13px; color: #666; margin: 0; text-align: center; line-height: 1.3; }

/* ─── TESTIMONIALS ─── */
.testimonials { background: var(--light); padding: 56px 0; }
.testimonials h2 { font-family: 'Rajdhani', sans-serif; font-size: 30px; font-weight: 700; color: var(--blue); text-align: center; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 40px; }
.testimonials-grid { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card { background: #fff; border-radius: 10px; padding: 24px; box-shadow: 0 2px 12px rgba(0,0,0,0.06); position: relative; display: flex; flex-direction: column; justify-content: space-between; transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease; border: 1px solid transparent; }
.testi-card::before { content: '\201C'; font-size: 60px; color: var(--blue); opacity: 0.12; position: absolute; top: 10px; left: 18px; line-height: 1; font-family: Georgia, serif; }
.testi-card:hover { transform: translateY(-6px); box-shadow: rgba(0,0,0,0.35) 0px 5px 15px; border-color: rgba(0,70,160,0.08); }
.testi-card:hover .testi-author img { transform: scale(1.08); }
.testi-card p { font-size: 13px; color: var(--text); line-height: 1.7; margin-bottom: 20px; position: relative; flex-grow: 1; }
.testi-author { display: flex; align-items: center; gap: 12px; margin-top: 24px; }
.testi-author img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; transition: transform 0.3s ease; }
.testi-author .info strong { display: block; font-size: 13px; font-weight: 700; color: var(--navy); }
.testi-author .info span { font-size: 11px; color: var(--blue); }

/* ─── GALLERY ─── */
.gallery { padding: 56px 0; background: #fff; }
.gallery h2 { font-family: 'Rajdhani', sans-serif; font-size: 22px; font-weight: 700; color: var(--blue); text-align: center; text-transform: uppercase; letter-spacing: 3px; margin-bottom: 24px; }
.gallery-grid { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: repeat(5, 1fr); grid-template-rows: repeat(2, 180px); gap: 20px; }
.gallery-grid .g-item { border-radius: 4px; overflow: hidden; background: #dde4f0; }
.gallery-grid .g-item img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }

/* ─── FOOTER ─── */
footer { background: #f0f3fa; border-top: 1px solid var(--border); padding: 72px 0 0; }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px 56px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 48px; }
.footer-col h4 { font-family: 'Rajdhani', sans-serif; font-size: 20px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--navy); margin-bottom: 12px; }
.footer-col p, .footer-col address { font-size: 13px; color: black; line-height: 1.7; font-style: normal; }
.footer-col a { color: var(--blue); text-decoration: none; }
.footer-col h4:not(:first-child) {margin-top: 28px;}
.footer-bottom { background: var(--navy); color: rgba(255,255,255,0.5); font-size: 12px; padding: 16px 24px; display: flex; justify-content: space-between; align-items: center; }
.social-links { display: flex; gap: 10px; }
.social-links a { width: 32px; height: 32px; background: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 13px; text-decoration: none; transition: background 0.2s; }
.social-links a:hover { background: rgba(0,0,128,0.9); }

/* ─── HAMBURGER ─── */
.hamburger { display: none; background: none; border: none; cursor: pointer; font-size: 22px; color: var(--navy); padding: 4px; line-height: 1; }

/* Mobile nav drawer */
.mobile-nav-overlay { display: none; position: fixed; inset: 0; z-index: 300; background: rgba(10,31,92,0.45); backdrop-filter: blur(2px); }
.mobile-nav-overlay.open { display: block; }
.mobile-nav-drawer { position: fixed; top: 0; right: -100%; width: min(300px,85vw); height: 100%; background: #fff; z-index: 400; display: flex; flex-direction: column; box-shadow: -8px 0 40px rgba(10,31,92,0.18); transition: right 0.32s cubic-bezier(0.4,0,0.2,1); }
.mobile-nav-drawer.open { right: 0; }
.mobile-nav-header { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; border-bottom: 1px solid var(--border); flex-shrink: 0; }
.mobile-nav-close { width: 36px; height: 36px; border-radius: 50%; background: var(--light); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 15px; color: var(--navy); transition: background 0.2s; }
.mobile-nav-close:hover { background: var(--border); }
.mobile-nav-links { list-style: none; padding: 12px 0; flex: 1; overflow-y: auto; }
.mobile-nav-links li a { display: flex; align-items: center; gap: 12px; padding: 14px 24px; font-family: 'Rajdhani', sans-serif; font-size: 15px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--navy); text-decoration: none; border-left: 3px solid transparent; transition: all 0.18s; }
.mobile-nav-links li a:hover { background: var(--light); border-left-color: var(--blue); color: var(--blue); }
.mobile-nav-links li a i { font-size: 20px; color: var(--blue); width: 18px; text-align: center; }
.mobile-nav-links li.contact-btn a { margin: 12px 20px 4px; padding: 12px 20px; background: var(--gold); color: #fff; border-radius: 8px; border-left: none; justify-content: center; }
.mobile-nav-links li.contact-btn a:hover { background: var(--navy); }
.mobile-nav-links li.contact-btn a i { color: #fff; }
.mobile-nav-footer { padding: 16px 24px; border-top: 1px solid var(--border); font-size: 12px; color: var(--gray); }
.mobile-nav-footer a { color: var(--blue); text-decoration: none; margin-left: 4px; }

/* ── SERVICE MODAL ── */
.modal-overlay { display: none; position: fixed; inset: 0; z-index: 1000; background: rgba(10,31,92,0.55); backdrop-filter: blur(4px); align-items: center; justify-content: center; padding: 24px; }
.modal-overlay.open { display: flex; }
.modal-box { background: #fff; border-radius: 16px; max-width: 500px; height: 550px; width: 100%; position: relative; overflow: hidden; box-shadow: 0 24px 64px rgba(10,31,92,0.25); animation: modalIn 0.25s ease; }
@keyframes modalIn {  
    0% { transform: translateY(16px) scale(0.96); opacity: 0; filter: blur(6px);}
    70% {filter: blur(0px);}
    100% {transform: translateY(0) scale(1);opacity: 1;filter: blur(0px); } 
}
.modal-close { position: absolute; top: 16px; right: 16px; width: 34px; height: 34px; border-radius: 50%; background: var(--light); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 16px; color: var(--navy); transition: background 0.2s; z-index: 2; }
.modal-close:hover { background: var(--border); }
.modal-img { height: 180px; overflow: hidden; border-radius: 16px 16px 0 0; }
.modal-img img { width: 100%; height: 100%; object-fit: cover; }
.modal-body { padding: 28px 28px 32px; overflow-y: auto;height: calc(550px - 180px);}
.modal-icon-row { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.modal-icon-circle { width: 48px; height: 48px; background: var(--blue); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 20px; flex-shrink: 0; }
.modal-icon-row h2 { font-family: 'Rajdhani', sans-serif; font-size: 22px; font-weight: 700; color: var(--navy); text-transform: uppercase; }
.modal-body p { font-size: 13.5px; color: var(--gray); line-height: 1.75; margin-bottom: 18px; }
.modal-steps { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; }
.modal-steps li { display: flex; align-items: flex-start; gap: 12px; font-size: 13px; color: var(--text); }
.step-num { width: 24px; height: 24px; border-radius: 50%; background: var(--blue); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.modal-cta { display: inline-block; text-align: center; background: var(--gold); color: #fff; padding: 12px 20px; border-radius: 8px; font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; text-decoration: none; transition: background 0.2s; }
.modal-cta:hover { background: #c07d10; }

/* ── ELIGIBILITY CHECKER ── */
.eligibility-fab { position: fixed; bottom: 100px; right: 28px; z-index: 900; background: var(--navy); color: #fff; border: none; cursor: pointer; width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; box-shadow: 0 6px 20px rgba(10,31,92,0.35); transition: transform 0.2s, background 0.2s; }
.eligibility-fab:hover { transform: scale(1.1); background: var(--blue); }
.eligibility-fab .fab-tooltip { position: absolute; right: 64px; top: 50%; transform: translateY(-50%); background: var(--navy); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: 0.5px; white-space: nowrap; padding: 6px 12px; border-radius: 6px; pointer-events: none; opacity: 0; transition: opacity 0.2s; }
.eligibility-fab:hover .fab-tooltip { opacity: 1; }
.checker-overlay { display: none; position: fixed; inset: 0; z-index: 1000; background: rgba(10,31,92,0.55); backdrop-filter: blur(4px); align-items: center; justify-content: center; padding: 24px; }
.checker-overlay.open { display: flex; }
.checker-box { background: #fff; border-radius: 16px; max-width: 540px; width: 100%; box-shadow: 0 24px 64px rgba(10,31,92,0.25); overflow: hidden; animation: modalIn 0.25s ease; }
.checker-header { background: var(--navy); padding: 22px 28px; display: flex; justify-content: space-between; align-items: center; }
.checker-header h3 { font-family: 'Rajdhani', sans-serif; font-size: 20px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 1px; }
.checker-close { background: rgba(255,255,255,0.15); border: none; color: #fff; width: 32px; height: 32px; border-radius: 50%; cursor: pointer; font-size: 16px; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.checker-close:hover { background: rgba(255,255,255,0.3); }
.checker-progress { height: 4px; background: rgba(255,255,255,0.15); }
.checker-progress-bar { height: 100%; background: var(--gold); transition: width 0.35s ease; }
.checker-content { padding: 28px 28px 0; min-height: 200px; }
.checker-step { display: none; }
.checker-step.active { display: block; }
.checker-step h4 { font-family: 'Rajdhani', sans-serif; font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.checker-step .step-hint { font-size: 12px; color: var(--gray); margin-bottom: 20px; }
.checker-options { display: flex; flex-wrap: wrap; gap: 10px; }
.checker-option { border: 2px solid var(--border); border-radius: 8px; padding: 10px 16px; font-size: 13px; font-weight: 600; color: var(--navy); cursor: pointer; transition: all 0.18s; background: #fff; text-align: left; }
.checker-option:hover { border-color: var(--blue); color: var(--blue); }
.checker-option.selected { border-color: var(--blue); background: var(--blue); color: #fff; }
.checker-footer { padding: 20px 28px 28px; display: flex; justify-content: space-between; align-items: center; margin-top: 8px; }
.checker-back { background: none; border: 1.5px solid var(--border); color: var(--gray); padding: 9px 20px; border-radius: 8px; font-size: 12px; font-weight: 700; cursor: pointer; transition: border-color 0.2s; }
.checker-back:hover { border-color: var(--navy); color: var(--navy); }
.checker-next { background: var(--navy); color: #fff; border: none; padding: 10px 24px; border-radius: 8px; font-size: 12px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; cursor: pointer; transition: background 0.2s; }
.checker-next:hover { background: var(--blue); }
.checker-next:disabled { background: var(--border); color: var(--gray); cursor: not-allowed; }
.checker-results { padding: 0 28px 28px; }
.checker-results h4 { font-family: 'Rajdhani', sans-serif; font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 14px; }
.result-uni { display: flex; align-items: center; gap: 14px; padding: 12px; border: 1px solid var(--border); border-radius: 8px; margin-bottom: 8px; background: var(--light); }
.result-uni-flag { font-size: 22px; }
.result-uni-info strong { display: block; font-size: 13px; color: var(--navy); }
.result-uni-info span { font-size: 11px; color: var(--gray); }
.result-uni-link { margin-left: auto; font-size: 11px; font-weight: 700; color: var(--blue); text-decoration: none; white-space: nowrap; }
.result-uni-link:hover { text-decoration: underline; }
.checker-cta { display: block; text-align: center; margin-top: 16px; background: var(--gold); color: #fff; padding: 13px; border-radius: 8px; font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; text-decoration: none; transition: background 0.2s; }
.checker-cta:hover { background: #c07d10; }

/* ── WHATSAPP ── */
.whatsapp-fab { position: fixed; bottom: 28px; right: 28px; z-index: 900; width: 70px; height: 70px; border-radius: 50%; background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 40px; text-decoration: none; box-shadow: 0 6px 20px rgba(37,211,102,0.45); transition: transform 0.2s, box-shadow 0.2s; animation: whatsappPulse 2.2s infinite;}
.whatsapp-fab:hover { transform: scale(2); box-shadow: 0 8px 28px rgba(37,211,102,0.6); }
.whatsapp-fab .fab-tooltip { position: absolute; right: 73px; top: 50%; transform: translateY(-50%); background: #25D366; color: #fff; font-size: 12px; font-weight: 700; white-space: nowrap; padding: 6px 12px; border-radius: 6px; pointer-events: none; opacity: 0; transition: opacity 0.2s; }
.whatsapp-fab:hover .fab-tooltip { opacity: 1; }
@keyframes whatsappPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37,211,102,0.55);
    }

    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 16px rgba(37,211,102,0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37,211,102,0);
    }
}

/* ══════════════════════════════════════════
    SKELETON LOADING
══════════════════════════════════════════ */
@keyframes sk-shimmer { 0% { background-position: -800px 0; } 100% { background-position: 800px 0; } }
.sk { background: linear-gradient(90deg,#e2e8f4 25%,#eef1f8 50%,#e2e8f4 75%); background-size: 800px 100%; animation: sk-shimmer 1.4s infinite linear; border-radius: 6px; }
#page-skeleton { display: block; }
#page-content  { display: none; }
.sk-hero    { width: 100%; height: 540px; border-radius: 0; }
.sk-wrap    { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.sk-section { padding: 56px 0; }
.sk-section-sm { padding: 40px 0; }
.sk-h       { height: 28px; border-radius: 4px; margin-bottom: 10px; }
.sk-h.sm    { height: 16px; } .sk-h.xs { height: 13px; }
.sk-w20 { width:20%; } .sk-w30 { width:30%; } .sk-w40 { width:40%; }
.sk-w50 { width:50%; } .sk-w60 { width:60%; } .sk-w70 { width:70%; }
.sk-w80 { width:80%; } .sk-w90 { width:90%; } .sk-w100{ width:100%; }
.sk-grid-2 { display:grid; grid-template-columns:1fr 1fr; gap:24px; }
.sk-grid-3 { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.sk-grid-4 { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.sk-grid-10{ display:grid; grid-template-columns:repeat(10,1fr); gap:6px; }
.sk-card { border-radius:10px; overflow:hidden; }
.sk-card-img { height:160px; }
.sk-card-body { padding:32px 16px 20px; display:flex; flex-direction:column; gap:8px; }
.sk-dest-card { height:240px; border-radius:10px; }
.sk-gallery-item { height:90px; border-radius:4px; }
.sk-strip-card { flex:0 0 190px; height:260px; border-radius:12px; flex-shrink:0; }
.sk-photo { height:190px; border-radius:8px; }
.sk-inst-row { display:grid; grid-template-columns:200px 1fr; gap:40px; margin-bottom:48px; }
.sk-region-photo { border-radius:8px; overflow:hidden; }
.sk-region-photo-img { height:160px; }
.sk-region-label { height:38px; border-radius:0; }
.sk-inst-right { display:flex; flex-direction:column; gap:12px; }
.sk-filter-bar { display:flex; gap:6px; }
.sk-filter-btn { height:28px; width:60px; border-radius:20px; }
.sk-strip-row { display:flex; gap:14px; overflow:hidden; padding:4px 0; }
.sk-news-featured { height:180px; border-radius:8px; margin-bottom:10px; }
.sk-news-thumbs { display:grid; grid-template-columns:1fr 1fr; gap:8px; }
.sk-news-thumb { height:90px; border-radius:6px; }
.sk-corp-video { height:260px; border-radius:10px; }
.sk-testi { border-radius:10px; padding:24px; height:140px; }
.sk-footer { background:#f0f3fa; border-top:1px solid var(--border); padding:40px 0 24px; }
.sk-footer-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:32px; }
.sk-footer-col { display:flex; flex-direction:column; gap:8px; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
    .topbar .contact-info span:first-child { display: none; }
    .hamburger { display: block; }
    .nav-links { display: none; }
    .hero { height: 420px; }
    .hero-content { padding: 0 24px 56px; }
    .welcome { grid-template-columns: 1fr; gap: 28px; padding: 40px 24px; }
    .welcome-photos { grid-template-columns: 1fr 1fr; }
    .welcome-photos img { height: 150px; }
    .dest-grid { grid-template-columns: 1fr; gap: 12px; }
    .dest-card { height: 180px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .inst-region { grid-template-columns: 1fr; gap: 16px; }
    .inst-content { gap: 36px; padding: 36px 24px; }
    .news-body { grid-template-columns: 1fr; gap: 32px; }
    .events-grid { grid-template-columns: 1fr 1fr; }
    .institutions-hero h2, .news-hero h2 { padding: 0 24px 20px; font-size: 30px; }
    .mailing-inner { grid-template-columns: 1fr; gap: 24px; }
    .partners-logos { gap: 20px; }
    .partner-logo { width: 100px; height: 64px; }
    .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }
    .gallery-grid { grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(5, 70px); }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 24px; }
    .footer-bottom { flex-direction: column; gap: 6px; text-align: center; padding: 14px 20px; }
    .sk-hero { height: 420px; }
    .sk-grid-4 { grid-template-columns: repeat(2,1fr); }
    .sk-inst-row { grid-template-columns: 1fr; }
    .sk-grid-3 { grid-template-columns: 1fr; }
    .sk-footer-grid { grid-template-columns: 1fr 1fr; }
    .sk-grid-10 { grid-template-columns: repeat(5,1fr); grid-template-rows: repeat(4,70px); }
}
@media (max-width: 768px) {
    .news-body { grid-template-columns: 1fr; gap: 24px; }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(7, 100px); }
    .inst-search-bar { padding: 20px 24px 0; }
}
@media (max-width: 600px) {
    .topbar { display: none; }
    .hero { height: 360px; }
    .hero-content { padding: 0 20px 48px; }
    .hero-content h1 { font-size: 36px; letter-spacing: 1px; }
    .hero-content p { font-size: 13px; }
    .welcome { padding: 32px 16px; }
    .welcome-left h3 { font-size: 26px; }
    .welcome-photos { grid-template-columns: 1fr 1fr; }
    .welcome-photos img { height: 120px; }
    .destinations { padding: 40px 0; }
    .dest-grid { padding: 0 16px; grid-template-columns: 1fr; }
    .dest-card { height: 160px; }
    .services-grid { grid-template-columns: 1fr; padding: 0 16px; }
    .services { padding: 40px 0; }
    .inst-content { padding: 24px 14px; gap: 28px; }
    .inst-search-bar { width: 100%; padding: 16px 0px 0; }
    .inst-search-filters { gap: 6px; }

    /* Edge arrows smaller in mobile */
    .strip-edge-btn { width: 28px; height: 28px; font-size: 11px; flex: 0 0 28px; }
    .uni-scroll-card { flex: 0 0 150px; height: 220px; }
    .inst-nav-btn { width: 26px; height: 26px; font-size: 10px; }
    .news-body { padding: 28px 14px; }
    .news-thumbs { display: flex; overflow-x: auto; gap: 12px; scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch; padding: 2px 2px 6px; scrollbar-width: none; padding-right: 16px; }
    .news-thumbs::-webkit-scrollbar {display: none;}
    .news-thumb-card { flex: 0 0 78%; min-width: 78%; flex-shrink: 0; height: 190px; scroll-snap-align: start;}
    .news-thumb-card .t-overlay { display: flex; flex-direction: column; justify-content: flex-end; gap:6px; padding:14px;}
    .news-thumb-card .t-overlay p { font-size: 22px; margin-bottom: 8px;}
    .btn-red-sm { margin-bottom: 15px;}
    .events-grid { grid-template-columns: 1fr; }
    .mailing { padding: 36px 16px; }
    .mailing-left .freq { flex-direction: column; align-items: flex-start; gap: 8px; }
    .partners { padding: 36px 0; }
    .partners-logos { gap: 14px; }
    .partner-logo { width: 80px; height: 100px; }
    .partner-subtitle { font-size: 10px; }
    .testimonials { padding: 36px 0; }
    .testimonials-grid { padding: 0 16px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(10, 160px); padding: 0 16px; }
    .footer-inner { grid-template-columns: 1fr; padding: 0 16px 24px; }
    .footer-bottom { font-size: 11px; flex-direction: column; gap: 6px; text-align: center; padding: 14px 16px; }
    .whatsapp-fab { bottom: 20px; right: 16px; width: 50px; height: 50px; font-size: 22px; }
    /* filter dropdown: full width on mobile */
    .filter-dropdown { left: 0; right: auto; min-width: 160px; }
    /* news body single column on mobile */
    .sk-hero { height: 360px; }
    .sk-grid-2 { grid-template-columns: 1fr; }
    .sk-grid-4 { grid-template-columns: 1fr; }
    .sk-footer-grid { grid-template-columns: 1fr; }
    .sk-grid-10 { grid-template-columns: repeat(2,1fr); grid-template-rows: repeat(10,70px); }
    /* institutions hero smaller */
    .institutions-hero { height: 180px; }
    .institutions-hero h2 { font-size: 26px; padding: 0 16px 14px; }
}

/* Very small (380px) */
@media (max-width: 380px) {
    .hero-content h1 { font-size: 30px; }
    .inst-scroll-nav { display: none; }
    .uni-scroll-card { flex: 0 0 135px; height: 200px; }
    .strip-edge-btn { display: none; }
}