.elementor-76 .elementor-element.elementor-element-299249a6{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-76 .elementor-element.elementor-element-7730d27{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-76 .elementor-element.elementor-element-7730d27:not(.elementor-motion-effects-element-type-background), .elementor-76 .elementor-element.elementor-element-7730d27 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#154A2F;}.elementor-76 .elementor-element.elementor-element-efc7f86{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-76 .elementor-element.elementor-element-310efe8{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-76 .elementor-element.elementor-element-310efe8:not(.elementor-motion-effects-element-type-background), .elementor-76 .elementor-element.elementor-element-310efe8 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#154A2F;}.elementor-76 .elementor-element.elementor-element-795222dd{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-76 .elementor-element.elementor-element-795222dd:not(.elementor-motion-effects-element-type-background), .elementor-76 .elementor-element.elementor-element-795222dd > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#1A1A1A;}:root{--page-title-display:none;}@media(min-width:768px){.elementor-76 .elementor-element.elementor-element-7730d27{--content-width:1600px;}.elementor-76 .elementor-element.elementor-element-310efe8{--content-width:1600px;}.elementor-76 .elementor-element.elementor-element-795222dd{--content-width:1600px;}}/* Start custom CSS for html, class: .elementor-element-75468e62 *//* ============================================
   BASMALA — HEADER / NAVBAR
   header-style.css — Separate CSS File
   ============================================ */

/* ── CSS Variables ── */
:root {
  --green-dark:       #0d3b22;
  --green-nav:        #0f4226;
  --green-hover:      rgba(255, 255, 255, 0.08);
  --gold:             #c49a1a;
  --gold-hover:       #d4a820;
  --white:            #ffffff;
  --white-90:         rgba(255, 255, 255, 0.90);
  --white-60:         rgba(255, 255, 255, 0.60);
  --white-15:         rgba(255, 255, 255, 0.15);
  --white-08:         rgba(255, 255, 255, 0.08);
  --border-bottom:    rgba(255, 255, 255, 0.10);

  --navbar-height:    70px;
  --font-display:     'Playfair Display', Georgia, serif;
  --font-body:        'Lato', sans-serif;
}

/* ── Reset ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Remove default blue underline from ALL links */
a {
  text-decoration: none;
  color: inherit;
}

html { font-size: 16px; }

body {
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  height: var(--navbar-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  background-color: var(--green-dark);
  border-bottom: 1px solid var(--border-bottom);
  /* Subtle shadow for depth */
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
}

/* ── LOGO ── */
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.navbar__logo-img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar__logo-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.navbar__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 3px;
}

.navbar__brand {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.01em;
}

.navbar__tagline {
  font-family: var(--font-body);
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-60);
}

/* ── DESKTOP NAV LINKS ── */
.navbar__nav {
  display: flex;
  align-items: center;
  gap: 8px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.navbar__link {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--white-90);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 6px;
  letter-spacing: 0.01em;
  transition: color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.navbar__link:hover {
  color: var(--white);
  background-color: var(--green-hover);
}

/* Active link — add class="navbar__link navbar__link--active" to current page link */
.navbar__link--active {
  color: var(--white);
  background-color: var(--green-hover);
}

/* ── ENROLL BUTTON ── */
.navbar__enroll {
  display: inline-block;
  background-color: var(--gold);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 11px 22px;
  border-radius: 5px;
  flex-shrink: 0;
  transition: background 0.22s ease, transform 0.15s ease;
}

.navbar__enroll:hover {
  background-color: var(--gold-hover);
  transform: translateY(-1px);
}

/* ── HAMBURGER BUTTON (hidden on desktop) ── */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 6px;
  flex-shrink: 0;
  transition: background 0.2s ease;
}

.navbar__hamburger:hover {
  background: var(--white-08);
}

.navbar__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--white);
  border-radius: 2px;
  transition: transform 0.28s ease, opacity 0.22s ease, width 0.22s ease;
  transform-origin: center;
}

/* Hamburger → X animation */
.navbar__hamburger--open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.navbar__hamburger--open span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.navbar__hamburger--open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   MOBILE MENU DROPDOWN
   ============================================ */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--navbar-height);
  left: 0;
  width: 100%;
  z-index: 998;
  background-color: var(--green-nav);
  border-bottom: 1px solid var(--border-bottom);
  flex-direction: column;
  padding: 12px 0 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);

  /* Slide-down animation */
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.mobile-menu--open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.mobile-menu__link {
  display: block;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--white-90);
  text-decoration: none;
  padding: 13px 32px;
  border-bottom: 1px solid var(--white-08);
  transition: color 0.2s ease, background 0.2s ease;
}

.mobile-menu__link:last-of-type {
  border-bottom: none;
}

.mobile-menu__link:hover {
  color: var(--white);
  background-color: var(--green-hover);
}

.mobile-menu__enroll {
  display: block;
  margin: 16px 32px 0;
  background-color: var(--gold);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  padding: 13px 24px;
  border-radius: 5px;
  transition: background 0.22s ease;
}

.mobile-menu__enroll:hover {
  background-color: var(--gold-hover);
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Hide desktop nav & enroll; show hamburger on mobile */
@media (max-width: 860px) {
  .navbar {
    padding: 0 24px;
  }

  .navbar__nav {
    display: none;
  }

  .navbar__enroll {
    display: none;
  }

  .navbar__hamburger {
    display: flex;
  }

  .mobile-menu {
    display: flex;
  }
}

/* Small mobile adjustments */
@media (max-width: 400px) {
  .navbar {
    padding: 0 16px;
  }

  .navbar__brand {
    font-size: 0.95rem;
  }
}

/* ============================================
   GALLERY DROPDOWN — DESKTOP
   ============================================ */
.navbar__dropdown {
  position: relative;
}

/* Reset button styles, inherit .navbar__link appearance */
.navbar__dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  border: none;
  background: none;
  cursor: pointer;
}

/* Chevron icon */
.navbar__dropdown-chevron {
  width: 9px;
  height: 9px;
  fill: currentColor;
  transition: transform 0.22s ease;
  flex-shrink: 0;
}

.navbar__dropdown--open .navbar__dropdown-chevron,
.navbar__dropdown:hover .navbar__dropdown-chevron {
  transform: rotate(180deg);
}

/* Dropdown panel */
.navbar__dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background-color: var(--green-dark);
  border: 1px solid var(--border-bottom);
  border-radius: 8px;
  min-width: 140px;
  padding: 6px 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  z-index: 100;
}

/* Arrow caret — outline */
.navbar__dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid var(--border-bottom);
}

/* Arrow caret — fill */
.navbar__dropdown-menu::after {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid var(--green-dark);
}

/* Show on hover or when --open class is toggled by click */
.navbar__dropdown:hover .navbar__dropdown-menu,
.navbar__dropdown--open .navbar__dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* Dropdown items */
.navbar__dropdown-item {
  display: block;
  padding: 10px 20px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--white-90);
  text-decoration: none;
  transition: color 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}

.navbar__dropdown-item:hover {
  color: var(--white);
  background-color: var(--green-hover);
}

/* ============================================
   GALLERY ACCORDION — MOBILE
   ============================================ */

/* Gallery label row (acts like a mobile-menu__link) */
.mobile-gallery-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--white-90);
  padding: 13px 32px;
  border-bottom: 1px solid var(--white-08);
  cursor: pointer;
  user-select: none;
  transition: color 0.2s ease, background 0.2s ease;
}

.mobile-gallery-label:hover {
  color: var(--white);
  background-color: var(--green-hover);
}

.mobile-gallery-chevron {
  width: 9px;
  height: 9px;
  fill: currentColor;
  transition: transform 0.22s ease;
  flex-shrink: 0;
  opacity: 0.6;
}

.mobile-gallery-label.open .mobile-gallery-chevron {
  transform: rotate(180deg);
}

/* Sub-links container */
.mobile-gallery-sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: rgba(0, 0, 0, 0.15);
}

.mobile-gallery-sub.open {
  max-height: 200px;
}

/* Sub-links */
.mobile-menu__sub-link {
  display: block;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--white-60);
  text-decoration: none;
  padding: 12px 32px 12px 48px;
  border-bottom: 1px solid var(--white-08);
  transition: color 0.2s ease, background 0.2s ease;
}

.mobile-menu__sub-link:last-child {
  border-bottom: none;
}

.mobile-menu__sub-link:hover {
  color: var(--white);
  background-color: var(--green-hover);
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-9fa5d33 *//* ============================================
   BASMALA — ABOUT SECTION
   about-style.css — Separate CSS File
   ============================================ */

/* ── CSS Variables ── */
:root {
  --green-dark:    #0d3d25;
  --green-mid:     #145c37;
  --green-card:    #1a6640;
  --green-border:  rgba(255, 255, 255, 0.15);
  --gold-bright:   #f0b429;
  --white:         #ffffff;
  --white-80:      rgba(255, 255, 255, 0.80);
  --white-55:      rgba(255, 255, 255, 0.55);
  --white-10:      rgba(255, 255, 255, 0.10);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Lato', sans-serif;
}

/* ── Reset ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--green-dark);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
  width: 100%;
  background: linear-gradient(
    135deg,
    var(--green-mid) 0%,
    var(--green-dark) 60%
  );
  padding: 80px 60px;
}

/* Two-column layout */
.about__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* ── LEFT COLUMN ── */

/* Eyebrow label */
.about__eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-55);
  margin-bottom: 18px;
}

/* Main heading */
.about__heading {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

/* Body paragraph */
.about__body {
  font-size: clamp(0.85rem, 1.2vw, 0.97rem);
  font-weight: 300;
  line-height: 1.85;
  color: var(--white-80);
  max-width: 480px;
}

/* ── RIGHT COLUMN — Card ── */
.about__card {
  background: var(--green-card);
  border: 1px solid var(--green-border);
  border-radius: 14px;
  padding: 52px 44px;
  text-align: center;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255,255,255,0.06);
}

/* Arabic text */
.about__card-arabic {
  font-family: 'Amiri', 'Traditional Arabic', 'Scheherazade New', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.6;
  color: var(--white);
  direction: rtl;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

/* Translation / italic caption */
.about__card-translation {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-style: italic;
  font-weight: 300;
  color: var(--white-55);
  letter-spacing: 0.01em;
  line-height: 1.6;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 900px) {
  .about {
    padding: 64px 40px;
  }

  .about__container {
    gap: 40px;
  }

  .about__card {
    padding: 40px 32px;
  }
}

/* Mobile — stack to single column */
@media (max-width: 640px) {
  .about {
    padding: 56px 24px;
  }

  .about__container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about__body {
    max-width: 100%;
  }

  .about__card {
    padding: 36px 24px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-77f35ab *//* ============================================
   BASMALA — MISSION / VISION / VALUES / TEACHERS
   sections-style.css — Separate CSS File
   ============================================ */

/* ── CSS Variables ── */
:root {
  --green-dark:     #0d3d25;
  --green-mid:      #145c37;
  --green-accent:   #1a6640;
  --green-text:     #1a5c38;
  --green-border:   #c8dfd3;
  --gold:           #b8860b;
  --gold-border:    #c9a227;
  --gold-btn:       #a07922;
  --gold-btn-hover: #8a6618;
  --cream:          #fdf8f0;
  --cream-card:     #faf6ee;
  --dark:           #1a1a2e;
  --dark-mid:       #2d3748;
  --text-dark:      #1c2b20;
  --text-mid:       #4a5568;
  --text-light:     #718096;
  --white:          #ffffff;
  --divider:        #e2e8e4;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Lato', sans-serif;
}

/* ── Reset ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { font-size: 16px; }

body {
  font-family: var(--font-body);
  background-color: var(--white);
  color: var(--text-dark);
  -webkit-font-smoothing: antialiased;
}

/* ============================================
   SECTION 1 — MISSION & VISION
   ============================================ */
.mv-section {
  background-color: var(--white);
  padding: 80px 60px;
}

.mv-section__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}

/* ── Cards shared ── */
.mv-card {
  border-radius: 16px;
  padding: 40px 36px;
}

/* Mission card — light green tint + green border */
.mv-card--mission {
  background-color: #f0f8f4;
  border: 1.5px solid var(--green-border);
}

/* Vision card — light cream tint + gold border */
.mv-card--vision {
  background-color: var(--cream);
  border: 1.5px solid var(--gold-border);
}

/* Card header row */
.mv-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.mv-card__icon {
  font-size: 1.5rem;
  line-height: 1;
}

.mv-card__title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
}

.mv-card__title--green { color: var(--green-text); }
.mv-card__title--gold  { color: var(--gold); }

/* List */
.mv-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mv-card__item {
  position: relative;
  padding: 14px 0 14px 22px;
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--text-mid);
  line-height: 1.5;
  border-bottom: 1px solid var(--divider);
}

.mv-card__item:last-child {
  border-bottom: none;
}

/* Diamond bullet */
.mv-card__item::before {
  content: '✦';
  position: absolute;
  left: 0;
  top: 14px;
  font-size: 0.6rem;
  color: var(--green-accent);
}

.mv-card--vision .mv-card__item::before {
  color: var(--gold);
}

/* ============================================
   SECTION 2 — OUR VALUES
   ============================================ */
.values-section {
  background-color: var(--white);
  padding: 80px 60px;
  text-align: center;
}

.values-section__container {
  max-width: 1200px;
  margin: 0 auto;
}

.values-section__eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-text);
  margin-bottom: 14px;
}

.values-section__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 52px;
  line-height: 1.15;
}

/* 4-column grid */
.values-section__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Value card */
.value-card {
  background-color: var(--cream-card);
  border-radius: 16px;
  padding: 40px 28px 36px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.value-card__icon {
  font-size: 2.4rem;
  margin-bottom: 20px;
  line-height: 1;
  display: block;
}

.value-card__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.value-card__body {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.75;
}

/* ============================================
   SECTION 3 — OUR TEACHERS
   ============================================ */
.teachers-section {
  background-color: var(--white);
  padding: 80px 60px;
  text-align: center;
}

.teachers-section__container {
  max-width: 1200px;
  margin: 0 auto;
}

.teachers-section__eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-text);
  margin-bottom: 14px;
}

.teachers-section__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.15;
}

.teachers-section__subtext {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 52px;
}

/* 3-column grid */
.teachers-section__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 28px;
}

/* Teacher card */
.teacher-card {
  background-color: var(--cream-card);
  border-radius: 16px;
  padding: 44px 32px 40px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.teacher-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

/* Avatar circle */
.teacher-card__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--green-accent);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.teacher-card__name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.teacher-card__role {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--green-text);
  margin-bottom: 14px;
}

.teacher-card__body {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.75;
}

/* ── Join Banner ── */
.join-banner {
  background-color: var(--cream-card);
  border-radius: 14px;
  padding: 36px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  text-align: left;
}

.join-banner__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.join-banner__body {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.6;
}

.join-banner__btn {
  display: inline-block;
  background-color: var(--gold-btn);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 18px 28px;
  border-radius: 6px;
  white-space: nowrap;
  transition: background 0.22s ease, transform 0.15s ease;
  flex-shrink: 0;
}

.join-banner__btn:hover {
  background-color: var(--gold-btn-hover);
  transform: translateY(-1px);
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 960px) {
  .mv-section,
  .values-section,
  .teachers-section {
    padding: 60px 32px;
  }

  .values-section__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .teachers-section__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .join-banner {
    flex-direction: column;
    text-align: center;
    padding: 36px 32px;
  }

  .join-banner__text {
    text-align: center;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .mv-section,
  .values-section,
  .teachers-section {
    padding: 48px 20px;
  }

  .mv-section__container {
    grid-template-columns: 1fr;
  }

  .values-section__grid {
    grid-template-columns: 1fr;
  }

  .teachers-section__grid {
    grid-template-columns: 1fr;
  }

  .mv-card {
    padding: 30px 24px;
  }

  .join-banner {
    padding: 28px 20px;
  }

  .join-banner__btn {
    width: 100%;
    text-align: center;
    padding: 16px 20px;
    font-size: 0.65rem;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-f3ec0b1 *//* ============================================
   BASMALA — STATS BANNER
   stats-style.css — Separate CSS File
   ============================================ */

/* ── CSS Variables ── */
:root {
  --green-dark:    #0d3d25;
  --green-mid:     #145c37;
  --white:         #ffffff;
  --white-90:      rgba(255, 255, 255, 0.90);
  --white-35:      rgba(255, 255, 255, 0.35);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Lato', sans-serif;
}

/* ── Reset ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { font-size: 16px; }

body {
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

/* ============================================
   STATS BANNER
   ============================================ */
.stats-banner {
  width: 100%;
  background: linear-gradient(
    135deg,
    var(--green-mid) 0%,
    var(--green-dark) 100%
  );
  padding: 64px 60px;
}

/* Inner container — evenly spaced row */
.stats-banner__container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Single stat block */
.stats-banner__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}

/* Large number */
.stats-banner__number {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

/* Label below number */
.stats-banner__label {
  font-family: var(--font-body);
  font-size: clamp(0.75rem, 1.2vw, 0.88rem);
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--white-90);
}

/* Vertical divider between stats */
.stats-banner__divider {
  width: 1px;
  height: 56px;
  background: var(--white-35);
  flex-shrink: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 860px) {
  .stats-banner {
    padding: 56px 32px;
  }

  .stats-banner__divider {
    height: 40px;
  }
}

/* Mobile — 2x2 grid */
@media (max-width: 560px) {
  .stats-banner {
    padding: 48px 24px;
  }

  .stats-banner__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 0;
  }

  /* Hide vertical dividers on mobile — use grid gap instead */
  .stats-banner__divider {
    display: none;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-37296a9a *//* ============================================
   BASMALA — FOOTER
   footer-style.css — Separate CSS File
   ============================================ */

/* ── CSS Variables ── */
:root {
  --footer-bg:       #1a1a1a;
  --footer-bottom:   #111111;
  --footer-border:   rgba(255, 255, 255, 0.08);
  --white:           #ffffff;
  --white-75:        rgba(255, 255, 255, 0.75);
  --white-45:        rgba(255, 255, 255, 0.45);
  --white-25:        rgba(255, 255, 255, 0.25);
  --white-10:        rgba(255, 255, 255, 0.10);
  --green-logo:      #2d7a55;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Lato', sans-serif;
}

/* ── Reset ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Remove all link underlines and default colours */
a {
  text-decoration: none;
  color: inherit;
}

ul { list-style: none; }

html { font-size: 16px; }

body {
  font-family: var(--font-body);
  background-color: var(--footer-bg);
  -webkit-font-smoothing: antialiased;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  width: 100%;
  background-color: var(--footer-bg);
}

/* Main 4-column grid */
.footer__container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 60px 60px 52px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}

/* ── COL 1 — Brand ── */
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Logo row */
.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer__logo-img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.footer__logo-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.footer__logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer__logo-brand {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.01em;
}

.footer__logo-tagline {
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white-45);
}

/* Brand description */
.footer__tagline-text {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--white-45);
  line-height: 1.75;
  max-width: 280px;
}

/* ── COL TITLES ── */
.footer__col-title {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white-75);
  margin-bottom: 20px;
}

/* ── NAV & COURSE LINKS ── */
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__link {
  font-size: 0.83rem;
  font-weight: 300;
  color: var(--white-45);
  transition: color 0.2s ease;
  line-height: 1.4;
}

.footer__link:hover {
  color: var(--white-75);
}

/* ── CONTACT LIST ── */
.footer__contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer__contact-icon {
  font-size: 0.8rem;
  width: 16px;
  flex-shrink: 0;
  margin-top: 1px;
  opacity: 0.55;
}

/* Contact links inherit .footer__link styles */
.footer__contact-item .footer__link {
  font-size: 0.82rem;
  line-height: 1.5;
}

/* ============================================
   FOOTER BOTTOM BAR
   ============================================ */
.footer__bottom {
  border-top: 1px solid var(--footer-border);
  background-color: var(--footer-bottom);
}

.footer__bottom-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 18px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__copyright {
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--white-25);
  letter-spacing: 0.01em;
}

.footer__location {
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--white-25);
  letter-spacing: 0.01em;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet — 2 columns */
@media (max-width: 960px) {
  .footer__container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 52px 40px 44px;
  }

  .footer__bottom-container {
    padding: 16px 40px;
  }
}

/* Mobile — single column */
@media (max-width: 580px) {
  .footer__container {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 44px 24px 40px;
  }

  .footer__tagline-text {
    max-width: 100%;
  }

  .footer__bottom-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 16px 24px;
  }
}/* End custom CSS */