/* ============================================
   CSS Custom Properties (Design System)
   ============================================ */
:root {
  /* Colors */
  --color-primary: #FEC430;
  --color-secondary: #ED145B;
  --color-accent: #0A6375;
  --color-success: #2FAC66;
  --color-dark: #191919;
  --color-gray: #6B6B84;
  --color-gray-light: #797979;
  --color-light: #F6F6F6;
  --color-white: #ffffff;
  --color-bg-gradient-start: #FFF;
  --color-bg-gradient-end: #FFEFE4;
  
  /* Typography */
  --font-family-primary: "Almarai", sans-serif;
  --font-size-xs: 0.75rem;    /* 12px */
  --font-size-sm: 0.875rem;   /* 14px */
  --font-size-base: 1rem;     /* 16px */
  --font-size-lg: 1.125rem;   /* 18px */
  --font-size-xl: 1.25rem;    /* 20px */
  --font-size-2xl: 1.5rem;    /* 24px */
  --font-size-3xl: 1.75rem;   /* 28px */
  --font-size-4xl: 2rem;      /* 32px */
  --font-size-5xl: 2.5rem;    /* 40px */
  --font-size-6xl: 4.25rem;   /* 68px */
  
  /* Spacing */
  --spacing-xs: 0.25rem;      /* 4px */
  --spacing-sm: 0.5rem;       /* 8px */
  --spacing-md: 1rem;         /* 16px */
  --spacing-lg: 1.5rem;       /* 24px */
  --spacing-xl: 2rem;         /* 32px */
  --spacing-2xl: 3rem;        /* 48px */
  --spacing-3xl: 4rem;        /* 64px */
  --spacing-4xl: 6rem;        /* 96px */
  
  /* Border Radius */
  --radius-sm: 0.5rem;        /* 8px */
  --radius-md: 0.9375rem;     /* 15px */
  --radius-lg: 1.25rem;       /* 20px */
  --radius-xl: 2rem;          /* 32px */
  --radius-full: 50%;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
  
  /* Transitions */
  --transition-fast: 150ms ease-in-out;
  --transition-base: 300ms ease-in-out;
  --transition-slow: 500ms ease-in-out;
  
  /* Container widths */
  --container-sm: 540px;
  --container-md: 720px;
  --container-lg: 960px;
  --container-xl: 1140px;
  --container-xxl: 1320px;
  
  /* Z-index layers */
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-modal-backdrop: 400;
  --z-modal: 500;
  --z-popover: 600;
  --z-tooltip: 700;
}

/* ============================================
   Font Definitions
   ============================================ */
@font-face {
  font-family: "Almarai";
  src: url("assets/fonts/Almarai-Bold.eot");
  src: url("assets/fonts/Almarai-Bold.eot?#iefix") format("embedded-opentype"), url("assets/fonts/Almarai-Bold.woff2") format("woff2"), url("assets/fonts/Almarai-Bold.woff") format("woff"), url("assets/fonts/Almarai-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Almarai";
  src: url("assets/fonts/Almarai-ExtraBold.eot");
  src: url("assets/fonts/Almarai-ExtraBold.eot?#iefix") format("embedded-opentype"), url("assets/fonts/Almarai-ExtraBold.woff2") format("woff2"), url("assets/fonts/Almarai-ExtraBold.woff") format("woff"), url("assets/fonts/Almarai-ExtraBold.ttf") format("truetype");
  font-weight: bolder;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Almarai";
  src: url("assets/fonts/Almarai-Light.eot");
  src: url("assets/fonts/Almarai-Light.eot?#iefix") format("embedded-opentype"), url("assets/fonts/Almarai-Light.woff2") format("woff2"), url("assets/fonts/Almarai-Light.woff") format("woff"), url("assets/fonts/Almarai-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Almarai";
  src: url("assets/fonts/Almarai-Regular.eot");
  src: url("assets/fonts/Almarai-Regular.eot?#iefix") format("embedded-opentype"), url("assets/fonts/Almarai-Regular.woff2") format("woff2"), url("assets/fonts/Almarai-Regular.woff") format("woff"), url("assets/fonts/Almarai-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ============================================
   Accessibility & Utilities
   ============================================ */
/* Skip to main content link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  padding: var(--spacing-sm) var(--spacing-md);
  background: var(--color-primary);
  color: var(--color-dark);
  z-index: var(--z-tooltip);
  border-radius: var(--radius-sm);
  font-weight: bold;
}
.skip-link:focus {
  top: var(--spacing-sm);
}

/* Focus styles for accessibility */
:focus-visible {
  outline: 3px solid var(--color-primary);
  outline-offset: 2px;
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================
   Navigation Styles
   ============================================ */
.navbar .subsription-btn {
  color: var(--color-dark);
  font-weight: 700;
  font-size: var(--font-size-lg);
  padding: var(--spacing-sm) var(--spacing-2xl);
  border-radius: var(--radius-md);
  background-color: var(--color-primary);
  line-height: 24px;
}
.navbar .nav-link {
  font-size: var(--font-size-xl);
  color: var(--color-dark);
  line-height: 22px;
  padding: 0 13px !important;
  margin: 0 13px;
  transition: color var(--transition-base);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.navbar .nav-link:hover,
.navbar .nav-link:focus {
  color: var(--color-secondary);
}
.navbar .navbar-collapse {
  flex-grow: 1;
  display: flex;
  justify-content: center;
}
.navbar .navbar-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-join-btn {
  background-color: var(--color-primary);
  border-radius: var(--radius-md);
  padding: var(--spacing-sm) var(--spacing-xl);
  transition: all var(--transition-base);
}
.header-join-btn:hover {
  background-color: #e5b02b;
  transform: translateY(-2px);
}

/* Navbar Toggler (Hamburger Menu) */
.navbar-toggler {
  border: none;
  padding: 10px;
  background: transparent;
}
.navbar-toggler:focus {
  box-shadow: none;
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}
.navbar-toggler-icon {
  display: block;
  width: 28px;
  height: 3px;
  background-color: var(--color-dark);
  position: relative;
  transition: all var(--transition-base);
}
.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: '';
  position: absolute;
  width: 28px;
  height: 3px;
  background-color: var(--color-dark);
  left: 0;
  transition: all var(--transition-base);
}
.navbar-toggler-icon::before {
  top: -8px;
}
.navbar-toggler-icon::after {
  bottom: -8px;
}
/* Animated hamburger to X */
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background-color: transparent;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
  top: 0;
  transform: rotate(45deg);
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
  bottom: 0;
  transform: rotate(-45deg);
}

/* ============================================
   Global Reset & Base Styles
   ============================================ */
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  direction: rtl;
  position: relative;
  font-family: var(--font-family-primary);
  overflow-x: hidden;
  max-width: 100vw;
  line-height: 1.6;
  color: var(--color-dark);
}

/* Responsive images */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Main content wrapper */
main {
  min-height: 50vh;
}

.custom-logo {
	width: 80px !important;
	height: 70px !important;
	object-fit: contain;
}
/* ============================================
   Hero Banner Section
   ============================================ */
body .hero-banner {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: clamp(500px, 80vh, 900px);
  min-height: 500px;
  position: relative;
}
body .hero-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
body .hero-banner .container {
  position: relative;
  z-index: 2;
}
body .hero-banner .hero-content-wrapper {
  position: absolute;
  top: 50%;
  right: 50%;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
}
body .hero-banner .hero-content-wrapper h1 {
  font-weight: 700;
  font-size: clamp(var(--font-size-3xl), 5vw, var(--font-size-6xl));
  line-height: 1.1;
  color: var(--color-white);
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
body .hero-banner .hero-content-wrapper p {
  color: var(--color-white);
  font-weight: 400;
  font-size: clamp(var(--font-size-base), 2vw, var(--font-size-2xl));
  line-height: 1.6;
  text-shadow: 0 1px 5px rgba(0,0,0,0.2);
}
body .hero-banner .hero-content-wrapper .subscription-btn-wrapper {
  margin-bottom: 80px;
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-md);
  justify-content: center;
}
body .hero-banner .hero-content-wrapper .subscription-btn-wrapper .subscription-btn {
  color: var(--color-dark);
  font-weight: 700;
  font-size: var(--font-size-lg);
  padding: 12px 22px;
  border-radius: var(--radius-md);
  line-height: 24px;
  transition: all var(--transition-base);
}
body .hero-banner .hero-content-wrapper .subscription-btn-wrapper .subscription-btn.bg-yellow {
  background-color: var(--color-primary);
}
body .hero-banner .hero-content-wrapper .subscription-btn-wrapper .subscription-btn.bg-yellow:hover {
  -webkit-transition: all var(--transition-base);
  transition: all var(--transition-base);
  border: 1px solid var(--color-primary);
  background-color: transparent;
	color: var(--color-primary);
  transform: translateY(-2px);
}
body .hero-banner .hero-content-wrapper .subscription-btn-wrapper .subscription-btn.btn-outline-warning:hover {
  color: var(--color-dark) !important;
  -webkit-transition: all var(--transition-base);
  transition: all var(--transition-base);
  transform: translateY(-2px);
}
body .hero-banner .hero-content-wrapper .subscription-btn-wrapper .subscription-btn svg {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  position: relative;
}
body .hero-banner .hero-content-wrapper .scroll-wrapper .arrow,
body .hero-banner .hero-content-wrapper .scroll-wrapper .mouse {
  position: absolute;
}
body .hero-banner .hero-content-wrapper .scroll-wrapper .arrow {
  top: 35px;
  left: -15px;
}
body .hero-banner .hero-content-wrapper .scroll-wrapper .mouse {
  top: 40px;
}
/* ============================================
   About Academy Section
   ============================================ */
body .about-academy {
  position: relative;
  width: 100%;
  padding-top: var(--spacing-4xl);
  padding-bottom: var(--spacing-3xl);
  background: linear-gradient(180deg, var(--color-bg-gradient-start) 10%, var(--color-bg-gradient-end) 100%);
}
body .about-academy .about_content_wrapper {
  background-repeat: no-repeat;
  background-position: right;
  background-size: 30%;
  padding-right: clamp(0px, 15vw, 200px);
}
body .about-academy .blob-background {
  width: 100%;
  height: 200px;
  top: -140px;
  position: absolute;
}
body .about-academy .about_subtitle {
  font-weight: 700;
  color: var(--color-secondary);
  font-size: var(--font-size-sm);
  line-height: 19.66px;
  letter-spacing: 0.76px;
  margin-right: 15px;
  text-transform: uppercase;
}
body .about-academy .about_title {
  font-size: clamp(var(--font-size-xl), 3vw, var(--font-size-2xl));
  line-height: 1.3;
  font-weight: 700;
  color: var(--color-dark);
}
body .about-academy .about_content {
  font-weight: 400;
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--color-gray);
}
body .about-academy .about_btn {
  padding: 9.45px 23.345px 9.45px 23.511px;
  background-color: var(--color-secondary);
  color: var(--color-white);
  line-height: 14px;
  font-size: var(--font-size-xs);
  text-align: center;
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  text-decoration: none;
}
body .about-academy .about_btn:hover {
  background-color: #c91150;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ============================================
   Our Programs Section
   ============================================ */
body .our-programs {
  background-color: var(--color-bg-gradient-end);
  position: relative;
  padding: var(--spacing-3xl) 0;
}
body .our-programs::before {
  content: "";
  background-image: url("assets/images/star.png");
  position: absolute;
  right: 5%;
  top: 20%;
  width: 250px;
  height: 250px;
  background-repeat: no-repeat;
  opacity: 0.8;
}
body .our-programs::after {
  content: "";
  background-image: url("assets/images/letters.png");
  position: absolute;
  left: 5%;
  top: -5%;
  width: 250px;
  height: 250px;
  background-repeat: no-repeat;
  opacity: 0.8;
}
body .our-programs .our_programs_title {
  font-size: clamp(var(--font-size-2xl), 4vw, 31px);
  font-weight: 700;
  color: var(--color-dark);
}
body .our-programs .our_programs_subtitle {
  color: var(--color-secondary);
  text-align: center;
  font-size: var(--font-size-lg);
  font-style: normal;
  font-weight: 400;
  line-height: 24.539px;
  letter-spacing: 0.944px;
}

/* ============================================
   Program Cards Section - Enhanced Design
   ============================================ */
body .our-programs-cards {
  background: linear-gradient(180deg, #0f3d4e 0%, #1a5a6a 100%);
  position: relative;
  padding: 80px 0 100px;
}

body .our-programs-cards .container {
  position: relative;
  z-index: 10;
}

body .our-programs-cards .row {
  row-gap: 40px;
}

body .our-programs-cards #our_programs_artboard,
body .our-programs-cards #left-button-slider,
body .our-programs-cards #right-button-slider {
  display: none;
}

/* Modern Program Card Styling */
body .our-programs-cards .single_program_card {
  position: relative;
  overflow: hidden;
  height: 480px;
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  background: #000;
  flex: none !important;
  display: block !important;
}

body .our-programs-cards .single_program_card img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.6s ease;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  filter: brightness(0.85);
  margin: 0 !important;
  max-width: none !important;
}

body .our-programs-cards .single_program_card:hover img {
  transform: scale(1.1);
  filter: brightness(1.1);
}

/* Overlay content */
body .our-programs-cards .single_program_card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(237, 20, 91, 0.95) 0%, rgba(8, 88, 102, 0.95) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 2;
}

body .our-programs-cards .single_program_card:hover::after {
  opacity: 1;
}

/* Text container */
body .our-programs-cards .single_program_card h4,
body .our-programs-cards .single_program_card p {
  position: absolute;
  left: 30px;
  right: 30px;
  z-index: 3;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  color: #ffffff;
  max-width: 100%;
}

body .our-programs-cards .single_program_card h4 {
  font-size: 28px;
  font-weight: 800;
  line-height: 36px;
  bottom: 80px;
  margin: 0 !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

body .our-programs-cards .single_program_card p {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  bottom: 30px;
  opacity: 0;
  transform: translateY(20px);
  margin: 0 !important;
}

body .our-programs-cards .single_program_card:hover h4 {
  bottom: 140px;
}

body .our-programs-cards .single_program_card:hover p {
  opacity: 1;
  transform: translateY(0);
}

body .our-programs-cards > img:last-of-type {
  display: none;
}

/* Programs Section Header Styling */
body .our-programs-cards .programs-badge {
  display: inline-block;
  background: rgba(237, 20, 91, 0.15);
  border: 2px solid #ED145B;
  color: #ED145B;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  animation: fadeInDown 0.6s ease-out;
}

body .our-programs-cards .programs-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.3;
  animation: fadeInUp 0.6s ease-out 0.1s both;
}

body .our-programs-cards .programs-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
body .wave {
  width: 100%;
  height: 200px;
  top: 0;
}
body .latest-news {
  background-color: #0A6375;
  padding-bottom: 80px;
}
body .latest-news #latest-news-content #latest-news-headings {
  margin-bottom: 30px;
}
body .latest-news #latest-news-content #latest-news-headings h6 {
  color: #FCE83E;
  font-size: 16px;
  font-weight: 400;
}
body .latest-news #latest-news-content #latest-news-headings h3 {
  font-size: 25px;
  font-weight: bold;
  letter-spacing: 1.03px;
}
body .latest-news #latest-news-content p, body .latest-news #latest-news-content h5 {
  color: #fff;
}
body .latest-news #latest-news-images img {
  position: absolute;
  left: 0;
}
body .latest-news #latest-news-images img:first-child {
  z-index: 2;
  bottom: 0;
}
body .latest-news #latest-news-images img:last-child {
  z-index: 1;
  left: 50%;
  top: 10%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
body #occasions-events {
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: contain;
  padding-bottom: 250px;
  padding-top: 50px;
}
body #occasions-events .right-icon {
  right: 0;
  width: 170px;
  height: 145px;
  -o-object-fit: cover;
     object-fit: cover;
}
body #occasions-events .left-icon {
  left: 0;
  width: 170px;
  height: 170px;
  -o-object-fit: cover;
     object-fit: cover;
}
body #occasions-events .portfolio-wraper > div.text-center {
  margin-bottom: 40px !important;
}
body #occasions-events .portfolio-wraper .simplefilter li {
  margin: 0 13px;
  padding: 10px 60px;
}
body #occasions-events #occasions-titles-wrapper {
  margin-bottom: 40px;
}
body #occasions-events #occasions-titles-wrapper p {
  color: #EB1551;
  text-align: center;
  font-size: 18.876px;
  font-style: normal;
  font-weight: 400;
  line-height: 24.539px;
  letter-spacing: 0.944px;
  margin-bottom: 5px;
}
body #occasions-events #occasions-titles-wrapper h1 {
  font-size: 28px;
  font-weight: 700;
}
body #occasions-events #occasions-titles-wrapper .subtitle-icon {
  left: 35%;
}
body #volunteer {
  background-color: #F6F6F6;
  padding: 60px 0 40px;
}
body #volunteer #v-right-icon {
  right: 40px;
}
body #volunteer #v-left-icon {
  left: 65px;
}
body #volunteer #volunteer-content-wrapper h1 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 26px;
}
body #volunteer #volunteer-content-wrapper p {
  font-size: 24px;
  margin-bottom: 40px;
}
body #volunteer #volunteer-buttons-wrapper a:first-of-type {
  border-color: #ED145B;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
body #volunteer #volunteer-buttons-wrapper a:first-of-type:hover {
  background-color: #ED145B;
  border-color: transparent;
  color: #000;
}
body #volunteer #volunteer-buttons-wrapper a:last-of-type {
  background-color: #ED145B;
  color: #fff;
  margin-right: 30px;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
body #volunteer #volunteer-buttons-wrapper a:last-of-type:hover {
  border-color: #ED145B;
  background-color: transparent;
  color: #000;
}
body .contact {
  padding-top: 60px;
  padding-bottom: 45px;
  background-repeat: no-repeat;
  background-position: right;
	background-size: 14%;
}
body .contact #contact-titles-wrapper p {
  color: #EB1551;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 0;
}
body .contact #contact-titles-wrapper h1 {
  color: #191919;
  font-size: 32px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.64px;
}
body .contact .contact-form input,
body .contact .contact-form select,
body .contact .contact-form textarea {
  border-radius: 15.75px;
  border: 1px solid rgba(0, 0, 0, 0.25);
  padding: 12px 14px;
}
body .contact .contact-form textarea {
  resize: none;
}
body .contact .contact-form button[type="submit"] {
  border-radius: 55px;
  background-color: #ED145B;
  color: #fff;
  padding: 15px 50px;
  border: none;
  font-size: 16px;
  transition: all 300ms ease-in-out;
}
body .contact .contact-form button[type="submit"]:hover {
  background-color: #c91150;
}
body .contact img {
  position: absolute;
  left: 0;
  -o-object-fit: contain;
     object-fit: contain;
}
body .contact img:first-of-type {
  top: 0;
  width: 175px;
  height: 175px;
}
body .contact img:last-of-type {
  bottom: 0;
  width: 175px;
  height: 175px;
}
body .contact div.wpforms-container-full .wpforms-form .wpforms-field-label.wpforms-label-hide {
  left: 0;
  right: -99999px;
}
body .contact .wpforms-form input,
body .contact .wpforms-form select,
body .contact .wpforms-form textarea {
  border-radius: 15.75px !important;
}
body .contact .wpforms-form textarea {
  resize: none;
}
body .contact input[type=tel] {
  direction: rtl !important;
}
body .contact .wpforms-submit-container {
  position: relative;
}
body .contact .wpforms-submit-container button[type=submit] {
  position: absolute;
  right: 33%;
  bottom: -20px;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
  border-radius: 55px;
  background-color: #ED145B !important;
  padding: 25px 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
body .contact .wpforms-layout-column-25 {
  display: none;
}
body .contact .wpforms-field-layout-preset-25-50-25 {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
}
body .contact-info {
  margin-bottom: 60px;
}
body .contact-info .column-info-wrapper a {
  color: #0A0A0A;
  text-decoration: none;
}
body .statistics {
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 0;
  position: relative;
}
body .statistics .kid-img {
  width: 110px;
  top: 0;
  z-index: 1;
}
body .statistics .kid-img.kid-1 {
  right: 0;
}
body .statistics .kid-img.kid-2 {
  left: 0;
}
body .statistics .stat-item {
  z-index: 2;
}
body .statistics .stat-icon {
  width: 65px;
  height: 65px;
}
body .statistics .stat-number {
  color: #fff;
  font-size: 42px;
  margin: 15px 0;
}
body .statistics .stat-title {
  color: #fff;
  font-size: 16px;
}
body .statistics .row > img {
  width: 220px;
  top: -60px;
}
body .statistics .row > img:first-of-type {
  right: 0;
}
body .statistics .row > img:last-of-type {
  left: 0;
}

footer {
  background-color: #191919;
  position: relative;
  padding-top: 100px;
  padding-bottom: 20px;
}
footer #footer-desc-column img {
  margin-bottom: 30px;
}
footer #footer-desc-column p {
  color: #797979;
  font-size: 12px;
  line-height: 29.2px;
}
footer #footer-menu-wrapper h5 {
  margin-bottom: 28px;
}
footer #footer-menu-wrapper .footer-menu li {
  margin-bottom: 20px;
}
footer #footer-menu-wrapper .footer-menu li a {
  text-decoration: none;
  color: #797979;
  font-size: 20px;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
footer #footer-menu-wrapper .footer-menu li a:hover {
  color: #383838;
}
footer #footer-menu-wrapper .footer-menu li:last-of-type {
  margin-bottom: 0;
}
footer #footer-contact-column .footer-single-info {
  margin-bottom: 20px;
  font-size: 14px;;
}
footer #footer-contact-column .footer-single-info p {
  color: #797979;
  font-size: 15px;
  line-height: 17px;
}
footer #footer-contact-column .footer-single-info img {
	 width: 20px;
    height: 20px;
    object-fit: contain;
}
footer #footer-contact-column .footer-single-info:nth-of-type(2) {
  margin-bottom: 15px;
}
footer #footer-contact-column .footer-single-info:nth-of-type(2) p {
  font-size: 18px;
}
footer #footer-contact-column .footer-single-info:nth-of-type(2) a {
  color: #797979;
  font-size: 18px;
  text-decoration: none;
}
footer #footer-contact-column .footer-single-info:nth-of-type(3) {
  margin-bottom: 15px;
}
footer #footer-contact-column .footer-single-info:nth-of-type(4) {
  margin-bottom: 15px;
}
footer #footer-contact-column .footer-single-info:nth-of-type(4) iframe {
  width: 100%;
  height: 90px;
  border-radius: 20px;
}
footer #footer-contact-column .footer-map {
  margin-bottom: 15px;
}
footer #footer-contact-column .footer-map iframe {
  width: 100%;
  height: 90px;
  border-radius: 20px;
  border: none;
}
footer #footer-contact-column .footer-single-info:last-of-type a {
  text-decoration: none;
  font-size: 12px;
  color: #797979;
}

/* ============================================
   Back to Top Button
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--color-primary);
  color: var(--color-dark);
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-base);
  z-index: var(--z-fixed);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}
.back-to-top:hover {
  background-color: #e5b02b;
  transform: translateY(-3px);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ============================================
   Navbar Scroll Effect
   ============================================ */
.navbar-scrolled {
  box-shadow: var(--shadow-md);
  background-color: rgba(255, 255, 255, 0.98) !important;
}

/* ============================================
   Animation Classes
   ============================================ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Fade in animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ============================================
   Lightbox Overlay
   ============================================ */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: var(--z-modal);
  padding: var(--spacing-xl);
}
.lightbox-overlay img {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
}
.lightbox-close {
  position: absolute;
  top: 20px;
  left: 20px;
  background: transparent;
  border: none;
  color: var(--color-white);
  font-size: 40px;
  cursor: pointer;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-fast);
}
.lightbox-close:hover {
  transform: scale(1.1);
}
body.lightbox-open {
  overflow: hidden;
}

/* ============================================
   Form Validation States
   ============================================ */
.is-invalid {
  border-color: var(--color-secondary) !important;
  box-shadow: 0 0 0 3px rgba(237, 20, 91, 0.1);
}
.is-invalid:focus {
  border-color: var(--color-secondary) !important;
  box-shadow: 0 0 0 3px rgba(237, 20, 91, 0.2);
}

/* ============================================
   Responsive Container Improvements
   ============================================ */
.container {
  width: 100%;
  padding-right: var(--spacing-md);
  padding-left: var(--spacing-md);
  margin-right: auto;
  margin-left: auto;
}

/* ============================================
   Utility Classes
   ============================================ */
.text-primary { color: var(--color-primary) !important; }
.text-secondary { color: var(--color-secondary) !important; }
.text-accent { color: var(--color-accent) !important; }
.bg-primary { background-color: var(--color-primary) !important; }
.bg-secondary { background-color: var(--color-secondary) !important; }
.bg-accent { background-color: var(--color-accent) !important; }

/* Section spacing */
.section-padding {
  padding: var(--spacing-4xl) 0;
}
.section-padding-sm {
  padding: var(--spacing-2xl) 0;
}

/* RTL specific fixes */
[dir="rtl"] .ms-2 { margin-left: 0.5rem !important; margin-right: 0 !important; }
[dir="rtl"] .me-2 { margin-right: 0.5rem !important; margin-left: 0 !important; }

/* ============================================
   Language Switcher
   ============================================ */
.language-switcher {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin: 0 1rem;
}

.language-switcher .lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.375rem 0.75rem;
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--color-gray);
  background: transparent;
  border: 1px solid var(--color-gray-light);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: var(--transition-fast);
}

.language-switcher .lang-btn:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.language-switcher .lang-btn.active {
  color: var(--color-white);
  background: var(--color-primary);
  border-color: var(--color-primary);
}

/* LTR Layout Adjustments */
[dir="ltr"] .navbar-nav {
  margin-left: 0;
  margin-right: auto;
}

[dir="ltr"] #header-btns-wrapper {
  margin-left: 0;
}

[dir="ltr"] .nav-link {
  margin-right: 1.5rem;
  margin-left: 0;
}

@media (max-width: 991.98px) {
  .language-switcher {
    margin: 0.5rem 0;
    justify-content: center;
  }
}

/* ============================================
   RTL Form Alignment Fixes
   ============================================ */
[dir="rtl"] .enrollment-form .form-label {
  text-align: right;
}

[dir="rtl"] .enrollment-form .form-control,
[dir="rtl"] .enrollment-form .form-select {
  text-align: right;
}

/* RTL Section headers */
[dir="rtl"] .section-header h5 {
  text-align: right;
}

[dir="rtl"] .section-header h5 i {
  margin-left: 0.5rem;
  margin-right: 0;
}

/* RTL Card header alignment */
[dir="rtl"] .card-header h3 {
  text-align: right;
}

[dir="rtl"] .card-header h3 i {
  margin-left: 0.5rem;
  margin-right: 0;
}

/* RTL Alert icon */
[dir="rtl"] .alert i {
  margin-left: 0.5rem;
  margin-right: 0;
}

/* Enrollment option cards RTL fixes */
[dir="rtl"] .enrollment-option-card {
  text-align: center;
}

/* Form button RTL order */
[dir="rtl"] .btn i.fa-arrow-right {
  margin-left: 0.5rem;
  margin-right: 0;
}

[dir="rtl"] .btn i.fa-arrow-left {
  margin-right: 0.5rem;
  margin-left: 0;
}

/* Form input placeholder RTL */
[dir="rtl"] input::placeholder,
[dir="rtl"] textarea::placeholder {
  text-align: right;
}

/* ============================================
   RTL Form Check (Radio & Checkbox) Alignment
   ============================================ */
/* For RTL: checkbox/radio should be on the RIGHT of the label */
[dir="rtl"] .form-check {
  padding-left: 1.5em;
  padding-right: 0;
  text-align: right;
}

/* ============================================
   RTL Form Check (Radio & Checkbox) - Override Bootstrap
   ============================================ */
/* Reset Bootstrap's default RTL handling */
[dir="rtl"] .form-check {
  padding-left: 0 !important;
  padding-right: 1.75em !important;
  text-align: right !important;
}

[dir="rtl"] .form-check .form-check-input {
  float: right !important;
  margin-left: 0 !important;
  margin-right: -1.75em !important;
}

[dir="rtl"] .form-check-label {
  margin-right: 0.25rem;
}

/* Inline form checks in RTL */
[dir="rtl"] .form-check-inline {
  margin-right: 0;
  margin-left: 1rem;
  padding-right: 1.75em !important;
}

/* Enrollment form specific overrides */
[dir="rtl"] .enrollment-form .form-check {
  padding-left: 0 !important;
  padding-right: 1.75em !important;
}

[dir="rtl"] .enrollment-form .form-check .form-check-input {
  float: right !important;
  margin-left: 0 !important;
  margin-right: -1.75em !important;
}

/* Multi-column checkbox rows */
[dir="rtl"] .enrollment-form .row .form-check {
  padding-right: 1.75em !important;
}