.elementor-110 .elementor-element.elementor-element-724bb0d{--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-110 .elementor-element.elementor-element-fa84787{--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-110 .elementor-element.elementor-element-fa84787:not(.elementor-motion-effects-element-type-background), .elementor-110 .elementor-element.elementor-element-fa84787 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#F5F0E6;}.elementor-110 .elementor-element.elementor-element-d706212{--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-110 .elementor-element.elementor-element-480f3d3{--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-110 .elementor-element.elementor-element-480f3d3:not(.elementor-motion-effects-element-type-background), .elementor-110 .elementor-element.elementor-element-480f3d3 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#1A1A1A;}:root{--page-title-display:none;}@media(min-width:768px){.elementor-110 .elementor-element.elementor-element-fa84787{--content-width:1600px;}.elementor-110 .elementor-element.elementor-element-480f3d3{--content-width:1600px;}}/* Start custom CSS for html, class: .elementor-element-7f38e5d1 *//* ============================================
   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-1c7b9a9 *//* ============================================
   BASMALA — CONTACT SECTION
   contact-style.css — Separate CSS File
   ============================================ */

/* ── CSS Variables ── */
:root {
  --cream-bg:       #f5f0e6;
  --white:          #ffffff;
  --card-border:    #e4ddd0;
  --input-border:   #d1ccc4;
  --input-focus:    #2d7a55;
  --green-dark:     #1a5c38;
  --green-btn:      #1e6b42;
  --green-btn-hover:#145c37;
  --icon-bg:        #eef6f1;
  --dark-heading:   #111a14;
  --text-mid:       #374151;
  --text-light:     #7a7a6e;
  --label-color:    #9ca3af;
  --placeholder:    #b0aca4;

  --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;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
  width: 100%;
  background-color: var(--cream-bg);
  padding: 80px 60px;
}

/* Two-column layout */
.contact__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 60px;
  align-items: start;
}

/* ============================================
   LEFT COLUMN
   ============================================ */
.contact__eyebrow {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 14px;
}

.contact__heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 700;
  color: var(--dark-heading);
  line-height: 1.18;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}

.contact__subtext {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 36px;
}

/* Info card list */
.contact__info-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Single info card */
.contact__info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background-color: var(--white);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 18px 22px;
  transition: box-shadow 0.2s ease;
}

.contact__info-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

/* Icon circle */
.contact__info-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background-color: var(--icon-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact__info-body {
  flex: 1;
}

.contact__info-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--label-color);
  margin-bottom: 4px;
}

.contact__info-value {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ============================================
   RIGHT COLUMN — Form Card
   ============================================ */
.contact__form-card {
  background-color: var(--white);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 40px 40px 44px;
}

.contact__form-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark-heading);
  margin-bottom: 28px;
}

/* ── Form Layout ── */
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Two-column input row */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Form group */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group--full {
  width: 100%;
}

/* Label */
.form-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--label-color);
}

/* Text input */
.form-input {
  width: 100%;
  height: 46px;
  border: 1px solid var(--input-border);
  border-radius: 8px;
  padding: 0 14px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--dark-heading);
  background-color: var(--white);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input::placeholder {
  color: var(--placeholder);
}

.form-input:focus {
  border-color: var(--input-focus);
  box-shadow: 0 0 0 3px rgba(45, 122, 85, 0.12);
}

/* Select wrapper */
.form-select-wrap {
  position: relative;
}

.form-select {
  width: 100%;
  height: 46px;
  border: 1px solid var(--input-border);
  border-radius: 8px;
  padding: 0 40px 0 14px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--dark-heading);
  background-color: var(--white);
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-select:focus {
  border-color: var(--input-focus);
  box-shadow: 0 0 0 3px rgba(45, 122, 85, 0.12);
}

/* Custom dropdown arrow */
.form-select-arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.1rem;
  color: var(--text-light);
  pointer-events: none;
}

/* Textarea */
.form-textarea {
  width: 100%;
  border: 1px solid var(--input-border);
  border-radius: 8px;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--dark-heading);
  background-color: var(--white);
  resize: vertical;
  min-height: 120px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  line-height: 1.65;
}

.form-textarea::placeholder {
  color: var(--placeholder);
}

.form-textarea:focus {
  border-color: var(--input-focus);
  box-shadow: 0 0 0 3px rgba(45, 122, 85, 0.12);
}

/* Submit button */
.form-submit {
  width: 100%;
  background-color: var(--green-btn);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border: none;
  border-radius: 8px;
  padding: 16px 24px;
  cursor: pointer;
  transition: background 0.22s ease, transform 0.15s ease;
  margin-top: 4px;
}

.form-submit:hover {
  background-color: var(--green-btn-hover);
  transform: translateY(-1px);
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 960px) {
  .contact {
    padding: 64px 32px;
  }

  .contact__container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact__form-card {
    padding: 32px 28px 36px;
  }
}

/* Mobile */
@media (max-width: 560px) {
  .contact {
    padding: 52px 16px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact__form-card {
    padding: 28px 20px 32px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-21d8afb *//* ============================================
   BASMALA — ADMINISTRATIVE OFFICES
   offices-style.css — Separate CSS File
   ============================================ */

/* ── CSS Variables ── */
:root {
  --white:           #ffffff;
  --cream-card:      #faf6ee;
  --card-border:     #e8e0d0;
  --green-dark:      #1a5c38;
  --green-mid:       #1e6b42;
  --green-banner:    #1e6b42;
  --green-banner-end:#145c37;
  --white-btn-border:rgba(255,255,255,0.55);
  --white-80:        rgba(255,255,255,0.80);
  --dark-heading:    #111a14;
  --code-color:      #374151;
  --text-light:      #6b7280;
  --eyebrow-color:   #2d7a55;

  --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;
}

/* ============================================
   OFFICES SECTION
   ============================================ */
.offices {
  width: 100%;
  background-color: var(--white);
  padding: 72px 60px 80px;
}

.offices__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ── Section Header ── */
.offices__header {
  text-align: center;
  margin-bottom: 40px;
}

.offices__eyebrow {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--eyebrow-color);
  margin-bottom: 12px;
}

.offices__heading {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--dark-heading);
  line-height: 1.12;
  letter-spacing: -0.015em;
}

/* ── Office Cards Grid ── */
.offices__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

/* Single office card */
.office-card {
  background-color: var(--cream-card);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 32px 32px 36px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.office-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.07);
  transform: translateY(-2px);
}

/* Country code (AE / IN) */
.office-card__code {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--code-color);
  margin-bottom: 12px;
}

/* Office name */
.office-card__name {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 10px;
}

/* Description */
.office-card__desc {
  font-size: 0.84rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.75;
}

/* ============================================
   CAREER INQUIRIES BANNER
   ============================================ */
.career-banner {
  background: linear-gradient(
    135deg,
    var(--green-banner) 0%,
    var(--green-banner-end) 100%
  );
  border-radius: 14px;
  padding: 48px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

/* Title */
.career-banner__title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

/* Subtext */
.career-banner__subtext {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--white-80);
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: 4px;
}

/* Outlined white button */
.career-banner__btn {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 40px;
  border: 1.5px solid var(--white-btn-border);
  transition: background 0.22s ease, border-color 0.22s ease, transform 0.15s ease;
  white-space: nowrap;
}

.career-banner__btn:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-1px);
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 860px) {
  .offices {
    padding: 60px 32px 64px;
  }

  .career-banner {
    padding: 40px 28px;
  }
}

/* Mobile — stack cards */
@media (max-width: 580px) {
  .offices {
    padding: 52px 16px 56px;
  }

  .offices__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .office-card {
    padding: 26px 22px 28px;
  }

  .career-banner {
    padding: 36px 20px;
    border-radius: 12px;
  }

  .career-banner__btn {
    width: 100%;
    text-align: center;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-1ffb5074 *//* ============================================
   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 */