:root{ 
  --blue:#0B4AA2;
  --cyan:#00A3D9;
  --gold:#C7A04A;
  --text:#0B1220;
  --muted:#5B6473;
  --soft:#F6F8FC;
  --line: rgba(15,23,42,.12);
  --shadow: 0 24px 60px rgba(15,23,42,.10);
  --radius: 26px;
}

*{margin:0;padding:0;box-sizing:border-box}
body{background:white;color:var(--text)}
.wrap{width:min(1200px,92%);margin:auto}
a{text-decoration:none;color:inherit}
.muted{color:rgba(51,65,85,.75);font-weight:600}

body{
  font-family: "Open Sans", system-ui, sans-serif;
}
h1,h2,h3,h4,h5,h6{
  font-family: "Montserrat", system-ui, sans-serif;
  letter-spacing: -0.02em;
}
h1,h2,h3{
  font-weight: 900;
  line-height: 1.1;
}

p{
  line-height: 1.75;
  font-weight: 600;
  color: rgba(7,26,51,0.74);
}

.btn, button, .navcta, .mobilecta{
  font-family: "Montserrat", system-ui, sans-serif;
}


/*body{
  font-family: "Manrope", system-ui, sans-serif;
}

h1,h2,h3{
  font-family: "Source Serif 4", serif;
  letter-spacing: -0.02em;
}*/


/* ================= TOPBAR ================= */
.topbar{
  background:#f3f8ff;
  border-bottom:1px solid var(--line);
  font-weight:600;
  color:rgba(51,65,85,.85);
}
.topbar-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:10px 0;
  gap:12px;
}
.topbar-links{display:flex;gap:16px;flex-wrap:wrap;}
.topbar-links a:hover{text-decoration:underline}

/* ================= NAV ================= */
.nav{
  position:sticky;
  top:0;
  z-index:999;
  background:rgba(255,255,255,.90);
  backdrop-filter:blur(14px);
  border-bottom:1px solid var(--line);
}
.nav-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
}
.logo{height:44px;width:auto}

.navlinks{
  display:flex;
  gap:18px;
  align-items:center;
  font-weight:800;
}
.navlinks a{
  padding:10px 12px;
  border-radius:999px;
  color:rgba(51,65,85,.86);
  transition:.2s;
}
.navlinks a:hover{
  background:rgba(11,74,162,.08);
  color:var(--blue);
}
.navcta{
  background:var(--blue);
  color:white!important;
  padding:10px 16px!important;
}

/* Mobile nav */
.burger{
  display:none;
  width:46px;height:46px;
  border:1px solid var(--line);
  border-radius:16px;
  background:white;
}
.burger span{
  display:block;
  width:18px;height:2px;
  background:var(--text);
  margin:6px auto;
  border-radius:999px;
}
.mobilemenu{
  display:none;
  flex-direction:column;
  padding:14px 0;
  border-top:1px solid var(--line);
}
.mobilemenu a{
  padding:12px 0;
  font-weight:900;
  color:rgba(51,65,85,.86);
}
.mobilemenu a:hover{color:var(--blue)}
.mobilecta{
  background:var(--blue);
  color:white!important;
  border-radius:999px;
  display:inline-flex;
  justify-content:center;
  padding:12px 14px!important;
  margin-top:6px;
}
.mobilemenu.open{display:flex}

@media(max-width: 980px){
  .navlinks{display:none}
  .burger{display:block}
}

/* ================= BUTTONS ================= */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 18px;
  border-radius:999px;
  font-weight:900;
  border:1px solid var(--line);
  transition:.22s;
  background:white;
}
.btn.primary{
  background:var(--blue);
  color:white;
  border:none;
  box-shadow:0 18px 35px rgba(11,74,162,.22);
}
.btn.primary:hover{transform:translateY(-1px)}
.btn.ghost:hover{transform:translateY(-1px);box-shadow:var(--shadow)}
.full{width:100%}

/* ============================================================
   ✅ HERO (FIXED HEIGHT + iOS SAFE AREA OPTIMIZED)
   ============================================================ */
.hero{
  position: relative;
  height: 92vh;
  height: 92svh;   /* ✅ Stable viewport height for iOS Safari */
  min-height: 92svh;
  overflow: hidden;
}

@media(max-width:520px){
  .hero{
    height: 100svh;  /* ✅ Full safe screen height */
    min-height: 100svh;
  }
}

.heroVideo{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.heroOverlay{
  position: absolute;
  inset: 0;
}

.heroOverlayFDU{
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.05) 0%,
    rgba(255,255,255,0.60) 72%,
    rgba(255,255,255,0.94) 100%
  );
}

/* ============================================================
   ✅ Center text
   ============================================================ */
.heroCenterText{
  position: absolute;
  top: 120px;
  left: 50%;
  transform: translateX(-50%);
  width: min(920px, 92%);
  text-align: center;
  z-index: 10;
  padding: 14px 20px;
}

.heroCenterTitle{
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.08;
  color: #061f2e;
  text-shadow: 0 10px 35px rgba(220, 215, 217, 0.62);
}

.heroCenterSub{
  margin-top: 10px;
  font-size: clamp(1.05rem, 1.3vw, 1.25rem);
  font-weight: 700;
  color: #d65184;
  background: #ffffffa5;
  border-radius: 8px;
  /*color: rgba(255,255,255,0.78);*/
  max-width: 70ch;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 10px 35px rgba(29, 28, 28, 0.80);
}

/* ============================================================
   ✅ Bottom group layout
   ============================================================ */
.heroWrapFDU{
  position: relative;
  height: 100%;
  padding: 70px 0 40px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px;
}

.heroBottomGroup{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
  gap: 18px;
}

/* ============================================================
   ✅ Story Card
   ============================================================ */
.heroStoryCard{
  width: min(760px, 100%);
  background: #fff;
  color: #3eb5f0;
  padding: 32px;
  border-radius: 10px;
  box-shadow: 0 20px 55px rgba(15,23,42,.18);
  margin: 0;
}

.storyKicker{
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .78rem;
  opacity: .88;
  color: var(--text);
}

.storyTitle{
  margin-top: 12px;
  font-size: clamp(1.8rem,2.5vw,2.4rem);
  font-weight: 900;
  line-height: 1.12;
  max-width: 34ch;
}

.storyText{
  margin-top: 12px;
  font-weight: 600;
  opacity: .92;
  max-width: 64ch;
}

.storyLink{
  display: inline-flex;
  gap: 10px;
  margin-top: 18px;
  font-weight: 900;
  letter-spacing: .06em;
  color: #d65184;
}

/* ============================================================
   ✅ Selector Panel
   ============================================================ */
.heroSelector{
  width: 360px;
  background: #081f3d;
  color: white;
  box-shadow: 0 20px 55px rgba(15,23,42,.18);
  margin: 0;
  border: none;
  border-radius: 10px;
  overflow: hidden;
}

.selectorItem{
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  cursor: pointer;
  display: block;
  padding: 20px 22px;
  border-left: 6px solid transparent;
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: .2s;
  position: relative;
  color: white;
}

.selectorItem.active{
  border-left-color: #d65184;
}

.selectorItem:hover{
  background: rgba(255,255,255,.05);
  border-left-color: #d65184;
}

.selectorTitle{
  font-weight: 900;
  font-size: 1.05rem;
  display: block;
  line-height: 1.15;
}

.selectorSub{
  margin-top: 6px;
  font-weight: 600;
  opacity: .85;
  display: block;
  font-size: .95rem;
}

.selectorArrow{
  position: absolute;
  right: 20px;
  top: 22px;
  font-size: 1.4rem;
  opacity: .9;
}

.selectorProgress{
  margin-top: 14px;
  height: 4px;
  width: 100%;
  background: rgba(255,255,255,.12);
  border-radius: 999px;
  overflow: hidden;
}

.selectorProgressBar{
  display: block;
  height: 100%;
  width: 0%;
  background: #d65184;
  border-radius: 999px;
}

/* ============================================================
   ✅ MOBILE HERO FIX (NO OVERLAP + SAFE AREA)
   ============================================================ */
@media(max-width:980px){

  .heroCenterText{
    top: calc(env(safe-area-inset-top) + 56px);
    width: min(560px, 92%);
    padding: 10px 12px;
    z-index: 10;

    background: rgba(255,255,255,0.20);
    backdrop-filter: blur(10px);
    border-radius: 18px;
  }

  .heroCenterTitle{
    font-size: 1.6rem;
    line-height: 1.12;
  }

  .heroCenterSub{
    font-size: 0.95rem;
    line-height: 1.5;
    margin-top: 8px;
  }

  /* ✅ Push selector + story below title/sub dynamically */
  .heroWrapFDU{
    height: 100%;
    padding-top: calc(env(safe-area-inset-top) + 220px);
    padding-bottom: 14px;

    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 12px;
  }

  .heroBottomGroup{
    flex-direction: column;
    width: 100%;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 10px;
  }

  /* ✅ Selector becomes horizontal */
  .heroSelector{
    width: 100%;
    display: flex;
    overflow-x: auto;
    border-radius: 18px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .selectorItem{
    min-width: 240px;
    border-left: none;
    border-top: 6px solid transparent;
    scroll-snap-align: start;
    border-bottom: none;
  }

  .selectorItem.active{
    border-top-color: #d65184;
  }

  .selectorArrow{
    display: none;
  }

  /* ✅ Smaller selector fonts on mobile */
  .selectorTitle{
    font-size: 0.95rem;
  }
  .selectorSub{
    font-size: 0.85rem;
  }

  /* ✅ Story card smaller fonts */
  .heroStoryCard{
    width: 100%;
    padding: 16px;
    border-radius: 16px;
  }

  .storyTitle{
    font-size: 1.35rem;
    line-height: 1.2;
  }

  .storyText{
    font-size: 0.95rem;
    line-height: 1.6;
  }
}

/* ✅ Extra mini tweak for iPhone 15/16 Pro sizes */
@media(max-width:430px){
  .heroCenterTitle{ font-size: 1.5rem; }
  .heroCenterSub{ font-size: 0.9rem; }
  .storyTitle{ font-size: 1.25rem; }
  .storyText{ font-size: 0.92rem; }
}



/* ============================================================
   ✅ Enquire Tab
   ============================================================ */
.enquireTab{
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 9999;
  background: var(--blue);
  color: white;
  font-weight: 900;
  padding: 14px 18px;
  border-radius: 16px 0 0 16px;
  border: none;
  box-shadow: 0 20px 45px rgba(11,74,162,.28);
  cursor: pointer;
  transition: 0.22s ease;
}
.enquireTab:hover{padding-right:22px}

@media(max-width:640px){
  .enquireTab{
    top:auto;
    bottom:14px;
    right:14px;
    transform:none;
    border-radius:999px;
    padding:12px 16px;
    font-size:.95rem;
  }
  .enquireForm button[type="submit"]{
    display:none !important;
  }
}

/* ============================================================
   ✅ STATS V2 — Premium Glass Panel
   ============================================================ */

.statsV2{
  margin-top: -90px;
  padding: 40px 0 50px;
  position: relative;
  z-index: 10;
}

/* ✅ The premium panel */
.statsPanel{
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(15,23,42,0.10);
  box-shadow: 0 25px 70px rgba(15,23,42,0.10);
  border-radius: 28px;
  padding: 34px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  position: relative;
  overflow: hidden;
}

/* ✅ subtle glow background */
.statsPanel::before{
  content:"";
  position:absolute;
  inset:-40%;
  background:
    radial-gradient(circle at 25% 15%, rgba(10,162,212,0.22), transparent 60%),
    radial-gradient(circle at 90% 40%, rgba(11,74,162,0.14), transparent 60%);
  pointer-events:none;
}

.statBlock{
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 10px 8px;
}

/* ✅ number style */
.statNum{
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  font-weight: 950;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #071a33;
}

/* ✅ make number glow slightly */
.statNum .count{
  background: linear-gradient(90deg, #0aa2d4, #0b4aa2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.statNum .plus{
  font-size: 1.2rem;
  font-weight: 900;
  margin-left: 4px;
  color: rgba(7,26,51,0.75);
}

.statLabel{
  margin-top: 10px;
  font-size: 1rem;
  font-weight: 800;
  color: rgba(7,26,51,0.75);
}

/* ✅ divider */
.statDivider{
  width: 1px;
  height: 58px;
  background: rgba(7,26,51,0.10);
  position: relative;
  z-index: 2;
}

/* ✅ Hover: soft lift */
.statsPanel:hover{
  transform: translateY(-4px);
  transition: 0.35s ease;
}

/* ============================================================
   ✅ Responsive
   ============================================================ */

@media(max-width: 750px){
  .statsV2{
    margin-top: -45px;
    padding: 22px 0 30px;
  }

  .statsPanel{
    flex-direction: column;
    text-align: center;
    padding: 22px 18px;
    gap: 14px;
  }

  .statDivider{
    width: 70%;
    height: 1px;
  }

  .statLabel{
    font-size: 0.92rem;
  }
}

/* ============================================================
   Reveal defaults for section animations only
   ============================================================ */
.reveal-up,.reveal-left,.reveal-right{opacity:0;}

/* ============================================================
   ✅ ABOUT FEATURE SECTION
   ============================================================ */

.aboutFeatureSection{
  background: #071a33;
  padding: 90px 0;
  border-radius: 42px;
  max-width: 1180px;
  margin: 70px auto 0;
  position: relative;
  overflow: hidden;
}

.aboutFeatureWrap{
  text-align: center;
  padding: 0 48px;
}

.aboutFeatureTitle{
  font-size: clamp(2rem, 2.9vw, 3.1rem);
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  letter-spacing: -0.03em;
}

.aboutFeatureTitle span{
  font-family: "Georgia", serif;
  font-style: italic;
  font-weight: 500;
  color: var(--cyan);
}

.aboutFeatureText{
  margin: 16px auto 0;
  max-width: 85ch;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.78);
  font-weight: 500;
}

.aboutFeatureBtnWrap{
  margin-top: 22px;
}

.aboutFeatureBtn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 12px;
  background: #0aa2d4;
  color: white;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: 0.25s ease;
}

.aboutFeatureBtn:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.25);
}

/* ============================================================
   ✅ Scrollable Objective Box (Correct Structure)
   ============================================================ */

.objectiveBox{
  margin: 42px auto 0;
  max-width: 920px;
  text-align: left;
  background: #fff;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  padding: 22px 22px;
  position: relative;
}

.objectiveTitle{
  color: #0aa2d4;
  font-size: 1.25rem;
  font-weight: 900;
  margin-bottom: 14px;
}

/* ✅ The ONLY scroll container */
.objectiveScroll{
  max-height: 250px;
  overflow-y: auto;
  padding-right: 12px;
  scroll-behavior: smooth;

  /* ✅ Hide scrollbar but keep scrolling */
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.objectiveScroll::-webkit-scrollbar{
  display: none;
}

.objectiveItem{
  padding: 16px 14px;
  border-radius: 18px;
  transition: 0.25s ease;
  margin-bottom: 10px;
}

.objectiveItem:hover{
  background: rgba(255,255,255,0.06);
}

.objectiveItem p{
  margin: 0;
  color: #212020;
  line-height: 1.55;
  font-size: 0.95rem;
}

.objectiveLink{
  display: inline-block;
  margin-top: 9px;
  font-weight: 800;
  font-size: 0.92rem;
  text-decoration: none;
  color: #d65184;
  transition: 0.2s ease;
}

.objectiveLink:hover{
  transform: translateX(4px);
}

/* ✅ Fade overlay */
.objectiveBox::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height: 55px;
  background: linear-gradient(to top, rgba(255,255,255,1), rgba(255,255,255,0));
  pointer-events:none;
  border-radius: inherit;
  transition: opacity 0.25s ease;
}

.objectiveBox.at-bottom::after{
  opacity: 0;
}

/* ✅ Scroll Arrow Hint */
.objectiveScrollHint{
  position:absolute;
  left:50%;
  bottom: 12px;
  transform: translateX(-50%);
  width: 42px;
  height: 18px;
  border-radius: 999px;
  background: rgba(10,162,212,0.14);
  border: 1px solid rgba(10,162,212,0.22);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 12px;
  font-weight: 900;
  color: var(--cyan);
  pointer-events: none;
  z-index: 3;
  animation: scrollHintBounce 1.2s ease-in-out infinite;
  transition: opacity 0.25s ease;
}

@keyframes scrollHintBounce{
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.9; }
  50%      { transform: translateX(-50%) translateY(5px); opacity: 1; }
}
/* ============================================================
   ✅ VIDEO BOX (YouTube)
   ============================================================ */
.aboutFeatureMedia{
  margin-top: 34px;
  border-radius: 28px;
  overflow: hidden;
}

.videoBox{
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.08);
}

/* YouTube iframe */
.ytFrame{
  width: 100%;
  height: 340px;
  border: 0;
  display: block;
}
@media(max-width: 900px){
  .ytFrame{
    height: 280px;
  }
}

@media(max-width: 520px){
  .ytFrame{
    height: 230px;
  }
}


/* ============================================================
   ✅ RESPONSIVE
   ============================================================ */

@media(max-width: 1100px){
  .aboutFeatureSection{
    margin: 50px 20px 0;
  }
}

@media(max-width: 900px){
  .aboutFeatureWrap{
    padding: 0 28px;
  }

  .objectiveScroll{
    max-height: 280px;
  }
}

@media(max-width: 520px){
  .aboutFeatureSection{
    padding: 70px 0;
    border-radius: 28px;
  }

  .aboutFeatureWrap{
    padding: 0 18px;
  }

  .objectiveBox{
    padding: 18px;
  }
}

/* ============================================================
   ✅ ACTIVE PROJECTS SECTION (Screenshot Style + Carousel)
   ============================================================ */

.activeProjectsSection{
  padding: 90px 0 110px;
  background: #eaf4fb;
  position: relative;
}

.activeProjectsCenterHeader{
  text-align: center;
  max-width: 880px;
  margin: 0 auto 48px;
}

.activeProjectsTitleCenter{
  font-size: clamp(2rem, 2.8vw, 3rem);
  font-weight: 900;
  color: #071a33;
  letter-spacing: -0.03em;
}

.activeProjectsTitleCenter span{
  font-family: "Georgia", serif;
  font-style: italic;
  font-weight: 500;
  color: var(--cyan);
}

.activeProjectsTextCenter{
  margin-top: 12px;
  font-size: 1rem;
  line-height: 1.65;
  font-weight: 600;
  color: rgba(7,26,51,0.70);
}

.activeProjectsViewAllBtn{
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 12px;
  background: #0aa2d4;
  color: white;
  font-weight: 900;
  font-size: 0.95rem;
  text-decoration: none;
  transition: 0.25s ease;
}

.activeProjectsViewAllBtn:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

/* ============================================================
   ✅ SLIDER WRAP + FADE EDGES
   ============================================================ */

.projectsSliderWrap{
  position: relative;
}

.projectsSliderWrap::before,
.projectsSliderWrap::after{
  content:"";
  position:absolute;
  top:0;
  bottom:0;
  width: 90px;
  z-index: 3;
  pointer-events:none;
}

.projectsSliderWrap::before{
  left:0;
  background: linear-gradient(to right, #eaf4fb, rgba(234,244,251,0));
}

.projectsSliderWrap::after{
  right:0;
  background: linear-gradient(to left, #eaf4fb, rgba(234,244,251,0));
}

/* ============================================================
   ✅ SLIDER
   ============================================================ */

.projectsSlider{
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 10px 10px 25px;
  cursor: grab;

  -ms-overflow-style: none;
  scrollbar-width: none;
}

.projectsSlider::-webkit-scrollbar{ display:none; }
.projectsSlider:active{ cursor: grabbing; }

/* ============================================================
   ✅ Card Style (Screenshot look)
   ============================================================ */

.projectCardAlt{
  flex: 0 0 360px;
  scroll-snap-align: start;
  background: transparent;
  border-radius: 22px;
  padding: 18px 18px 26px;
  border: 2px dashed rgba(7,26,51,0.25);
  transition: 0.3s ease;
}

.projectCardAlt:hover{
  transform: translateY(-6px);
  border-color: rgba(7,26,51,0.40);
}

/* Image */
.projectImageAlt{
  height: 200px;
  border-radius: 18px;
  overflow: hidden;
}

.projectImageAlt img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* ✅ Hover zoom */
.projectCardAlt:hover .projectImageAlt img{
  transform: scale(1.08);
}

/* Content */
.projectContentAlt{
  margin-top: 16px;
}

.projectContentAlt h3{
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1.3;
  color: #071a33;
}

.projectContentAlt p{
  margin-top: 10px;
  font-size: 0.95rem;
  line-height: 1.6;
  font-weight: 600;
  color: rgba(7,26,51,0.70);
}

/* CTA button */
.projectBtnAlt{
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 10px;
  background: #d65184;
  color: white;
  font-weight: 800;
  font-size: 0.9rem;
  text-decoration: none;
  transition: 0.25s ease;
}

.projectBtnAlt:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(0,0,0,0.16);
}

/* ============================================================
   ✅ Overlay Arrows
   ============================================================ */

.sliderArrow{
  position:absolute;
  top: 44%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(7,26,51,0.18);
  background: rgba(255,255,255,0.95);
  box-shadow: 0 14px 30px rgba(0,0,0,0.12);
  font-size: 30px;
  font-weight: 900;
  cursor: pointer;
  z-index: 4;
  display:flex;
  align-items:center;
  justify-content:center;
  transition: 0.25s ease;
  color: #071a33;
}

.sliderArrow:hover{
  transform: translateY(-50%) scale(1.06);
}

.sliderArrowLeft{ left: -20px; }
.sliderArrowRight{ right: -20px; }

.sliderArrow:disabled{
  opacity: 0.35;
  cursor: not-allowed;
  transform: translateY(-50%) scale(1);
}

/* ============================================================
   ✅ Dots
   ============================================================ */

.sliderDots{
  margin-top: 14px;
  display:flex;
  justify-content:center;
  gap: 8px;
  position: relative;
  z-index: 5;
}

.sliderDot{
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(7,26,51,0.25);
  border: none;
  cursor: pointer;
  transition: 0.25s ease;
}

.sliderDot.active{
  width: 32px;
  background: var(--cyan);
  box-shadow: 0 10px 24px rgba(10,162,212,0.35);
}

/* ============================================================
   ✅ RESPONSIVE
   ============================================================ */

@media(max-width: 1100px){
  .projectCardAlt{ flex: 0 0 320px; }
  .sliderArrowLeft{ left: -10px; }
  .sliderArrowRight{ right: -10px; }
}

@media(max-width: 850px){
  .sliderArrow{ display:none; }
  .projectsSliderWrap::before,
  .projectsSliderWrap::after{
    width: 55px;
  }
}

@media(max-width: 700px){
  .projectCardAlt{ flex: 0 0 85%; }
}


/* ============================================================
    WHAT WE DO (Interactive + Better)
   ============================================================ */

.interactiveWWD{
  padding: 95px 0;
  background: #fff;
}

/* Header */
.sietWWDHeader{
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 50px;
  align-items: start;
  margin-bottom: 50px;
}

.sietWWDTag{
  display: inline-block;
  text-transform: uppercase;
  color: var(--cyan);
  font-weight: 900;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
}

.sietWWDTitle{
  margin-top: 16px;
  font-size: clamp(2.4rem, 3.2vw, 3.6rem);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: #071a33;
}

/* ✅ Brush underline only under "We" */
.sietWWDTitle .underWe{
  color: #d65184;
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
}

.sietWWDTitle .underWe::after{
  content:"";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 1px;
  width: 135px;
  height: 18px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 0.95;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 50'%3E%3Cpath d='M10 30 C60 10 160 10 210 30' stroke='%230aa2d4' stroke-width='10' stroke-linecap='round' fill='none'/%3E%3C/svg%3E");
}

.sietWWDRight p{
  margin-top: 42px;
  font-size: 1rem;
  line-height: 1.75;
  font-weight: 600;
  color: rgba(7,26,51,0.72);
  max-width: 44ch;
}

/* Cards */
.sietWWDCards{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.sietWWDCard{
  background: white;
  border-radius: 18px;
  border: 1px solid rgba(7,26,51,0.10);
  padding: 30px 28px;
  transition: 0.28s ease;
  box-shadow: 0 14px 34px rgba(0,0,0,0.05);
  cursor: pointer;
  position: relative;
  outline: none;
}

.sietWWDCard:hover{
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(0,0,0,0.10);
}

/* icon */
.sietWWDIcon{
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(10,162,212,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: 0.25s ease;
}

.sietWWDIcon img{
  width: 28px;
  height: 28px;
  object-fit: contain;
}

/* Title & text */
.sietWWDCard h3{
  font-size: 1.2rem;
  font-weight: 900;
  color: #071a33;
}

.sietWWDCard p{
  margin-top: 10px;
  font-size: 0.96rem;
  line-height: 1.65;
  font-weight: 600;
  color: rgba(7,26,51,0.70);
}

.wwdCardHint{
  display: inline-flex;
  margin-top: 14px;
  font-size: 0.9rem;
  font-weight: 900;
  color: rgba(7,26,51,0.55);
  transition: 0.25s ease;
}

.sietWWDCard:hover .wwdCardHint{
  color: #d65184;
  transform: translateX(4px);
}

.sietWWDCard.is-active{
  border: 2px solid rgba(10,162,212,0.55);
  box-shadow: 0 40px 100px rgba(10,162,212,0.18);
  transform: translateY(-8px);
}

.sietWWDCard.is-active .sietWWDIcon{
  background: rgba(10,162,212,0.16);
  transform: scale(1.05);
}

.sietWWDCards.has-active .sietWWDCard:not(.is-active){
  opacity: 0.85;
}

.sietWWDCard:focus-visible{
  outline: 3px solid rgba(10,162,212,0.35);
  outline-offset: 4px;
}

/* Details Panel */
.wwdDetails{
  margin-top: 34px;
  border-radius: 22px;
  padding: 28px 26px;
  background: rgba(10,162,212,0.07);
  border: 1px solid rgba(10,162,212,0.20);
  transition: 0.25s ease;
}

.wwdDetailsInner{ max-width: 900px; }

.wwdDetailsTitle{
  font-size: 1.35rem;
  font-weight: 900;
  color: #071a33;
}

.wwdDetailsText{
  margin-top: 10px;
  font-size: 1rem;
  line-height: 1.65;
  font-weight: 600;
  color: rgba(7,26,51,0.75);
}

.wwdDetailsBtn{
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 12px;
  background: #0aa2d4;
  color: white;
  font-weight: 900;
  font-size: 0.95rem;
  text-decoration: none;
  transition: 0.25s ease;
}

.wwdDetailsBtn:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

/* Responsive */
@media(max-width: 1000px){
  .sietWWDHeader{
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .sietWWDRight p{
    margin-top: 0;
    max-width: 70ch;
  }

  .sietWWDCards{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 520px){
  .sietWWDTitle .underWe::after{
    width: 110px;
    height: 15px;
  }
}

@media(max-width: 650px){
  .interactiveWWD{
    padding: 75px 0;
  }

  .sietWWDCards{
    grid-template-columns: 1fr;
  }

  .sietWWDCard{
    padding: 22px;
  }

  .wwdDetails{
    padding: 22px;
  }
}

/* ============================================================
   ✅ EXECUTIVE COUNCIL (Carousel + Modal)
   ============================================================ */

.execCouncilSection{
  padding: 90px 0;
  background: #eaf4fb;
}

.execCouncilBox{
  background: #041f2f;
  border-radius: 36px;
  padding: 56px 54px 44px;
  box-shadow: 0 35px 100px rgba(0,0,0,0.20);
  position: relative;
  overflow: hidden;
}

.execCouncilBox::before{
  content:"";
  position:absolute;
  inset:-40%;
  background: radial-gradient(circle at 20% 10%, rgba(10,162,212,0.22), transparent 55%),
              radial-gradient(circle at 90% 30%, rgba(255,255,255,0.10), transparent 55%);
  pointer-events:none;
}

.execCouncilHeader{
  text-align: center;
  position: relative;
  z-index: 2;
  margin-bottom: 34px;
}

.execCouncilTitle{
  font-size: clamp(2rem, 2.8vw, 3.1rem);
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.03em;
}

.execCouncilTitle span{
  font-family: "Georgia", serif;
  font-style: italic;
  font-weight: 500;
  color: var(--cyan);
}

.execCouncilBtn{
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 12px;
  background: #0aa2d4;
  color: white;
  font-weight: 900;
  font-size: 0.95rem;
  text-decoration: none;
  transition: 0.25s ease;
}

.execCouncilBtn:hover{
  transform: translateY(-2px);
  box-shadow: 0 22px 50px rgba(0,0,0,0.25);
}
/* ============================================================
   ✅ Slider wrapper + fades
   ============================================================ */

.execSliderWrap{
  position: relative;
  z-index: 2;
  margin-top: 14px;
}

.execSliderWrap::before,
.execSliderWrap::after{
  content:"";
  position:absolute;
  top:0;
  bottom:0;
  width: 90px;
  z-index: 3;
  pointer-events:none;
}

.execSliderWrap::before{
  left:0;
  background: linear-gradient(to right, #041f2f, rgba(4,31,47,0));
}

.execSliderWrap::after{
  right:0;
  background: linear-gradient(to left, #041f2f, rgba(4,31,47,0));
}

/* slider */
.execCouncilSlider{
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 10px 10px 12px;
  cursor: grab;

  -ms-overflow-style: none;
  scrollbar-width: none;
}

.execCouncilSlider::-webkit-scrollbar{ display:none; }
.execCouncilSlider:active{ cursor: grabbing; }

/* Member Card */
.execCardAlt{
  flex: 0 0 280px;
  scroll-snap-align: start;
  background: linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.04));
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.14);
  padding: 14px 14px 18px;
  transition: 0.28s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.execCardAlt::after{
  content:"";
  position:absolute;
  inset: 14px;
  border: 1px dashed rgba(255,255,255,0.18);
  border-radius: 14px;
  pointer-events:none;
}

.execCardAlt:hover{
  transform: translateY(-6px);
  border-color: rgba(10,162,212,0.45);
  box-shadow: 0 25px 70px rgba(0,0,0,0.35);
}

.execImgAlt{
  border-radius: 14px;
  overflow: hidden;
  height: 170px;
  background: rgba(255,255,255,0.08);
}

.execImgAlt img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display:block;
  transition: transform 0.45s ease;
}

.execCardAlt:hover .execImgAlt img{
  transform: scale(1.07);
}

/* content */
.execContentAlt{
  margin-top: 14px;
  position: relative;
  z-index: 2;
}

.execSmallAlt{
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255,255,255,0.70);
}

.execNameAlt{
  margin-top: 6px;
  font-size: 0.98rem;
  font-weight: 900;
  color: white;
  line-height: 1.35;
}

.execRoleAlt{
  margin-top: 10px;
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--cyan);
}

/* view profile hint */
.execProfileHint{
  display: inline-flex;
  margin-top: 12px;
  font-size: 0.88rem;
  font-weight: 900;
  color: rgba(255,255,255,0.55);
  transition: 0.25s ease;
}

.execCardAlt:hover .execProfileHint{
  color: #d65184;
  transform: translateX(4px);
}

/* arrows */
.execArrow{
  position:absolute;
  top: 44%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.20);
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(12px);
  color: #fff;
  font-size: 30px;
  font-weight: 900;
  cursor: pointer;
  z-index: 4;
  display:flex;
  align-items:center;
  justify-content:center;
  transition: 0.25s ease;
}

.execArrow:hover{
  transform: translateY(-50%) scale(1.06);
  background: rgba(255,255,255,0.15);
}

.execArrowLeft{ left: -18px; }
.execArrowRight{ right: -18px; }

.execArrow:disabled{
  opacity: 0.35;
  cursor: not-allowed;
  transform: translateY(-50%) scale(1);
}

/* dots */
.execDots{
  margin-top: 16px;
  display:flex;
  justify-content:center;
  gap: 8px;
  position: relative;
  z-index: 5;
}

.execDot{
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(255,255,255,0.25);
  border: none;
  cursor: pointer;
  transition: 0.25s ease;
}

.execDot.active{
  width: 30px;
  background: var(--cyan);
  box-shadow: 0 10px 24px rgba(10,162,212,0.35);
}

.execHintAlt{
  display:none;
  margin-top: 12px;
  text-align: center;
  font-size: 0.92rem;
  font-weight: 700;
  color: rgba(255,255,255,0.72);
  position: relative;
  z-index: 2;
}

@media(max-width: 900px){
  .execCouncilBox{
    padding: 44px 22px 40px;
    border-radius: 26px;
  }

  .execArrow{ display:none; }

  .execSliderWrap::before,
  .execSliderWrap::after{
    width: 55px;
  }

  .execCardAlt{
    flex: 0 0 82%;
  }

  .execHintAlt{
    display:block;
  }
}

/* ============================================================
   ✅ Modal
   ============================================================ */

.execModal{
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.execModal.is-open{ display: block; }

.execModalBackdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(10px);
  animation: modalFade 0.25s ease;
}

.execModalCard{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.96);
  width: min(920px, 92%);
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 40px 120px rgba(0,0,0,0.30);
  overflow: hidden;
  animation: modalPop 0.28s ease forwards;
}

.execModalClose{
  position: absolute;
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(7,26,51,0.10);
  background: rgba(255,255,255,0.95);
  font-size: 28px;
  font-weight: 900;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s ease;
  z-index: 3;
}

.execModalClose:hover{
  transform: scale(1.06);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.execModalBody{
  display: grid;
  grid-template-columns: 0.95fr 1.2fr;
}

.execModalImg{
  background: #041f2f;
  padding: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.execModalImg img{
  width: 100%;
  max-width: 330px;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 22px 60px rgba(0,0,0,0.35);
}

.execModalInfo{
  padding: 34px 34px 34px;
}

.execModalName{
  font-size: 1.6rem;
  font-weight: 900;
  color: #071a33;
  line-height: 1.25;
}

.execModalRole{
  margin-top: 10px;
  display: inline-flex;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(10,162,212,0.10);
  border: 1px solid rgba(10,162,212,0.18);
  color: #0aa2d4;
  font-weight: 900;
  font-size: 0.9rem;
}

.execModalBio{
  margin-top: 18px;
  font-size: 1rem;
  line-height: 1.75;
  font-weight: 600;
  color: rgba(7,26,51,0.75);
}

.execModalLinks{
  margin-top: 22px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.execModalLinks a{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  border-radius: 12px;
  border: 1px solid rgba(7,26,51,0.12);
  background: white;
  font-weight: 900;
  font-size: 0.92rem;
  color: #071a33;
  text-decoration: none;
  transition: 0.25s ease;
}

.execModalLinks a:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

@keyframes modalFade{
  from{ opacity:0; }
  to{ opacity:1; }
}

@keyframes modalPop{
  from{ opacity:0; transform: translate(-50%, -50%) scale(0.96); }
  to{ opacity:1; transform: translate(-50%, -50%) scale(1); }
}

@media(max-width: 820px){
  .execModalBody{ grid-template-columns: 1fr; }
  .execModalImg{ padding: 22px; }
  .execModalInfo{ padding: 24px 22px 28px; }
  .execModalCard{ border-radius: 18px; }
}

/* ============================================================
   ✅ SIET STORIES OF CHANGE (Mobile Slider + Dots)
   ============================================================ */

.sietStoriesSection{
  padding: 95px 0;
  background: #ffffff;
}

.sietStoriesHeader{
  text-align: center;
  margin-bottom: 42px;
}

.sietStoriesTag{
  display: inline-block;
  text-transform: uppercase;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  color: rgba(7,26,51,0.55);
}

.sietStoriesTitle{
  margin-top: 14px;
  font-size: clamp(2.4rem, 3.8vw, 3.8rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #071a33;
  line-height: 1.05;
}

.sietStoriesTitle .storiesUnderline{
  color: var(--cyan);
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
}

.sietStoriesTitle .storiesUnderline::after{
  content:"";
  position:absolute;
  left:50%;
  transform: translateX(-50%);
  bottom: 0px;
  width: 170px;
  height: 18px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 0.95;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 50'%3E%3Cpath d='M10 30 C60 10 160 10 210 30' stroke='%230aa2d4' stroke-width='10' stroke-linecap='round' fill='none'/%3E%3C/svg%3E");
}

.sietStoriesBtn{
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 26px;
  border-radius: 12px;
  background: #0aa2d4;
  color: #fff;
  font-weight: 900;
  font-size: 0.95rem;
  text-decoration: none;
  transition: 0.25s ease;
}

.sietStoriesBtn:hover{
  transform: translateY(-2px);
  box-shadow: 0 22px 55px rgba(0,0,0,0.12);
}

.sietStoriesGrid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.sietStoryCard{
  border-radius: 22px;
  border: 2px solid rgba(7,26,51,0.12);
  padding: 18px;
  background: #fff;
  position: relative;
  overflow: hidden;
  transition: 0.25s ease;
}

.sietStoryCard::after{
  content:"";
  position:absolute;
  inset: 12px;
  border: 1px dashed rgba(7,26,51,0.22);
  border-radius: 18px;
  pointer-events:none;
}

.sietStoryCard:hover{
  transform: translateY(-5px);
  box-shadow: 0 24px 70px rgba(0,0,0,0.10);
  border-color: rgba(10,162,212,0.45);
}

.sietStoryMedia{
  border-radius: 18px;
  overflow: hidden;
  height: 330px;
  background: #eaeaea;
}

.sietStoryMedia img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sietStoryBody{
  margin-top: 18px;
  position: relative;
  z-index: 2;
  padding: 0 6px 8px;
}

.sietStoryText{
  font-size: 1rem;
  line-height: 1.75;
  font-weight: 600;
  color: rgba(7,26,51,0.70);
}

.sietStoryAuthor{
  margin-top: 18px;
  font-size: 1.05rem;
  font-weight: 900;
  color: #071a33;
  line-height: 1.35;
}

.sietStoriesSliderWrap{ position: relative; }

.storiesDots{
  display: none;
  margin-top: 18px;
  justify-content: center;
  gap: 8px;
}

.storyDot{
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(7,26,51,0.25);
  border: none;
  cursor: pointer;
  transition: 0.25s ease;
}

.storyDot.active{
  width: 30px;
  background: var(--cyan);
  box-shadow: 0 10px 24px rgba(10,162,212,0.35);
}

@media(max-width: 980px){

  .sietStoriesGrid{
    display: flex;
    overflow-x: auto;
    gap: 16px;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
    scroll-behavior: smooth;

    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .sietStoriesGrid::-webkit-scrollbar{
    display: none;
  }

  .sietStoryCard{
    flex: 0 0 92%;
    scroll-snap-align: start;
  }

  .storiesDots{
    display: flex;
  }
}

@media(max-width: 650px){
  .sietStoriesSection{
    padding: 75px 0;
  }

  .sietStoryCard{
    padding: 14px;
    border-radius: 18px;
  }

  .sietStoryMedia{
    height: 280px;
  }

  .sietStoriesTitle .storiesUnderline::after{
    width: 130px;
    height: 15px;
  }
}
/* ============================================================
   ✅ MOMENTS TO REMEMBER — Masonry + Vintage Vibe
   ============================================================ */

.momentsSection{
  padding: 95px 0;
  background: #ffffff;
}

/* Header */
.momentsHeader{
  text-align: center;
  margin-bottom: 44px;
}

.momentsTitle{
  font-size: clamp(2.5rem, 3.8vw, 3.9rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #071a33;
  line-height: 1.05;
}

.momentsUnderline{
  color: var(--cyan);
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
}

/* Brush underline */
.momentsUnderline::after{
  content:"";
  position:absolute;
  left:50%;
  transform: translateX(-50%);
  bottom: 0px;
  width: 190px;
  height: 18px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 0.95;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 50'%3E%3Cpath d='M10 30 C60 10 160 10 210 30' stroke='%230aa2d4' stroke-width='10' stroke-linecap='round' fill='none'/%3E%3C/svg%3E");
}

.momentsBtn{
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 26px;
  border-radius: 12px;
  background: #0aa2d4;
  color: #fff;
  font-weight: 900;
  font-size: 0.95rem;
  text-decoration: none;
  transition: 0.25s ease;
}

.momentsBtn:hover{
  transform: translateY(-2px);
  box-shadow: 0 22px 55px rgba(0,0,0,0.12);
}

/* ============================================================
   ✅ Masonry Layout (CSS Columns)
   ============================================================ */

.momentsMasonry{
  column-count: 3;
  column-gap: 18px;
}

@media(max-width: 980px){
  .momentsMasonry{
    column-count: 2;
  }
}

@media(max-width: 650px){
  .momentsMasonry{
    column-count: 1;
  }
}

/* ============================================================
   ✅ Vintage Image Card
   ============================================================ */

.momentCard{
  width: 100%;
  display: inline-block;
  margin: 0 0 18px;
  border: none;
  padding: 0;
  cursor: pointer;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  position: relative;
  transition: 0.32s ease;
  break-inside: avoid;
  box-shadow: 0 14px 38px rgba(0,0,0,0.08);
  border: 1px solid rgba(7,26,51,0.10);
}

/* vintage border overlay */
.momentCard::after{
  content:"";
  position:absolute;
  inset: 12px;
  border: 1px dashed rgba(255,255,255,0.6);
  border-radius: 14px;
  pointer-events:none;
  opacity: 0.7;
}

/* image styling */
.momentCard img{
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;

  /* ✅ vintage vibe */
  filter: sepia(0.25) contrast(1.06) brightness(0.98) saturate(1.1);
  transition: transform 0.45s ease, filter 0.45s ease;
}

.momentCard:hover{
  transform: translateY(-6px) rotate(-0.25deg);
  box-shadow: 0 26px 65px rgba(0,0,0,0.13);
  border-color: rgba(10,162,212,0.35);
}

.momentCard:hover img{
  transform: scale(1.06);
  filter: sepia(0.20) contrast(1.12) brightness(1.02) saturate(1.2);
}

/* ✅ film grain overlay */
.momentCard::before{
  content:"";
  position:absolute;
  inset:0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='.17'/%3E%3C/svg%3E");
  pointer-events:none;
  opacity: 0.25;
  mix-blend-mode: overlay;
}

/* ============================================================
   ✅ SHINING STARS (Vintage Luxe + Fade Edges + Responsive)
   ============================================================ */

.shiningStarsSection{
  position: relative;
  padding: 95px 0;
  max-width: 1180px;
  margin: 70px auto;
  overflow: hidden;

  /* ✅ NEW LOOK: vintage luxe */
  background: linear-gradient(180deg, #1a1410 0%, #0f0b08 100%);
  border-radius: 44px;
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 55px 120px rgba(0,0,0,0.35);
}

/* ✅ Warm film-grain overlay */
.shiningStarsSection::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 18% 16%, rgba(214,165,74,0.13), transparent 52%),
    radial-gradient(circle at 76% 18%, rgba(255,255,255,0.08), transparent 52%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)' opacity='.14'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  opacity: 0.55;
  pointer-events:none;
  border-radius: inherit;
}

.shiningStarsWrap{
  position: relative;
  z-index: 2;
}

/* ============================================================
   ✅ Title (gold-silver gradient + shimmer)
   ============================================================ */
.shiningStarsTitle{
  text-align: center;
  font-size: clamp(2.2rem, 3.4vw, 3.8rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 60px;

  background: linear-gradient(90deg, #d6a54a, #ffffff, #b8b8b8, #d6a54a);
  background-size: 250% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.shiningStarsTitle span{
  -webkit-text-fill-color: rgba(255,255,255,0.88);
  font-weight: 800;
  font-size: 0.74em;
}

.shiningStarsTitle::after{
  content:"";
  position:absolute;
  left:50%;
  transform: translateX(-50%);
  bottom: -18px;
  width: 240px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(214,165,74,0.85), transparent);
  opacity: 0.9;
}

/* ============================================================
   ✅ Fade edges wrapper (this is the main new feature)
   ============================================================ */

.shiningStarsCarouselWrap{
  position: relative;
}

/* ✅ Fade edges */
.shiningStarsCarouselWrap::before,
.shiningStarsCarouselWrap::after{
  content:"";
  position:absolute;
  top:0;
  bottom:0;
  width: 100px;
  pointer-events:none;
  z-index: 4;
}

.shiningStarsCarouselWrap::before{
  left:0;
  background: linear-gradient(to right,
    rgba(26,20,16,1) 0%,
    rgba(26,20,16,0) 100%
  );
}

.shiningStarsCarouselWrap::after{
  right:0;
  background: linear-gradient(to left,
    rgba(26,20,16,1) 0%,
    rgba(26,20,16,0) 100%
  );
}

/* ============================================================
   ✅ Carousel container (snap 1-by-1)
   ============================================================ */

.shiningStarsCarousel{
  display:flex;
  gap: 26px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 10px 18px 26px;

  -ms-overflow-style: none;
  scrollbar-width: none;
}
.shiningStarsCarousel::-webkit-scrollbar{
  display: none;
}

/* ============================================================
   ✅ Card: vintage glass + elegant layout
   ============================================================ */

.shiningStarsCard{
  flex: 0 0 100%;
  scroll-snap-align: start;

  display:grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 44px;
  align-items:center;

  padding: 32px;
  border-radius: 28px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(14px);
  box-shadow: 0 35px 90px rgba(0,0,0,0.28);

  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.shiningStarsCard:hover{
  transform: translateY(-5px);
  box-shadow: 0 55px 120px rgba(0,0,0,0.34);
}

/* ✅ Image */
.shiningStarsMedia{
  height: 340px;
  border-radius: 22px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,0.12);
  position: relative;
}

.shiningStarsMedia img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
  transition: transform 0.6s ease;
}

.shiningStarsCard:hover .shiningStarsMedia img{
  transform: scale(1.06);
}

/* ✅ subtle vignette */
.shiningStarsMedia::after{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(circle at 50% 40%, rgba(0,0,0,0) 55%, rgba(0,0,0,0.35));
  pointer-events:none;
}

/* ✅ Text */
.shiningStarsContent p{
  font-size: 1rem;
  line-height: 1.75;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
}

.shiningStarsContent h3{
  margin-top: 22px;
  font-size: 1.4rem;
  font-weight: 900;
  color: #fff;
}

.shiningStarsRole{
  margin-top: 12px;
  font-weight: 900;
  font-size: 1rem;
  color: rgba(214,165,74,0.95);
  letter-spacing: 0.02em;
}

/* ============================================================
   ✅ Floating Luxe Sparkles
   ============================================================ */

.shiningStarsDecor{
  position:absolute;
  inset:0;
  pointer-events:none;
  z-index: 1;
}

.shStar{
  position:absolute;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  opacity: 0.75;
  background: radial-gradient(circle, rgba(214,165,74,1), rgba(214,165,74,0));
  filter: blur(0.35px);
}

.shStar.s1{ left: 12%; bottom: -16%; width: 14px; height:14px; }
.shStar.s2{ left: 30%; bottom: -18%; width: 18px; height:18px; opacity:0.6; }
.shStar.s3{ left: 55%; bottom: -20%; width: 22px; height:22px; opacity:0.55; }
.shStar.s4{ left: 78%; bottom: -18%; width: 14px; height:14px; opacity:0.7; }
.shStar.s5{ left: 90%; bottom: -22%; width: 20px; height:20px; opacity:0.5; }

/* ============================================================
   ✅ RESPONSIVE (Mobile: stacked layout)
   ============================================================ */

@media(max-width: 900px){

  .shiningStarsSection{
    border-radius: 30px;
    margin: 45px 16px;
    padding: 80px 0;
  }

  /* Reduce fade edges on small screens */
  .shiningStarsCarouselWrap::before,
  .shiningStarsCarouselWrap::after{
    width: 55px;
  }

  .shiningStarsCard{
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 22px;
  }

  .shiningStarsMedia{
    height: 240px;
  }

  .shiningStarsContent h3{
    font-size: 1.25rem;
  }

  .shiningStarsContent p{
    font-size: 0.95rem;
  }
}

@media(max-width: 520px){

  .shiningStarsTitle{
    margin-bottom: 45px;
  }

  .shiningStarsTitle::after{
    width: 190px;
  }

  .shiningStarsMedia{
    height: 220px;
  }
}


/* ============================================================
   ✅ MOMENTS — Masonry Gallery (Pinterest Style + Mobile too)
   ✅ Vintage Modal + Thumbnails
   ============================================================ */

.momentsSection{
  padding: 95px 0;
  background: #e8f3fa;
}

.momentsHeader{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 18px;
  margin-bottom: 38px;
  flex-wrap: wrap;
}

.momentsTitle{
  font-size: clamp(2.2rem, 3.4vw, 3.4rem);
  font-weight: 900;
  color:#071a33;
  letter-spacing: -0.03em;
  line-height: 1.06;
}

.momentsUnderline{
  color: var(--cyan);
  position: relative;
  display:inline-block;
  padding-bottom: 12px;
}

.momentsUnderline::after{
  content:"";
  position:absolute;
  left:50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 150px;
  height: 18px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position:center;
  opacity: 0.95;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 50'%3E%3Cpath d='M10 30 C60 10 160 10 210 30' stroke='%230aa2d4' stroke-width='10' stroke-linecap='round' fill='none'/%3E%3C/svg%3E");
}

.momentsBtn{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 12px;
  background: #0aa2d4;
  color:#fff;
  font-weight: 900;
  font-size: 0.95rem;
  transition: 0.25s ease;
}

.momentsBtn:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* ============================================================
   ✅ MASONRY GRID (Pinterest)
   ✅ Works on desktop + mobile
   ============================================================ */

.momentsMasonry{
  column-count: 4;
  column-gap: 18px;
}

@media(max-width: 1050px){
  .momentsMasonry{ column-count: 3; }
}
@media(max-width: 800px){
  .momentsMasonry{ column-count: 2; }
}
@media(max-width: 520px){
  .momentsMasonry{ column-count: 2; column-gap: 12px; }
}

/* Each card */
.momentCard{
  display:block;
  width:100%;
  margin: 0 0 18px;
  padding:0;
  border:none;
  background: transparent;
  border-radius: 18px;
  overflow:hidden;
  cursor:pointer;
  break-inside: avoid;
  position: relative;
  transition: 0.28s ease;
  box-shadow: 0 18px 40px rgba(15,23,42,0.10);
}

/* Vintage border */
.momentCard::after{
  content:"";
  position:absolute;
  inset: 10px;
  border: 1px dashed rgba(255,255,255,0.55);
  border-radius: 14px;
  pointer-events:none;
  opacity: 0.85;
}

/* Image */
.momentCard img{
  width:100%;
  height:auto;
  display:block;
  transform: scale(1);
  transition: 0.55s ease;
  filter: contrast(1.05) saturate(0.95);
}

/* Vintage hover: warm tint + subtle zoom */
.momentCard:hover img{
  transform: scale(1.07);
  filter: contrast(1.08) saturate(1.02);
}

/* slight lift hover */
.momentCard:hover{
  transform: translateY(-6px);
  box-shadow: 0 28px 80px rgba(0,0,0,0.22);
}

/* ============================================================
   ✅ MODAL — Vintage Lightbox with Thumbnails
   ============================================================ */

.momentsModal{
  position: fixed;
  inset: 0;
  display: none;
  z-index: 99999;
}

.momentsModal.is-open{
  display:block;
}

.momentsModalBackdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(10px);
  animation: modalFade 0.25s ease;
}

/* Modal container */
.momentsModalCard{
  position:absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%) scale(0.97);
  width: min(980px, 94%);
  background: #fdf7ee;
  border-radius: 22px;
  box-shadow: 0 50px 140px rgba(0,0,0,0.35);
  overflow:hidden;
  animation: modalPop 0.26s ease forwards;
  border: 2px solid rgba(255,255,255,0.25);
}

/* Top bar */
.momentsModalTop{
  padding: 14px 16px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 12px;
  border-bottom: 1px solid rgba(7,26,51,0.08);
  background: rgba(255,255,255,0.75);
}

.momentsModalTitle{
  font-weight: 900;
  font-size: 1rem;
  color: rgba(7,26,51,0.75);
  letter-spacing: 0.02em;
}

.momentsModalClose{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(7,26,51,0.15);
  background: rgba(255,255,255,0.95);
  font-size: 28px;
  font-weight: 900;
  cursor: pointer;
  transition: 0.25s ease;
}

.momentsModalClose:hover{
  transform: scale(1.06);
  box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

/* Main image area */
.momentsModalBody{
  padding: 16px;
}

.momentsModalMain{
  width:100%;
  height: min(64vh, 520px);
  border-radius: 18px;
  overflow:hidden;
  position: relative;
  background: #0b0b0b;
}

.momentsModalMain img{
  width:100%;
  height:100%;
  object-fit: contain;
  display:block;
  padding: 10px;
}

/* Vintage grain overlay */
.momentsModalMain::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E");
  opacity: 0.30;
  mix-blend-mode: overlay;
}

/* Thumbnails strip */
.momentsThumbs{
  margin-top: 14px;
  display:flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 6px;

  -ms-overflow-style:none;
  scrollbar-width:none;
}

.momentsThumbs::-webkit-scrollbar{
  display:none;
}

.momentsThumb{
  flex: 0 0 78px;
  height: 58px;
  border-radius: 12px;
  overflow:hidden;
  border: 2px solid rgba(7,26,51,0.14);
  background: #fff;
  cursor:pointer;
  transition: 0.25s ease;
}

.momentsThumb img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
  filter: contrast(1.05) saturate(0.9);
}

.momentsThumb.active{
  border-color: var(--cyan);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(10,162,212,0.18);
}

/* Responsive modal adjustments */
@media(max-width: 640px){
  .momentsModalMain{
    height: 52vh;
  }
  .momentsThumb{
    flex: 0 0 68px;
    height: 54px;
  }
}

@keyframes modalFade{
  from{opacity:0;}
  to{opacity:1;}
}
@keyframes modalPop{
  from{opacity:0; transform: translate(-50%,-50%) scale(0.95);}
  to{opacity:1; transform: translate(-50%,-50%) scale(1);}
}
/* ✅ Center "See Full Gallery" button on mobile */
@media(max-width: 640px){
  .momentsHeader{
    justify-content: center;
    text-align: center;
  }

  .momentsBtn{
    margin-top: 12px;
    margin-left: auto;
    margin-right: auto;
  }
}
/* ============================================================
   ✅ CAMPUS SHOWCASE — PEEK DECK + MODAL
   ============================================================ */

.campusShowcaseSection{
  padding: 95px 0;
  background: #ffffff;
  overflow: hidden;
}

/* Header */
.campusHeader{
  text-align: center;
  max-width: 880px;
  margin: 0 auto 50px;
}

.campusTitle{
  font-size: clamp(2.4rem, 3.6vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #071a33;
}

.campusUnderline{
  color: var(--cyan);
  position: relative;
  display: inline-block;
}

.campusUnderline::after{
  content:"";
  position:absolute;
  left:50%;
  transform: translateX(-50%);
  bottom:-8px;
  width: 150px;
  height: 16px;
  background-repeat:no-repeat;
  background-size:contain;
  opacity:.95;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 50'%3E%3Cpath d='M10 30 C60 10 160 10 210 30' stroke='%230aa2d4' stroke-width='10' stroke-linecap='round' fill='none'/%3E%3C/svg%3E");
}

.campusSub{
  margin-top: 22px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.7;
  color: rgba(7,26,51,0.70);
}

/* ============================================================
   ✅ Peek Deck Wrap
   ============================================================ */

.campusDeckWrap{
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  padding: 25px 10px 10px;
}

/* ✅ Tap hint always visible */
.campusTapHint{
  margin-top: 50px;
  text-align: center;
  font-weight: 900;
  font-size: 0.95rem;
  letter-spacing: .04em;
  color: rgba(7,26,51,0.55);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  user-select: none;
}

.campusTapHint span{
  font-size: 1.1rem;
  color: var(--cyan);
  animation: campusHintBounce 1.15s ease-in-out infinite;
}

@keyframes campusHintBounce{
  0%,100%{ transform: translateX(0); opacity:.75;}
  50%{ transform: translateX(6px); opacity:1;}
}

/* ============================================================
   ✅ Deck Stack
   ============================================================ */

.campusDeck{
  position: relative;
  width: 100%;
  height: 520px;
  border-radius: 26px;
  perspective: 1400px;
  transform-style: preserve-3d;

  will-change: transform;
  transition: transform 0.18s ease;
}

/* ✅ Each card stacked */
.campusDeckCard{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  border-radius: 26px;
  overflow: hidden;
  transform-style: preserve-3d;

  transition: transform 0.50s ease, box-shadow 0.50s ease, opacity 0.50s ease;
  box-shadow: 0 35px 90px rgba(0,0,0,0.15);
}

/* ✅ Safeguard: remove any accidental labels */
.campusDeckCard::before,
.campusDeckCard::after{
  content:none !important;
}

.campusDeckCard img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display:block;
  filter: saturate(1.06) contrast(1.03);
}

/* ✅ Make stack edges visible (top 5 only) */
.campusDeckCard:nth-child(1){
  transform: translateY(0px) scale(1);
  z-index: 10;
}
.campusDeckCard:nth-child(2){
  transform: translateY(12px) scale(.98);
  opacity: 0.95;
  z-index: 9;
}
.campusDeckCard:nth-child(3){
  transform: translateY(24px) scale(.96);
  opacity: 0.90;
  z-index: 8;
}
.campusDeckCard:nth-child(4){
  transform: translateY(36px) scale(.94);
  opacity: 0.86;
  z-index: 7;
}
.campusDeckCard:nth-child(5){
  transform: translateY(48px) scale(.92);
  opacity: 0.80;
  z-index: 6;
}

/* ✅ Hide extra cards (prevents ugly stacking) */
.campusDeckCard:nth-child(n+6){
  transform: translateY(64px) scale(.90);
  opacity: 0;
  pointer-events: none;
}

/* ============================================================
   ✅ Hover movement (clean + premium)
   ============================================================ */

@media (hover: hover) and (pointer: fine){
  .campusDeck:hover .campusDeckCard:nth-child(1){
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 50px 100px rgba(0,0,0,0.18);
  }

  /* only 2nd card shifts slightly (no busy movement) */
  .campusDeck:hover .campusDeckCard:nth-child(2){
    transform: translateY(14px) scale(.98);
    opacity: 0.92;
  }
}

/* ============================================================
   ✅ Responsive
   ============================================================ */

@media(max-width: 980px){
  .campusDeck{ height: 420px; }
}

@media(max-width: 640px){
  .campusShowcaseSection{ padding: 75px 0; }

  .campusDeck{
    height: 330px;
    border-radius: 20px;
  }
  .campusDeckCard{ border-radius: 20px; }

  .campusTapHint{ font-size: 0.9rem; }
}

/* ============================================================
   ✅ MODAL
   ============================================================ */

.campusModal{
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.campusModal.is-open{ display: block; }

.campusModalBackdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(12px);
}

.campusModalCard{
  position: absolute;
  left:50%;
  top:50%;
  transform: translate(-50%,-50%);
  width: min(1050px, 94%);
  background: white;
  border-radius: 22px;
  box-shadow: 0 50px 130px rgba(0,0,0,0.35);
  overflow: hidden;
}

.campusModalClose{
  position:absolute;
  top: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(7,26,51,0.10);
  background: rgba(255,255,255,0.92);
  font-size: 28px;
  font-weight: 900;
  cursor: pointer;
  z-index: 3;
  transition: transform .18s ease;
}

.campusModalClose:hover{ transform: scale(1.06); }

/* ✅ big slider (merged, no duplicates) */
.campusModalSlider{
  display:flex;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  scroll-behavior:smooth;
  height: 520px;
  background: #0a0f1b;

  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
}
.campusModalSlider:active{ cursor: grabbing; }

.campusModalSlider::-webkit-scrollbar{ display:none; }
.campusModalSlider{ scrollbar-width:none; }

.campusSlide{
  flex: 0 0 100%;
  scroll-snap-align:start;
  display:flex;
  align-items:center;
  justify-content:center;
}

.campusSlide img{
  width:100%;
  height:100%;
  object-fit:contain;
  transition: transform 0.35s ease;
  cursor: zoom-in;
}

.campusSlide.is-zoomed{ background: #000; }
.campusSlide.is-zoomed img{
  transform: scale(1.75);
  cursor: zoom-out;
}

.campusModalSlider.is-locked{ overflow: hidden; }

/* thumbs */
.campusModalThumbs{
  display:flex;
  gap: 10px;
  overflow-x:auto;
  padding: 12px 14px;
  background: #ffffff;
  border-top: 1px solid rgba(7,26,51,0.10);
}

.campusModalThumbs::-webkit-scrollbar{ height:6px; }
.campusModalThumbs::-webkit-scrollbar-thumb{
  background: rgba(7,26,51,0.25);
  border-radius: 10px;
}

.campusThumb{
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  border-radius: 12px;
  overflow:hidden;
  width: 84px;
  height: 54px;
  opacity: 0.65;
  transform: translateY(0);
  transition: 0.22s ease;
}

.campusThumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.campusThumb.active{
  opacity: 1;
  outline: 3px solid rgba(10,162,212,0.50);
  transform: translateY(-2px);
}

@media(max-width: 820px){
  .campusModalSlider{ height: 360px; }
  .campusThumb{ width: 72px; height: 48px; }
}

/* ============================================================
   ✅ FOOTER V2 (SIET STYLE, IMPROVED)
   ============================================================ */

.footerV2{
  background: #eaf6fb;
  padding: 70px 0 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* ✅ soft glow background */
.footerV2::before{
  content:"";
  position:absolute;
  inset:-40%;
  background:
    radial-gradient(circle at 20% 20%, rgba(10,162,212,0.18), transparent 55%),
    radial-gradient(circle at 90% 40%, rgba(0,0,0,0.05), transparent 60%);
  pointer-events:none;
}

/* ================= Top CTA ================= */

.footerTop{
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: auto;
}

.footerHeadline{
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 900;
  color: #0b2b4a;
  letter-spacing: -0.03em;
}

.footerHeadline span{
  color: var(--cyan);
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
}

.footerHeadline span::after{
  content:"";
  position:absolute;
  left:50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 140px;
  height: 16px;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.9;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 50'%3E%3Cpath d='M10 30 C60 10 160 10 210 30' stroke='%230aa2d4' stroke-width='10' stroke-linecap='round' fill='none'/%3E%3C/svg%3E");
}

.footerSubtext{
  margin-top: 10px;
  font-size: 1rem;
  font-weight: 700;
  color: rgba(7,26,51,0.65);
}

/* ================= Social Icons ================= */

.footerSocialRow{
  margin-top: 24px;
  display:flex;
  justify-content:center;
  gap: 14px;
}

.footerSocial{
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: #0b2b4a;
  color: white;
  font-weight: 900;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  transition: 0.25s ease;
}

.footerSocial:hover{
  transform: translateY(-3px) scale(1.06);
  background: var(--cyan);
}

/* ================= Pills ================= */

.footerPills{
  margin-top: 36px;
  display:flex;
  flex-wrap: wrap;
  justify-content:center;
  gap: 20px;
}

.footerPill{
  display:flex;
  align-items:center;
  gap: 12px;
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(10,162,212,0.25);
  border-radius: 12px;
  padding: 14px 18px;
  font-weight: 700;
  color: rgba(7,26,51,0.76);
  text-decoration:none;
  min-width: 280px;
  max-width: 720px;
  transition: 0.25s ease;
  backdrop-filter: blur(14px);
}

.footerPill:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.pillIcon{
  font-size: 1.2rem;
}

/* ================= NAV LINKS ROW ================= */

.footerNavRow{
  margin: 55px auto 0;
  background: rgba(255,255,255,0.78);
  max-width: 1050px;
  border-radius: 12px;
  padding: 16px 24px;
  display:flex;
  justify-content:center;
  flex-wrap: wrap;
  gap: 18px;
  position: relative;
  z-index: 2;
}

.footerNavRow a{
  font-weight: 900;
  color: rgba(7,26,51,0.7);
  text-decoration:none;
  font-size: 0.95rem;
  transition: 0.2s ease;
}

.footerNavRow a:hover{
  color: var(--cyan);
}

/* ================= BOTTOM BAR ================= */

.footerBottomBar{
  margin-top: 45px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap: wrap;
  gap: 18px;
  max-width: 1050px;
  margin-left:auto;
  margin-right:auto;
  position: relative;
  z-index: 2;
}

.footerPolicyLinks{
  display:flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footerPolicyLinks a{
  font-weight: 800;
  font-size: 0.9rem;
  color: rgba(7,26,51,0.55);
  text-decoration:none;
  transition: 0.2s ease;
}

.footerPolicyLinks a:hover{
  color: var(--cyan);
}

.footerCopyright{
  font-weight: 800;
  font-size: 0.9rem;
  color: rgba(7,26,51,0.55);
}

/* ================= Scroll To Top Button ================= */

.footerScrollTop{
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 22px;
  font-weight: 900;
  background: #0b2b4a;
  color: white;
  box-shadow: 0 18px 45px rgba(0,0,0,0.18);
  transition: 0.25s ease;
  opacity: 0;
  pointer-events: none;
  z-index: 9999;
}

.footerScrollTop.show{
  opacity: 1;
  pointer-events: auto;
}

.footerScrollTop:hover{
  transform: translateY(-4px) scale(1.05);
  background: var(--cyan);
}

/* ================= Responsive ================= */

@media(max-width: 980px){
  .footerBottomBar{
    justify-content:center;
    text-align:center;
  }

  .footerPolicyLinks{
    justify-content:center;
  }
}

@media(max-width: 640px){

  .footerPill{
    width: 100%;
    max-width: 100%;
    justify-content:center;
    text-align:center;
  }

  .footerNavRow{
    padding: 14px 16px;
  }

  .footerScrollTop{
    right: 18px;
    bottom: 18px;
    width: 48px;
    height: 48px;
  }
}
