/* =========================================================
   ks-style.css  (OPTIMIZED + FIXED)
   - Single file, conflict-free
   - Lists/bullets fix ✅
   - Removed duplicates ✅
   - Program cards vs normal cards conflict fixed ✅ (scoped by grad classes)
   - Parallax list no longer overwrites global lists ✅
   ========================================================= */

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

/* =========================
   ROOT + RESET
========================= */
:root{
  --primary:#6A2AA6;
  --primary2:#8A3BC9;
  --accent:#FF4D8D;
  --teal:#19B6C6;

  --strong:#000;
  --text:#0f172a;
  --muted:#64748b;

  --bg:#f6f7fb;
  --card:#ffffff;
  --border:rgba(2,6,23,.10);

  --shadow:0 16px 40px rgba(2,6,23,.12);
  --shadow2:0 10px 26px rgba(2,6,23,.10);

  --r14:14px;
  --r18:18px;
  --r22:22px;

  --container:1160px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body.ks-body{
  margin:0;
  font-family:Poppins,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

img{ max-width:100%; height:auto; display:block; }
a{ color:inherit; text-decoration:none; }
a:hover{ text-decoration:none; }

h1,h2,h3,h4,h5,h6{ color:var(--strong); margin:0; }

/* =========================
   CONTAINER + SECTION + GRID
========================= */
.ks-container{
  width:min(var(--container), calc(100% - 32px));
  margin:0 auto;
}

.ks-section{ padding:56px 0; }
.ks-section--programs{ padding-top:40px; }
.ks-section--page{ padding-top:44px; }

.ks-section__head{ text-align:center; margin-bottom:26px; }
.ks-section__head .ks-title{ text-align:center; }

.ks-grid{ display:grid; gap:18px; }
.ks-grid--4{ grid-template-columns:repeat(4, minmax(0,1fr)); }
.ks-grid--3{ grid-template-columns:repeat(3, minmax(0,1fr)); }

@media (max-width:991px){
  .ks-grid--4{ grid-template-columns:repeat(2, minmax(0,1fr)); }
  .ks-grid--3{ grid-template-columns:repeat(2, minmax(0,1fr)); }
}
@media (max-width:640px){
  .ks-grid--4,.ks-grid--3{ grid-template-columns:1fr; }
  .ks-section{ padding:44px 0; }
}

/* =========================
   TYPOGRAPHY
========================= */
.ks-title{
  font-size:clamp(28px, 3.2vw, 46px);
  line-height:1.12;
  letter-spacing:-.02em;
  margin:0;
}
.ks-title--left{ text-align:left; }

.ks-subtitle{
  max-width:820px;
  margin:10px auto 0;
  color:var(--muted);
  line-height:1.7;
  font-size:15px;
}

.ks-bodytext{
  margin-top:14px;
  color:#334155;
  line-height:1.8;
  font-size:15px;
}

.ks-text{
  margin:0 0 12px;
  color:#334155;
  line-height:1.85;
  font-size:14px;
}
.ks-text--accent{ margin-top:10px; }

.ks-lead{
  color:rgba(255,255,255,.92);
  line-height:1.75;
  font-size:16px;
  margin:14px 0;
}

/* =========================
   LISTS (GLOBAL) ✅ FIXED
========================= */
.ks-list{
  margin:10px 0 14px;
  padding-left:18px;
  list-style:disc;
}
.ks-list li{
  margin:8px 0;
  line-height:1.7;
}

/* Arrow list variant */
.ks-list--arrow{
  list-style:none;
  padding-left:0;
  margin:10px 0 14px;
}
.ks-list--arrow li{
  position:relative;
  padding-left:26px;
  margin:10px 0;
  line-height:1.7;
}
.ks-list--arrow li:before{
  content:"➤";
  position:absolute;
  left:0;
  top:0;
  line-height:1.7;
}

/* Steps / Roadmap */
.ks-steps{
  margin:14px 0 0;
  padding-left:18px;
}
.ks-steps>li{ margin:12px 0; }

/* =========================
   HEADER / NAVBAR
========================= */
.ks-header{
  position:sticky;
  top:0;
  z-index:999;
  background:rgba(255,255,255,.86);
  backdrop-filter:blur(12px);
  border-bottom:1px solid var(--border);
}
.ks-header__wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:12px 0;
}

.ks-brand__logo{ height:56px; width:auto; }

.ks-nav__toggle{
  display:none;
  border:0;
  background:linear-gradient(135deg, rgba(106,42,166,.12), rgba(255,77,141,.10));
  padding:10px 12px;
  border-radius:12px;
  cursor:pointer;
}
.ks-nav__toggle i{ color:var(--primary); font-size:18px; }

.ks-nav__list{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  align-items:center;
  gap:6px;
  flex-wrap:wrap;
}
.ks-nav__link{
  display:inline-flex;
  align-items:center;
  padding:12px 12px;
  border-radius:12px;
  font-weight:600;
  color:#1f2a44;
  transition:all .2s ease;
}
.ks-nav__link:hover{
  background:rgba(106,42,166,.08);
  color:var(--primary);
}
.ks-nav__item--active .ks-nav__link{
  background:linear-gradient(135deg, rgba(106,42,166,.18), rgba(255,77,141,.12));
  color:var(--primary);
}

/* Dropdown desktop */
.ks-nav__item--dropdown{ position:relative; }
.ks-nav__dropdown{
  list-style:none;
  padding:10px;
  margin:0;
  position:absolute;
  top:calc(100% + 10px);
  left:0;
  min-width:240px;
  border-radius:16px;
  background:var(--card);
  border:1px solid var(--border);
  box-shadow:var(--shadow);
  display:none;
}
.ks-nav__item--dropdown:hover .ks-nav__dropdown{ display:block; }
.ks-nav__drop-link{
  display:block;
  padding:10px 12px;
  border-radius:12px;
  color:#1f2a44;
  font-weight:500;
}
.ks-nav__drop-link:hover{
  background:rgba(106,42,166,.08);
  color:var(--primary);
}

/* Mobile nav + dropdown fix */
@media (max-width:991px){
  .ks-header__wrap{ flex-wrap:wrap; align-items:center; }
  .ks-nav__toggle{ display:inline-flex; align-items:center; justify-content:center; margin-left:auto; }

  .ks-nav{ display:none; width:100%; margin-top:10px; }
  .ks-nav.ks-nav--open{ display:block; }

  .ks-nav__list{
    width:100%;
    flex-direction:column;
    align-items:stretch;
    justify-content:flex-start;
    gap:8px;
    padding:10px;
    background:rgba(255,255,255,.88);
    border:1px solid var(--border);
    border-radius:16px;
    box-shadow:var(--shadow2);
  }
  .ks-nav__link{
    width:100%;
    justify-content:space-between;
    padding:12px 14px;
  }

  /* disable hover dropdown */
  .ks-nav__item--dropdown:hover .ks-nav__dropdown{ display:none; }

  .ks-nav__dropdown{
    position:static;
    display:none;
    margin:6px 0 0;
    padding:8px;
    border-radius:14px;
    background:rgba(106,42,166,.05);
    border:1px solid rgba(106,42,166,.12);
    box-shadow:none;
    min-width:unset;
  }
  .ks-nav__item--dropdown.ks-drop--open > .ks-nav__dropdown{ display:block; }
}

/* =========================
   PAGE HEADER + BREADCRUMB
========================= */
.ks-pagehead{
  padding:34px 0;
  background:
    linear-gradient(135deg, rgba(106,42,166,.22), rgba(255,77,141,.12)),
    radial-gradient(800px 200px at 15% 20%, rgba(25,182,198,.18), transparent 60%),
    radial-gradient(700px 200px at 85% 80%, rgba(138,59,201,.18), transparent 60%);
  border-bottom:1px solid rgba(2,6,23,.08);
}
.ks-pagehead__inner{ text-align:center; }
.ks-pagehead__title{
  margin:0;
  font-size:clamp(26px, 3vw, 40px);
  line-height:1.15;
  color:#0f172a;
}
.ks-breadcrumb{
  margin-top:10px;
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.70);
  border:1px solid rgba(2,6,23,.08);
  box-shadow:var(--shadow2);
  color:#334155;
  font-size:13px;
}
.ks-breadcrumb__link{ color:var(--primary); font-weight:600; }
.ks-breadcrumb__sep{ opacity:.55; }
.ks-breadcrumb__current{ color:#0f172a; }

@media (max-width:640px){
  .ks-breadcrumb{ border-radius:16px; }
}

/* =========================
   HERO / SLIDER
========================= */
.ks-hero__slider{
  position:relative;
  overflow:hidden;
  background:#111;
}
.ks-hero__slide{ display:none; }
.ks-hero__slide--active{ display:block; }
.ks-hero__img{
  width:100%;
  height:clamp(240px, 42vw, 560px);
  object-fit:cover;
  filter:saturate(1.05) contrast(1.02);
}

.ks-hero__control{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:44px;
  height:44px;
  border-radius:999px;
  border:0;
  cursor:pointer;
  background:rgba(255,255,255,.88);
  box-shadow:var(--shadow2);
  font-size:26px;
  line-height:1;
  display:flex;
  align-items:center;
  justify-content:center;
}
.ks-hero__control--prev{ left:16px; }
.ks-hero__control--next{ right:16px; }

.ks-hero__dots{
  position:absolute;
  left:50%;
  bottom:14px;
  transform:translateX(-50%);
  display:flex;
  gap:8px;
}
.ks-hero__dot{
  width:10px;
  height:10px;
  border-radius:999px;
  background:rgba(255,255,255,.55);
}
.ks-hero__dot--active{ background:var(--accent); }

/* =========================
   CARDS
   - Normal card (for generic pages)
   - Program cards (ONLY when grad class present) ✅
========================= */

/* Generic card (safe to use anywhere) */
.ks-card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--r22);
  box-shadow:var(--shadow2);
  padding:16px;
}

/* Program cards: apply ONLY when grad modifier exists */
.ks-card.ks-card--grad-1,
.ks-card.ks-card--grad-2,
.ks-card.ks-card--grad-3,
.ks-card.ks-card--grad-4{
  border:none;
  padding:22px 20px;
  color:#fff;
  box-shadow:var(--shadow2);
  position:relative;
  overflow:hidden;
  transition:transform .22s ease, box-shadow .22s ease;
  min-height:260px;
}
.ks-card.ks-card--grad-1:hover,
.ks-card.ks-card--grad-2:hover,
.ks-card.ks-card--grad-3:hover,
.ks-card.ks-card--grad-4:hover{
  transform:translateY(-6px);
  box-shadow:var(--shadow);
}
.ks-card__icon{ width:72px; height:auto; margin-bottom:14px; }
.ks-card__title{ margin:0 0 8px; font-size:18px; line-height:1.35; }
.ks-card__text{ margin:0; color:rgba(255,255,255,.92); font-size:14px; line-height:1.75; }
.ks-card.ks-card--grad-1:after,
.ks-card.ks-card--grad-2:after,
.ks-card.ks-card--grad-3:after,
.ks-card.ks-card--grad-4:after{
  content:"";
  position:absolute;
  right:-70px;
  top:-70px;
  width:220px;
  height:220px;
  border-radius:999px;
  background:rgba(255,255,255,.14);
}
.ks-card--grad-1{ background:linear-gradient(135deg, var(--primary), var(--primary2)); }
.ks-card--grad-2{ background:linear-gradient(135deg, #0ea5e9, #22c55e); }
.ks-card--grad-3{ background:linear-gradient(135deg, #f97316, var(--accent)); }
.ks-card--grad-4{ background:linear-gradient(135deg, #14b8a6, #6366f1); }

/* Buttons */
.ks-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 18px;
  border-radius:999px;
  font-weight:600;
  color:#fff;
  background:linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow:var(--shadow2);
  transition:transform .2s ease, box-shadow .2s ease;
  border:0;
  cursor:pointer;
}
.ks-btn:hover{ transform:translateY(-2px); box-shadow:var(--shadow); }
.ks-btn--wide{ width:100%; }
.ks-btn--primary{ background:#111; color:#fff; width:100%; }
.ks-btn--primary:hover{ filter:brightness(1.05); }

.ks-btn--light{
  border:0;
  cursor:pointer;
  padding:12px 22px;
  border-radius:999px;
  font-weight:700;
  color:#1b1130;
  background:linear-gradient(135deg, rgba(255,255,255,.95), rgba(255,255,255,.82));
  box-shadow:0 12px 28px rgba(2,6,23,.18);
  transition:transform .18s ease, box-shadow .18s ease;
}
.ks-btn--light:hover{
  transform:translateY(-2px);
  box-shadow:0 16px 34px rgba(2,6,23,.22);
}

.ks-btn--ghost{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 16px;
  border-radius:999px;
  border:1px solid rgba(2,6,23,.14);
  background:rgba(255,255,255,.70);
  color:#0f172a;
  font-weight:700;
  box-shadow:var(--shadow2);
  transition:transform .18s ease, box-shadow .18s ease;
}
.ks-btn--ghost:hover{
  transform:translateY(-2px);
  box-shadow:0 16px 34px rgba(2,6,23,.12);
}

/* =========================
   ABOUT / SPLIT
========================= */
.ks-split{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:18px;
  align-items:stretch;
}
.ks-media__img{
  border-radius:var(--r22);
  box-shadow:var(--shadow2);
  width:100%;
  height:100%;
  object-fit:cover;
}
.ks-panel{
  border-radius:var(--r22);
  background:var(--card);
  border:1px solid var(--border);
  box-shadow:var(--shadow2);
  padding:22px;
}
@media (max-width:991px){
  .ks-split{ grid-template-columns:1fr; }
}

/* =========================
   STATS
========================= */
.ks-stats{
  padding:34px 0;
  margin:18px 0 0;
  background:linear-gradient(135deg, rgba(25,182,198,.14), rgba(14,165,233,.10));
  border-top:1px solid rgba(255,255,255,.55);
  border-bottom:1px solid rgba(255,255,255,.55);
}
.ks-stat{
  background:rgba(255,255,255,.85);
  border:1px solid rgba(255,255,255,.65);
  border-radius:var(--r22);
  padding:18px 14px;
  box-shadow:var(--shadow2);
  text-align:center;
  transition:transform .2s ease;
}
.ks-stat:hover{ transform:translateY(-4px); }
.ks-stat__value{
  font-size:34px;
  font-weight:700;
  color:var(--primary);
  letter-spacing:-.02em;
}
.ks-stat__label{
  margin-top:8px;
  color:#0f172a;
  font-size:14px;
  line-height:1.25;
  opacity:.92;
}

/* =========================
   FEATURES
========================= */
.ks-feature{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--r18);
  box-shadow:var(--shadow2);
  padding:16px;
  display:flex;
  gap:12px;
  align-items:flex-start;
  transition:transform .2s ease, box-shadow .2s ease;
}
.ks-feature:hover{ transform:translateY(-4px); box-shadow:var(--shadow); }
.ks-feature__icon{
  width:54px;
  height:54px;
  border-radius:14px;
  background:linear-gradient(135deg, rgba(106,42,166,.14), rgba(255,77,141,.12));
  display:flex;
  align-items:center;
  justify-content:center;
  flex:0 0 auto;
}
.ks-feature__icon img{ width:30px; height:auto; }
.ks-feature__title{ margin:0 0 6px; font-size:16px; line-height:1.35; }
.ks-feature__text{ margin:0; color:var(--muted); }

/* =========================
   GALLERY (SECTION)
========================= */
.ks-section--gallery{
  background:linear-gradient(180deg, rgba(106,42,166,.06), rgba(255,77,141,.05));
}
.ks-gallery__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:16px;
}
.ks-gallery{ gap:14px; }
.ks-gallery__item{
  border-radius:var(--r18);
  overflow:hidden;
  border:1px solid var(--border);
  box-shadow:var(--shadow2);
  transition:transform .22s ease, box-shadow .22s ease;
}
.ks-gallery__item:hover{ transform:translateY(-6px); box-shadow:var(--shadow); }
.ks-gallery__item img{
  width:100%;
  height:220px;
  object-fit:cover;
}
@media (max-width:640px){
  .ks-gallery__top{ flex-direction:column; align-items:flex-start; }
  .ks-gallery__item img{ height:200px; }
}

/* =========================
   STRIP
========================= */
.ks-strip{
  padding:40px 0;
  background:linear-gradient(135deg, rgba(255,77,141,.12), rgba(255,187,0,.10));
}
.ks-stripbox{
  background:rgba(255,255,255,.86);
  border:1px solid rgba(255,255,255,.60);
  border-radius:var(--r22);
  box-shadow:var(--shadow2);
  padding:22px 18px;
  transition:transform .2s ease;
}
.ks-stripbox:hover{ transform:translateY(-4px); }
.ks-stripbox__title{ margin:0 0 6px; font-size:18px; }
.ks-stripbox__text{ margin:0; color:var(--muted); }

/* =========================
   PARALLAX ✅ (scoped list, doesn't break global)
========================= */
.ks-parallax{ padding:0 0 56px; }
.ks-parallax__bg{
  border-radius:var(--r22);
  overflow:hidden;
  box-shadow:var(--shadow);
  background:
    linear-gradient(135deg, rgba(106,42,166,.72), rgba(255,77,141,.30)),
    url("../images/slider.jpg");
  background-size:cover;
  background-position:center;
  background-attachment:fixed;
}
.ks-parallax__content{
  padding:54px 0;
  max-width:560px;
}
@media (max-width:991px){
  .ks-parallax__bg{ background-attachment:scroll; }
  .ks-parallax__content{ padding:44px 0; }
}

/* Parallax list only inside parallax */
.ks-parallax .ks-list{
  list-style:none;
  padding:0;
  margin:12px 0 0;
}
.ks-parallax .ks-list__item{
  position:relative;
  padding:9px 0 9px 30px;
  color:#fff;
  font-weight:500;
}
.ks-parallax .ks-list__item:before{
  content:"";
  position:absolute;
  left:0;
  top:14px;
  width:18px;
  height:18px;
  border-radius:6px;
  background:rgba(255,255,255,.18);
  border:1px solid rgba(255,255,255,.35);
}

/* =========================
   TESTIMONIALS
========================= */
.ks-testimonial{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--r22);
  box-shadow:var(--shadow2);
  padding:18px;
  transition:transform .2s ease, box-shadow .2s ease;
}
.ks-testimonial:hover{ transform:translateY(-4px); box-shadow:var(--shadow); }
.ks-testimonial__text{ margin:0; color:#334155; line-height:1.8; }
.ks-testimonial__user{
  display:flex;
  align-items:center;
  gap:12px;
  margin-top:14px;
}
.ks-testimonial__avatar{
  width:54px;
  height:54px;
  border-radius:999px;
  object-fit:cover;
  border:2px solid rgba(106,42,166,.22);
}
.ks-testimonial__name{
  margin:0;
  font-size:16px;
  font-weight:700;
  color:var(--primary);
}

/* =========================
   FOOTER
========================= */
.ks-footer{
  background:linear-gradient(135deg, #1b1130, #2a1347);
  color:#fff;
}
.ks-footer__grid{
  padding:54px 0 36px;
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:18px;
}
.ks-footer__logo{ height:56px; width:auto; margin-bottom:14px; }
.ks-footer__title{ margin:0 0 12px; font-size:18px; }
.ks-footer__text{
  margin:0;
  color:rgba(255,255,255,.78);
  line-height:1.75;
  font-size:14px;
}
.ks-footer__label{ margin:14px 0 6px; color:#fff; }

.ks-social{
  list-style:none;
  padding:0;
  margin:14px 0 0;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.ks-social__link{
  width:38px;
  height:38px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.14);
  color:#fff;
  transition:transform .2s ease, background .2s ease;
}
.ks-social__link:hover{
  transform:translateY(-2px);
  background:rgba(255,77,141,.18);
}

.ks-footerlinks,
.ks-hours{ list-style:none; padding:0; margin:0; }

.ks-footerlinks{ display:grid; gap:8px; }
.ks-footerlinks__link{ color:rgba(255,255,255,.80); font-weight:500; }
.ks-footerlinks__link:hover{ color:#fff; text-decoration:underline; }

.ks-hours li{
  color:rgba(255,255,255,.80);
  line-height:1.6;
  margin-bottom:10px;
}

.ks-footerbar{
  border-top:1px solid rgba(255,255,255,.10);
  background:#130a22;
}
.ks-footerbar__inner{ padding:14px 0; }
.ks-footerbar__copy{
  margin:0;
  text-align:center;
  color:rgba(255,255,255,.80);
  font-size:13px;
}

@media (max-width:991px){
  .ks-footer__grid{ grid-template-columns:repeat(2, minmax(0,1fr)); }
}
@media (max-width:640px){
  .ks-footer__grid{ grid-template-columns:1fr; }
}

/* =========================
   ARTICLE / ABOUT PAGES
========================= */
.ks-article{
  display:grid;
  grid-template-columns:1fr;
  gap:18px;
}
.ks-article__hero{
  border-radius:var(--r22);
  overflow:hidden;
  border:1px solid var(--border);
  box-shadow:var(--shadow);
}
.ks-article__img{
  width:100%;
  height:clamp(220px, 34vw, 420px);
  object-fit:cover;
}
.ks-article__body{ padding:22px; }
.ks-article__title{
  margin:0 0 10px;
  font-size:22px;
  line-height:1.25;
  color:#0f172a;
}
@media (max-width:640px){
  .ks-article__body{ padding:18px; }
}

.ks-about{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:18px;
  align-items:stretch;
  margin-top:6px;
}
.ks-about__media{
  border-radius:var(--r22);
  overflow:hidden;
  border:1px solid var(--border);
  box-shadow:var(--shadow);
}
.ks-about__img{
  width:100%;
  height:100%;
  min-height:320px;
  object-fit:cover;
}
.ks-about__content{ padding:22px; }
.ks-about__title{
  margin:0 0 10px;
  font-size:22px;
  line-height:1.25;
  color:#0f172a;
}
@media (max-width:991px){
  .ks-about{ grid-template-columns:1fr; }
  .ks-about__img{ min-height:240px; }
}

.ks-spacer{ height:18px; }

/* =========================
   FORMS (ADMISSION)
========================= */
.ks-formwrap{ display:flex; justify-content:center; }

.ks-formcard{
  width:min(920px, 100%);
  border-radius:var(--r22);
  overflow:hidden;
  border:1px solid var(--border);
  box-shadow:var(--shadow);
  background:
    linear-gradient(135deg, rgba(106,42,166,.82), rgba(255,77,141,.28)),
    radial-gradient(500px 200px at 20% 30%, rgba(25,182,198,.26), transparent 60%),
    #2a1347;
  padding:18px;
}
.ks-formcard__head{
  padding:18px 16px 10px;
  text-align:center;
  color:#fff;
}
.ks-formcard__title{
  margin:0;
  font-size:26px;
  line-height:1.2;
}
.ks-formcard__subtitle{
  margin:8px 0 0;
  color:rgba(255,255,255,.85);
  font-size:14px;
  line-height:1.6;
}

/* inner white panel */
.ks-form{
  background:rgba(255,255,255,.92);
  border:1px solid rgba(255,255,255,.35);
  border-radius:18px;
  padding:16px;
  box-shadow:0 10px 26px rgba(2,6,23,.10);
}
.ks-form__grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:14px;
}

.ks-field{
  display:flex;
  flex-direction:column;
  gap:7px;
}
.ks-field--full{ grid-column:1 / -1; }

.ks-label{
  font-weight:600;
  font-size:13px;
  color:#0f172a;
}

.ks-input, .ks-select, .ks-textarea{
  width:100%;
  border-radius:14px;
  border:1px solid rgba(2,6,23,.14);
  padding:12px 12px;
  font-size:14px;
  outline:none;
  background:#fff;
  transition:border-color .18s ease, box-shadow .18s ease;
}
.ks-input:focus, .ks-select:focus, .ks-textarea:focus{
  border-color:rgba(106,42,166,.55);
  box-shadow:0 0 0 4px rgba(106,42,166,.12);
}
.ks-textarea{ resize:vertical; min-height:110px; }

.ks-form__actions{
  margin-top:14px;
  display:flex;
  justify-content:center;
}

@media (max-width:700px){
  .ks-form__grid{ grid-template-columns:1fr; }
  .ks-formcard{ padding:14px; }
  .ks-form{ padding:14px; }
}

/* =========================
   FAQ / ACCORDION
========================= */
.ks-faq{ width:min(940px, 100%); margin:0 auto; }
.ks-faq__head{ text-align:center; margin-bottom:18px; }
.ks-faq__title{ margin:0; font-size:24px; line-height:1.25; color:#0f172a; }
.ks-faq__subtitle{
  margin:8px auto 0;
  max-width:720px;
  color:var(--muted);
  line-height:1.7;
  font-size:14px;
}
.ks-accordion{ display:grid; gap:12px; }

.ks-acc{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--r18);
  box-shadow:var(--shadow2);
  overflow:hidden;
}
.ks-acc__btn{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:14px 16px;
  border:0;
  background:linear-gradient(135deg, rgba(106,42,166,.10), rgba(255,77,141,.06));
  cursor:pointer;
  text-align:left;
}
.ks-acc__q{ font-weight:700; color:#0f172a; font-size:15px; }
.ks-acc__icon{
  width:34px;
  height:34px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
  color:var(--primary);
  background:rgba(255,255,255,.85);
  border:1px solid rgba(2,6,23,.10);
  flex:0 0 auto;
  transition:transform .18s ease;
}
.ks-acc__panel{ display:none; padding:0 16px 16px; }
.ks-acc__panel--open{ display:block; }
.ks-acc .ks-bodytext{ margin:12px 0 0; }
.ks-acc__btn[aria-expanded="true"] .ks-acc__icon{ transform:rotate(45deg); }

@media (max-width:640px){
  .ks-acc__btn{ padding:13px 14px; }
  .ks-acc__panel{ padding:0 14px 14px; }
}

/* =========================
   BLOG DETAIL
========================= */
.ks-post{
  width:min(980px, 100%);
  margin:0 auto;
  display:grid;
  gap:16px;
}
.ks-post__cover{
  border-radius:var(--r22);
  overflow:hidden;
  border:1px solid var(--border);
  box-shadow:var(--shadow);
}
.ks-post__coverimg{
  width:100%;
  height:clamp(220px, 34vw, 440px);
  object-fit:cover;
}
.ks-post__body{ padding:22px; }
@media (max-width:640px){
  .ks-post__body{ padding:18px; }
}

.ks-post__meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:10px;
}
.ks-chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(2,6,23,.10);
  background:rgba(255,255,255,.70);
  color:#334155;
  font-size:12px;
  box-shadow:var(--shadow2);
}
.ks-chip i{ color:var(--primary); }
.ks-post__title{
  margin:0 0 10px;
  font-size:clamp(18px, 2.2vw, 26px);
  line-height:1.25;
  color:#0f172a;
}
.ks-post__content{ display:grid; gap:12px; }
.ks-post__actions{ margin-top:14px; display:flex; justify-content:flex-start; }

/* =========================
   BLOG LISTING
========================= */
.ks-bloghead{
  width:min(1100px, 100%);
  margin:0 auto 16px;
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:14px;
}
.ks-bloghead__title{ margin:0; font-size:22px; line-height:1.2; color:#0f172a; }
.ks-bloghead__sub{ margin:8px 0 0; color:var(--muted); line-height:1.6; font-size:14px; }

.ks-blogtools{ display:flex; gap:10px; align-items:center; }
.ks-blogsearch, .ks-blogselect{
  border-radius:999px;
  border:1px solid rgba(2,6,23,.14);
  background:rgba(255,255,255,.85);
  padding:10px 14px;
  font-size:14px;
  outline:none;
  box-shadow:var(--shadow2);
}
.ks-blogsearch{ width:min(260px, 44vw); }
.ks-blogsearch:focus, .ks-blogselect:focus{
  border-color:rgba(106,42,166,.55);
  box-shadow:0 0 0 4px rgba(106,42,166,.12);
}

.ks-bloggrid{
  width:min(1100px, 100%);
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:16px;
}
.ks-blogcard{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--r22);
  overflow:hidden;
  box-shadow:var(--shadow2);
  display:flex;
  flex-direction:column;
  transition:transform .18s ease, box-shadow .18s ease;
}
.ks-blogcard:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 44px rgba(2,6,23,.14);
}
.ks-blogcard__img{ display:block; border-bottom:1px solid var(--border); }
.ks-blogcard__img img{ width:100%; height:210px; object-fit:cover; display:block; }
.ks-blogcard__body{
  padding:16px;
  display:flex;
  flex-direction:column;
  gap:10px;
  flex:1;
}
.ks-blogcard__meta{ display:flex; flex-wrap:wrap; gap:8px; }
.ks-blogcard__title{ margin:0; font-size:16px; line-height:1.35; }
.ks-blogcard__title a{ color:#0f172a; text-decoration:none; }
.ks-blogcard__title a:hover{ color:var(--primary); }
.ks-blogcard__text{ margin:0; color:#334155; font-size:14px; line-height:1.7; }
.ks-blogcard__actions{ margin-top:auto; display:flex; justify-content:flex-start; }

.ks-pagination{
  width:min(1100px, 100%);
  margin:18px auto 0;
  display:flex;
  gap:10px;
  justify-content:center;
  flex-wrap:wrap;
}
.ks-pagebtn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:42px;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(2,6,23,.14);
  background:rgba(255,255,255,.78);
  color:#0f172a;
  text-decoration:none;
  font-weight:700;
  box-shadow:var(--shadow2);
  transition:transform .18s ease, box-shadow .18s ease;
}
.ks-pagebtn:hover{ transform:translateY(-2px); box-shadow:0 16px 34px rgba(2,6,23,.12); }
.ks-pagebtn--active{
  border-color:rgba(106,42,166,.55);
  background:linear-gradient(135deg, rgba(106,42,166,.16), rgba(255,77,141,.10));
}
.ks-pagebtn--disabled{ opacity:.55; pointer-events:none; }

@media (max-width:980px){
  .ks-bloggrid{ grid-template-columns:repeat(2, minmax(0,1fr)); }
  .ks-bloghead{ align-items:flex-start; flex-direction:column; }
  .ks-blogtools{ width:100%; }
  .ks-blogsearch{ flex:1; width:auto; }
}
@media (max-width:620px){
  .ks-bloggrid{ grid-template-columns:1fr; }
  .ks-blogcard__img img{ height:200px; }
}

/* =========================
   BRANCHES
========================= */
.ks-divider{
  width:min(1100px, 100%);
  margin:16px auto;
  height:1px;
  background:rgba(2,6,23,.10);
  border-radius:999px;
}

.ks-branchFilter{
  width:min(1100px, 100%);
  margin:0 auto;
  background:linear-gradient(135deg, rgba(106,42,166,.10), rgba(255,77,141,.06));
  border:1px solid rgba(2,6,23,.10);
  border-radius:var(--r22);
  box-shadow:var(--shadow2);
  padding:16px;
}
.ks-branchFilter__head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:12px;
  margin-bottom:12px;
}
.ks-branchFilter__title{ margin:0; font-size:22px; line-height:1.2; color:#0f172a; }
.ks-branchFilter__sub{ margin:8px 0 0; color:var(--muted); font-size:14px; line-height:1.6; }

.ks-branchForm{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:12px;
}
.ks-field--actions{ display:flex; align-items:flex-end; }

.ks-branchGrid{
  width:min(1100px, 100%);
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:16px;
}
.ks-branchCard{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--r22);
  padding:16px;
  box-shadow:var(--shadow2);
  transition:transform .18s ease, box-shadow .18s ease;
}
.ks-branchCard:hover{ transform:translateY(-4px); box-shadow:0 18px 44px rgba(2,6,23,.14); }

.ks-branchCard__top{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:10px;
  margin-bottom:10px;
}
.ks-branchCard__title{ margin:0; font-size:16px; line-height:1.25; color:#0f172a; letter-spacing:.2px; }

.ks-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:6px 10px;
  border-radius:999px;
  font-weight:800;
  font-size:12px;
  background:rgba(106,42,166,.12);
  border:1px solid rgba(106,42,166,.18);
  color:#3b1a6d;
  white-space:nowrap;
}
.ks-branchCard__addr{ margin:0; color:#334155; font-size:14px; line-height:1.7; }

.ks-branchCard__meta{
  margin-top:12px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.ks-metaLink{
  display:inline-flex;
  gap:8px;
  align-items:center;
  padding:9px 12px;
  border-radius:999px;
  border:1px solid rgba(2,6,23,.12);
  background:rgba(255,255,255,.75);
  text-decoration:none;
  color:#0f172a;
  font-weight:700;
  font-size:13px;
  box-shadow:var(--shadow2);
  transition:transform .18s ease, border-color .18s ease;
}
.ks-metaLink:hover{
  border-color:rgba(106,42,166,.35);
  transform:translateY(-1px);
}

@media (max-width:980px){
  .ks-branchForm{ grid-template-columns:repeat(2, minmax(0,1fr)); }
  .ks-branchFilter__head{ flex-direction:column; align-items:flex-start; }
}
@media (max-width:640px){
  .ks-branchForm{ grid-template-columns:1fr; }
  .ks-branchGrid{ grid-template-columns:1fr; }
  .ks-branchFilter{ padding:14px; }
}

/* =========================
   CEO MESSAGE
========================= */
.ks-ceo{ width:min(1100px, 100%); margin:0 auto; }
.ks-ceo__grid{
  display:grid;
  grid-template-columns:360px minmax(0,1fr);
  gap:18px;
  align-items:start;
}

.ks-ceoCard{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--r22);
  overflow:hidden;
  box-shadow:var(--shadow2);
  position:sticky;
  top:18px;
}
.ks-ceoCard__photo{
  aspect-ratio:4 / 3;
  background:linear-gradient(135deg, rgba(106,42,166,.14), rgba(255,77,141,.10));
  display:flex;
  align-items:center;
  justify-content:center;
}
.ks-ceoCard__img{ width:100%; height:100%; object-fit:cover; display:block; }
.ks-ceoCard__body{ padding:14px; }
.ks-ceoCard__name{ margin:0; font-size:18px; color:#0f172a; line-height:1.25; }
.ks-ceoCard__role{ margin:6px 0 10px; color:var(--muted); font-weight:700; font-size:13px; }

.ks-ceoCard__mini{ display:grid; gap:10px; margin:10px 0 12px; }
.ks-miniItem{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:10px;
  padding:10px 12px;
  border-radius:16px;
  border:1px solid rgba(2,6,23,.10);
  background:rgba(255,255,255,.70);
  box-shadow:var(--shadow2);
}
.ks-miniItem__k{ font-weight:900; font-size:12px; color:#0f172a; opacity:.9; }
.ks-miniItem__v{
  font-weight:800;
  font-size:12px;
  color:#3b1a6d;
  text-decoration:none;
  text-align:right;
  line-height:1.3;
}
.ks-miniItem__v:hover{ text-decoration:underline; }

.ks-ceoMsg{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--r22);
  box-shadow:var(--shadow2);
  padding:18px;
  overflow:hidden;
}
.ks-ceoMsg__top{
  padding-bottom:12px;
  border-bottom:1px solid rgba(2,6,23,.10);
  margin-bottom:12px;
}
.ks-ceoMsg__tag{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:7px 12px;
  border-radius:999px;
  font-weight:900;
  font-size:12px;
  background:rgba(255,77,141,.10);
  border:1px solid rgba(255,77,141,.18);
  color:#7a1a47;
}
.ks-ceoMsg__title{ margin:10px 0 8px; font-size:24px; line-height:1.18; color:#0f172a; }
.ks-ceoMsg__lead{ margin:0; color:#334155; font-size:14px; line-height:1.75; }
.ks-ceoMsg__content p{ margin:0 0 12px; color:#334155; font-size:14px; line-height:1.85; }

.ks-ceoMsg__sign{
  margin-top:14px;
  padding-top:12px;
  border-top:1px dashed rgba(2,6,23,.18);
}
.ks-sign__line{
  width:72px;
  height:3px;
  border-radius:999px;
  background:rgba(106,42,166,.55);
  margin-bottom:10px;
}
.ks-sign__name{ margin:0; color:#0f172a; }
.ks-sign__meta{ margin:6px 0 0; color:var(--muted); font-weight:700; font-size:13px; line-height:1.5; }

@media (max-width:980px){
  .ks-ceo__grid{ grid-template-columns:1fr; }
  .ks-ceoCard{ position:relative; top:auto; }
}

/* =========================
   CONTACT
========================= */
.ks-contact{ width:min(1100px, 100%); margin:0 auto; }
.ks-contact__head{ margin-bottom:14px; }
.ks-contact__title{ margin:0; font-size:26px; line-height:1.15; color:#0f172a; }
.ks-contact__sub{ margin:8px 0 0; color:var(--muted); font-weight:700; font-size:13px; line-height:1.7; }

.ks-contact__grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) 380px;
  gap:18px;
  align-items:start;
}
.ks-contactCard{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--r22);
  box-shadow:var(--shadow2);
  padding:16px;
  overflow:hidden;
}

/* contact-specific fields */
.ks-form__row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}
.ks-field__label{
  font-weight:900;
  font-size:12px;
  color:#0f172a;
  opacity:.92;
}
.ks-field__input,
.ks-field__textarea{
  width:100%;
  border-radius:16px;
  border:1px solid rgba(2,6,23,.12);
  background:rgba(255,255,255,.85);
  padding:12px 12px;
  font-size:14px;
  outline:none;
  transition:box-shadow .2s ease, border-color .2s ease;
}
.ks-field__textarea{ resize:vertical; min-height:120px; }
.ks-field__input:focus,
.ks-field__textarea:focus{
  border-color:rgba(106,42,166,.35);
  box-shadow:0 0 0 4px rgba(106,42,166,.14);
}

.ks-map{ margin-top:14px; }
.ks-map__frame{
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(2,6,23,.12);
  box-shadow:var(--shadow2);
  background:#fff;
}
.ks-map__frame iframe{ display:block; }

.ks-infoCard{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--r22);
  box-shadow:var(--shadow2);
  padding:16px;
  position:sticky;
  top:18px;
}
.ks-infoCard__title{ margin:0 0 10px; font-size:18px; color:#0f172a; }
.ks-infoList{ display:grid; gap:10px; }

.ks-infoItem{
  display:flex;
  gap:10px;
  padding:12px;
  border-radius:18px;
  border:1px solid rgba(2,6,23,.10);
  background:rgba(255,255,255,.75);
  box-shadow:var(--shadow2);
}
.ks-infoItem__icon{
  width:42px;
  height:42px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,77,141,.10);
  border:1px solid rgba(255,77,141,.18);
  color:#7a1a47;
  flex:0 0 42px;
  font-size:18px;
}
.ks-infoItem__head{ font-weight:900; color:#0f172a; font-size:12px; letter-spacing:.2px; }
.ks-infoItem__text{ margin-top:4px; color:#334155; font-size:13px; line-height:1.6; font-weight:700; }

@media (max-width:980px){
  .ks-contact__grid{ grid-template-columns:1fr; }
  .ks-infoCard{ position:relative; top:auto; }
  .ks-form__row{ grid-template-columns:1fr; }
}

/* =========================
   GALLERY PAGE (FILTER + LIGHTBOX)
========================= */
.ks-gallery{
  width:min(1100px, 100%);
  margin:0 auto;
}
.ks-gallery__title{ margin:0; font-size:26px; color:#0f172a; }
.ks-gallery__sub{ margin:8px 0 0; color:var(--muted); font-weight:800; font-size:13px; line-height:1.6; }

.ks-gFilters{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:14px 0 16px;
}
.ks-gFilters__btn{
  border:1px solid rgba(2,6,23,.12);
  background:rgba(255,255,255,.75);
  border-radius:999px;
  padding:10px 14px;
  font-weight:900;
  font-size:12px;
  cursor:pointer;
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.ks-gFilters__btn:hover{ transform:translateY(-1px); box-shadow:var(--shadow2); }
.ks-gFilters__btn.is-active{
  border-color:rgba(106,42,166,.35);
  box-shadow:0 0 0 4px rgba(106,42,166,.14);
}

.ks-gGrid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:14px;
}
@media (max-width:980px){
  .ks-gGrid{ grid-template-columns:repeat(2, minmax(0,1fr)); }
}
@media (max-width:560px){
  .ks-gGrid{ grid-template-columns:1fr; }
}

.ks-gCard{
  width:100%;
  padding:0;
  border:1px solid rgba(2,6,23,.12);
  background:transparent;
  cursor:pointer;
  border-radius:18px;
  overflow:hidden;
  position:relative;
  box-shadow:var(--shadow2);
}
.ks-gCard__img{
  width:100%;
  display:block;
  aspect-ratio:4 / 3;
  object-fit:cover;
}
.ks-gCard__overlay{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(15,23,42,.35);
  opacity:0;
  transition:opacity .2s ease;
}
.ks-gCard:hover .ks-gCard__overlay{ opacity:1; }
.ks-gCard__chip{
  display:inline-flex;
  gap:8px;
  align-items:center;
  border-radius:999px;
  padding:10px 14px;
  font-weight:900;
  font-size:12px;
  background:rgba(255,255,255,.92);
  border:1px solid rgba(2,6,23,.12);
  box-shadow:var(--shadow2);
}
.ks-gItem__title{
  margin:10px 0 0;
  font-size:13px;
  font-weight:900;
  color:#0f172a;
}

.ks-lightbox{
  position:fixed;
  inset:0;
  display:none;
  z-index:9999;
}
.ks-lightbox--open{ display:block; }
.ks-lightbox__backdrop{
  position:absolute;
  inset:0;
  background:rgba(2,6,23,.72);
}
.ks-lightbox__panel{
  position:relative;
  width:min(920px, calc(100% - 22px));
  margin:40px auto;
  background:#fff;
  border-radius:22px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 30px 80px rgba(2,6,23,.45);
}
.ks-lightbox__close{
  position:absolute;
  top:10px;
  right:10px;
  width:40px;
  height:40px;
  border-radius:14px;
  border:1px solid rgba(2,6,23,.12);
  background:rgba(255,255,255,.92);
  cursor:pointer;
}
.ks-lightbox__head{
  padding:12px 14px;
  border-bottom:1px solid rgba(2,6,23,.08);
}
.ks-lightbox__title{ font-weight:900; color:#0f172a; }
.ks-lightbox__body{ padding:14px; }
.ks-lightbox__img{
  width:100%;
  display:block;
  border-radius:18px;
  border:1px solid rgba(2,6,23,.10);
}

/* =========================
   NEWS & UPDATES
========================= */
.ks-news{ display:grid; gap:14px; }
.ks-newsItem{
  display:grid;
  grid-template-columns:140px 1fr;
  gap:16px;
  padding:14px;
  border:1px solid #e9e9e9;
  border-radius:14px;
  background:#fff;
}
.ks-newsItem__date{
  background:#f4f4f4;
  border:1px solid #e6e6e6;
  border-radius:12px;
  padding:12px 10px;
  text-align:center;
  height:fit-content;
}
.ks-newsItem__dateNum{ font-weight:800; font-size:14px; line-height:1.2; }
.ks-newsItem__dateDay{ margin-top:4px; font-size:13px; opacity:.85; }
.ks-newsItem__title{ margin:0 0 8px 0; font-size:18px; line-height:1.25; }
.ks-newsItem__text{ margin:0; line-height:1.7; color:#222; }

@media (max-width:768px){
  .ks-newsItem{ grid-template-columns:1fr; }
  .ks-newsItem__date{
    text-align:left;
    display:flex;
    gap:10px;
    align-items:center;
    padding:10px 12px;
  }
  .ks-newsItem__dateDay{ margin:0; }
}

/* =========================
   TWO COLUMN (IMAGE + TEXT)
========================= */
.ks-twoCol{
  display:grid;
  grid-template-columns:360px 1fr;
  gap:22px;
  align-items:start;
}
.ks-twoCol__media .ks-img{
  width:100%;
  height:auto;
  display:block;
  border-radius:16px;
}
.ks-h2{ margin:0 0 10px 0; font-size:26px; line-height:1.2; }
.ks-h3{ margin:0 0 10px 0; }

@media (max-width:991px){
  .ks-twoCol{ grid-template-columns:1fr; }
}

/* =========================
   TEAM
========================= */
.ks-pageTitle{ margin-bottom:14px; }
.ks-teamGrid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:18px;
}
.ks-teamCard{
  background:#fff;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 10px 22px rgba(0,0,0,.08);
  transition:transform .2s ease, box-shadow .2s ease;
}
.ks-teamCard:hover{
  transform:translateY(-4px);
  box-shadow:0 16px 28px rgba(0,0,0,.12);
}
.ks-teamCard__img{ width:100%; aspect-ratio:1 / 1; background:#f2f2f2; }
.ks-teamCard__img img{ width:100%; height:100%; object-fit:cover; display:block; }
.ks-teamCard__body{ padding:14px 14px 16px; text-align:center; }
.ks-teamCard__name{
  margin:0;
  font-size:18px;
  line-height:1.2;
  font-weight:700;
  color:#111;
}
.ks-teamCard__role{ margin:6px 0 0; font-size:14px; color:#666; }

@media (max-width:991px){
  .ks-teamGrid{ grid-template-columns:repeat(2,1fr); }
}
@media (max-width:520px){
  .ks-teamGrid{ grid-template-columns:1fr; }
}

/* =========================
   APPLY FRANCHISE
========================= */
.ks-applyWrap{
  margin-top:16px;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:20px;
  align-items:start;
}
.ks-applyMedia{
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 10px 22px rgba(0,0,0,.08);
  background:#f2f2f2;
}
.ks-applyMedia img{ width:100%; height:auto; display:block; }
.ks-center{ text-align:center; }

.ks-formRow{ margin-bottom:12px; }

@media (max-width:991px){
  .ks-applyWrap{ grid-template-columns:1fr; }
  .ks-card{ padding:16px; }
}

/* =========================
   PROGRAMS TABS
========================= */
.ks-tabs{ margin-top:10px; }
.ks-tabs__nav{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:14px;
}
.ks-tabs__btn{
  border:1px solid #ddd;
  background:#fff;
  padding:10px 14px;
  border-radius:10px;
  cursor:pointer;
  font-weight:600;
}
.ks-tabs__btn.is-active{ border-color:#111; }
.ks-tabs__pane{
  border-top:1px solid #eee;
  padding-top:14px;
}
.ks-bullets{ margin:12px 0 0; padding-left:18px; }
.ks-bullets--dot li{ margin:8px 0; }

/* =========================
   POLISH
========================= */
@media (prefers-reduced-motion:reduce){
  *{ scroll-behavior:auto !important; transition:none !important; }
}
