/* ==========================================================================
   ROOT / VARIABLES
   ========================================================================== */
:root {
  --primary-color: #000000;
  --secondary-color: #353535;
  --dark-green: #3C4B3E;
  --light-green: #4F613F;
  --cream: #F7F0E4;
  --light-cream: #FFEBCB;
  --gold: #FFC56A;
  --white: #ffffff;
  --brown-dark: #B25B3A;
  --gray-light: #F4F4F4;


  --font-milly-abrams: "Milly Abrams", Georgia, serif;
  --font-body: "Roboto", Arial, sans-serif;
  --font-script: "Bad Script", cursive;
}


@font-face {
  font-family: 'Milly Abrams';
  src: url('../fonts/MillyAbrams-Regular.eot');
  src: url('../fonts/MillyAbrams-Regular.eot?#iefix') format('embedded-opentype'),
    url('../fonts/MillyAbrams-Regular.woff2') format('woff2'),
    url('../fonts/MillyAbrams-Regular.woff') format('woff'),
    url('../fonts/MillyAbrams-Regular.ttf') format('truetype'),
    url('../fonts/MillyAbrams-Regular.svg#MillyAbrams-Regular') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Milly Abrams';
  src: url('../fonts/MillyAbrams-Regular_1.eot');
  src: url('../fonts/MillyAbrams-Regular_1.eot?#iefix') format('embedded-opentype'),
    url('../fonts/MillyAbrams-Regular_1.woff2') format('woff2'),
    url('../fonts/MillyAbrams-Regular_1.woff') format('woff'),
    url('../fonts/MillyAbrams-Regular_1.ttf') format('truetype'),
    url('../fonts/MillyAbrams-Regular_1.svg#MillyAbrams-Regular') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Milly Abrams';
  src: url('../fonts/MillyAbrams-Regular_2.eot');
  src: url('../fonts/MillyAbrams-Regular_2.eot?#iefix') format('embedded-opentype'),
    url('../fonts/MillyAbrams-Regular_2.woff2') format('woff2'),
    url('../fonts/MillyAbrams-Regular_2.woff') format('woff'),
    url('../fonts/MillyAbrams-Regular_2.ttf') format('truetype'),
    url('../fonts/MillyAbrams-Regular_2.svg#MillyAbrams-Regular') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}


* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--primary-color);
  overflow-x: hidden;
  font-size: 1rem;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

h1 {
  font-family: var(--font-milly-abrams);
}

h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-body);
}

h3 {
  font-size: 1.5rem;
  line-height: 120%;
  font-weight: 600;
  color: var(--primary-color);
  font-family: var(--font-body);
}

h6 {
  font-size: 16px;
  line-height: 150%;
  font-weight: 600;
  color: var(--secondary-color);
}

a {
  text-decoration: none;
  color: inherit;
}

.skip-link {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--dark-green);
  color: #fff;
  padding: 10px 16px;
  z-index: 2000;
}

.container-custom {
  max-width: 1560px;
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;
}

.section-pd {
  padding: 100px 0px;
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
.display-heading {
  font-family: var(--font-milly-abrams);
  font-weight: 500;
  color: var(--text);
  line-height: 1.15;
  font-size: clamp(1.8rem, 3.2vw, 3.5rem);
  margin-bottom: 1rem;
}

.display-heading.light {
  color: var(--cream-light);
}

.display-heading.white {
  color: var(--white);
}

.display-heading.dark {
  color: var(--primary-color);
}

.cream-bg {
  background-color: var(--cream);
}

.light-cream-bg {
  background-color: var(--light-cream);
}

.green-bg {
  background-color: var(--dark-green);
}

.text-gold {
  color: var(--gold);
}

.display-heading em {
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
}

.eyebrow {
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 14px;
  font-weight: 500;
  color: var(--primary-color);
  margin-bottom: 1rem;
  display: inline-block;
  padding: 0px 50px;
}

.eyebrow::after {
  width: 40px;
  height: 1px;
  background: var(--primary-color);
  position: absolute;
  bottom: auto;
  left: 0;
  top: 10px;
  content: "";
}

.right-head-bar {
  position: relative;
}

.right-head-bar:before {
  content: "";
  width: 40px;
  height: 1px;
  background: #000;
  position: absolute;
  left: auto;
  right: 0;
  top: 10px;
}

.eyebrow.center {
  text-align: center;
}

.eyebrow.light {
  color: var(--gold);
}

.section-lead {
  color: var(--secondary-color);
  font-size: 1rem;
  line-height: 1.75;
}

.section-lead.light {
  color: #d7ddd4;
}

.section-heading {
  margin-bottom: 2.5rem;
}

/* .section-heading .display-heading {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
} */

p {
  color: var(--secondary-color);
  font-size: 1rem;
  line-height: 160%;
  font-weight: 400;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn-primary-custom {
  background: var(--light-green);
  color: var(--cream);
  border-radius: 50px;
  padding: 13px 28px;
  border: 1px dashed var(--white);
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  font-family: var(--font-body);
}

.btn-primary-custom:hover {
  transform: translateY(-2px);
  border: 1px solid var(--dark-green);
  color: var(--cream);
}

.btn-primary-custom svg {
  transition: transform 0.25s ease;
}

.btn-primary-custom:hover svg {
  transform: rotate(45deg);
}

.btn-outline-custom {
  background: transparent;
  color: var(--dark-green);
  border-radius: 50px;
  padding: 13px 28px;
  border: 1px dashed var(--dark-green);
  font-weight: 500;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
}

.btn-outline-custom:hover {
  background: var(--dark-green);
  color: #fff;
  transform: translateY(-3px);
}

.btn-gold-custom {
  background: var(--gold);
  color: var(--dark-green);
  border-radius: 50px;
  padding: 13px 28px;
  border: 1px solid var(--gold);
  font-weight: 600;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
}

.btn-gold-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(246, 197, 103, 0.3);
  color: var(--dark-green-dark);
}

.link-underline {
  font-weight: 500;
  font-size: 0.92rem;
  border-bottom: 1px solid var(--text);
  padding-bottom: 3px;
  transition: opacity 0.2s;
}

.link-underline:hover {
  opacity: 0.65;
}

.cta-pair {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  background: transparent;
  position: fixed;
  top: 0;
  z-index: 1000;
  width: 100%;
}

.header.sticky {
  background: #fcfaf5;
}

.top-header {
  background: rgba(0, 0, 0, 0.08);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 40px;
  font-size: 0.78rem;
  color: var(--muted);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-left {
  color: var(--primary-color);
  font-size: 14px;
  line-height: 16px;
  font-weight: 400;
  display: flex;
  gap: 18px;
  font-family: var(--font-body);
}

.topline-link i {
  margin-right: 4px;
}

.header-social {
  gap: 14px;
}

.header-social a {
  color: var(--muted);
  transition: color .2s;
}

.header-social a:hover {
  color: var(--dark-green);
}

.main-nav {
  padding: 16px 0;
}

.header-menu button {
  width: 44px;
  height: 44px;
  background: var(--dark-green) !important;
  border-radius: 0px !important;
  padding: 3px !important;
}

.header-center-text strong {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--dark-green);
  line-height: 140%;
  display: block;
}

.header-center-text small {
  color: #3C4B3E;
  font-size: 1.2rem;
  line-height: 120%;
  padding-top: 10px;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-text strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.02em;
}

.brand-text small {
  font-size: 0.62rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  max-width: 220px;
}

.main-links {
  gap: 28px;
}

.main-links .nav-link {
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding: 4px 0 !important;
}

.main-links .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--dark-green);
  transition: width .25s ease;
}

.main-links .nav-link:hover::after {
  width: 100%;
}

.navbar-toggler {
  border: none;
  font-size: 1.6rem;
  color: var(--dark-green);
  background: none;
  padding: 0;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.offcanvas-body .btn-primary-custom {
  justify-content: center;
  border: 1px dashed var(--cream-light);
}

.offcanvas {
  background: var(--cream);
}

.offcanvas .nav-link {
  font-size: 1.05rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

/* ==========================================================================
   HERO
   ========================================================================== */

.hero-section {
  background: #F7F0E4 url(../images/banner-bg.png) center top no-repeat;
  width: 100%;
  padding: 200px 0 80px;
  position: relative;
  overflow: hidden;
  background-size: cover;
}

.hero-section .container-custom {
  max-width: 1920px;
  width: 100%;
  padding: 0px 80px;
  position: relative;
}

.hero-content .display-heading {
  max-width: 600px;
  width: 100%;
}

.hero-section .row.align-items-center.gy-5 {
  position: relative;
  z-index: 2;
}

.hero-image-wrap {
  position: relative;
}

.hero-image-wrap:after {
  content: "";
  position: absolute;
  left: auto;
  right: 0;
  top: 0;
  max-width: 150px;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(247, 240, 228, 0) 0%, #fcf9f5 100%);
  z-index: 1;
}

.hero-image {
  height: 580px;
  width: 100%;
  object-fit: cover;
  border-radius: 160px 0px 0px 160px;
}

.mySwiper-hero .swiper-pagination {
  position: absolute;
  bottom: 15px !important;
  z-index: 9 !important;
  text-align: center;
  width: 100%;
  display: block !important;
}

.mySwiper-hero .swiper-pagination-bullet {
  background: var(--white);
  opacity: 0.7;
  width: 10px;
  height: 10px;
  margin: 0 6px !important;
  display: inline-block;
  border-radius: 50%;
}

.mySwiper-hero .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--dark-green);
}

.organic-blob {
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 230px;
  height: 430px;
  z-index: 1;
}

.hero-content {
  padding-left: 30px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}

.hero-deco {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 320px;
  height: 320px;
  pointer-events: none;
}

/* ==========================================================================
   KNOWLEDGE SECTION
   ========================================================================== */
.knowledge-section {
  padding: 90px 0;
}

.knowledge-section .section-lead {
  max-width: 1140px;
  width: 100%;
}

.card-icon {
  min-width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  font-size: 1.3rem;
  margin-bottom: 18px;
}

.card-icon.gold {
  background: var(--gold);
}

.knowledge-card {
  background: url(../images/white-bg.png)center center no-repeat;
  width: 100%;
  height: 100%;
  padding: 35px;
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex;
  background-size: 100% 100%;
  flex-direction: column;
  justify-content: space-between;
}

.knowledge-card:hover {
  transform: translateY(-6px);
}

/* .card-eyebrow {
  text-transform: uppercase;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--gold-dark);
  font-weight: 700;
  margin-bottom: 6px;
} */

.knowledge-card h3 {
  margin-bottom: 12px;
}


.card-link {
  font-size: 14px;
  line-height: 120%;
  font-weight: 600;
  color: var(--dark-green);
  border-bottom: 1px dotted #FFC56A;
  transition: transform .3s ease;
}

.card-link:hover {
  color: var(--light-gold);

}

.card-link svg {
  transition: transform .2s ease;

}

.card-link:hover svg {
  transform: rotate(45deg);
}

/* ==========================================================================
   COLLAGE
   ========================================================================== */
.collage-section {
  width: 100%;
}

/* .collage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  height: 550px;
  gap: 0;
} */
.collage-grid {
  display: flex;
  width: 110%;
  margin-left: -5%;
  height: 550px;
}

.collage-item {
  overflow: hidden;
  position: relative;
  border: 10px solid var(--white);
}

.collage-item img {
  height: 100%;
}



.collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.collage-section {
  width: 100%;
  overflow: hidden;
}



.collage-item {
  flex: 1;
  position: relative;
  overflow: hidden;
  transform: skewX(-15deg);
  border-right: 6px solid #fff;
}

.collage-item:nth-child(1) {
  margin-right: -10%;
  margin-left: 0;
}

.collage-item:last-child {
  border-right: none;
  margin-left: -10%;
}

.collage-item img {
  width: 120%;
  height: 100%;
  object-fit: cover;
  transform: skewX(15deg);
  position: absolute;
  top: 0;
  left: -10%;
}

/* 
.collage-item:hover img {
  transform: scale(1.06);
}

.collage-item:nth-child(1) {
  clip-path: polygon(0 0, 100% 0, 92% 100%, 0% 100%);
  margin-right: -6%;
}

.collage-item:nth-child(3) {
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0% 100%);
  margin-left: -6%;
} */



/* ==========================================================================
   HOW WE BRING LEARNING TO LIFE
   ========================================================================== */
.learning-life-section {
  background: var(--dark-green)url(../images/learning-life-bg.png) center center no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.learning-life-section .eyebrow,
.learning-life-section p {
  color: var(--white);
}

.learning-life-section .eyebrow::after {
  background: var(--white);
}

.learning-life-section .content-box {
  padding-right: 50px;
}


/* .deco-lines {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  pointer-events: none;
  background-image: radial-gradient(circle at 20% 30%, transparent 0, transparent 60px, var(--gold) 61px, transparent 63px),
    radial-gradient(circle at 85% 70%, transparent 0, transparent 90px, var(--gold) 91px, transparent 93px);
}

.deco-lines.light {
  opacity: 0.08;
} */

.learning-life-section .feature-card {
  display: flex;
  align-items: center;
  gap: 24px;
  background: url(../images/feature-card-bg.png) center center no-repeat;
  background-size: 100% 100%;
  width: 100%;
  height: 100%;
  border-radius: 22px 6px 22px 6px;
  padding: 30px;
  transition: transform .3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card h3 {
  font-size: 20px;
  line-height: 120%;
  color: var(--primary-color);
  margin-bottom: 8px;
  font-weight: 600;
}

.feature-card p {
  color: var(--secondary-color);
  font-size: 16px;
  margin-bottom: 0;
  line-height: 150%;
  font-weight: 500;
}

.learning-life-section .card-content {
  padding-right: 15px;
}

/* ==========================================================================
   GOLD STRIP (PATHWAYS)
   ========================================================================== */
.gold-strip {
  background: var(--gold);
  padding: 75px 0;
}

.gold-strip-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: space-between;
}


.strip-heading {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--dark-green-dark);
  font-weight: 600;
  margin: 0;
  flex-shrink: 0;
  max-width: 300px;
  width: 100%;
}

.pathway-row {
  display: flex;
  gap: 34px;
  overflow-x: auto;
  padding-bottom: 4px;
  flex: 1;
  justify-content: space-between;
}

.pathway-item {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;

}

.pathway-item i {
  font-size: 1.5rem;
  color: var(--dark-green-dark);
}

.pathway-item span {
  display: flex;
  flex-direction: column;
  font-weight: 600;
  color: var(--secondary-color);
  font-size: 24px;
  line-height: 120%;
}

.pathway-item small {
  font-weight: 400;
  font-size: 1rem;
  line-height: 150%;
  color: var(--secondary-color);

}

/* ==========================================================================
   EXPERIENCES / LIVING CLASSROOM
   ========================================================================== */
.experiences-section {
  background: var(--cream);
  padding: 90px 0;
}

.experience-card {
  background: url(../images/experience-card-bg.png) center center no-repeat;
  background-size: 100% 100%;
  border-radius: 8px;
  padding: 35px;
  overflow: hidden;
  height: 100%;
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;

}

.experience-card:hover {
  transform: translateY(-6px);
}

.exp-image {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.exp-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;

}

/* .experience-card:hover .exp-image img {
  transform: scale(1.06);
} */

.exp-tag {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(48, 70, 56, 0.85);
  color: #fff;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border-radius: 50px;
}

.exp-body {
  margin-top: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.exp-body h3 {
  font-family: var(--font-milly-abrams);
  font-size: 2rem;
  font-weight: 400;
  color: var(--primary-color);
  line-height: 150%;
}

.exp-body>p {
  color: var(--secondary-color);
  font-size: 1rem;
  margin-bottom: 24px;
}

.exp-meta {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.exp-meta li {
  font-size: 14px;
  line-height: 140%;
  color: var(--secondary-color);
  font-weight: 400;
  background: var(--gray-light);
  padding: 10px;
  border-radius: 50px;
  display: flex;
  gap: 5px;
}



.learn-what ul li {
  font-size: 16px;
  line-height: 150%;
  color: var(--secondary-color);
  font-weight: 400;
  padding: 2px 0px;
}

.exp-body .card-link {
  margin-top: auto;
}

/* ==========================================================================
   RADIAL SECTION
   ========================================================================== */

/* ============ CLASSROOMS WITHOUT WALLS (RADIAL) ============ */
.radial-section {
  background: var(--dark-green);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}




.radial-section::before {
  top: 0;
  bottom: auto;
  background: url(../images/radial-top-bg.png)center top no-repeat;
  height: 380px;
}

.radial-section::after {
  top: auto;
  bottom: 0;
  background: url(../images/radial-bottom-bg.png)center bottom no-repeat;
  height: 420px;
}

.radial-section::after,
.radial-section::before {
  content: '';
  position: absolute;
  background-size: 100% 100%;
  left: 0;
  right: 0;
  width: 100%;
}

.radial-wrap {
  position: relative;
  max-width: 1580px;
  margin: 0 auto;
  height: 900px;
}

.radial-center {
  background: url(../images/round-center-bg.png)center center no-repeat;
  background-size: 100% 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 425px;
  height: 425px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 2;
  color: #fff;
}

.radial-center span {
  font-family: var(--font-milly-abrams);
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 10px;
}

.radial-center em {
  font-family: var(--font-body);
  font-size: 1.4rem;
  font-style: normal;
  color: #fff;
}

/* .radial-cards {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
} */
.radial-img-box {
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  max-width: 195px;
  height: 145px;
  width: 100%;
  position: absolute;
  right: -30px;
  top: -30px;
}

.radial-img-box img {
  object-fit: cover;
}

.radial-card {
  position: absolute;
  width: 350px;
  background: url(../images/radial-card-bg.png) center center no-repeat;
  background-size: 100% 100%;
  padding: 30px;
  z-index: 1;
  min-height: 235px;
}

.radial-card h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin: 15px 0 5px;
  font-weight: 600;
}

.radial-card p {
  font-size: 1rem;
  color: var(--secondary-color);
  line-height: 1.5;
  margin: 0;
}


.radial-section .card-icon {
  min-width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
  gap: 10px;
}

/* Positioning */
.radial-card:nth-child(1) {
  top: 0;
  left: 20%;
}

.radial-card:nth-child(2) {
  top: 0;
  right: 20%;
}

.radial-card:nth-child(3) {
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
}

.radial-card:nth-child(4) {
  bottom: 0;
  left: 20%;
}

.radial-card:nth-child(5) {
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
}

.radial-card:nth-child(6) {
  bottom: 0;
  right: 20%;
}

.radial-modal .image-box img {
  width: 100%;
  height: 100%;
}

.radial-modal .modal-content {
  border-radius: 24px;
  background-color: var(--cream);
}

.radial-modal .modal-header {
  border: none;
  padding-bottom: 0;
}

.radial-modal .swiper-slide h3 {
  text-align: center;
  margin-top: 15px;
  margin-bottom: 0;
}

.radial-modal .swiper-button-next,
.radial-modal .swiper-button-prev {
  background: var(--cream-light);
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.radial-modal .swiper-button-next svg,
.radial-modal .swiper-button-prev svg {
  width: 14px;
}

.radial-modal .swiper-button-next svg path,
.radial-modal .swiper-button-prev svg path {
  fill: #3C4B3E;
}

.radial-modal .swiper-button-next:after,
.radial-modal .swiper-button-prev:after {
  font-size: 30px;
  color: var(--dark-green);
}



/* ==========================================================================
   GOLD CTA STRIP
   ========================================================================== */
.gold-cta-strip {
  background: var(--gold);
  padding: 80px 0;
  text-align: center;
}

.cta-heading {
  font-family: var(--font-script);
  font-style: italic;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  color: var(--dark-green-dark);
  margin-bottom: 14px;
}

.gold-cta-strip .section-lead {
  color: var(--dark-green-dark);
  opacity: 0.8;
  margin-bottom: 24px;
}

.gold-cta-strip .btn-primary-custom {
  border: 1px dashed var(--gold);
}

.gold-cta-strip .btn-primary-custom:hover {
  border: 1px solid var(--dark-green);
}

/* ==========================================================================
   LABORATORIES SECTION
   ========================================================================== */
.laboratories-section {
  background: var(--cream);
  padding: 90px 0;
}

.laboratory-card {
  background: url(../images/laboratories-bg.png) center center no-repeat;
  background-size: 100% 100%;
  padding: 35px;
  height: 100%;
  transition: transform .3s ease, box-shadow .3s ease;
}

.laboratory-card:hover {
  transform: translateY(-5px);
}

.laboratories-section .card-icon {
  min-width: 60px;
  height: auto;
  margin-bottom: 14px;
}


.stats-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  margin-top: 40px;
  padding-top: 40px;
}

.stats-row.alt {
  border-top-color: rgba(255, 255, 255, 0.15);
}

.stat-item {
  display: flex;
  flex-direction: column;
  min-width: 140px;
}

.stat-num {
  display: flex;
  align-items: center;
  gap: 5px;
}

.stat-num small {
  font-size: 2rem;
  color: var(--brown);
  line-height: 120%;
  font-family: var(--font-script);
  font-weight: 400;
}

.stat-num span {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 600;
  color: var(--primary-color);
  line-height: 1;
}

.stat-item p {
  font-size: 20px;
  line-height: 150%;
  margin: 0;
}

.schools-section .stat-num {
  color: var(--gold);
}

.stat-label {
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 8px;
}

.schools-section .stat-label {
  color: var(--cream-light);
}

.stat-label small {
  display: block;
  font-weight: 400;
  color: var(--muted);
  font-size: 0.74rem;
  margin-top: 2px;
}

.schools-section .stat-label small {
  color: #b9c0b7;
}

/* ==========================================================================
   SCHOOLS SECTION
   ========================================================================== */
.schools-section {
  background: #3C4B3E;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}



.schools-section .eyebrow {
  color: var(--white);
}

.schools-section .eyebrow::after {
  background: var(--white);
}

.schools-section .display-heading span {
  color: var(--gold);
  font-weight: 500;
}

.schools-section .stat-num span {
  color: var(--white);
}

.schools-section .stat-num small {
  color: var(--light-gold);
}

.schools-section .stat-item p {
  color: var(--white);
}

.schools-section .content-box {
  max-width: 450px;
  width: 100%;
}

.school-pill-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: 100%;
}

.school-pill {
  color: var(--dark-green);
  border-radius: 24px;
  padding: 0px;
  display: flex;
  align-items: center;
  gap: 8px;
  overflow: hidden;
}

.school-pill i {
  color: var(--gold-dark);
}

.schools-section .slider-member {
  padding-top: 100px;
}

.testimonial-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.testimonial-card {
  position: relative;
  background: url(../images/school-slider-bg.png)center center no-repeat;
  width: 100%;
  height: 100%;
  background-size: 100% 100%;
  padding: 30px;
  margin-bottom: 20px;
  min-height: 232px;
  display: flex;
  flex-wrap: wrap;
}

.testimonial-card .quote-icon {
  position: absolute;
  left: auto;
  right: 35px;
  top: auto;
  bottom: -15px;
}

.testimonial-card p {
  font-size: 0.86rem;
  font-style: italic;
  color: var(--text);
  margin-bottom: 18px;
  line-height: 1.6;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-person img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-person strong {
  display: flex;
  font-size: 1rem;
  line-height: 140%;
}

.testimonial-person small {
  color: var(--secondary-color);
  font-size: 14px;
  display: flex;
}



/* ==========================================================================
   PLAN MAKER BAR
   ========================================================================== */
.plan-maker-bar {
  background: var(--gold);
  padding: 34px 0;
}

.plan-maker-inner {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
}

.plan-maker-inner h3 {
  font-family: var(--font-script);
  font-weight: 500;
  font-size: 2.25rem;
  color: var(--primary-color);
  margin: 0;
  max-width: 280px;
  width: 100%;
}

.plan-links {
  display: flex;
  gap: 34px;
}



.plan-links a {
  display: flex;
  flex-direction: column;
  width: 33.33%;
  border-left: 4px solid #4F613F;
  padding-left: 16px;
}

.plan-links strong {
  font-size: 20px;
  color: var(--primary-color);
  margin-bottom: 3px;
  line-height: 120%;
}

.plan-links small {
  font-size: 16px;
  color: var(--secondary-color);
  line-height: 140%;
}

/* ==========================================================================
   FINAL CTA
   ========================================================================== */
.final-cta-section {
  background: #F7F0E4 url(../images/community-bg.jpg) center bottom no-repeat;
  width: 100%;
  padding: 100px 0;
  padding-bottom: 650px;
}

.final-cta-card {
  position: relative;
  background: #FBDDAB;
  border-radius: 40px;
  padding: 80px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(38, 53, 45, 0.06);
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
}

.final-cta-card .display-heading {
  max-width: 100%;
  margin: 0 auto 1rem;
}

.final-cta-card .section-lead {
  max-width: 700px;
  margin: 0 auto 2rem;
}


.final-cta-section .btn-primary-custom {
  display: inline-block;
  border: 1px dashed #FBDDAB;
  position: absolute;
  left: 0;
  right: 0;
  max-width: 210px;
  width: 100%;
  margin: 0 auto;
  top: auto;
  bottom: -25px;
  z-index: 1;
}

/* ==========================================================================
   COMMUNITY IMAGE
   ========================================================================== */
.community-image-section {
  position: relative;
  width: 100%;
  height: 560px;
}

.community-image-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.community-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(38, 53, 45, 0) 0%, rgba(38, 53, 45, 0.35) 100%);
}


/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  position: relative;
  background: #3C4B3E;
  color: var(--cream-light);
  padding: 70px 0 30px;
  padding-top: 0px;

}


.site-footer::after {
  background: url(../images/footer-top-bg.png)center top no-repeat;
  width: 100%;
  height: 28px;
  position: absolute;
  top: -28px;
  left: 0;
  right: 0;
  bottom: auto;
  content: "";
  background-size: cover;
}

.site-footer .container-custom {
  max-width: 1560px;
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;
  position: relative;
  top: -90px;
  margin-bottom: -90px;
  z-index: 1;
}

.brands-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0px auto 30px;
  gap: 10px;
}

.footer-brand .brand-mark {
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-brand h3 {
  font-family: var(--font-milly-abrams);
  color: var(--gold);
  letter-spacing: 1.5px;
  font-size: 2rem;
  margin-bottom: 6px;
  font-weight: 400;
}



.footer-brand p {
  color: #FAF3E3;
}

.footer-brand>p {
  color: var(--white);
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 40px;
}



.footer-desc {
  max-width: 1000px;
  margin: 0 auto 30px;
  color: #c3c9c0;
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 18px;
  margin-bottom: 30px;
  justify-content: center;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}



.footer-links {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.footer-links a {
  font-size: 14px;
  color: var(--gold);
  transition: color .2s;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.30);
  margin: 0 0 20px;
}

.copyright {
  font-size: 14px;
  color: rgba(256, 256, 256, 0.7);
  margin: 0;
}

/* ==========================================================================
   FLOATING CONTACT BUTTON
   ========================================================================== */
.floating-contact {
  position: fixed;
  right: 21px;
  top: auto;
  transform: translateY(-180%) rotate(-90deg) translateX(50%);
  transform-origin: right center;
  background: var(--brown-dark);
  color: #fff;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: 0px 54px 0 0;
  z-index: 900;
  transition: background .2s;
  bottom: 0;
  transition: all 0.3s;
}



.floating-contact:hover {
  background: var(--gold);
  color: var(--dark-green-dark);
}

.floating-contact svg {
  transform: rotate(90deg);
  transition: all 0.3s;
}

.floating-contact:hover svg path {
  fill: #26352d;
}



/* ==========================================================================
   ACCESSIBILITY
   ========================================================================== */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold-dark);
  outline-offset: 3px;
}

/* ============ IMAGE COLLAGE ============ */

/* ============ CUSTOM OFFCANVAS BOTTOM ============ */
.custom-bottom-offcanvas {
  height: auto !important;
  max-height: 90vh;
  width: 400px !important;
  max-width: 100vw;
  left: auto !important;
  right: 0 !important;
  bottom: 0 !important;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
}

#learningPathMenu .offcanvas-body {
  padding-top: 0;
}

/* about us page */

.inner-banner {
  background: url(../images/inner-bg.png) center bottom no-repeat;
  background-size: cover;
  width: 100%;
  height: 300px;
  padding-top: 150px;
}

.header-inner {
  border: none;
}

.inner-header .main-nav {
  padding: 10px 0 !important;
}

.inner-header .header-inner {
  padding: 8px 40px;
}

.inner-header .top-header {
  background: transparent;
}

.inner-banner-content {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.inner-banner-content h1 {

  font-size: 4rem;
}

.inner-banner h1 {
  color: var(--primary-color);
  font-size: 40px;
  line-height: 110%;
  font-weight: 400;
}

.breadcrumb li {
  color: var(--dark-green);
}

.breadcrumb li a {
  color: var(--primary-color);
}

/* about pic */



.collage-wrapper {
  width: 100%;
  max-width: 720px;
  min-height: 720px;
  margin: 0 auto;
  position: relative;
}



.collage-wrapper::before {
  background: url(../images/decor-top.png) center top no-repeat;
  top: 0;
  bottom: auto;
  left: auto;
  right: 0;
}

.collage-wrapper::after {
  background: url(../images/decor-bottom.png) center bottom no-repeat;
  top: auto;
  bottom: 0;
  left: 0;
  right: auto;
}

.collage-wrapper::after,
.collage-wrapper::before {
  background-size: cover;
  max-width: 262px;
  width: 100%;
  height: 258px;
  position: absolute;
  content: "";
}

/* =========================
           IMAGE COMMON STYLE
        ========================== */

.collage-image {
  position: absolute;
  background: #fff;
  padding: 5px;
  box-shadow: 0 2px 9px rgba(0, 0, 0, 0.18);
  z-index: 2;
}

.collage-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.image-one {
  width: 355px;
  height: 355px;
  left: 5px;
  top: 0;
}


.image-two {
  width: 225px;
  height: 225px;
  left: 369px;
  top: 130px;
}


.image-three {
  width: 225px;
  height: 225px;
  left: 135px;
  top: 362px;
}

.image-four {
  width: 355px;
  height: 355px;
  left: 369px;
  top: 362px;
}

.whoweare-section .flex-row-reverse .content-box {
  padding-left: 0px;
}

.whoweare-section .content-box {
  padding-left: 50px;
}

.our-story .eyebrow,
.our-ecosystem-sec .eyebrow {
  color: var(--white);
}

.our-story .eyebrow::after,
.our-ecosystem-sec .eyebrow::after,
.our-ecosystem-sec .right-head-bar::before {
  background: var(--white);
}

.our-story .display-heading,
.our-story p,
.our-ecosystem-sec p {
  color: var(--white);
}




/* misstion section start */


.mission-section {
  position: relative;
}

.mission-section::after {
  background: url(../images/our-mission-bg.png) center top no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  z-index: -1;
}


.mission-row {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  max-width: 900px;
  margin: 0 auto 50px;
  min-height: 170px;
}



.mission-row.reverse {
  direction: rtl;
}

.mission-row.reverse>* {
  direction: ltr;
}

.mission-image {
  width: 100%;
  max-width: 400px;
  position: relative;
  margin: 0 auto;
}

.mission-image svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}


.shape-border {
  fill: none;
  stroke: #f5a623;
  stroke-width: 2;
  stroke-dasharray: 5 5;
  stroke-linecap: round;
  animation: borderClockwise 7s linear infinite;
}

@keyframes borderClockwise {
  from {
    stroke-dashoffset: 0;
  }

  to {
    stroke-dashoffset: -120;
  }
}


.mission-image:hover .blob-border {
  animation-duration: 2.5s;
}

.mission-content {
  padding: 5px 0 5px 15px;
}

.reverse .mission-content {
  padding-left: 0;
  padding-right: 15px;
}

.mission-content h3 {
  font-family: var(--font-milly-abrams);
  font-size: 40px;
  font-weight: 400;
  margin: 0 0 7px;
  color: var(--primary-color);
}

.mission-content ul {
  margin: 0;
  padding-left: 14px;
}

.mission-content li {
  font-size: 1rem;
  font-weight: 400;
  color: var(--secondary-color);
}



.mission-row+.mission-row {
  margin-top: 15px;
}

.mission-row.row-two {
  margin-top: 5px;
}

.mission-row.row-three {
  margin-top: 5px;
}


.blob-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


@media (max-width: 767px) {

  .mission-section {
    padding: 35px 18px 50px;
    min-height: auto;
  }

  .mission-image {
    max-width: 280px;

  }


  .mission-row,
  .mission-row.reverse {
    direction: ltr;
    grid-template-columns: 1fr;
    gap: 12px;
    min-height: auto;

    margin-left: auto;
    margin-right: auto;
  }


  .mission-row+.mission-row {
    margin-top: 45px;
  }



  .mission-content,
  .reverse .mission-content {
    order: 2;
    padding: 0 10px;
    text-align: left;
  }

  .mission-content h2 {
    font-size: 20px;
  }

  .mission-content li {
    font-size: 11px;
    line-height: 1.55;
    margin-bottom: 5px;
  }
}



/* our-ecosystem */
.our-ecosystem-sec {
  position: relative;
}

.our-ecosystem-sec:after {
  content: " ";
  background: var(--dark-green) url(../images/our-ecosystem-bg.png) center center no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: -1;
}

.our-ecosystem-sec .image-box {
  margin-top: 60px;
}


.card-box-bg {
  background: url(../images/our-team-big-bg.png) center center no-repeat;
  width: 100%;
  height: 100%;
  padding: 30px;
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex;
  align-items: center;
  background-size: 100% 100%;
  justify-content: start;

}


.our-team-sec .image-box {
  max-width: 240px;
  width: 100%;
}

.our-team-sec .image-box2 {
  max-width: 120px;
  width: 100%;
}

.our-team-sec .image-box,
.our-team-sec .image-box2 {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  margin-right: 24px;
}

.founder-member-row .content-box {
  max-width: calc(100% - 240px);
}

.team-member-row .content-box {
  max-width: calc(100% - 120px);
}

.our-team-sec .content-box h4 {
  font-family: var(--font-milly-abrams);
  font-size: 1.5rem;
  font-weight: 400;
  margin: 0px;
}

.our-team-sec .content-box h6 {
  color: var(--light-green);
  font-weight: 400;
  margin: 0px;
  margin-bottom: 10px;
}

.team-member-row .card-box-bg {
  flex-wrap: wrap;
  align-items: flex-start;
}

.team-member-row .card-box-bg p {
  margin: 0px;
}

.card-inner-box {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}


/* tabs css */




/* =========================================
   TABS
========================================= */
.our-partners-sec {
  padding-bottom: 170px;
}

.partner-tabs-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}

.partner-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5px;
}

.partner-tabs .nav-item {
  margin: 0;
}

.partner-tabs .nav-link {
  border: 1px dashed rgba(60, 75, 62, 0.3);
  border-radius: 50px;
  background: transparent;
  color: #8f877d;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.partner-tabs .nav-link:hover {
  background: rgba(255, 255, 255, 0.35);
  color: rgba(58, 58, 58, 0.56);
}

.partner-tabs .nav-link.active {
  background: var(--gold);
  border: 1px solid rgba(60, 75, 62, 0.1);
  color: var(--secondary-color);
}

.partner-tabs .nav-link svg path {
  fill: #353535;
}

.partner-tabs .nav-link.active svg path {
  fill: #000;
}



/* =========================================
   TAB CONTENT
========================================= */

.partner-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.partner-grid4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

/* =========================================
   PARTNER CARD
========================================= */

.partner-card {
  height: 185px;
  background: var(--white);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.partner-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(80, 50, 20, 0.08);
}

.partner-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}


/* =========================================
   2 COLUMN WIDE CARDS
   If required for some logos
========================================= */

.partner-card.wide {
  grid-column: span 2;
}


/* =========================================
   LARGE DESKTOP
========================================= */

@media (max-width: 1199.98px) {

  .partner-grid {
    grid-template-columns: repeat(5, 1fr);
  }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991.98px) {

  .partners-section {
    padding: 20px 0;
  }

  .partner-tabs-wrap {
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 5px;
  }

  .partner-tabs {
    flex-wrap: nowrap;
    justify-content: flex-start;
    min-width: max-content;
  }

  .partner-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .partner-card {
    height: 115px;
  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767.98px) {

  .partner-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }

  .partner-card {
    height: 110px;
    border-radius: 14px;
    padding: 12px;
  }

  .partner-tabs .nav-link {
    font-size: 13px;
    padding: 9px 13px;
  }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 575.98px) {

  .partners-section {
    padding: 15px 0;
  }

  .partner-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .partner-card {
    height: 100px;
  }

}