.elementor-94 .elementor-element.elementor-element-402cf140{--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-94 .elementor-element.elementor-element-d6bafa0{--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-94 .elementor-element.elementor-element-d6bafa0:not(.elementor-motion-effects-element-type-background), .elementor-94 .elementor-element.elementor-element-d6bafa0 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#F7F3EC;}.elementor-94 .elementor-element.elementor-element-723075f{--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;--margin-top:-8px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-94 .elementor-element.elementor-element-6e99b6a{--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-94 .elementor-element.elementor-element-6e99b6a:not(.elementor-motion-effects-element-type-background), .elementor-94 .elementor-element.elementor-element-6e99b6a > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#F7F3EB;}.elementor-94 .elementor-element.elementor-element-e48f23c{--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-94 .elementor-element.elementor-element-62ef8424{--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-94 .elementor-element.elementor-element-62ef8424:not(.elementor-motion-effects-element-type-background), .elementor-94 .elementor-element.elementor-element-62ef8424 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#1A1A1A;}:root{--page-title-display:none;}@media(min-width:768px){.elementor-94 .elementor-element.elementor-element-6e99b6a{--content-width:1600px;}.elementor-94 .elementor-element.elementor-element-e48f23c{--content-width:1600px;}.elementor-94 .elementor-element.elementor-element-62ef8424{--content-width:1600px;}}/* Start custom CSS for html, class: .elementor-element-57f4c85 *//* ============================================
   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-e12bf23 *//* ============================================
   BASMALA — COURSES SECTION HEADER
   courses-style.css — Separate CSS File
   ============================================ */

/* ── CSS Variables ── */
:root {
  --cream-bg:      #f7f3ec;
  --green-text:    #1a5c38;
  --dark-heading:  #111a14;
  --text-light:    #7a8075;

  --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(--cream-bg);
  -webkit-font-smoothing: antialiased;
}

/* ============================================
   COURSES HEADER
   ============================================ */
.courses-header {
  width: 100%;
  background-color: var(--cream-bg);
  padding: 88px 24px 72px;
  text-align: center;
}

.courses-header__container {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

/* Eyebrow label */
.courses-header__eyebrow {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-text);
  margin-bottom: 20px;
}

/* Main heading */
.courses-header__heading {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  color: var(--dark-heading);
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin-bottom: 28px;
}

/* Subtext */
.courses-header__subtext {
  font-family: var(--font-body);
  font-size: clamp(0.88rem, 1.4vw, 1rem);
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.85;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 768px) {
  .courses-header {
    padding: 72px 32px 60px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .courses-header {
    padding: 60px 20px 48px;
  }

  /* Break tag hidden on very small screens for better flow */
  .courses-header__subtext br {
    display: none;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-8340ed1 *//* ============================================
   BASMALA — TWO WAYS TO LEARN
   learning-style.css — Separate CSS File
   ============================================ */

/* ── CSS Variables ── */
:root {
  --white:          #ffffff;
  --off-white:      #f9f9f9;
  --mint-bg:        #e8f5ef;
  --mint-border:    #2d7a55;
  --white-border:   #e2e8e4;
  --green-dark:     #1a5c38;
  --green-badge:    #1e6b42;
  --dark-heading:   #111a14;
  --text-mid:       #4a5568;
  --text-light:     #718096;
  --check-green:    #2d7a55;
  --divider:        #d9e4de;

  --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);
  -webkit-font-smoothing: antialiased;
}

/* ============================================
   LEARNING SECTION
   ============================================ */
.learning-section {
  width: 100%;
  background-color: var(--white);
  padding: 80px 60px;
}

.learning-section__container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ── Section Header ── */
.learning-section__header {
  text-align: center;
  margin-bottom: 56px;
}

.learning-section__eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 14px;
}

.learning-section__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  color: var(--dark-heading);
  line-height: 1.12;
  letter-spacing: -0.015em;
}

/* ── Cards Grid ── */
.learning-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

/* ============================================
   LEARN CARD — Shared Styles
   ============================================ */
.learn-card {
  border-radius: 16px;
  padding: 40px 40px 44px;
  border: 1.5px solid transparent;
}

/* White card variant */
.learn-card--white {
  background-color: var(--white);
  border-color: var(--white-border);
}

/* Mint / green tint card variant */
.learn-card--mint {
  background-color: var(--mint-bg);
  border-color: var(--mint-border);
}

/* ── Badge ── */
.learn-card__badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background-color: var(--green-badge);
  border-radius: 40px;
  padding: 6px 14px;
  margin-bottom: 22px;
}

/* ── Card Title ── */
.learn-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  font-weight: 700;
  color: var(--dark-heading);
  line-height: 1.2;
  margin-bottom: 14px;
}

/* ── Description ── */
.learn-card__desc {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 28px;
}

/* ── Feature List ── */
.learn-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.learn-card__item {
  position: relative;
  padding: 13px 0 13px 28px;
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--text-mid);
  line-height: 1.5;
  border-bottom: 1px solid var(--divider);
}

.learn-card__item:last-child {
  border-bottom: none;
}

/* Checkmark via pseudo-element */
.learn-card__item::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 13px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--check-green);
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 900px) {
  .learning-section {
    padding: 64px 32px;
  }

  .learn-card {
    padding: 32px 28px 36px;
  }
}

/* Mobile — stack cards */
@media (max-width: 640px) {
  .learning-section {
    padding: 52px 20px;
  }

  .learning-section__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .learn-card {
    padding: 28px 22px 32px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-4c6c1a9 *//* ============================================
   BASMALA — FULL COURSE CATALOG
   catalog-style.css — Separate CSS File
   ============================================ */

/* ── CSS Variables ── */
:root {
  --cream-bg:       #f7f3eb;
  --white:          #ffffff;
  --card-border:    #e4ddd0;
  --green-dark:     #1a5c38;
  --green-mid:      #2d7a55;
  --green-number-bg:#e6f2ec;
  --green-number:   #1e6b42;
  --green-btn:      #1e6b42;
  --green-btn-hover:#145c37;
  --lang-bg:        #f0ece4;
  --lang-text:      #6b7280;
  --dark-heading:   #111a14;
  --text-mid:       #374151;
  --text-light:     #6b7280;

  --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(--cream-bg);
  -webkit-font-smoothing: antialiased;
}

/* ============================================
   CATALOG SECTION
   ============================================ */
.catalog {
  width: 100%;
  background-color: var(--cream-bg);
  padding: 80px 60px;
}

.catalog__container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ── Section Header ── */
.catalog__header {
  margin-bottom: 48px;
}

.catalog__eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 14px;
}

.catalog__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--dark-heading);
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin-bottom: 16px;
}

.catalog__subtext {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.85;
}

/* ============================================
   COURSE LIST
   ============================================ */
.catalog__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ── Single Course Row ── */
.course-row {
  background-color: var(--white);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.course-row:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.07);
  transform: translateY(-2px);
}

/* Left side: number + info */
.course-row__left {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
  min-width: 0;
}

/* Number badge */
.course-row__number {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background-color: var(--green-number-bg);
  color: var(--green-number);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Course info text */
.course-row__info {
  flex: 1;
  min-width: 0;
}

.course-row__title {
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--dark-heading);
  margin-bottom: 5px;
  line-height: 1.4;
}

.course-row__desc {
  font-size: 0.83rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.65;
}

/* Right side: language tag + enroll button */
.course-row__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  flex-shrink: 0;
}

/* Language tag */
.course-row__lang {
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--lang-text);
  background-color: var(--lang-bg);
  border-radius: 20px;
  padding: 4px 12px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

/* Enroll button */
.course-row__btn {
  display: inline-block;
  background-color: var(--green-btn);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  padding: 10px 28px;
  border-radius: 40px;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.15s ease;
}

.course-row__btn:hover {
  background-color: var(--green-btn-hover);
  transform: translateY(-1px);
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 900px) {
  .catalog {
    padding: 64px 32px;
  }

  .course-row {
    padding: 22px 24px;
    gap: 16px;
  }

  .course-row__left {
    gap: 16px;
  }
}

/* Mobile — stack right side inline */
@media (max-width: 600px) {
  .catalog {
    padding: 52px 16px;
  }

  .catalog__subtext br {
    display: none;
  }

  .course-row {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 16px;
  }

  .course-row__right {
    flex-direction: row;
    align-items: center;
    width: 100%;
    justify-content: space-between;
  }

  .course-row__number {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-85d650f *//* ============================================
   BASMALA — COURSE CTA BANNER
   cta-style.css — Separate CSS File
   ============================================ */

/* ── CSS Variables ── */
:root {
  --cream-bg:       #f5f0e6;
  --dot-color:      #d6cfc0;
  --dark-heading:   #111a14;
  --text-light:     #7a7a6e;
  --gold:           #b8890e;
  --gold-hover:     #9e7509;
  --white:          #ffffff;

  --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: #f7f3eb;
  -webkit-font-smoothing: antialiased;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  width: 100%;
  padding: 32px 60px 48px;
}

/* Card with dot-grid background */
.cta-banner__container {
  max-width: 1100px;
  margin: 0 auto;
  background-color: var(--cream-bg);
  border-radius: 20px;
  padding: 72px 48px;
  text-align: center;

  /* Dot grid pattern using radial-gradient */
  background-image:
    radial-gradient(circle, var(--dot-color) 1px, transparent 1px);
  background-size: 28px 28px;
  background-color: var(--cream-bg);

  /* Layered: dot pattern on top of cream */
  background-image:
    radial-gradient(circle, var(--dot-color) 1.2px, transparent 1.2px);
  background-size: 26px 26px;
}

/* Heading */
.cta-banner__heading {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--dark-heading);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}

/* Subtext */
.cta-banner__subtext {
  font-size: clamp(0.85rem, 1.3vw, 0.97rem);
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.75;
  max-width: 580px;
  margin: 0 auto 36px;
}

/* Gold CTA Button */
.cta-banner__btn {
  display: inline-block;
  background-color: var(--gold);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 18px 40px;
  border-radius: 6px;
  transition: background 0.22s ease, transform 0.15s ease;
}

.cta-banner__btn:hover {
  background-color: var(--gold-hover);
  transform: translateY(-2px);
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 860px) {
  .cta-banner {
    padding: 24px 32px 40px;
  }

  .cta-banner__container {
    padding: 56px 36px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .cta-banner {
    padding: 20px 16px 36px;
  }

  .cta-banner__container {
    padding: 48px 24px;
    border-radius: 14px;
  }

  .cta-banner__btn {
    width: 100%;
    text-align: center;
    padding: 16px 24px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-12767c48 *//* ============================================
   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 */