/* ================================================
   CSS CUSTOM PROPERTIES
   ================================================ */
:root {
  --navy:      #10295C;
  --sky:       #c2cde6;
  --navy-deep: #0A1B40;
  --royal:     #22479E;
  --royal-soft: #E9EDF8;
  --red: #ff3840;
  --red-deep: #B0161C;
  --red-soft: #FBE6E2;
  --gold: #EAA21C;
  --gold-deep: #C5851A;
  --gold-soft: #FBEFCE;
  --paper: #FAF6ED;
  --paper-2: #F2ECDC;
  --white: #FFFFFF;
  --ink: #15233F;
  --ink-soft: #5A6378;
  --line: #E7DFCC;
  --shadow: 0 22px 48px -26px rgba(16,41,92,.4);
  --shadow-sm: 0 10px 24px -16px rgba(16,41,92,.5);
  --r: 20px;
  --maxw: 1180px;
}
/* ================================================
   CUSTOM CURSOR
   ================================================ */
@media (pointer: fine) {
  body, body * { cursor: none !important; }

  /* Fallback: restore the native cursor while a 3rd-party overlay (e.g. NanoGallery2 viewer) is open */
  body.native-cursor, body.native-cursor * { cursor: auto !important; }
  body.native-cursor .cursor-dot, body.native-cursor .cursor-outline { opacity: 0 !important; }

  .cursor-dot,
  .cursor-outline {
    position: fixed;
    top: 0; left: 0;
    border-radius: 50%;
    pointer-events: none;
    z-index: 2147483647;
    will-change: transform;
  }

  .cursor-dot {
    width: 6px; height: 6px;
    background: var(--red);
    transition: opacity .3s, width .2s, height .2s, background .2s;
  }

  .cursor-outline {
    width: 20px; height: 20px;
    border: 2px solid rgba(255,56,64,.5);
    background: transparent;
    transition: width .25s ease, height .25s ease, border-color .25s ease;
  }

  .cursor-dot.cursor-hover {
    width: 6px; height: 6px;
    background: var(--gold);
  }

  .cursor-outline.cursor-hover {
    width: 52px; height: 52px;
    border-color: var(--gold);
  }
}

/* ================================================
   RESET & BASE
   ================================================ */
* { box-sizing: border-box; }
html { scroll-behavior: auto; scroll-padding-top: 82px; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }
body { margin: 0; background: var(--white); color: var(--ink); font-family: "Manrope", sans-serif; font-size: 17px; line-height: 1.62; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
body::-webkit-scrollbar { width: 4px; background-color: #04040b; }
body::-webkit-scrollbar-track { box-shadow: inset 0 0 6px rgba(0,0,0,.3); }
body::-webkit-scrollbar-thumb { background-color: rgba(255,255,255,.22); }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
ul, li { margin: 0; padding: 0; list-style: none; }

/* ================================================
   LAYOUT UTILITIES
   ================================================ */
.eyebrow { font-family: "Manrope", sans-serif; font-weight: 700; font-size: 1rem; letter-spacing: .15em; text-transform: uppercase; color: var(--red); display: inline-flex; align-items: center; gap: .6rem; }
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--gold); border-radius: 2px; }
.eyebrow.gold { color: var(--gold); }
.eyebrow.gold::before { background: var(--gold); }
.eyebrow b{
   font-family: "Nothing You Could Do", cursive;
    font-weight: 400;
    position: absolute;
    font-size: 3rem;
    text-transform: capitalize;
    color: #7c7c7c29;
}

/* ================================================
   BUTTONS
   ================================================ */
.btn { display: inline-flex; align-items: center; gap: .5rem; font-weight: 700; font-size: .98rem; padding: .82rem 1.4rem; border-radius: 1000px 1000px 1000px 0px; cursor: pointer; transition: transform .15s, box-shadow .15s, background .15s, color .15s; }
.btn svg { width: 17px; height: 17px; }

.btn-red { background: var(--red); color: #fff; box-shadow: var(--shadow-sm); }
.btn-red:hover { background: var(--red-deep); color: var(--white); transform: translateY(-2px); }
.btn-red-outline { border-color: var(--red); color: var(--red-deep); }
.btn-red-outline:hover { border-color: var(--red); color: var(--red-deep); }

.btn-navy { background: var(--navy); color: #fff; box-shadow: var(--shadow-sm); }
.btn-navy:hover { background: var(--navy-deep); color: var(--white); transform: translateY(-2px); }
.btn-navy-outline { border-color: var(--navy); color: var(--navy-deep); }

.btn-gold { background: var(--gold); color: #2a1c02; }
.btn-gold:hover { background: var(--gold-deep); transform: translateY(-2px); }
.btn-gold-outline { border-color: var(--gold); color: var(--gold-deep); }
.btn-gold-outline:hover { border-color: var(--red); color: var(--red-deep); }

.btn-ghost-light { border-color: rgba(255,255,255,.55); color: #fff; }
.btn-ghost-light:hover { background: rgba(255,255,255,.14); }



/* ================================================
   HERO
   ================================================ */
.hero { position: relative; padding: 60px 0 84px; overflow: hidden; z-index: 1; }
.hero .eyebrow{ color: #fff;}
.hero h1 { font-size: clamp(2.5rem, 5.6vw, 4.2rem); font-weight: 800; margin-top: 1rem; color: var(--white); }
.hero h1 .gold { color: var(--gold); }
.hero .lead { font-size: 1.16rem; font-weight: 600; color: var(--sky); margin-top: 1.25rem; max-width: 48ch; }
.hero-cta { display: flex; gap: .8rem; margin-top: 1.9rem; flex-wrap: wrap; }
.hero-badges { display: flex; gap: 10px; margin-top: 1.7rem; flex-wrap: wrap; }
.chip { display: inline-flex; align-items: center; gap: .5rem; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: .45rem .9rem; font-size: .85rem; font-weight: 600; box-shadow: var(--shadow-sm); }
.chip .d { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.blob { position: absolute; border-radius: 46% 54% 58% 42% / 52% 46% 54% 48%; }
.float { animation: float 8s ease-in-out infinite; }
.float.alt { animation-delay: -4s; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-13px); } }
.stat-card { position: absolute; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: .7rem .95rem; box-shadow: var(--shadow); z-index: 6; }
.stat-card b { font-family: "Manrope", sans-serif; font-size: 1.3rem; font-weight: 800; display: block; letter-spacing: -.02em; color: var(--navy); }
.stat-card span { font-size: .78rem; color: var(--ink-soft); font-weight: 600; }
.hero .mask-layer{position: absolute; left: 0; right: 0; bottom: 0;}
.hero .mask-layer .hero-art{position: relative;}
.parallax-wrap { border-radius: var(--r); }
.parallax-img { display: block; width: 100%; will-change: transform; transform: translate(0,0) scale(1); }

/* ================================================
   HERO BANNER
   ================================================ */
.hero-banner{
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    transition: opacity 1s ease;
}
.hero-banner img{
width: 100%;
height: 100%;
}
.hero-banner:after{
   content:'';
   position: absolute;
   left: 0;
   right: 0;
   top: 0;
   bottom: 0;
   background:linear-gradient(to top, #1a1128c7 10%, #0b1c39ad 100%);
}
/* ================================================
   HIGHLIGHTS STRIP
   ================================================ */
.highlights { position: relative; background: var(--navy); color: #dbe3f4; }
.highlights::after{
   content: '';
   position: absolute;
   left: 0;
   right: 0;
   top: 0;
   bottom: 0;
   background: radial-gradient(ellipse 60% 70% at 80% 40%,rgb(234 162 28 / 28%) 0%, transparent 70%);
}
.hl-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding: 40px 0; position: relative; z-index: 1; }
.hl { display: flex; gap: 14px; align-items: flex-start; }
.hl .ic { transition: 0.3s; width: 100px; height: 100px; border-radius: 50% 50% 0% 50%; background: rgba(255,255,255,.08); display: grid; place-items: center; flex: 0 0 auto; }
.hl:hover .ic{ transform: translateY(-8px);}
.hl .ic i { font-size: 2rem;}
.hl h3 { color: #fff; font-size: 1.05rem; margin-bottom: .2rem; }
.hl p { font-size: .86rem; color: #aebbd6; }

.icon-gold{
   color: var(--gold);
   border: 1px solid var(--gold);
   }
.hl:hover .icon-gold{box-shadow: 0px 0px 14px var(--gold), 0px 0px 14px inset var(--gold); text-shadow: 0px 0px 14px var(--gold);}
.icon-cyan{
   color: var(--bs-cyan);
    border: 1px solid var(--bs-cyan);
   }
.hl:hover .icon-cyan{box-shadow: 0px 0px 14px var(--bs-cyan), 0px 0px 14px inset var(--bs-cyan); text-shadow: 0px 0px 14px var(--bs-cyan);}
.icon-teal {
    color: var(--bs-teal);
    border: 1px solid var(--bs-teal);
}
.hl:hover .icon-teal{box-shadow: 0px 0px 14px var(--bs-teal), 0px 0px 14px inset var(--bs-teal); text-shadow: 0px 0px 14px var(--bs-teal);}
.icon-danger {
    color: var(--bs-danger);
    border: 1px solid var(--bs-danger);
}
.hl:hover .icon-danger{box-shadow: 0px 0px 14px var(--bs-danger),  0px 0px 14px inset var(--bs-danger); text-shadow: 0px 0px 14px var(--bs-danger);}

@media (max-width: 767px) {
    .highlights{padding: 0px 15px;}
    .hl .ic {transition: 0.3s; width: 60px; height: 60px;}
}
/* ================================================
   SECTION BASE
   ================================================ */
.band { position: relative; padding: 90px 0; background: #fff; }
.sec-head { max-width: 680px; margin-bottom: 46px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head.center .eyebrow { justify-content: center; }
.sec-head h2 { font-size: clamp(1.9rem, 4.2vw, 2.9rem); margin-top: .8rem; }
.sec-head h2 strong {font-size: clamp(1.9rem, 4.2vw, 3.1rem);}
.sec-head p { color: var(--ink-soft); font-size: 1.1rem; margin-top: 1rem; }

/* ================================================
   ABOUT
   ================================================ */
   .about-home{
      position: relative;
      padding: 30px 0;
   }
.about-copy p { color: var(--ink-soft); margin-top: 1rem; }
.ribbon { position: absolute; right: -10px; top: 22px; background: var(--red); color: #fff; font-weight: 700; font-size: .82rem; padding: .5rem .9rem; border-radius: 8px; box-shadow: var(--shadow-sm); }
.photo-frame { border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); }
.photo-ph img { width: 100%; display: block; }

/* ================================================
   INNER PAGE HERO (About / Leaders / Parents / etc.)
   ================================================ */
.page-hero { position: relative; background: linear-gradient(135deg, var(--navy), var(--navy-deep)); padding: 60px 0; overflow: hidden; border-radius: 0 0 0 80px; }
.page-hero::before {
   content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: url(../images/page-header.svg) no-repeat left 80px fixed;
    background-size: 100%;
    opacity: 0.2;
}
.page-hero::after {
   content: "";
   position: absolute;
   left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 0.1;
}
.page-hero.about-hero::after {
      background: url(../images/header/title-bg-about.webp) no-repeat left 80px fixed;
    background-size: 100%;
}
.page-hero.leader-hero::after {
      background: url(../images/header/title-bg-leader.webp) no-repeat left 80px fixed;
    background-size: 100%;
}
.page-hero.parents-hero::after {
      background: url(../images/header/title-bg-leader.webp) no-repeat left 80px fixed;
    background-size: 100%;
}
.page-hero.contact-hero::after {
      background: url(../images/header/title-bg-contact.webp) no-repeat left 80px fixed;
    background-size: 100%;
}
.page-hero.schedule-hero::after {
      background: url(../images/header/title-bg-schedule.webp) no-repeat left 80px fixed;
    background-size: 100%;
}
.page-hero.facilities-hero::after {
      background: url(../images/header/title-bg-facilities.webp) no-repeat left 80px fixed;
    background-size: 100%;
}


.page-hero .container { position: relative; z-index: 1; }
.page-hero .eyebrow { color: var(--gold); }
.page-hero .eyebrow::before { background: var(--gold); }
.page-hero h1 { color: #fff; font-size: clamp(2.2rem, 4.6vw, 3.4rem); font-weight: 800; margin-top: .7rem; }
.page-hero h1 strong{ color: var(--gold);}
.page-hero .lead-line { color: var(--sky); font-size: 1.08rem; margin-top: 1rem; max-width: 56ch; }
.crumbs { display: flex; align-items: center; gap: .5rem; margin-top: 1.5rem; font-size: .88rem; font-weight: 600; color: #9fb0d6; }
.crumbs a { color: #fff; }
.crumbs a:hover { color: var(--gold); }
.crumbs svg { width: 13px; height: 13px; opacity: .6; }

/* Chairman / leadership callout */
.chair-note { display: flex; align-items: center; gap: 30px; background: #fff; border: 1px solid var(--line); border-left: 5px solid var(--gold); border-radius: var(--r); padding: 32px 36px; box-shadow: var(--shadow-sm); }
.chair-note .avatar { flex: 0 0 auto; width: 118px; height: 118px; border-radius: 50%; overflow: hidden; border: 3px solid var(--gold-soft); }
.chair-note .avatar img { width: 100%; height: 100%; object-fit: cover; }
.chair-note blockquote { margin: 0; font-size: 1.12rem; font-style: italic; color: var(--ink); line-height: 1.6; }
.chair-note .who { margin-top: .7rem; font-style: normal; font-weight: 700; color: var(--navy); font-size: .92rem; }
.chair-note .who span { display: block; font-weight: 500; color: var(--ink-soft); font-size: .82rem; margin-top: .1rem; }

.parents-page{
   background:var(--paper-2);
   background: linear-gradient(135deg, var(--white) 0%, var(--paper-2) 55%, var(--paper-2) 100%);
}
.parents-page p {
    color: var(--ink-soft);
    margin-top: 1.1rem;
    line-height: 1.72;
    font-size: 1.05rem;
}
.how-we-partner{ position: relative;}
.how-we-partner:after {
    content: '';
    position: absolute;
    right: -100px;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    background: url(../images/parents-img.webp) no-repeat right bottom fixed;
    opacity: 0.3;
}
.how-we-partner .container{ position: relative; z-index: 1;}
/* ================================================
   FOUNDATION / STAGES
   ================================================ */
.foundation { position: relative; background: var(--paper-2); border-bottom: 1px solid var(--line); padding: 120px 0 0 0; }
.foundation:after{ content: ''; position: absolute; top:-2px; left: 0; right: 0; height: 96px; background: url(../images/wave.svg) no-repeat top center; background-size: 100%;}
.foundation .container{ position: relative; z-index: 1;}
.exams { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.exam { background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: .5rem 1.05rem; font-weight: 700; font-size: .92rem; color: var(--navy); box-shadow: var(--shadow-sm); }
.exam b { color: var(--red); }
.stages { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 46px; }
.stage { background: #fff; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column; transition: transform .2s; }
.stage:hover { transform: translateY(-6px); }
.stage .head { padding: 24px 26px 20px; color: #fff; }
.stage .head .age { font-weight: 600; font-size: .88rem; opacity: .92; }
.stage .head h3 { font-size: 1.4rem; margin-top: .25rem; }
.stage .head .grade { font-size: .92rem; opacity: .95; margin-top: .2rem; }
.stage .body { padding: 22px 26px 26px; }
.stage .body p { color: var(--ink-soft); font-size: .94rem; }
.stage ul { list-style: none; padding: 0; margin: 14px 0 0; }
.stage li { display: flex; gap: .55rem; align-items: flex-start; padding: .28rem 0; font-size: .92rem; font-weight: 500; }
.stage li svg { width: 17px; height: 17px; flex: 0 0 auto; margin-top: 3px; }

/* Co-Scholastic sub-section */
.coscho-section {
    background: #132550;
    padding: 50px 0 30px 0;
    position: relative;
    margin-top: -80px;
    border-radius: 40px 40px 0 0;
    overflow: hidden;
    isolation: isolate;
}

/* Layered glow — gold bloom bottom-left, royal blue bloom top-right, deep centre */
.coscho-section::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(ellipse 65% 55% at -8% 105%, rgba(234, 162, 28, .32) 0%, transparent 56%),
        radial-gradient(ellipse 72% 58% at 110% -8%, rgb(82 114 189 / 58%) 0%, transparent 60%),
        radial-gradient(ellipse 90% 75% at 50% 50%, rgb(72 108 187 / 75%) 0%, transparent 80%)
}

/* Dot grid + diagonal light sweep */
.coscho-section::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background-image:
        linear-gradient(118deg, transparent 28%, rgba(255,255,255,.055) 49%, rgba(255,255,255,.07) 50%, rgba(255,255,255,.055) 51%, transparent 72%),
        radial-gradient(circle, rgba(255,255,255,.07) 1px, transparent 1px);
    background-size: 100% 100%, 28px 28px;
}

.coscho-head { margin-top: 72px; margin-bottom: 36px; }
.coscho-head h3 { font-size: clamp(1.4rem, 3vw, 2rem); margin-top: .6rem; color: var(--white); }
.coscho-head p { color: var(--sky); margin-top: .6rem; }
.coscho-card {
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 4px 24px -8px rgba(16,41,92,.18);
  transition: transform .3s ease, box-shadow .3s ease;
  margin: 6px 4px 12px;
  min-height: 370px;
}
.coscho-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -12px rgba(16,41,92,.32);
}
.coscho-img {
  height: 190px;
  position: relative;
  overflow: hidden;
}
.coscho-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.coscho-card:hover .coscho-img img {
  transform: scale(1.06);
}
.coscho-img i {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  color: var(--navy);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,.18);
  backdrop-filter: blur(4px);
  transition: transform .3s ease, background .3s, color .3s;
  z-index: 2;
}
.coscho-card:hover .coscho-img i {
  transform: scale(1.12) rotate(-6deg);
  background: var(--navy);
  color: #fff;
}
.coscho-body {
  padding: 20px 22px 24px;
}
.coscho-body h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 7px;
}
.coscho-body p {
  font-size: .87rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

.coscho-section .owl-carousel .owl-nav button.owl-next,
.coscho-section .owl-carousel .owl-nav button.owl-prev {
     position: absolute;
    width: 30px;
    height: 30px;
    outline: none;
	top: 50%;
	margin-top:-21px;
        }

.coscho-section .owl-carousel .owl-nav button.owl-next {
            right:-10px;
        }
.coscho-section .owl-carousel .owl-nav button.owl-prev {
            left:-10px;
        }
.coscho-section .owl-carousel .owl-nav button.owl-next i,
.coscho-section .owl-carousel .owl-nav button.owl-prev i {
   color: #324e92;
    font-size: 25px;
    line-height: 42px;
    background: #ffffff;
    width: 42px;
    height: 42px;
    border-radius:50%;
	box-shadow: 0px 14px 17px #00000059;
            }
/* ================================================
   PARENTS AS PARTNERS
   ================================================ */
.parents { position: relative; background: #3d2873; color: #dde4f4; position: relative; overflow: hidden; }
.parents .container{ position: relative; z-index: 1;}
.parents:after{ content: ''; position: absolute; left: 0; right: 0; top: 0; bottom: 0; background: url(../images/ribbon.svg) no-repeat right top fixed; background-size: cover; opacity: 0.1;}
.parents:before{ content: ''; position: absolute; right: -100px; bottom: 0; width: 800px; height: 710px; background: url(../images/parents-img.webp) no-repeat center bottom; background-size:100%; z-index: 1;}
.parents .eyebrow { color: var(--gold); }
.parents .eyebrow::before { background: var(--gold); }
.parents h2 { color: #fff; }
.parents .intro { max-width: 760px; color: #c2cde6; font-size: 1.1rem; margin-top: 1rem; }
.pp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 42px; }
.pp-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-radius: var(--r); padding: 26px 24px; backdrop-filter: blur(10px); }
.pp-card .n { font-family: "Manrope", sans-serif; font-weight: 800; color: var(--gold); font-size: 1.6rem; }
.pp-card h3 { color: #fff; font-size: 1.14rem; margin: .45rem 0; }
.pp-card p { color: #c2cde6; font-size: .94rem; }
/* Featured photo slot (e.g. Orientation Day) — self-contained, works on any bg */
.op-photo { position: relative; border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); aspect-ratio: 4/3; background: linear-gradient(135deg, var(--royal-soft), var(--gold-soft)); }
.op-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.op-photo .ph-fallback { position: absolute; inset: 0; display: none; flex-direction: column; align-items: center; justify-content: center; gap: .6rem; color: var(--ink-soft); font-size: .85rem; font-weight: 600; text-align: center; padding: 1.2rem; }
.op-photo .ph-fallback svg { width: 42px; height: 42px; opacity: .55; color: var(--navy); }
.op-photo .cap { position: absolute; left: 0; right: 0; bottom: 0; background: linear-gradient(to top, rgba(10,27,64,.85), transparent); color: #fff; font-weight: 700; font-size: .88rem; padding: 16px 18px 12px; letter-spacing: .02em; }

/* Partner pillar cards — image-topped, distinct from the homepage's dark pp-card */
.partners-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 8px; }
.partner-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s; }
.partner-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.partner-img { position: relative; height: 170px; background: linear-gradient(135deg, var(--royal-soft), var(--gold-soft)); overflow: hidden; }
.partner-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.partner-icon { display: none; width: 100%; height: 100%; place-items: center; }
.partner-icon i { font-size: 2.3rem; color: var(--navy); opacity: .5; }
.partner-img .n { position: absolute; top: 14px; left: 14px; width: 34px; height: 34px; border-radius: 50%; background: #fff; color: var(--navy); font-weight: 800; font-size: .88rem; display: grid; place-items: center; box-shadow: var(--shadow-sm); }
.partner-body { padding: 22px 22px 26px; }
.partner-body h3 { font-size: 1.08rem; margin-bottom: .45rem; }
.partner-body p { font-size: .9rem; color: var(--ink-soft); line-height: 1.55; }
@media (max-width: 980px) {
    .partners-grid { grid-template-columns: repeat(2, 1fr); }
    .pp-card { background: rgb(0 0 0 / 18%);}
}
@media (max-width: 560px) { .partners-grid { grid-template-columns: 1fr; } }

/* ================================================
   LEADERSHIP
   ================================================ */
.leaders-section { position: relative; background: linear-gradient(120deg, var(--sky) 0%, #fff 55%, var(--gold-soft) 100%); }
.leaders-section:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: url(../images/ribbon.svg) no-repeat right top fixed;
    background-size: cover;
    opacity: 0.5;
}

.leaders-wrap { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }

.leaders-copy h2 { margin-top: .6rem; }
.leaders-copy h2 strong {font-size: 2.5rem;}
.leaders-copy p { color: var(--ink-soft); margin-top: 1rem; line-height: 1.72; max-width: 38ch; }

.lead-card { display: flex; flex-direction: column; align-items: center; gap: 14px; background: #fff; border: 1px solid var(--line); border-top: 4px solid var(--royal); border-radius: var(--r); padding: 30px 24px; box-shadow: var(--shadow-sm); text-align: center; transition: transform .2s, box-shadow .2s; }
.lead-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.lead-grid .col:nth-child(2) .lead-card { border-top-color: var(--gold-deep); }

.lead-card .avatar { flex-shrink: 0; width: 200px; height: 200px; border-radius: 50%; background: linear-gradient(135deg, var(--royal-soft), var(--gold-soft)); border: 2px solid var(--line); display: grid; place-items: center; overflow: hidden; }
.lead-card .avatar svg { width: 46px; height: 46px; opacity: .6; }

.lead-card h3 { font-size: 1.14rem; margin: 0; }
.lead-card .role { color: var(--red); font-weight: 700; font-size: .8rem; text-transform: uppercase; letter-spacing: .07em; margin-top: .25rem; }
.lead-card p { font-size: .9rem; color: var(--ink-soft); margin-top: .55rem; line-height: 1.55; }

/* ================================================
   FACILITIES
   ================================================ */
.facilities { position: relative; background: var(--paper-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.facilities:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: url(../images/line-texture.webp) no-repeat left top fixed;
    background-size: cover;
    opacity: 0.1;
}
.facilities .container{ position: relative; z-index: 1;}
.feat { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 24px; box-shadow: var(--shadow-sm); transition: transform .2s; }
.feat:hover { transform: translateY(-5px); }
.feat .ic { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 14px; background: var(--royal-soft); }
.feat .ic i { font-size: 1.35rem; color: var(--royal); }
.feat h3 { font-size: 1.12rem; margin-bottom: .35rem; }
.feat .tag { font-size: .78rem; font-weight: 700; color: var(--gold-deep); }
.feat p { font-size: .92rem; color: var(--ink-soft); margin-top: .3rem; }

/* ================================================
   ACHIEVERS
   ================================================ */
.achievers{
   position: relative;
}
.achievers .item{
   position: relative;
   border-radius: 40px;
    overflow: hidden;
}
.achievers .owl-carousel .owl-nav button.owl-next,
.achievers .owl-carousel .owl-nav button.owl-prev {
     position: absolute;
    width: 30px;
    height: 30px;
    outline: none;
	top: 50%;
	margin-top:-21px;
        }

.achievers .owl-carousel .owl-nav button.owl-next {
            right:-10px;
        }
.achievers .owl-carousel .owl-nav button.owl-prev {
            left:-10px;
        }
.achievers .owl-carousel .owl-nav button.owl-next i,
.achievers .owl-carousel .owl-nav button.owl-prev i {
   color: #324e92;
    font-size: 25px;
    line-height: 42px;
    background: #ffffff;
    width: 42px;
    height: 42px;
    border-radius:50%;
	box-shadow: 0px 14px 17px #00000059;
            }

.ach-wrap .sec-head { margin-bottom: 0; }

.ach { background: #fff; border: 1px solid var(--line); border-top: 5px solid var(--gold); border-radius: var(--r); padding: 24px; text-align: center; box-shadow: var(--shadow-sm); }
.ach .av { width: 74px; height: 74px; border-radius: 50%; margin: 0 auto 12px; background: linear-gradient(160deg, var(--royal-soft), var(--gold-soft)); display: grid; place-items: center; }
.ach .av svg { width: 38px; height: 38px; opacity: .55; }
.ach h3 { font-size: 1.05rem; }
.ach .exam-name { color: var(--red); font-weight: 700; font-size: .85rem; margin-top: .2rem; }
.ach p { font-size: .85rem; color: var(--ink-soft); margin-top: .4rem; }

/* ================================================
   GALLERY
   ================================================ */
.gallery { background: var(--paper-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.carousel {
   position: relative;
   overflow: hidden;
}
.slides { display: flex; transition: transform .5s ease; }
.slide { min-width: 100%; aspect-ratio: 16/7; display: grid; place-items: center; text-align: center; }
.slide .si { width: 58px; height: 58px; margin: 0 auto .6rem; opacity: .65; }
.slide span { font-weight: 700; color: var(--navy); }
.slide small { display: block; color: var(--ink-soft); font-weight: 600; }
.car-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 46px; height: 46px; border-radius: 50%; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); cursor: pointer; display: grid; place-items: center; z-index: 3; }
.car-btn:hover { background: var(--royal-soft); }
.car-btn.prev { left: 16px; }
.car-btn.next { right: 16px; }
.car-btn svg { width: 20px; height: 20px; stroke: var(--navy); fill: none; }
.dots { display: flex; gap: 8px; justify-content: center; margin-top: 18px; }
.dots button { width: 10px; height: 10px; border-radius: 50%; border: 0; background: var(--line); cursor: pointer; transition: .2s; }
.dots button.active { background: var(--red); width: 26px; border-radius: 6px; }

/* ================================================
   ADMISSIONS
   ================================================ */
.admit { background: linear-gradient(135deg, var(--navy), var(--navy-deep)); color: #fff; text-align: center; position: relative; overflow: hidden; }
.admit::after { content: ""; position: absolute; width: 360px; height: 360px; background: var(--red); opacity: .16; border-radius: 50%; right: -120px; top: -120px; }
.admit::before { content: ""; position: absolute; width: 300px; height: 300px; background: var(--gold); opacity: .16; border-radius: 50%; left: -110px; bottom: -130px; }
.admit .container { position: relative; z-index: 2; }
.admit h2 { color: #fff; font-size: clamp(2rem, 4.6vw, 3.1rem); max-width: 20ch; margin: 0 auto; }
.admit p { color: #cfd9ee; font-size: 1.12rem; margin: 1.1rem auto 0; max-width: 54ch; }
.admit .hero-cta { justify-content: center; margin-top: 2rem; }
.admit-steps { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-top: 2.3rem; }
.a-step { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); border-radius: 14px; padding: .7rem 1.1rem; font-weight: 600; font-size: .92rem; display: flex; align-items: center; gap: .5rem; }
.a-step b { color: var(--gold); }

/* ================================================
   FAQ
   ================================================ */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq { background: #fff; border: 1px solid var(--line); border-radius: 14px; margin-bottom: 12px; overflow: hidden; }
.faq summary { padding: 18px 22px; font-weight: 700; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .pm { width: 22px; height: 22px; flex: 0 0 auto; transition: transform .2s; color: var(--red); }
.faq[open] summary .pm { transform: rotate(45deg); }
.faq p { padding: 0 22px 20px; color: var(--ink-soft); font-size: .95rem; }

/* ================================================
   ANIMATIONS
   ================================================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s, transform .6s; }
.reveal.in { opacity: 1; transform: none; }

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 980px) {
  .hero-art { min-height: 330px; order: -1; }
  .hl-grid { grid-template-columns: repeat(2, 1fr); }
  .stages, .pp-grid { grid-template-columns: 1fr; }
  .coscho-grid { grid-template-columns: repeat(2, 1fr); }
  .leaders-wrap { grid-template-columns: 1fr; gap: 40px; }
  .leaders-copy p { max-width: none; }
}
@media (max-width: 760px) {
  .hl-grid, .coscho-grid { grid-template-columns: 1fr; }
  .band { padding: 62px 0; }
  .hero-banner {
    background: url(../images/banner.webp) no-repeat -712px 0px;
}
}
@media (max-width: 760px) {
  .chair-note { flex-direction: column; text-align: center; gap: 18px; padding: 28px 24px; }
  .page-hero { border-radius: 0 0 26px 26px; padding: 30px 0;}
  
  .page-hero.about-hero::after {
      background: url(../images/header/title-bg-about.webp) no-repeat left 0px;
    background-size: cover;
}
.page-hero.leader-hero::after {
      background: url(../images/header/title-bg-leader.webp) no-repeat left 0px;
    background-size: cover;
}
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; }
  .reveal { transition: none; }
  .slides { transition: none; }
  html { scroll-behavior: auto; }
}
/*==============Pages About=================*/
.about-us{ position: relative;}
.about-us .container{ position: relative; z-index: 1;}
.about-us:after{
   content: '';
   position: absolute;
   right: 0;
   top: 0;
   bottom: 0;
   width: 50%;
   background: url(../images/about-school-img.webp) no-repeat right center;
   border-radius: 0 0 0 80px;
}
.about-right{
   position: relative;
   z-index: 1;
}
.about-right .box{
   position: relative;
   left: -40px;
}
.about-philosophy { position: relative; background:var(--paper-2); padding:0;}
.about-philosophy .sec-head {
    max-width: 90%;
    margin-bottom: 46px;
}
.about-philosophy:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: url(../images/ribbon-2.svg) no-repeat right top fixed;
    background-size: cover;
    opacity: 0.1;
}
.philosophy-img img{ border-radius: 0px 80px 0px 0px;}

@media (max-width: 760px) {
   .about-us:after{ display: none;}
   .about-right .box{
   left: 0px;
}
}

.ic.gold{
   background: var(--gold);
   color: var(--white);
}
.ic.gold-soft{
   background: var(--gold-soft);
}
.ic.red{
   background: var(--red);
   color: var(--white);
}
.ic.red-soft{
   background: var(--red-deep);
   color: var(--white);
}
.about-philosophy .feat .ic i{color: var(--white);}
.about-philosophy .feat .ic.gold-soft i{color: var(--red-deep);}

/*==============Pages Leaders=================*/
.leader-profile { display: flex; align-items: center; gap: 56px; }
.leader-profile.reverse { flex-direction: row-reverse; }
.leader-profile .portrait { flex: 0 0 320px; }
.leader-profile .portrait .frame { position: relative; border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); aspect-ratio: 4/5; }
.leader-profile .portrait .frame img { width: 100%; height: 100%; object-fit: cover; }
.leader-profile .portrait .frame .fallback { display: none; width: 100%; height: 100%; place-items: center; background: linear-gradient(135deg, var(--royal-soft), var(--gold-soft)); }
.leader-profile .portrait .frame .fallback svg { width: 64px; height: 64px; opacity: .55; }
.leader-profile .content .role { color: var(--red); font-weight: 700; font-size: .82rem; text-transform: uppercase; letter-spacing: .07em; margin-top: .3rem; }
.leader-profile .content h2 { margin-top: .3rem; }
.leader-profile .content p.bio { color: var(--ink-soft); margin-top: 1rem; line-height: 1.72; }
.leader-profile .content blockquote { margin: 1.4rem 0 0; padding-left: 20px; border-left: 4px solid var(--gold); font-size: 1.1rem; font-style: italic; color: var(--ink); line-height: 1.6; }

.lead-card.placeholder { background: var(--paper-2);}
.lead-card.placeholder .avatar { background: #fff; border-style: dashed; }
.lead-card.placeholder .role { color: var(--ink-soft); }

@media (max-width: 860px) {
  .leader-profile, .leader-profile.reverse { flex-direction: column; text-align: center; gap: 28px; }
  .leader-profile .portrait { flex: 0 0 auto; width: 240px; }
  .leader-profile .content blockquote { text-align: left; }
}

/*==============Pages Programmes=================*/
.scholastic-page { position: relative;}
.scholastic-page:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: url(../images/edu_bg.png) no-repeat right top fixed;
    background-size: cover;
    opacity: 0.3;
}
.scholastic-page:after {
    content: '';
    position: absolute;
    width: 290px;
    height: 353px;
    right: 0;
    bottom: -9px;
    background: url(../images/illustration-1.webp) no-repeat right bottom;
    background-size: 100%;
}
.mask-img img{
    width: 100%;
    display: block;
    -webkit-mask-size: 100% auto;
    -webkit-mask-position: center center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 1314.6 1096.6' style='enable-background:new 0 0 1314.6 1096.6;' xml:space='preserve'%3E%3Cg%3E%3Cg%3E%3Cpath d='M1196,307.2c-25.7-24.3-51.1-41.9-76.2-54.3c-25-12.4-49.7-19.7-74-23.2c-23.1-3.2-45.8-3.2-68.4-0.8 c-57.3,5.6-108.7,27.7-165.8,43.7C766,286,717,281.1,684.2,245.5c-22.1-20.7-41.1-46.9-62.4-67.1C565,123.6,493.4,87.8,416.3,77 c-23.3-3.4-46.7-4.6-69.9-3.3c-69.5,3.8-136.3,29.3-186.3,80.3C39.7,276.6,40.6,463.8,79.8,618c6,21.2,13.3,42.2,22,62.8 c11,26.2,24.1,51,38.8,74.5c14.8,23.5,31.3,45.5,49.3,66.2c80.6,90.5,187.7,157.1,306,186.7c78.1,19.5,159.4,19.7,237.5,3.6 c26.1-5.4,51.8-12.5,77-21.3C955,940.3,1078.6,840.3,1163.7,712c66.6-99.5,125.1-225.8,77.2-342.9 C1230.9,347,1216.1,326.2,1196,307.2z'/%3E%3C/g%3E%3Cellipse transform='matrix(0.2467 -0.9691 0.9691 0.2467 437.4718 870.6678)' cx='778.8' cy='153.9' rx='73.2' ry='83.2'/%3E%3Cellipse transform='matrix(0.2764 -0.961 0.961 0.2764 -156.9954 1697.6943)' cx='1048.9' cy='953.1' rx='38.3' ry='33.7'/%3E%3C/g%3E%3C/svg%3E%0A");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 1314.6 1096.6' style='enable-background:new 0 0 1314.6 1096.6;' xml:space='preserve'%3E%3Cg%3E%3Cg%3E%3Cpath d='M1196,307.2c-25.7-24.3-51.1-41.9-76.2-54.3c-25-12.4-49.7-19.7-74-23.2c-23.1-3.2-45.8-3.2-68.4-0.8 c-57.3,5.6-108.7,27.7-165.8,43.7C766,286,717,281.1,684.2,245.5c-22.1-20.7-41.1-46.9-62.4-67.1C565,123.6,493.4,87.8,416.3,77 c-23.3-3.4-46.7-4.6-69.9-3.3c-69.5,3.8-136.3,29.3-186.3,80.3C39.7,276.6,40.6,463.8,79.8,618c6,21.2,13.3,42.2,22,62.8 c11,26.2,24.1,51,38.8,74.5c14.8,23.5,31.3,45.5,49.3,66.2c80.6,90.5,187.7,157.1,306,186.7c78.1,19.5,159.4,19.7,237.5,3.6 c26.1-5.4,51.8-12.5,77-21.3C955,940.3,1078.6,840.3,1163.7,712c66.6-99.5,125.1-225.8,77.2-342.9 C1230.9,347,1216.1,326.2,1196,307.2z'/%3E%3C/g%3E%3Cellipse transform='matrix(0.2467 -0.9691 0.9691 0.2467 437.4718 870.6678)' cx='778.8' cy='153.9' rx='73.2' ry='83.2'/%3E%3Cellipse transform='matrix(0.2764 -0.961 0.961 0.2764 -156.9954 1697.6943)' cx='1048.9' cy='953.1' rx='38.3' ry='33.7'/%3E%3C/g%3E%3C/svg%3E%0A");
    mask-size: 100% auto;
    mask-position: center center;
    mask-repeat: no-repeat;
    transition: 0.3s;
}
.mask-img:hover img{
    mask-size: 90% auto;
}
.co-scholastic-page {
   position: relative;
    padding: 90px 0 0px 0;
    background: var(--paper-2);
    background: linear-gradient(135deg, var(--white) 0%, var(--paper-2) 55%, var(--paper-2) 100%);
}
.co-scholastic-page  .container{position: relative; z-index: 1;}

.stage-list { display: flex; flex-direction: column; gap: 0px; margin-top: 54px; }
.stage-detail {position: relative;display: flex;align-items: flex-start;gap: 36px;backdrop-filter: blur(3px);border-top: 1px solid var(--line);padding: 38px 42px;overflow: hidden;}
.stage-detail .num { position: absolute; right: 30px; top: 4px; font-size: 6rem; font-weight: 800; line-height: 1; color: var(--accent-soft, var(--gold-soft)); opacity: .8; pointer-events: none; z-index: 0; }
.stage-detail .meta { flex: 0 0 210px; position: relative; z-index: 1; }
.stage-detail .meta .age-badge { display: inline-block; background: var(--accent-soft, var(--gold-soft)); color: var(--accent, var(--gold-deep)); font-weight: 700; font-size: .78rem; padding: .4rem .85rem; border-radius: 999px; }
.stage-detail .meta h3 { font-size: 1.32rem; margin-top: .7rem; }
.stage-detail .meta .grade { font-size: .86rem; color: var(--ink-soft); margin-top: .3rem; font-weight: 600; }
.stage-detail .content { flex: 1; position: relative; z-index: 1; min-width: 0; }
.stage-detail .content p { color: var(--ink-soft); margin-top: .9rem; line-height: 1.75; font-size: .97rem; }
.stage-detail .content p:first-child { margin-top: 0; }

.stage-detail.accent-gold { --accent: var(--gold-deep); --accent-soft: var(--gold-soft); }
.stage-detail.accent-royal { --accent: var(--royal); --accent-soft: var(--royal-soft); }
.stage-detail.accent-navy { --accent: var(--white); --accent-soft: var(--gold); }

.coscho-body .tag { display: block; font-size: .74rem; font-weight: 700; color: var(--gold-deep); text-transform: uppercase; letter-spacing: .04em; margin-bottom: .35rem; }
.extra-curricular-page {
   padding-bottom: 0px; 
}
.extra-curricular-page .coscho-card{
   min-height: 435px;
}
.extra-curricular-page .coscho-body h4{
   font-size: 1.2rem;
}
.extra-curricular-page .coscho-body h4 small{
   font-size: 0.7em;
    margin-top: 8px;
}

@media (max-width: 860px) {
  .stage-detail { flex-direction: column; padding: 30px 26px; gap: 16px; }
  .stage-detail .num { font-size: 4rem; top: 2px; right: 20px; }
  .stage-detail .meta { flex: 0 0 auto; }

  .scholastic-page:after {
    width: 190px;
    height: 214px;
    bottom: -32px;
}
}

.timing-pill { display: inline-flex; align-items: center; gap: .55rem; background: var(--navy); color: #fff; font-weight: 700; font-size: .92rem; padding: .6rem 1.15rem; border-radius: 999px; margin-top: 1.3rem; }
.timing-pill i { font-size: 1rem; }
.stage-detail.accent-royal .timing-pill { background: var(--royal); }
/*==============Page facilities===============*/
.facilities-page{ position: relative;}
.facilities-page .container{ position: relative; z-index: 1;}
.facilities-page:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: url(../images/line-texture.webp) no-repeat left top fixed;
    background-size: cover;
    opacity: 0.06;
}
.facilities-page .owl-carousel .owl-stage-outer{ border-radius: 20px;}
.lb-nav a.lb-next, .lb-nav a.lb-prev{ opacity: 1 !important;}
.facilities-page-s2{ position: relative; background:var(--paper-2)}
.facilities-page-s2 .container{ position: relative; z-index: 1;}
.facilities-page-s2:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: url(../images/line-texture-light.webp) no-repeat left top fixed;
    background-size: cover;
    opacity: 0.5;
}
/*==============Pages Gallery=================*/
.lightGallery a {
    padding: 0px;
    transition: .3s;
    background: url(../images/loading.gif) no-repeat center;
    max-height: 170px;
    min-height: 170px;
    overflow: hidden;
    border: 8px solid #fff;
    box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%), 0 6px 20px 0 rgb(0 0 0 / 19%);
}

    .lightGallery a:hover {
    }

    .lightGallery a .img-fluid {
        max-width: 100%;
        height: 100%;
        width: 100%;
        object-fit: cover;
        transition: 0.3s;
    }

    .lightGallery a:hover .img-fluid {
        transform: scale(1.15);
    }

.lg-outer .lg-download {
    display: none;
}

.lightGallery a {
    max-height: 110px;
    min-height: 110px;
    border: 3px solid #fff;
    box-shadow: none;
}

.nGY2 .nGY2GThumbnailIconText {
    padding: 2px 5px;
    background: #000000ad;
    border-radius: 6px;
}
@media (max-width: 640px) {
  
}

/*================School Schedule===================*/
.schedule-list {
    display: grid;
    flex-direction: column;
    gap: 0px;
    margin-top: 54px;
    grid-template-columns: repeat(2, 1fr);
}
.schedule-list .stage-detail {
    display: inline;
    padding: 50px 20px;

}
.schedule-list .stage-detail .num {
    top: 55px;
}
.schedule-list .stage-detail .meta{
   margin-bottom: 30px;
}
.school-schedule .child-corner{
   position: absolute;
    bottom: 0;
    left: 0;
}
@media (max-width: 980px) {
    .schedule-list {
        grid-template-columns: 1fr;
    }
    .school-schedule{
    padding-bottom: 145px;
}
}

/*==============Pages Contact=================*/
contact-page{ position: relative;}
.contact-page:before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 50%;
    background: url(../images/contact-bg.webp) no-repeat right center;
}
.contact-card { display: flex; align-items: flex-start; gap: 16px; background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 26px 24px; box-shadow: var(--shadow-sm); transition: transform .2s; }
.contact-card:hover { transform: translateY(-5px); }
.contact-card .ic { width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; flex: 0 0 auto; background: var(--gold); }
.contact-card .ic i { font-size: 1.3rem; color: var(--white); }
.contact-card h3 { font-size: 1.05rem; margin-bottom: .4rem; }
.contact-card p { font-size: .93rem; color: var(--ink-soft); line-height: 1.6; }
.contact-card p a { color: var(--navy); font-weight: 700; }
.contact-card p a:hover { color: var(--red); }

.map-frame { border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); }
.map-frame iframe { display: block; width: 100%; }

@media (max-width: 760px) {
  .admission-form { padding: 26px 22px; }
  .contact-page:before{ display: none;}
}
/*==============Slider====================*/
.owl-carousel.owl-glry .owl-nav button.owl-next,
.owl-carousel.owl-glry .owl-nav button.owl-prev {
     position: absolute;
    width: 35px;
    height: 35px;
    outline: none;
	top: 50%;
	margin-top:-21px;
        }

.owl-carousel.owl-glry .owl-nav button.owl-next {
            right:-10px;
        }
.owl-carousel.owl-glry .owl-nav button.owl-prev {
            left:-10px;
        }
.owl-carousel.owl-glry .owl-nav button.owl-next i,
.owl-carousel.owl-glry .owl-nav button.owl-prev i {
   color: #324e92;
    font-size: 20px;
    line-height: 35px;
    background: #ffffff;
    width: 35px;
    height: 35px;
    border-radius:50%;
	box-shadow: 0px 14px 17px #00000059;
            }

/*============img-hover============*/
.img-hover {
    position: relative;
    display: inline-block;
    overflow: hidden;
}
.img-hover:before {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    display: block;
    content: '';
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 100%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
}
.img-hover:hover:before {
    -webkit-animation: circle 0.75s;
    animation: circle 0.75s;
	opacity:1;
}

@-webkit-keyframes circle{
	0%{opacity:1}
	40%{opacity:1}
	100%{width:200%;height:200%;opacity:0}
	}
@keyframes circle{
	0%{opacity:1}
	40%{opacity:1}
	100%{width:200%;height:200%;opacity:0}
	}

/*==============Pages Admissions=================*/
.admission-form { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 34px 32px; box-shadow: var(--shadow); }
.admission-form h3 { font-size: 1.3rem; }
.admission-form .sub { color: var(--ink-soft); font-size: .92rem; margin: .4rem 0 1.6rem; }
.form-field { margin-bottom: 1.1rem; }
.form-field label { display: block; font-weight: 700; font-size: .88rem; margin-bottom: .4rem; color: var(--ink); }
.form-field input, .form-field select, .form-field textarea { width: 100%; padding: .75rem 1rem; border: 1px solid var(--line); border-radius: 12px; font-family: inherit; font-size: .95rem; color: var(--ink); background: var(--paper); transition: border-color .15s, box-shadow .15s, background .15s; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--royal); box-shadow: 0 0 0 3px var(--royal-soft); background: #fff; }
.form-field textarea { resize: vertical; min-height: 110px; }
.admission-form .btn { width: 100%; justify-content: center; }
.form-note { font-size: .8rem; color: var(--ink-soft); margin-top: .9rem; text-align: center; }

.check-list { list-style: none; padding: 0; margin: 1.4rem 0 0; }
.check-list li { display: flex; gap: .6rem; align-items: flex-start; padding: .3rem 0; font-size: .95rem; font-weight: 500; color: var(--ink); }
.check-list li svg { width: 18px; height: 18px; flex: 0 0 auto; margin-top: 3px; }

.apply-steps { display: flex; flex-direction: column; gap: 16px; margin-top: 1.8rem; }
.apply-step { display: flex; gap: 14px; align-items: flex-start; }
.apply-step .n { width: 32px; height: 32px; border-radius: 50%; background: var(--navy); color: #fff; font-weight: 800; font-size: .92rem; display: grid; place-items: center; flex: 0 0 auto; }
.apply-step strong { display: block; color: var(--ink); font-size: .98rem; }
.apply-step p { color: var(--ink-soft); font-size: .9rem; margin-top: .15rem; }

@media (max-width: 760px) {
  .admission-form { padding: 26px 22px; }
}