
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --blue: #1A56DB; --blue-dk: #1140A8; --blue-lt: #EBF0FD;
  --teal: #0891B2; --teal-lt: #E0F4F9;
  --orange: #F97316; --orange-lt: #FEF0E6;
  --green: #16A34A; --green-lt: #DCFCE7;
  --purple: #7C3AED; --purple-lt: #EDE9FE;
  --ink: #0F172A; --ink-mid: #334155; --ink-lt: #64748B; --ink-muted: #94A3B8;
  --surface: #F8FAFC; --white: #FFFFFF;
  --border: #E2E8F0; --border-mid: #CBD5E1;
  --r: 8px; --rlg: 14px; --rxl: 20px;
  --sh: 0 1px 4px rgba(15,23,42,0.07),0 1px 2px rgba(15,23,42,0.05);
  --shmd: 0 4px 16px rgba(15,23,42,0.09),0 2px 6px rgba(15,23,42,0.05);
  --shlg: 0 10px 40px rgba(15,23,42,0.12),0 4px 12px rgba(15,23,42,0.07);
}
body { font-family:'Plus Jakarta Sans',sans-serif; background:var(--white); color:var(--ink); line-height:1.6; overflow-x:hidden; -webkit-font-smoothing:antialiased; }
a { text-decoration:none; }
button { font-family:'Plus Jakarta Sans',sans-serif; }

/* ── VIEW TOGGLE ── */
.vtbar { background:#1E293B; padding:9px 2rem; display:flex; align-items:center; gap:12px; position:sticky; top:0; z-index:300; border-bottom:1px solid rgba(255,255,255,0.05); }
.vtbar span { font-size:11px; color:rgba(255,255,255,0.4); letter-spacing:.06em; text-transform:uppercase; }
.vtb { padding:6px 14px; border-radius:6px; border:1px solid rgba(255,255,255,0.15); background:transparent; color:rgba(255,255,255,0.55); font-size:12px; font-weight:600; cursor:pointer; transition:all .2s; white-space:nowrap; }
.vtb.active,.vtb:hover { background:var(--blue); color:#fff; border-color:var(--blue); }

/* ── NAV ── */
nav { background:var(--white); border-bottom:1px solid var(--border); display:flex; align-items:center; justify-content:space-between; padding:0 2rem; height:62px; position:sticky; top:0px; z-index:200; box-shadow:var(--sh); }
.logo { display:flex; align-items:center; gap:9px; }
.logo-mark { width:32px; height:32px; border-radius:8px; background:linear-gradient(135deg,var(--blue),var(--teal)); display:flex; align-items:center; justify-content:center; font-size:13px; font-weight:800; color:#fff; }
.logo-text { font-size:17px; font-weight:800; color:var(--ink); letter-spacing:-.3px; }
.logo-text span { color:var(--blue); }
.logo-badge { font-size:10px; font-weight:700; color:var(--orange); background:var(--orange-lt); padding:2px 7px; border-radius:4px; margin-left:3px; }
.nav-links { display:flex; align-items:center; gap:1.75rem; list-style:none; }
.nav-links a { font-size:13px; font-weight:600; color:var(--ink-mid); transition:color .2s; }
.nav-links a:hover,.nav-links a.active { color:var(--blue); }
.nav-actions { display:flex; gap:8px; }
.btn-ghost { padding:7px 16px; border-radius:6px; border:1.5px solid var(--border-mid); background:var(--white); font-size:13px; font-weight:600; color:var(--ink-mid); cursor:pointer; transition:all .2s; }
.btn-ghost:hover { border-color:var(--blue); color:var(--blue); }
.btn-primary { padding:7px 18px; border-radius:6px; border:none; background:var(--blue); font-size:13px; font-weight:700; color:#fff; cursor:pointer; transition:background .2s; }
.btn-primary:hover { background:var(--blue-dk); }

/* ── SHARED ── */
.page { display:none; }
.page.active { display:block; }
.section { padding:64px 2rem; }
.section-sm { padding:40px 2rem; }
.section-gray { background:var(--surface); }
.eyebrow { font-size:11px; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--blue); margin-bottom:8px; }
h2.st { font-size:clamp(24px,2.8vw,36px); font-weight:800; letter-spacing:-1px; color:var(--ink); line-height:1.15; margin-bottom:10px; }
h2.st em { font-family:'Lora',serif; font-style:italic; font-weight:400; color:var(--blue); }
.s-lead { font-size:15px; color:var(--ink-lt); max-width:500px; line-height:1.75; }
.see-all { font-size:13px; font-weight:700; color:var(--blue); display:inline-flex; align-items:center; gap:4px; }
.see-all:hover { text-decoration:underline; }
.tag { display:inline-flex; align-items:center; gap:5px; font-size:10px; font-weight:700; letter-spacing:.06em; text-transform:uppercase; padding:3px 10px; border-radius:5px; width:fit-content; }
.tpr { background:var(--blue-lt); color:var(--blue); }
.tjob { background:var(--teal-lt); color:var(--teal); }
.tev { background:var(--orange-lt); color:var(--orange); }
.tac { background:var(--purple-lt); color:var(--purple); }
.tsc { background:var(--green-lt); color:var(--green); }

/* ══════════════ LANDING ══════════════ */

/* HERO */
.hero { background:linear-gradient(150deg,#EBF0FD 0%,#F0F9FF 55%,#F0FDF4 100%); padding:64px 2rem 0; display:grid; grid-template-columns:1fr 1fr; gap:2.5rem;  min-height:86vh; overflow:hidden; position:relative; }
.hero::before { content:''; position:absolute; top:-80px; right:-80px; width:500px; height:500px; border-radius:50%; background:radial-gradient(circle,rgba(8,145,178,.07) 0%,transparent 70%); pointer-events:none; }
.hero-left { padding-bottom:72px; }
.hero-flag { display:inline-flex; align-items:center; gap:8px; background:var(--white); border:1px solid var(--border); border-radius:100px; padding:5px 14px 5px 8px; font-size:12px; font-weight:600; color:var(--ink-mid); margin-bottom:1.75rem; box-shadow:var(--sh); }
.flag-dot { width:7px; height:7px; border-radius:50%; background:var(--green); animation:blink 2s infinite; }
@keyframes blink{0%,100%{opacity:1}50%{opacity:.35}}
h1.h1 { font-size:clamp(34px,4.2vw,56px); font-weight:800; line-height:1.08; letter-spacing:-2px; color:var(--ink); margin-bottom:1.25rem; }
h1.h1 em { font-family:'Lora',serif; font-style:italic; color:var(--blue); font-weight:400; }
.underline-word { position:relative; display:inline-block; }
.underline-word::after { content:''; position:absolute; bottom:3px; left:0; right:0; height:5px; background:rgba(249,115,22,.25); border-radius:3px; z-index:-1; }
.hero-sub { font-size:16px; color:var(--ink-lt); line-height:1.8; max-width:460px; margin-bottom:2rem; }
.hero-search { background:var(--white); border:1.5px solid var(--border-mid); border-radius:var(--rlg); padding:5px 5px 5px 14px; display:flex; align-items:center; gap:8px; box-shadow:var(--shmd); max-width:500px; margin-bottom:1.25rem; }
.hero-search input { flex:1; border:none; outline:none; font-size:14px; color:var(--ink); font-family:'Plus Jakarta Sans',sans-serif; background:transparent; }
.hero-search input::placeholder { color:var(--ink-muted); }
.sbtn { background:var(--blue); color:#fff; border:none; padding:9px 20px; border-radius:10px; font-size:13px; font-weight:700; cursor:pointer; white-space:nowrap; transition:background .2s; }
.sbtn:hover { background:var(--blue-dk); }
.hero-tags { display:flex; gap:7px; flex-wrap:wrap; }
.htag { display:inline-flex; align-items:center; gap:5px; font-size:12px; font-weight:600; color:var(--ink-mid); background:var(--white); border:1px solid var(--border); padding:5px 12px; border-radius:100px; cursor:pointer; transition:all .2s; box-shadow:var(--sh); }
.htag:hover { border-color:var(--blue); color:var(--blue); background:var(--blue-lt); }
.hero-stats { display:flex; gap:2rem; margin-top:2rem; padding-top:1.75rem; border-top:1px solid var(--border); }
.hs-num { font-size:24px; font-weight:800; color:var(--ink); letter-spacing:-.5px; }
.hs-label { font-size:11px; color:var(--ink-muted); font-weight:500; }

/* Hero right feed */
.hero-right {  padding-bottom:0; display:flex; flex-direction:column; gap:10px; }
.feed-label { font-size:10px; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--ink-muted); display:flex; align-items:center; gap:8px; margin-bottom:2px; }
.feed-label::after { content:''; flex:1; height:1px; background:var(--border); }
.fcard { background:var(--white); border-radius:var(--rlg); border:1px solid var(--border); padding:14px 16px; display:flex; gap:12px; align-items:flex-start; cursor:pointer; transition:all .2s; box-shadow:var(--sh); }
.fcard:hover { box-shadow:var(--shmd); transform:translateY(-2px); }
.fcard-ico { width:38px; height:38px; border-radius:9px; flex-shrink:0; display:flex; align-items:center; justify-content:center; font-size:18px; }
.fi-bl{background:var(--blue-lt)} .fi-te{background:var(--teal-lt)} .fi-or{background:var(--orange-lt)} .fi-pu{background:var(--purple-lt)} .fi-gr{background:var(--green-lt)}
.fcard-body .ftag { font-size:9px; font-weight:700; letter-spacing:.07em; text-transform:uppercase; margin-bottom:3px; }
.fc-bl{color:var(--blue)} .fc-te{color:var(--teal)} .fc-or{color:var(--orange)} .fc-pu{color:var(--purple)} .fc-gr{color:var(--green)}
.fcard-body .ftitle { font-size:13px; font-weight:600; color:var(--ink); line-height:1.4; }
.fcard-body .fmeta { font-size:11px; color:var(--ink-muted); margin-top:3px; }

/* TICKER */
.ticker { background:var(--blue); height:36px; display:flex; overflow:hidden; }
.ticker-lbl { background:var(--blue-dk); color:#fff; font-size:11px; font-weight:700; letter-spacing:.07em; text-transform:uppercase; padding:0 16px; display:flex; align-items:center; white-space:nowrap; flex-shrink:0; }
.ticker-track { overflow:hidden; flex:1; display:flex; align-items:center; }
.ticker-inner { display:flex; gap:3rem; white-space:nowrap; animation:tick 30s linear infinite; }
.ticker-inner span { font-size:12px; font-weight:500; color:rgba(255,255,255,.9); }
.ticker-inner span::before { content:'· '; opacity:.45; }
@keyframes tick{from{transform:translateX(0)}to{transform:translateX(-50%)}}

/* CITY BAR */
.city-bar { padding:1.25rem 2rem; display:flex; align-items:center; gap:8px; flex-wrap:wrap; border-bottom:1px solid var(--border); background:var(--white); }
.city-lbl { font-size:11px; color:var(--ink-muted); font-weight:600; text-transform:uppercase; letter-spacing:.05em; margin-right:4px; }
.chip { display:flex; align-items:center; gap:5px; padding:6px 14px; border-radius:100px; border:1.5px solid var(--border); font-size:12px; font-weight:600; color:var(--ink-mid); cursor:pointer; transition:all .2s; }
.chip:hover,.chip.active { background:var(--blue); color:#fff; border-color:var(--blue); }

/* NEWS GRID */
.news-hdr { display:flex; justify-content:space-between; align-items:flex-end; margin-bottom:1.75rem; flex-wrap:wrap; gap:.75rem; }
.news-grid { display:grid; grid-template-columns:1.5fr 1fr 1fr; grid-template-rows:auto auto; gap:1px; background:var(--border); border-radius:var(--rlg); overflow:hidden; border:1px solid var(--border); }
.nc { background:var(--white); padding:1.5rem; display:flex; flex-direction:column; gap:9px; cursor:pointer; transition:background .2s; }
.nc:hover { background:var(--blue-lt); }
.nc.feat { grid-row:span 2; border-right:1px solid var(--border); }
.nc-title { font-size:14px; font-weight:700; line-height:1.4; color:var(--ink); }
.nc.feat .nc-title { font-size:18px; }
.nc-exc { font-size:13px; color:var(--ink-lt); line-height:1.65; }
.nc-meta { font-size:11px; color:var(--ink-muted); margin-top:auto; }

/* ── ACCOMMODATION SECTION on landing ── */
.accom-section { padding:64px 2rem; background:var(--surface); }
.accom-top { display:flex; justify-content:space-between; align-items:flex-end; margin-bottom:1.75rem; flex-wrap:wrap; gap:.75rem; }

/* Filter bar */
.filter-bar { background:var(--white); border:1.5px solid var(--border); border-radius:var(--rlg); padding:14px 16px; display:flex; gap:10px; align-items:center; flex-wrap:wrap; margin-bottom:1.75rem; box-shadow:var(--sh); }
.fb-group { display:flex; flex-direction:column; gap:3px; min-width:120px; }
.fb-group label { font-size:10px; font-weight:700; text-transform:uppercase; letter-spacing:.07em; color:var(--ink-muted); }
.fb-select,.fb-input { border:1.5px solid var(--border); border-radius:6px; padding:7px 10px; font-size:13px; font-weight:600; color:var(--ink-mid); background:var(--surface); font-family:'Plus Jakarta Sans',sans-serif; outline:none; cursor:pointer; transition:border-color .2s; }
.fb-select:focus,.fb-input:focus { border-color:var(--blue); }
.fb-divider { width:1px; height:40px; background:var(--border); flex-shrink:0; }
.fb-btn { padding:8px 18px; border-radius:6px; border:none; background:var(--blue); color:#fff; font-size:13px; font-weight:700; cursor:pointer; margin-left:auto; transition:background .2s; white-space:nowrap; }
.fb-btn:hover { background:var(--blue-dk); }

/* Listing cards grid */
.listing-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:1.25rem; }
.lcard { background:var(--white); border-radius:var(--rlg); border:1.5px solid var(--border); overflow:hidden; cursor:pointer; transition:all .25s; box-shadow:var(--sh); }
.lcard:hover { box-shadow:var(--shlg); border-color:transparent; transform:translateY(-3px); }
.lcard-img { width:100%; height:180px; object-fit:cover; display:block; background:linear-gradient(135deg,#dbeafe,#e0f2fe); position:relative; overflow:hidden; }
.lcard-img-inner { width:100%; height:100%; display:flex; align-items:center; justify-content:center; font-size:48px; }
.lcard-badge-row { position:absolute; top:10px; left:10px; display:flex; gap:5px; }
.lcard-badge { font-size:10px; font-weight:700; padding:3px 9px; border-radius:5px; }
.lb-green { background:var(--green-lt); color:var(--green); }
.lb-blue { background:rgba(26,86,219,.9); color:#fff; }
.lb-orange { background:var(--orange-lt); color:var(--orange); }
.lcard-body { padding:14px 16px; }
.lcard-name { font-size:15px; font-weight:800; color:var(--ink); margin-bottom:4px; }
.lcard-addr { font-size:12px; color:var(--ink-lt); margin-bottom:8px; display:flex; gap:4px; align-items:center; }
.lcard-badges { display:flex; gap:5px; flex-wrap:wrap; margin-bottom:10px; }
.lbadge { font-size:10px; font-weight:600; padding:3px 8px; border-radius:4px; background:var(--surface); color:var(--ink-mid); border:1px solid var(--border); }
.lcard-amenities { display:flex; gap:8px; font-size:18px; margin-bottom:10px; }
.lcard-foot { display:flex; justify-content:space-between; align-items:center; padding-top:10px; border-top:1px solid var(--border); }
.lcard-price strong { font-size:17px; font-weight:800; color:var(--ink); }
.lcard-price span { font-size:11px; color:var(--ink-muted); }
.lcard-rating { display:flex; align-items:center; gap:4px; font-size:12px; font-weight:700; color:var(--ink-mid); }
.lcard-cta { padding:7px 14px; border-radius:6px; background:var(--blue-lt); color:var(--blue); font-size:12px; font-weight:700; border:none; cursor:pointer; transition:all .2s; }
.lcard-cta:hover { background:var(--blue); color:#fff; }

/* ── JOBS SECTION on landing ── */
.jobs-section { padding:64px 2rem; }
.jobs-layout { display:grid; grid-template-columns:260px 1fr; gap:1.75rem; margin-top:1.75rem; }

/* Jobs sidebar filter */
.jobs-filter { background:var(--white); border:1.5px solid var(--border); border-radius:var(--rlg); padding:1.25rem; position:sticky; top:110px; align-self:start; box-shadow:var(--sh); }
.jf-title { font-size:13px; font-weight:800; color:var(--ink); margin-bottom:1rem; display:flex; align-items:center; justify-content:space-between; }
.jf-clear { font-size:11px; font-weight:600; color:var(--blue); cursor:pointer; }
.jf-group { margin-bottom:1.25rem; }
.jf-group label.jf-lbl { font-size:10px; font-weight:700; text-transform:uppercase; letter-spacing:.07em; color:var(--ink-muted); display:block; margin-bottom:8px; }
.jf-input { width:100%; border:1.5px solid var(--border); border-radius:6px; padding:8px 10px; font-size:13px; color:var(--ink); font-family:'Plus Jakarta Sans',sans-serif; outline:none; }
.jf-input:focus { border-color:var(--blue); }
.jf-select { width:100%; border:1.5px solid var(--border); border-radius:6px; padding:8px 10px; font-size:13px; color:var(--ink-mid); font-family:'Plus Jakarta Sans',sans-serif; outline:none; background:var(--white); cursor:pointer; }
.jf-checks { display:flex; flex-direction:column; gap:7px; }
.jf-check { display:flex; align-items:center; gap:8px; font-size:13px; color:var(--ink-mid); cursor:pointer; }
.jf-check input { accent-color:var(--blue); width:14px; height:14px; }
.jf-range { width:100%; accent-color:var(--blue); }
.jf-range-vals { display:flex; justify-content:space-between; font-size:11px; color:var(--ink-muted); margin-top:4px; }
.jf-apply { width:100%; padding:9px; border-radius:6px; border:none; background:var(--blue); color:#fff; font-size:13px; font-weight:700; cursor:pointer; margin-top:.5rem; }

/* Job cards */
.jobs-list { display:grid; flex-direction:column; gap:1rem; grid-template-columns: repeat(2, 1fr)}
.jcard { background:var(--white); border:1.5px solid var(--border); border-radius:var(--rlg); padding:1.25rem 1.5rem; cursor:pointer; transition:all .2s; box-shadow:var(--sh); display:flex; gap:1rem; align-items:flex-start; }
.jcard:hover { border-color:var(--blue); box-shadow:var(--shmd); }
.jcard.featured-job { border-color:var(--blue); background:var(--blue-lt); }
.jcard-logo { width:48px; height:48px; border-radius:10px; background:var(--surface); border:1.5px solid var(--border); display:flex; align-items:center; justify-content:center; font-size:22px; flex-shrink:0; }
.jcard-body { flex:1; }
.jcard-top { display:flex; justify-content:space-between; align-items:flex-start; gap:1rem; flex-wrap:wrap; }
.jcard-title { font-size:14px; font-weight:800; color:var(--ink); margin-bottom:3px; }
.jcard-company { font-size:13px; color:var(--ink-lt); margin-bottom:8px; }
.jcard-tags { display:flex; gap:6px; flex-wrap:wrap; }
.jt-chip { font-size:10px; font-weight:700; padding:3px 9px; border-radius:5px; background:var(--surface); color:var(--ink-mid); border:1px solid var(--border); }
.jc-salary { font-size:14px; font-weight:800; color:var(--green); white-space:nowrap; }
.jcard-desc { font-size:13px; color:var(--ink-lt); line-height:1.65; margin-top:8px; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; }
.jcard-foot { display:flex; justify-content:space-between; align-items:center; margin-top:10px; padding-top:10px; border-top:1px solid var(--border); flex-wrap:wrap; gap:8px; }
.jcard-meta { font-size:11px; color:var(--ink-muted); display:flex; gap:12px; }
.jcard-apply { padding:7px 18px; border-radius:6px; background:var(--blue); color:#fff; font-size:12px; font-weight:700; border:none; cursor:pointer; transition:background .2s; }
.jcard-apply:hover { background:var(--blue-dk); }

/* CATEGORIES STRIP */
.cat-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:1rem; margin-top:2rem; }
.cat-card { background:var(--white); border:1.5px solid var(--border); border-radius:var(--rlg); padding:1.5rem; cursor:pointer; transition:all .25s; position:relative; overflow:hidden; }
.cat-card::before { content:''; position:absolute; top:0; left:0; right:0; height:3px; }
.cat-card:hover { box-shadow:var(--shlg); border-color:transparent; transform:translateY(-3px); }
.cc1::before{background:var(--blue)} .cc2::before{background:var(--teal)} .cc3::before{background:var(--orange)} .cc4::before{background:var(--purple)}
.cat-emo { font-size:28px; margin-bottom:10px; display:block; }
.cat-name { font-size:15px; font-weight:800; color:var(--ink); margin-bottom:6px; }
.cat-desc { font-size:12px; color:var(--ink-lt); line-height:1.65; margin-bottom:12px; }
.cat-pill { font-size:10px; font-weight:700; padding:3px 10px; border-radius:100px; }
.cc1 .cat-pill{background:var(--blue-lt);color:var(--blue)} .cc2 .cat-pill{background:var(--teal-lt);color:var(--teal)} .cc3 .cat-pill{background:var(--orange-lt);color:var(--orange)} .cc4 .cat-pill{background:var(--purple-lt);color:var(--purple)}

/* SUBSCRIBE BANNER */
.sub-section { background:linear-gradient(135deg,var(--blue) 0%,#1140A8 50%,#0F3882 100%); padding:64px 2rem; display:grid; grid-template-columns:1fr 1fr; gap:3.5rem; align-items:center; position:relative; overflow:hidden; }
.sub-section::before { content:''; position:absolute; right:-60px; top:-60px; width:350px; height:350px; border-radius:50%; background:rgba(255,255,255,.05); pointer-events:none; }
.sub-eye { font-size:10px; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:rgba(255,255,255,.5); margin-bottom:10px; }
.sub-h { font-size:clamp(24px,2.8vw,38px); font-weight:800; color:#fff; line-height:1.15; letter-spacing:-1px; margin-bottom:.75rem; }
.sub-h em { font-family:'Lora',serif; font-style:italic; font-weight:400; }
.sub-p { font-size:14px; color:rgba(255,255,255,.6); line-height:1.75; }
.sub-perks { margin-top:1.25rem; display:flex; flex-direction:column; gap:7px; }
.sub-perk { display:flex; gap:7px; align-items:center; font-size:13px; color:rgba(255,255,255,.75); }
.sp-dot { width:5px; height:5px; border-radius:50%; background:rgba(255,255,255,.4); flex-shrink:0; }
.sub-form { background:rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.12); border-radius:var(--rxl); padding:1.75rem; }
.sub-form h3 { font-size:18px; font-weight:700; color:#fff; margin-bottom:1.25rem; }
.sf-g { display:flex; flex-direction:column; gap:9px; }
.sf-row { display:grid; grid-template-columns:1fr 1fr; gap:9px; }
.sf-i { width:100%; background:rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.15); border-radius:6px; padding:10px 12px; color:#fff; font-size:13px; font-family:'Plus Jakarta Sans',sans-serif; outline:none; }
.sf-i::placeholder { color:rgba(255,255,255,.4); }
.sf-s { width:100%; background:rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.15); border-radius:6px; padding:10px 12px; color:rgba(255,255,255,.75); font-size:13px; font-family:'Plus Jakarta Sans',sans-serif; outline:none; cursor:pointer; }
.sf-btn { width:120px; background:#fff; color:var(--blue); border:none; padding:10px; border-radius:6px; font-size:16px; font-weight:800; cursor:pointer; margin:3px auto; transition:background .2s; }
.sf-btn:hover { background:var(--blue-lt); }
.sf-note { font-size:11px; color:rgba(255,255,255,.35); text-align:center; margin-top:6px; }
.sf-s option{
  color: #000;
}
/* UNI LOGOS */
.unis-bar { border-top:1px solid var(--border); border-bottom:1px solid var(--border); }
.unis-inner { display:flex; align-items:center; gap:2.5rem; flex-wrap:wrap; }
.unis-lbl { font-size:10px; font-weight:700; color:var(--ink-muted); text-transform:uppercase; letter-spacing:.08em; white-space:nowrap; }
.uni-pill { font-size:12px; font-weight:700; color:var(--ink-lt); background:var(--surface); border:1px solid var(--border); padding:7px 14px; border-radius:7px; white-space:nowrap; cursor:default; transition:all .2s; }
.uni-pill:hover { color:var(--blue); border-color:var(--blue); background:var(--blue-lt); }

/* FOOTER */
footer { background:var(--ink); padding:3rem 2rem 2rem; }
.ft { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:2.5rem; padding-bottom:2rem; border-bottom:1px solid rgba(255,255,255,.08); }
.fl { display:flex; align-items:center; gap:9px; margin-bottom:.875rem; }
.flm { width:30px; height:30px; border-radius:7px; background:linear-gradient(135deg,var(--blue),var(--teal)); display:flex; align-items:center; justify-content:center; font-size:13px; font-weight:800; color:#fff; }
.flt { font-size:15px; font-weight:800; color:#fff; }
.flt span { color:#60A5FA; }
.fdesc { font-size:12px; color:rgba(255,255,255,.4); line-height:1.7; max-width:240px; }
.fc h4 { font-size:10px; font-weight:700; letter-spacing:.08em; text-transform:uppercase; color:rgba(255,255,255,.4); margin-bottom:.875rem; }
.fc a { display:block; font-size:13px; color:rgba(255,255,255,.55); margin-bottom:8px; transition:color .2s; }
.fc a:hover { color:#fff; }
.fb2 { display:flex; justify-content:space-between; align-items:center; padding-top:1.5rem; flex-wrap:wrap; gap:.75rem; }
.fcopy { font-size:11px; color:rgba(255,255,255,.25); }

/* ══════════════ INNER PAGES ══════════════ */

/* Shared inner hero */
.inner-hero { background:linear-gradient(150deg,#EBF0FD,#F8FAFC); padding:40px 2rem 0; border-bottom:1px solid var(--border); }
.bc { display:flex; align-items:center; gap:5px; font-size:12px; margin-bottom:1.25rem; }
.bc a { color:var(--ink-muted); } .bc a:hover { color:var(--blue); }
.bc-sep { color:var(--border-mid); }
h1.ih1 { font-size:clamp(22px,3vw,38px); font-weight:800; letter-spacing:-1px; line-height:1.15; color:var(--ink); max-width:760px; margin-bottom:1.25rem; }
.imeta { display:flex; gap:1.25rem; flex-wrap:wrap; align-items:center; padding:1rem 0; border-top:1px solid var(--border); margin-top:1.25rem; }
.im { display:flex; align-items:center; gap:5px; font-size:12px; color:var(--ink-muted); }
.imsep { width:3px; height:3px; border-radius:50%; background:var(--border-mid); }

/* News inner */
.inner-layout { display:grid; grid-template-columns:1fr 300px; gap:2.5rem; padding:2.5rem 2rem; }
.article h2 { font-size:20px; font-weight:800; color:var(--ink); letter-spacing:-.3px; margin:2.25rem 0 .875rem; }
.article h2:first-child{margin-top:0}
.article p { font-size:15px; line-height:1.85; color:var(--ink-mid); margin-bottom:1.1rem; }
.article ul { margin:1rem 0 1.25rem 1.25rem; }
.article li { font-size:14px; color:var(--ink-mid); line-height:1.8; margin-bottom:5px; }
.article strong { color:var(--ink); font-weight:700; }
.pullquote { border-left:3px solid var(--blue); padding:1rem 1.25rem; margin:1.75rem 0; background:var(--blue-lt); border-radius:0 var(--r) var(--r) 0; }
.pullquote p { font-family:'Lora',serif; font-style:italic; font-size:17px; color:var(--blue-dk) !important; margin:0 !important; line-height:1.6; }
.info-box { background:var(--teal-lt); border:1.5px solid rgba(8,145,178,.2); border-radius:var(--rlg); padding:1.25rem; margin:1.75rem 0; }
.ib-lbl { font-size:10px; font-weight:700; text-transform:uppercase; letter-spacing:.08em; color:var(--teal); margin-bottom:8px; }
.info-box ul { margin-left:1rem; }
.info-box li { font-size:13px; color:#0E7490; line-height:1.7; margin-bottom:5px; }
.art-tags { display:flex; gap:7px; flex-wrap:wrap; margin:1.75rem 0; }
.art-tag { font-size:11px; font-weight:600; padding:4px 12px; border-radius:100px; border:1.5px solid var(--border); color:var(--ink-mid); cursor:pointer; transition:all .2s; }
.art-tag:hover { background:var(--blue); color:#fff; border-color:var(--blue); }
.share-row { display:flex; gap:8px; align-items:center; padding:1.25rem 0; border-top:1px solid var(--border); border-bottom:1px solid var(--border); margin:1.25rem 0; flex-wrap:wrap; }
.share-lbl { font-size:12px; color:var(--ink-lt); font-weight:600; }
.share-btn { padding:6px 14px; border-radius:6px; border:1.5px solid var(--border); background:var(--white); font-size:12px; font-weight:600; color:var(--ink-mid); cursor:pointer; transition:all .2s; }
.share-btn:hover { background:var(--ink); color:#fff; border-color:var(--ink); }
.author-card { display:flex; gap:12px; align-items:flex-start; background:var(--surface); border-radius:var(--rlg); padding:1rem 1.25rem; margin:1.75rem 0; }
.author-av { width:40px; height:40px; border-radius:50%; background:linear-gradient(135deg,var(--blue),var(--teal)); display:flex; align-items:center; justify-content:center; font-size:13px; font-weight:800; color:#fff; flex-shrink:0; }
.author-name { font-size:13px; font-weight:700; color:var(--ink); }
.author-role { font-size:11px; color:var(--ink-muted); }
.author-bio { font-size:12px; color:var(--ink-lt); line-height:1.6; margin-top:4px; }

/* Sidebar widgets */
.sidebar { display:flex; flex-direction:column; gap:1.25rem; }
.sw { background:var(--white); border:1.5px solid var(--border); border-radius:var(--rlg); overflow:hidden; }
.sw-h { padding:10px 14px; font-size:10px; font-weight:700; letter-spacing:.08em; text-transform:uppercase; border-bottom:1px solid var(--border); }
.swh-bl{background:var(--blue-lt);color:var(--blue)} .swh-te{background:var(--teal-lt);color:var(--teal)} .swh-or{background:var(--orange-lt);color:var(--orange)} .swh-gr{background:var(--green-lt);color:var(--green)}
.sw-b { padding:.875rem; }
.rel-i { display:flex; gap:8px; padding:9px 0; border-bottom:1px solid var(--border); cursor:pointer; }
.rel-i:last-child{border-bottom:none;padding-bottom:0} .rel-i:first-child{padding-top:0}
.ri-dot { width:6px; height:6px; border-radius:50%; flex-shrink:0; margin-top:5px; }
.rid-bl{background:var(--blue)} .rid-te{background:var(--teal)} .rid-or{background:var(--orange)}
.ri-t { font-size:12px; font-weight:600; color:var(--ink); line-height:1.4; margin-bottom:2px; }
.ri-m { font-size:10px; color:var(--ink-muted); }
.sub-w { background:linear-gradient(135deg,var(--blue),var(--blue-dk)) !important; border-color:transparent !important; }
.sub-w .sw-h { background:rgba(255,255,255,.1); color:rgba(255,255,255,.8); border-bottom-color:rgba(255,255,255,.1); }
.sub-w .sw-b p { font-size:12px; color:rgba(255,255,255,.6); margin-bottom:.875rem; line-height:1.6; }
.sub-w input { width:100%; background:rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.2); border-radius:6px; padding:9px 11px; color:#fff; font-size:12px; font-family:'Plus Jakarta Sans',sans-serif; outline:none; margin-bottom:7px; }
.sub-w input::placeholder{color:rgba(255,255,255,.4)}
.sub-w button { width:100%; background:#fff; color:var(--blue); border:none; padding:10px; border-radius:6px; font-size:13px; font-weight:700; cursor:pointer; }

/* ── ACCOMMODATION INNER PAGE ── */
.accom-inner { display:grid; grid-template-columns:280px 1fr; gap:0; min-height:80vh; }

/* Left filter panel */
.filter-panel { background:var(--white); border-right:1.5px solid var(--border); padding:1.5rem; position:sticky; top:100px; height:fit-content; }
.fp-title { font-size:14px; font-weight:800; color:var(--ink); margin-bottom:1.25rem; display:flex; justify-content:space-between; align-items:center; }
.fp-clear { font-size:11px; color:var(--blue); cursor:pointer; font-weight:600; }
.fp-group { margin-bottom:1.25rem; border-bottom:1px solid var(--border); padding-bottom:1.25rem; }
.fp-group:last-child { border-bottom:none; margin-bottom:0; }
.fp-lbl { font-size:10px; font-weight:700; text-transform:uppercase; letter-spacing:.07em; color:var(--ink-muted); display:block; margin-bottom:8px; }
.fp-select { width:100%; border:1.5px solid var(--border); border-radius:6px; padding:8px 10px; font-size:13px; color:var(--ink-mid); font-family:'Plus Jakarta Sans',sans-serif; outline:none; background:var(--white); cursor:pointer; margin-bottom:7px; }
.fp-select:focus{border-color:var(--blue)}
.fp-checks { display:flex; flex-direction:column; gap:6px; }
.fp-check { display:flex; align-items:center; gap:7px; font-size:12px; color:var(--ink-mid); cursor:pointer; }
.fp-check input { accent-color:var(--blue); }
.fp-range { width:100%; accent-color:var(--blue); margin-bottom:3px; }
.fp-range-vals { display:flex; justify-content:space-between; font-size:11px; color:var(--ink-muted); }
.fp-price-inputs { display:grid; grid-template-columns:1fr 1fr; gap:7px; margin-top:7px; }
.fp-pi { width:100%; border:1.5px solid var(--border); border-radius:6px; padding:7px 8px; font-size:12px; color:var(--ink); font-family:'Plus Jakarta Sans',sans-serif; outline:none; }
.fp-btn { width:100%; padding:9px; border-radius:6px; border:none; background:var(--blue); color:#fff; font-size:13px; font-weight:700; cursor:pointer; margin-top:.25rem; }

/* Right listings panel */
.listings-panel { padding:1.5rem; }
.lp-top { display:flex; justify-content:space-between; align-items:center; margin-bottom:1.25rem; flex-wrap:wrap; gap:.75rem; }
.lp-count { font-size:14px; font-weight:700; color:var(--ink); }
.lp-count span { color:var(--ink-muted); font-weight:400; }
.lp-sort { display:flex; align-items:center; gap:8px; }
.lp-sort label { font-size:12px; color:var(--ink-lt); font-weight:500; }
.lp-sort select { border:1.5px solid var(--border); border-radius:6px; padding:6px 10px; font-size:12px; font-family:'Plus Jakarta Sans',sans-serif; outline:none; cursor:pointer; }
.lp-view { display:flex; gap:4px; }
.lv-btn { width:30px; height:30px; border-radius:5px; border:1.5px solid var(--border); background:var(--white); display:flex; align-items:center; justify-content:center; cursor:pointer; font-size:13px; transition:all .2s; }
.lv-btn.active,.lv-btn:hover { background:var(--blue); color:#fff; border-color:var(--blue); }
.listings-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1rem; }

/* Detailed accom card (inner) */
.dlcard { background:var(--white); border:1.5px solid var(--border); border-radius:var(--rlg); overflow:hidden; cursor:pointer; transition:all .25s; box-shadow:var(--sh); }
.dlcard:hover { box-shadow:var(--shlg); border-color:var(--blue); }
.dlcard-img { width:100%; height:160px; background:linear-gradient(135deg,#dbeafe,#e0f2fe); display:flex; align-items:center; justify-content:center; font-size:40px; position:relative; }
.dlcard-brow { position:absolute; top:8px; left:8px; display:flex; gap:5px; }
.dlcard-body { padding:12px 14px; }
.dlcard-stars { color:var(--orange); font-size:12px; margin-bottom:5px; }
.dlcard-name { font-size:14px; font-weight:800; color:var(--ink); margin-bottom:3px; }
.dlcard-addr { font-size:11px; color:var(--ink-lt); margin-bottom:7px; }
.dlcard-badges { display:flex; gap:4px; flex-wrap:wrap; margin-bottom:7px; }
.dlcard-ams { display:flex; gap:6px; font-size:15px; margin-bottom:8px; }
.dlcard-foot { display:flex; justify-content:space-between; align-items:center; padding-top:8px; border-top:1px solid var(--border); }
.dlcard-price strong { font-size:15px; font-weight:800; color:var(--ink); }
.dlcard-price span { font-size:10px; color:var(--ink-muted); }
.dlcard-cta { padding:6px 13px; border-radius:6px; background:var(--blue); color:#fff; font-size:11px; font-weight:700; border:none; cursor:pointer; }

/* ── JOBS INNER PAGE ── */
.jobs-inner { display:grid; grid-template-columns:260px 1fr; gap:0; min-height:80vh; }
.jobs-filter-panel { background:var(--white); border-right:1.5px solid var(--border); padding:1.5rem; position:sticky; top:100px; height:fit-content; }
.jobs-listings { padding:1.5rem; }
.jl-top { display:flex; justify-content:space-between; align-items:center; margin-bottom:1.25rem; flex-wrap:wrap; gap:.75rem; }
.jl-search { display:flex; gap:8px; flex:1; max-width:500px; }
.jl-search input { flex:1; border:1.5px solid var(--border); border-radius:6px; padding:8px 12px; font-size:13px; font-family:'Plus Jakarta Sans',sans-serif; outline:none; }
.jl-search input:focus { border-color:var(--blue); }
.jl-search button { padding:8px 18px; border-radius:6px; border:none; background:var(--blue); color:#fff; font-size:13px; font-weight:700; cursor:pointer; }
.jl-count { font-size:13px; color:var(--ink-lt); }
.jl-count strong { color:var(--ink); }
.jinner-list { display:grid; flex-direction:column; gap:1rem;grid-template-columns: repeat(2, 1fr) }

/* Pagination */
.pagination { display:flex; gap:6px; justify-content:end; margin-top:2rem; }
.pg-btn { min-width:34px;padding: 0 10px; height:34px; border-radius:6px; border:1.5px solid var(--border); background:var(--white); font-size:13px; font-weight:600; color:var(--ink-mid); cursor:pointer; display:flex; align-items:center; justify-content:center; transition:all .2s; }
.pg-btn:hover,.pg-btn.active { background:var(--blue); color:#fff; border-color:var(--blue); }

/* Related grid */
.related-section { padding:0 2rem 48px; }
.related-section h3 { font-size:20px; font-weight:800; color:var(--ink); letter-spacing:-.3px; margin-bottom:1.25rem; }
.related-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1rem; }
.rel-card { background:var(--white); border:1.5px solid var(--border); border-radius:var(--rlg); padding:1.25rem; cursor:pointer; transition:all .25s; }
.rel-card:hover { border-color:var(--blue); box-shadow:var(--shmd); transform:translateY(-2px); }

/* ── MOBILE NAV ── */
.nav-hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; padding:6px; border:none; background:transparent; }
.nav-hamburger span { display:block; width:22px; height:2px; background:var(--ink); border-radius:2px; transition:all .25s; }
.nav-hamburger.open span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity:0; }
.nav-hamburger.open span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }
.mobile-menu { display:none; position:fixed; top:0; left:0; right:0; bottom:0; background:var(--white); z-index:500; padding:0px 1rem 1rem; flex-direction:column; gap:0rem; overflow-y:auto; }
.mobile-menu.open { display:flex; }
.mobile-menu a { font-size:16px; font-weight:700; color:var(--ink); padding:8px 0; border-bottom:1px solid var(--border); display:block; }
.mobile-menu a:last-of-type { border-bottom:none; }
.mobile-menu .mm-actions { display:flex; gap:10px; margin-top:1.5rem; }
.mobile-menu .mm-actions button { flex:1; padding:12px; border-radius:8px; font-size:15px; font-weight:700; cursor:pointer; }
.mm-close { position:absolute; top:5px; right:20px; background:transparent; border:none; font-size:24px; cursor:pointer; color:var(--ink); }

/* Filter panel toggle for mobile */
.fp-toggle { display:none; width:100%; padding:10px 14px; border-radius:8px; border:1.5px solid var(--border); background:var(--white); font-size:13px; font-weight:700; color:var(--ink-mid); cursor:pointer; text-align:left; }

/* ══════════════ RESPONSIVE ══════════════ */

/* ── Tablet (≤ 1024px) ── */
@media (max-width:1024px) {
  .hero { grid-template-columns:1fr; min-height:auto; padding-bottom:2.5rem; }
  /* .hero-right { display:none; } */
  .hero-left { padding-bottom:0; }

  .news-grid { grid-template-columns:1fr 1fr; }
  .nc.feat { grid-row:span 1; border-right:none; border-bottom:1px solid var(--border); grid-column:span 2; }

  .listing-grid { grid-template-columns:repeat(2,1fr); }

  .jobs-layout { grid-template-columns:220px 1fr; }

  .cat-grid { grid-template-columns:repeat(2,1fr); }

  .sub-section { grid-template-columns:1fr; gap:2rem; }
  .sub-form { max-width:560px; }

  .ft { grid-template-columns:2fr 1fr 1fr; }
  .ft > div:last-child { display:none; }

  .inner-layout { grid-template-columns:1fr 260px; }

  .accom-inner { grid-template-columns:240px 1fr; }
  .jobs-inner { grid-template-columns:220px 1fr; }

  .listings-grid { grid-template-columns:repeat(2,1fr); }
  .related-grid { grid-template-columns:repeat(2,1fr); }
}

/* ── Mobile (≤ 768px) ── */
@media (max-width:768px) {
  /* Nav */
  .nav-links, .nav-actions { display:none; }
  .nav-hamburger { display:flex; }
  nav { padding:0 1.25rem; }

  /* Vtbar – scrollable */
  .vtbar { padding:8px 1rem; gap:8px; overflow-x:auto; flex-wrap:nowrap; }
  .vtbar::-webkit-scrollbar { display:none; }

  /* Hero */
  .hero { padding:36px 1.25rem 2.5rem; grid-template-columns:1fr; gap:0; min-height:auto; }
  .hero-sub { font-size:14px; }
  .hero-search { max-width:100%; }
  .hero-stats { gap:1.25rem; flex-wrap:wrap; }
  .hero-stats > div { min-width:calc(50% - .625rem); }

  /* Sections */
  .section, .accom-section, .jobs-section, .sub-section { padding:40px 1.25rem; }
  .section-sm { padding:28px 1.25rem; }

  /* News grid */
  .news-grid { grid-template-columns:1fr; }
  .nc.feat { grid-column:span 1; border-bottom:1px solid var(--border); }
  .news-hdr { flex-direction:column; align-items:flex-start; gap:.5rem; }

  /* Accommodation */
  .accom-top { flex-direction:column; align-items:flex-start; }
  .filter-bar { flex-direction:column; align-items:stretch; padding:14px; }
  .fb-group { min-width:100%; }
  .fb-divider { display:none; }
  .fb-btn { margin-left:0; width:100%; }
  .listing-grid { grid-template-columns:1fr; }
  .jobs-list { grid-template-columns:1fr; }
  /* Jobs on landing */
  .jobs-layout { grid-template-columns:1fr; }
  .jobs-filter { position:static; display:none; }
  .jobs-filter.open { display:block; }
  .fp-toggle { display:block; margin-bottom:1rem; }
      .jinner-list {
        grid-template-columns: 1fr;
    }

  /* Categories */
  .cat-grid { grid-template-columns:1fr 1fr; gap:.75rem; }

  /* Subscribe */
  .sub-section { grid-template-columns:1fr; padding:40px 1.25rem; }
  .sf-row { grid-template-columns:1fr; }
  .sub-form { max-width:100%; }

  /* Unis bar */
  .unis-inner { gap:1rem; flex-wrap:wrap; }

  /* Footer */
  .ft { grid-template-columns:1fr 1fr; gap:2rem; }
  .fb2 { flex-direction:column; align-items:flex-start; }

  /* Inner hero */
  .inner-hero { padding:24px 1.25rem 0; }
  .imeta { gap:.75rem; flex-wrap:wrap; }
  .bc { flex-wrap:wrap; }

  /* News inner layout */
  .inner-layout { grid-template-columns:1fr; padding:1.5rem 1.25rem; }
  .sidebar { display:none; }
  .related-grid { grid-template-columns:1fr; }
  .related-section { padding:0 1.25rem 36px; }

  /* Accom inner page */
  .accom-inner { grid-template-columns:1fr; }
  .filter-panel { display:none; position:static; border-right:none; border-bottom:1.5px solid var(--border); }
  .filter-panel.open { display:block; }
  .fp-toggle { display:block; }
  .listings-panel { padding:1rem 1.25rem; }
  .listings-grid { grid-template-columns:1fr; }
  .lp-top { flex-direction:column; align-items:flex-start; gap:.5rem; }

  /* Jobs inner page */
  .jobs-inner { grid-template-columns:1fr; }
  .jobs-filter-panel { display:none; position:static; border-right:none; border-bottom:1.5px solid var(--border); }
  .jobs-filter-panel.open { display:block; }
  .jobs-listings { padding:1rem 1.25rem; }
  .jl-top { flex-direction:column; align-items:flex-start; }
  .jl-search { max-width:100%; width:100%; }

  /* Job cards on mobile */
  .jcard { flex-direction:column; gap:.75rem; }
  .jcard-logo { width:40px; height:40px; font-size:18px; }
  .jcard-top { flex-direction:column; gap:.25rem; }
  .jcard-foot { flex-direction:column; align-items:flex-start; }
  .jcard-meta { flex-wrap:wrap; gap:8px; }
  .jcard-apply { align-self:flex-end; }

  /* Filter bar at top of accom inner */
  .filter-bar[style] { flex-direction:column; padding:12px 1.25rem; }
}

/* ── Small mobile (≤ 480px) ── */
@media (max-width:480px) {
  .hero { padding:28px 1rem 2rem; }
  h1.h1 { letter-spacing:-1.5px; }
  .hero-stats { gap:1rem; }
  .hero-tags { gap:5px; }
  .htag { font-size:11px; padding:4px 10px; }

  .cat-grid { grid-template-columns:1fr; }

  .ft { grid-template-columns:1fr; }

  .section, .accom-section, .jobs-section { padding:32px 1rem; }
  .section-sm { padding:24px 1rem; }
  .sub-section { padding:32px 1rem; }
  .inner-hero { padding:20px 1rem 0; }
  .inner-layout { padding:1.25rem 1rem; }
  .listings-panel { padding:1rem; }
  .jobs-listings { padding:1rem; }
  .related-section { padding:0 1rem 28px; }

  .news-hdr { margin-bottom:1.25rem; }
  .jt-chip { font-size:9px; padding:2px 7px; }
  .lp-sort { flex-direction:column; align-items:flex-start; gap:4px; }
  .pagination { flex-wrap:wrap; justify-content:center; }
}

/* Container */
.marquee {
  height: 520px;
  /* width: 300px; */
  overflow: hidden;
  border-radius: 12px;
  /* background: #fff; */
  /* box-shadow: 0 5px 20px rgba(0,0,0,0.1); */
}

/* Track */
.track1 {
  display: flex;
  flex-direction: column;
  will-change: transform;
}

/* Items */
.item {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  /* text-align: center; */
}

/* Responsive */
@media (max-width: 768px) {
  .marquee {
    width: 100%;
    height: 180px;
  }
}

:root {
  --bg: #f5f2ee;
  --card-bg: #ffffff;
  --ink: #1a1410;
  --ink-mid: #5c4f42;
  --ink-light: #9e9087;
  --email: #e8533a;
  --chat: #7c5cbf;
  --call: #d4412b;
  --whatsapp: #25a047;
  --radius: 20px;
  --shadow: 0 2px 24px rgba(26, 20, 16, 0.08);
  --shadow-hover: 0 12px 40px rgba(26, 20, 16, 0.14);
}


/* ── Section wrapper ── */
.connect-section {
  /* width: 100%; */
  /* max-width: 1100px; */
     
}

/* ── Header ── */
.connect-header {
  /* text-align: center; */
  margin-bottom: 48px;
}

.connect-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 14px;
}

.connect-title {
  /* font-family: 'Instrument Serif', serif; */
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.connect-title em {
  font-style: italic;
  color: var(--email);
}

.connect-sub {
  margin-top: 14px;
  font-size: 15px;
  color: var(--ink-mid);
  font-weight: 300;
  line-height: 1.6;
}

/* ── Grid ── */
.connect-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* ── Card ── */
.connect-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 36px 24px 30px;
  text-align: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s cubic-bezier(.34, 1.56, .64, 1), box-shadow 0.3s ease;
  text-decoration: none;
  display: block;
  outline: none;
}

.connect-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.connect-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.connect-card:hover::before {
  opacity: 1;
}

/* Colour accent bottom border */
.connect-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 0 0 var(--radius) var(--radius);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(.34, 1.56, .64, 1);
}

.connect-card:hover::after {
  transform: scaleX(1);
}

/* Per-card colours */
.card--email::before {
  background: linear-gradient(135deg, #fff5f3 0%, #fde9e5 100%);
}

.card--email::after {
  background: var(--email);
}

.card--email .card-icon-wrap {
  background: #fde9e5;
}

.card--email .card-label {
  color: var(--email);
}

.card--email .card-action {
  color: var(--email);
}

.card--chat::before {
  background: linear-gradient(135deg, #f5f2ff 0%, #ede8fb 100%);
}

.card--chat::after {
  background: var(--chat);
}

.card--chat .card-icon-wrap {
  background: #ede8fb;
}

.card--chat .card-label {
  color: var(--chat);
}

.card--chat .card-action {
  color: var(--chat);
}

.card--call::before {
  background: linear-gradient(135deg, #fff3f2 0%, #fddbd8 100%);
}

.card--call::after {
  background: var(--call);
}

.card--call .card-icon-wrap {
  background: #fddbd8;
}

.card--call .card-label {
  color: var(--call);
}

.card--call .card-action {
  color: var(--call);
}

.card--whatsapp::before {
  background: linear-gradient(135deg, #f0fbf3 0%, #d7f4de 100%);
}

.card--whatsapp::after {
  background: var(--whatsapp);
}

.card--whatsapp .card-icon-wrap {
  background: #d7f4de;
}

.card--whatsapp .card-label {
  color: var(--whatsapp);
}

.card--whatsapp .card-action {
  color: var(--whatsapp);
}

/* ── Icon ── */
.card-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: transform 0.3s cubic-bezier(.34, 1.56, .64, 1);
  position: relative;
  z-index: 1;
}

.connect-card:hover .card-icon-wrap {
  transform: scale(1.12) rotate(-4deg);
}

.card-icon-wrap svg {
  width: 28px;
  height: 28px;
}

/* ── Text ── */
.card-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.card-title {
  /* font-family: 'Instrument Serif', serif; */
  font-size: 18px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 6px;
  position: relative;
  z-index: 1;
}

.card-sub {
  font-size: 12px;
  color: var(--ink-light);
  font-weight: 300;
  position: relative;
  z-index: 1;
}

.card-action {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  /* margin-top: 18px; */
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.card-action svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
}

.connect-card:hover .card-action {
  opacity: 1;
  transform: translateY(0);
}

.connect-card:hover .card-action svg {
  transform: translateX(3px);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .connect-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}

@media (max-width: 500px) {
  .connect-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .connect-card {
    padding: 28px 22px 24px;
    display: flex;
    align-items: center;
    text-align: left;
    gap: 18px;
  }

  .card-icon-wrap {
    margin: 0;
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 14px;
  }

  .card-icon-wrap svg {
    width: 22px;
    height: 22px;
  }

  .card-body {
    flex: 1;
  }

  .card-action {
    margin-top: 6px;
    opacity: 1;
    transform: none;
  }

  .connect-card:hover .card-icon-wrap {
    transform: scale(1.08) rotate(-3deg);
  }

  /* body { padding: 32px 16px; } */
  .connect-header {
    margin-bottom: 32px;
  }
}


:root {
  --navy: #1a2340;
  --navy-mid: #253060;
  --green: #2ecc71;
  --green-dark: #27ae60;
  --green-pale: #edfaf3;
  --gold: #f0b429;
  --white: #ffffff;
  --off: #f7f8fc;
  --border: #e4e8f0;
  --ink: #1a2340;
  --ink-mid: #4a5578;
  --ink-light: #8a93b2;
  --radius: 20px;
  --radius-sm: 12px;
}


/* ══════════════════════════════════════
       WHY CHOOSE US
    ══════════════════════════════════════ */
.why-section {
  /* padding: 90px 5% 100px; */
  /* background: var(--white); */
  position: relative;
  overflow: hidden;
}

/* subtle bg grid */
/* .why-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(var(--border) 1px, transparent 1px),
        linear-gradient(90deg, var(--border) 1px, transparent 1px);
      background-size: 48px 48px;
      opacity: 0.35;
      pointer-events: none;
    } */

.why-inner {
  /* max-width: 1120px; */
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Header */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--green-dark);
  background: var(--green-pale);
  border: 1px solid #b6efd3;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
}

.section-eyebrow::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-dark);
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.7);
  }
}

.why-heading {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}

.why-heading em {
  font-style: italic;
  color: var(--navy-mid);
}

.why-sub {
  font-size: 16px;
  color: var(--ink-mid);
  font-weight: 300;
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: 60px;
}

/* Cards grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.why-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 30px 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(.34, 1.56, .64, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(26, 35, 64, 0.1);
  border-color: transparent;
}

/* colour blob behind icon */
.why-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.why-card:hover::before {
  opacity: 0.12;
}

.card-a::before {
  background: #3b82f6;
}

.card-b::before {
  background: var(--green);
}

.card-c::before {
  background: var(--gold);
}

.why-card-num {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--ink-light);
  margin-bottom: 20px;
}

.why-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 28px;
  transition: transform 0.3s cubic-bezier(.34, 1.56, .64, 1);
}

.why-card:hover .why-icon {
  transform: scale(1.12) rotate(-5deg);
}

.icon-a {
  background: #dbeafe;
}

.icon-b {
  background: #d1fae5;
}

.icon-c {
  background: #fef3c7;
}

.why-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.25;
}

.why-card p {
  font-size: 14.5px;
  color: var(--ink-mid);
  line-height: 1.7;
  font-weight: 300;
}

.why-card-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-mid);
  text-decoration: none;
  border-bottom: 1.5px solid currentColor;
  padding-bottom: 2px;
  transition: gap 0.2s ease;
}

.why-card-link:hover {
  gap: 9px;
}

/* stats row */
.why-stats {
  display: flex;
  gap: 0;
  margin-top: 48px;
  background: var(--navy);
  border-radius: var(--radius);
  overflow: hidden;
}

.why-stat {
  flex: 1;
  padding: 28px 24px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.25s ease;
}

.why-stat:last-child {
  border-right: none;
}

.why-stat:hover {
  background: var(--navy-mid);
}

.why-stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: 32px;
  font-weight: 400;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}

.why-stat-num span {
  color: var(--green);
}

.why-stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
  letter-spacing: 0.3px;
}


/* ══════════════════════════════════════
       WHAT STUDENTS THINK
    ══════════════════════════════════════ */
.students-section {
  /* padding: 90px 5% 100px; */
  /* background: var(--navy); */
  background-color: #fff;
  position: relative;
  overflow: hidden;
}

/* decorative circles */
.students-section::before,
.students-section::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  display: none;
}

.students-section::before {
  width: 500px;
  height: 500px;
  top: -200px;
  right: -100px;
  background: radial-gradient(circle, rgba(46, 204, 113, 0.12) 0%, transparent 70%);
}

.students-section::after {
  width: 400px;
  height: 400px;
  bottom: -150px;
  left: -80px;
  background: radial-gradient(circle, rgba(240, 180, 41, 0.1) 0%, transparent 70%);
}

.students-inner {
  /* max-width: 1120px; */
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.students-hdr {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 20px;
}

.students-hdr-left .section-eyebrow {
  background: rgba(46, 204, 113, 0.12);
  border-color: rgba(46, 204, 113, 0.25);
  color: var(--green);
}

.students-hdr-left .section-eyebrow::before {
  background: var(--green);
}

.students-heading {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.3px;
}

.students-heading em {
  font-style: italic;
  color: var(--green);
}

.students-sub {
  margin-top: 12px;
  font-size: 15px;
  /* color: rgba(255, 255, 255, 0.45); */
  font-weight: 300;
  max-width: 440px;
  line-height: 1.65;
}

/* Slider controls */
.slider-controls {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-shrink: 0;
}

.slider-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.slider-btn:hover {
  background: var(--green);
  border-color: var(--green);
  transform: scale(1.08);
}

.slider-btn svg {
  width: 18px;
  height: 18px;
}

/* Track */
.slider-track-wrap {
  overflow: hidden;
  border-radius: var(--radius);
}

.slider-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(.4, 0, .2, 1);
}

/* Video cards */
.video-card {
  flex: 0 0 calc(33% - 15px);
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    aspect-ratio: 6 / 2;
    cursor: pointer;
    background: #f8fafc;
}

.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.video-card:hover img {
  transform: scale(1.04);
}

/* dark overlay */
.video-card-overlay {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(to top, rgba(10, 14, 34, 0.85) 0%, rgba(10, 14, 34, 0.1) 50%, transparent 100%); */
  transition: background 0.3s ease;
  display: none;
}

/* .video-card:hover .video-card-overlay {
  background: linear-gradient(to top, rgba(10, 14, 34, 0.9) 0%, rgba(10, 14, 34, 0.3) 50%, rgba(10, 14, 34, 0.05) 100%);
} */

/* play button */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(.34, 1.56, .64, 1), background 0.2s ease;
}

.video-card:hover .play-btn {
  transform: translate(-50%, -50%) scale(1.15);
  background: var(--green);
  border-color: var(--green);
}

.play-btn svg {
  width: 20px;
  height: 20px;
  margin-left: 3px;
}

/* card text */
.video-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 18px;
}

.video-quote {
  font-family: 'DM Serif Display', serif;
  font-size: 15px;
  font-style: italic;
  color: var(--gold);
  line-height: 1.4;
  margin-bottom: 12px;
}

.video-person {
  display: flex;
  align-items: center;
  gap: 10px;
}

.video-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--green);
  border: 2px solid rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
}

.video-name {
  font-size: 13px;
  font-weight: 700;
  color: #000;
  line-height: 1.2;
}

.video-loc {
  font-size: 11px;
  color: rgb(0 0 0 / 50%);
  font-weight: 300;
}

/* placeholder thumbnails (coloured gradients since no real images) */
/* .thumb-1 { background: linear-gradient(135deg, #1e3a5f 0%, #253060 100%); }
    .thumb-2 { background: linear-gradient(135deg, #1a3a2a 0%, #1e5038 100%); }
    .thumb-3 { background: linear-gradient(135deg, #3a1a1a 0%, #5a2020 100%); }
    .thumb-4 { background: linear-gradient(135deg, #2a1a3a 0%, #3a1f60 100%); }
    .thumb-5 { background: linear-gradient(135deg, #1a2a3a 0%, #203050 100%); }
    .thumb-6 { background: linear-gradient(135deg, #1a3a30 0%, #1e4840 100%); } */

/* face placeholder */
.face-ph {
  position: absolute;
    top: 10px;
    left: 52%;
    transform: translateX(-50%);
    /* width: 90px; */
    /* height: 90px; */
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 3px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    width: 98%;

}

/* dots */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(53, 52, 52, 0.7);
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
  border: none;
  padding: 0;
}

.dot.active {
  background: var(--green);
  transform: scale(1.3);
}

/* ══════════════════════════════════════
       RESPONSIVE
    ══════════════════════════════════════ */
@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .why-stats {
    flex-wrap: wrap;
  }

  .why-stat {
    flex: 1 1 50%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .why-stat:nth-child(2) {
    border-right: none;
  }

  .video-card {
    flex: 0 0 calc(50% - 10px);
  }
}

@media (max-width: 640px) {

  .why-section,
  .students-section {
    padding: 60px 4% 70px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .why-card {
    padding: 28px 22px 26px;
  }

  .why-stats {
    border-radius: var(--radius-sm);
  }

  .why-stat {
    flex: 1 1 100%;
    border-right: none;
    padding: 22px 20px;
  }

  .students-hdr {
    flex-direction: column;
    align-items: flex-start;
  }

  .slider-controls {
    align-self: flex-end;
  }

  .video-card {
    flex: 0 0 calc(85% - 10px);
    aspect-ratio: 3 / 2;
  }
}

@media (max-width: 380px) {
  .video-card {
    flex: 0 0 calc(90% - 10px);
    aspect-ratio: 3 / 2;
  }
}


.acc-main {
  /* padding: 40px 0px 80px; */
  color: #000;
   background: #f8fafc;
}

.container {
  max-width: 790px;
  margin: 0 auto;
  width: 100%;
  padding: 0 15px;
}

.pockets-main h1 {
  font-size: 60px;
  font-weight: bold;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
  color: #111;
  margin: 0 0px 35px;
}

.intro-cont h3 {
  font-size: 35px;
  font-weight: 600;
  color: #111;
  margin: 50px 0;
}

.kind h2 {
  text-align: center;
  font-size: 45px;
  font-weight: 600;
  color: #111;
  margin: 0px 0 30px;
}

/*accordion*/
.accordion-main {
  margin-bottom: 25px;
}

.accordion-main:last-child .accordion_body {
  padding-bottom: 0;
}

.accordion_head {
  background-color: #f5f3f3;
  color: #000000;
  cursor: pointer;
  font-size: 18px;
  padding: 12px 15px;
  border-radius: 5px;
  border: 1px solid 29705a;
  font-weight: bold;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: normal;
  box-shadow: 0 0 10px #ddd;
}

.accordion_body {
  background: transparent;
  font-size: 16px;
  /* text-align: center; */
  padding: 10px 0px;
}

.accordion_body img {
  width: 100%;
  max-width: 230px;
  margin-bottom: 30px;
}

.accordion_body p {
  margin: 0px;
  color: #000000;
}

.accordion_body h3,
.div-bott h3 {
  font-size: 28px;
  font-weight: 600;
  margin: 15px 0;
  color: #1e352e;
}

.div-bott h3 {
  font-size: 35px;
}

.div-bott {
  text-align: center;
}

.div-bott p {
  font-size: 24px;
}

.plusminus {
  float: right;
  font-size: 25px;
  margin-top: -4px;
}

.coll-back {
  background-color: #fff;
  color: #111;
  border: 1px solid #111;
}

.hr-clc {
  height: 2px;
  background: #111;
  margin-top: 15px;
  width: 14px;
  padding: 0;
  border: 0;
  margin-left: -13px;
}

/*media queries*/
@media (min-width:992px) and (max-width:1100px) {
  .pockets-main p {
    font-size: 22px;
    width: 684px;
    margin: 0 auto;
    margin-bottom: 20px !important;
  }

  .accordion_body {
    padding: 35px 40px 5px;
  }

  .accordion_body img {
    max-width: 205px;
    margin-bottom: 20px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .pockets-main {
    padding: 30px 15px;
  }

  .pockets-main h1 {
    font-size: 45px;
    margin: 0 0px 20px;
  }

  .pockets-main p {
    font-size: 20px !important;
    margin-bottom: 20px !important;
    width: 600px;
    margin: 0 auto;
  }

  .intro-cont h3,
  .div-bott h3 {
    font-size: 30px;
    margin: 35px 0;
  }

  .kind h2 {
    font-size: 30px;
    margin: 35px 0 30px;
  }

  .accordion_head {
    font-size: 20px;
    padding: 11px 18px;
  }

  .plusminus {
    font-size: 27px;
    margin-top: -5px;
  }

  .accordion-main {
    margin-bottom: 24px;
  }

  .hr-clc {
    margin-top: 16px;
    width: 15px;
    margin-left: -15px;
  }

  .accordion_body {
    font-size: 18px;
    padding: 30px 40px 5px;
  }

  .accordion_body img {
    width: 100%;
    max-width: 185px;
    margin-bottom: 20px;
  }

  .accordion_body h3 {
    font-size: 24px;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .pockets-main {
    padding: 35px 15px;
  }

  .pockets-main h1 {
    font-size: 40px;
    margin: 0 0px 30px;
  }

  .pockets-main p {
    font-size: 18px !important;
    margin-bottom: 20px !important;
    width: 400px;
    margin: 0 auto;
  }

  .intro-cont h3,
  .div-bott h3 {
    font-size: 26px;
    width: 400px;
    margin: 30px auto;
    line-height: 1.2 !important;
  }

  .div-bott h3 {
    width: unset;
  }

  .kind h2 {
    font-size: 26px;
    margin: 30px 0 30px;
  }

  .accordion_head {
    font-size: 20px;
    padding: 10px 15px;
  }

  .accordion-main {
    margin-bottom: 25px;
  }

  .plusminus {
    font-size: 30px;
    margin-top: -5px;
  }

  .accordion_body {
    padding: 30px 25px 5px;
  }

  .accordion_body img {
    max-width: 170px;
    margin-bottom: 20px;
  }

  .hr-clc {
    margin-top: 17px;
    width: 16px;
  }

  .accordion_body h3 {
    font-size: 22px;
    margin: 15px 0;
  }
   .hero-right{
    display: none;
  }
}

@media (max-width:575px) {
  .pockets-main {
    padding: 15px 0px;
  }

  .pockets-main h1 {
    font-size: 30px;
    margin: 0 0px 15px;
  }

  .pockets-main p {
    font-size: 16px !important;
    margin-bottom: 15px !important;
  }

  .intro-cont h3,
  .kind h2,
  .div-bott h3 {
    margin: 30px 0px;
    line-height: normal !important;
    font-size: 24px;
  }

  .accordion_head {
    font-size: 18px;
    padding: 8px 12px
  }

  .plusminus {
    font-size: 27px;
    margin-top: -7px;
  }

  .accordion-main {
    margin-bottom: 22px;
  }

  .accordion_body {
    font-size: 18px;
    padding: 20px 20px 5px;
  }

  .accordion_body img {
    max-width: 150px;
    margin-bottom: 20px;
  }

  .accordion_body h3 {
    font-size: 18px;
    margin: 10px 0;
    line-height: normal;
  }

  .hr-clc {
    height: 2px;
    margin-top: 16px;
    width: 15px;
    margin-left: -15px;
  }
  .hero-right{
    display: none;
  }
}