@import url('https://fonts.googleapis.com/css2?family=Amiri:ital,wght@0,400;0,700;1,400;1,700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700&display=swap');
/*-----------------------------------*\
  #style.css
\*-----------------------------------*/

/**
 * copyright 2022 codewithsadee
 */





/*-----------------------------------*\
  #CUSTOM PROPERTY
\*-----------------------------------*/

:root {

  /**
   * colors
   */
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #28a745;
  /* --teal: #20c997; */
  --teal: #0cb8b6;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #007bff;
  --secondary: #6c757d;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  --selective-yellow: hsl(42, 94%, 55%);
  --eerie-black-1: hsl(0, 0%, 9%);
  --eerie-black-2: hsl(180, 3%, 7%);
  --quick-silver: hsl(0, 0%, 65%);
  --radical-red: hsl(351, 83%, 61%);
  --light-gray: hsl(0, 0%, 80%);
  --isabelline: hsl(36, 33%, 94%);
  --gray-x-11: hsl(0, 0%, 73%);
  --kappel_15: hsla(170, 75%, 41%, 0.15);
  --platinum: hsl(0, 0%, 90%);
  --gray-web: hsl(0, 0%, 50%);
  --black_80: hsla(0, 0%, 0%, 0.8);
  --white_50: hsla(0, 0%, 100%, 0.5);
  --black_50: hsla(0, 0%, 0%, 0.5);
  --black_30: hsla(0, 0%, 0%, 0.3);
  --kappel: hsl(170, 75%, 41%);
  --white: hsl(0, 0%, 100%);

  /**
   * gradient color
   */

  --gradient: linear-gradient(-90deg,hsl(151, 58%, 46%) 0%,hsl(170, 75%, 41%) 100%);

  /**
   * typography
   */

  --ff-league_spartan: 'League Spartan', sans-serif;
  --ff-poppins: 'Poppins', sans-serif; 

  --fs-1: 4.2rem;
  --fs-2: 3.2rem;
  --fs-3: 2.3rem;
  --fs-4: 1.8rem;
  --fs-5: 1.5rem;
  --fs-6: 1.4rem;
  --fs-7: 1.3rem;

  --fw-500: 500;
  --fw-600: 600;

  /**
   * spacing
   */

  --section-padding: 75px;

  /**
   * shadow
   */

  --shadow-1: 0 6px 15px 0 hsla(0, 0%, 0%, 0.05);
  --shadow-2: 0 10px 30px hsla(0, 0%, 0%, 0.06);
  --shadow-3: 0 10px 50px 0 hsla(220, 53%, 22%, 0.1);

  /**
   * radius
   */

  --radius-pill: 500px;
  --radius-circle: 50%;
  --radius-3: 3px;
  --radius-5: 5px;
  --radius-10: 10px;

  /**
   * transition
   */

  --transition-1: 0.25s ease;
  --transition-2: 0.5s ease;
  --cubic-in: cubic-bezier(0.51, 0.03, 0.64, 0.28);
  --cubic-out: cubic-bezier(0.33, 0.85, 0.4, 0.96);

}





/*! who am i section */
.about__section {
  background-color: hsl(36, 33%, 94%);
  padding: 2rem 0;
}
/* Animation Keyframes for Images Container */
@keyframes moveContainerToText {
  0% {
    transform: translateX(0); /* الوضعية الأساسية */
  }
  50% {
    transform: translateX(-20px); /* التحرك نحو النص */
  }
  100% {
    transform: translateX(0); /* العودة للوضعية الأصلية */
  }
}

/* Apply Animation to Images Container */
.about__imgs--container {
  animation: moveContainerToText 5s ease-in-out infinite; /* حركة متكررة */
}

/* Optional: Adjust Images Animation to Sync */
.about-img-main,
.about-img-secondary {
  animation: none; /* تعطيل الحركات الفردية لتجنب التضارب */
}

/* Responsive Adjustments (Optional) */
@media (max-width: 768px) {
  .about__imgs--container {
    animation: moveContainerToText 4s ease-in-out infinite; /* تقصير مدة الحركة للشاشات الصغيرة */
  }
}

.container__main {
  position: relative;
  width: 400px;
  height: 500px;
  margin: 40px;
}

.about-img-main {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.about-img-main::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.2) 100%
  );
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-img-secondary {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  border: 4px solid white;
}

.about-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.img-tl {
  top: -30px;
  left: -30px;
  transform: rotate(-8deg);
}

.img-br {
  bottom: -30px;
  right: -30px;
  transform: rotate(8deg);
}

/* Hover Effects */
.container__main:hover .about-img-main {
  transform: translateY(-5px);
}

.container__main:hover .about-img-main img {
  transform: scale(1.05);
}

.container__main:hover .img-tl {
  transform: rotate(-12deg) translateY(-5px);
}

.container__main:hover .img-br {
  transform: rotate(12deg) translateY(-5px);
}

.about-img-secondary:hover {
  z-index: 10;
  transform: scale(1.1) !important;
}

.who-am-i {
  max-width: 1200px;
  margin: 50px auto;
  border-radius: 12px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  display: flex;
  flex-wrap: wrap;
  direction: rtl;
}

.who-am-i-content {
  flex: 1;
  padding: 30px;
  text-align: right;
  padding-top: 8
  0px;
}

.who-am-i-content h1 {
  font-size: 4rem;
  color: var(--teal);
  margin-bottom: 15px;
}

.who-am-i-content p {
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.who-am-i-content a {
  display: inline-block;
  padding: 12px 25px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: var(--kappel);
  color: var(--light);
}

.who-am-i-content a:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
  .container__main {
    width: 100%;
    height: auto;
    margin: 20px auto; /* جعل العنصر في المنتصف */
  }

  .about-img-main {
    width: 70%; /* تصغير حجم الصورة الرئيسية */
    height: auto;
    margin: 0 auto; /* محاذاة الصورة في المنتصف */
  }

  .about-img-secondary {
    width: 100px; /* تصغير حجم الصورة الثانوية */
    height: 100px;
    margin: 0; /* إزالة المسافات بالكامل */
    display: block; /* ضمان محاذاة الصور */
  }

  .who-am-i {
    flex-direction: column;
    gap: 0; /* إزالة أي فراغات بين العناصر */
  }

  .who-am-i-content h1 {
    font-size: 3rem;
  }

  .who-am-i-content p {
    font-size: 18px;
  }
  @media (max-width: 768px) {
    .about-img-secondary.img-tl {
      top: -10px; 
      left: -10px;
    }
  
    .about-img-secondary.img-br {
      bottom: -10px;
      right: -10px; 
    }
  }
}

@media (max-width: 480px) {
  .container__main {
    width: 100%; 
    height: auto;
    margin: 15px auto; 
  }

  .about-img-main {
    width: 80%; 
    height: auto;
  }

  .about-img-secondary {
    width: 60px; 
    height: 60px;
  }

  .who-am-i-content h1 {
    font-size: 2.5rem; 
  }

  .who-am-i-content p {
    font-size: 16px; 
  }

  .who-am-i-content a {
    padding: 10px 20px; 
  }

  @media (max-width: 768px) {
  .about-img-secondary.img-tl {
    top: -10px; 
    left: -10px;
  }

  .about-img-secondary.img-br {
    bottom: -10px;
    right: -10px; 
  }
}

@media (max-width: 480px) {
  .about-img-secondary.img-tl {
    top: 0px; 
    left: 0px;
  }

  .about-img-secondary.img-br {
    bottom: 0px;
    right: 0px;
  }
}
}


/*-----------------------------------*\
  #RESET
\*-----------------------------------*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
    font-family: 'Amiri', serif;
}

li { list-style: none; }

a,
img,
span,
data,
input,
button,
ion-icon { display: block; }

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

img { height: auto; }

input,
button {
  background: none;
  border: none;
  font: inherit;
}

input { width: 100%; }

button { cursor: pointer; }

ion-icon { pointer-events: none; }

address { font-style: normal; text-align: right;}

html {
  font-family: var(--ff-poppins);
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  background-color: var(--white);
  color: var(--gray-web);
  font-size: 1.6rem;
  line-height: 1.75;
}

:focus-visible { outline-offset: 4px; }

::-webkit-scrollbar { width: 10px; }

::-webkit-scrollbar-track { background-color: hsl(0, 0%, 98%); }

::-webkit-scrollbar-thumb { background-color: hsl(0, 0%, 80%); }

::-webkit-scrollbar-thumb:hover { background-color: hsl(0, 0%, 70%); }





/*-----------------------------------*\
  #REUSED STYLE
\*-----------------------------------*/

.container { padding-inline: 15px; }

.section { padding-block: var(--section-padding); }

.shape {
  position: absolute;
  display: none;
}

.has-bg-image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.h1,
.h2,
.h3 {
  color: var(--eerie-black-1);
  font-family: var(--ff-league_spartan);
  line-height: 1;
}

.h1,
.h2 { font-weight: var(--fw-600); }

.h1 { font-size: var(--fs-1); }

.h2 { font-size: var(--fs-2); }

.h3 {
  font-size: var(--fs-3);
  font-weight: var(--fw-500);
}

.section-title {
  --color: var(--radical-red);
  text-align: center;
   font-family: 'Cairo', sans-serif;
}

.section-title .span {
  display: inline-block;
  color: var(--color);
}
.wrapper .span{
  text-align: right;
}
.btn {
  background-color: var(--kappel);
  color: var(--white);
  font-family: var(--ff-league_spartan);
  font-size: var(--fs-4);
  display: flex;
  align-items: center;
  gap: 7px;
  max-width: max-content;
  padding: 10px 20px;
  border-radius: var(--radius-5);
  overflow: hidden;
}

.has-before,
.has-after {
  position: relative;
  z-index: 1;
}

.has-before::before,
.has-after::after {
  position: absolute;
  content: "";
}

.btn::before {
  inset: 0;
  background-image: var(--gradient);
  z-index: -1;
  border-radius: inherit;
  transform: translateX(-100%);
  transition: var(--transition-2);
}

.btn:is(:hover, :focus)::before { transform: translateX(0); }

.img-holder {
  aspect-ratio: var(--width) / var(--height);
  background-color: var(--light-gray);
  overflow: hidden;
}

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

.section-subtitle {
  font-size: var(--fs-5);
  text-transform: uppercase;
  font-weight: var(--fw-500);
  letter-spacing: 1px;
  text-align: center;
  margin-block-end: 15px;
}

.section-text {
  font-size: var(--fs-5);
  text-align: center;
  margin-block: 15px 25px;
}

.grid-list {
  display: grid;
  gap: 30px;
}

.category-card,
.stats-card { background-color: hsla(var(--color), 0.1); }

:is(.course, .blog) .section-title { margin-block-end: 40px; }





/*-----------------------------------*\
  #HEADER
\*-----------------------------------*/

.header .btn { display: none; }

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--white);
  padding-block: 12px;
  box-shadow: var(--shadow-1);
  z-index: 400000;
}

.header.active { position: fixed; }

.header .container,
.header-actions,
.navbar .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.header-action-btn,
.nav-close-btn {
  position: relative;
  color: var(--eerie-black-1);
  font-size: 45px;
  transition: var(--transition-1);
}

.header-action-btn:is(:hover, :focus) { color: var(--kappel); }

.header-action-btn .btn-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background-color: var(--kappel);
  color: var(--white);
  font-family: var(--ff-league_spartan);
  font-size: var(--fs-6);
  min-width: 20px;
  height: 20px;
  border-radius: var(--radius-circle);
}

.navbar {
  position: fixed;
  top: 0;
  left: -320px;
  background-color: var(--white);
  width: 100%;
  max-width: 320px;
  height: 100%;
  z-index: 2;
  transition: 0.25s var(--cubic-in);
}

.navbar.active {
  transform: translateX(320px);
  transition: 0.5s var(--cubic-out);
}

.navbar .wrapper {
  padding: 15px 20px;
  border-block-end: 1px solid var(--platinum);
}

.nav-close-btn {
  background-color: var(--white);
  box-shadow: var(--shadow-2);
  padding: 8px;
  border-radius: var(--radius-circle);
}

.nav-close-btn:is(:hover, :focus) {
  background-color: var(--kappel);
  color: var(--white);
}

.navbar-list { padding: 15px 20px; }

.navbar-item:not(:last-child) { border-block-end: 1px solid var(--platinum); }

.navbar-link {
  padding-block: 8px;
  font-weight: var(--fw-500);
  transition: var(--transition-1);
}

.navbar-link:is(:hover, :focus) { color: var(--kappel); }

.overlay {
  position: fixed;
  inset: 0;
  background-color: var(--black_80);
  pointer-events: none;
  opacity: 0;
  z-index: 1;
  transition: var(--transition-1);
}

.overlay.active {
  opacity: 1;
  pointer-events: all;
}





/*-----------------------------------*\
  #HERO
\*-----------------------------------*/

.hero { padding-block-start: calc(var(--section-padding) + 80px); }

.hero .container {
  display: grid;
  gap: 40px;
}

.hero-text {
  color: var(--eerie-black-1);
  font-size: var(--fs-4);
  text-align: center;
  margin-block: 18px 20px;
    font-family: 'Amiri', serif;
}

.hero .btn { margin-inline: auto; }

.hero-banner {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  align-items: flex-start;
  gap: 30px;
}

.hero-banner .img-holder.one {
  border-top-right-radius: 70px;
  border-bottom-left-radius: 110px;
}

.hero-banner .img-holder.two {
  border-top-left-radius: 50px;
  border-bottom-right-radius: 90px;
}





/*-----------------------------------*\
  #CATEGORY
\*-----------------------------------*/

.category .section-subtitle { color: var(--radical-red); }

.category .section-title { --color: var(--kappel); }

.category .section-text { margin-block-end: 40px; }

.category-card {
  padding: 50px 30px;
  text-align: center;
  border-radius: var(--radius-5);
}

.category-card .card-icon {
  background-color: hsla(var(--color), 0.1);
  width: 80px;
  height: 80px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-circle);
  margin-inline: auto;
  margin-block-end: 30px;
}

.category-card .card-text {
  color: var(--eerie-black-1);
  font-size: var(--fs-5);
  margin-block: 15px 25px;
}

.category-card .card-badge {
  background-color: hsla(var(--color), 0.1);
  color: hsl(var(--color));
  font-size: var(--fs-5);
  font-weight: var(--fw-500);
  padding: 2px 18px;
  max-width: max-content;
  margin-inline: auto;
  border-radius: var(--radius-5);
}





/*-----------------------------------*\
  #ABOUT
\*-----------------------------------*/

.about {
  padding-block-start: 0;
  overflow: hidden;
}

.about .container {
  display: grid;
  gap: 30px;
}

.about-banner {
  position: relative;
  z-index: 1;
}

.about-banner .img-holder { border-radius: var(--radius-10); }

.about-shape-2 {
  display: block;
  bottom: -100px;
  left: -60px;
  animation: bounce 2.5s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% { transform: translateY(0); }

  40% { transform: translateY(-30px); }

  60% { transform: translateY(-15px); }
}

.about :is(.section-subtitle, .section-title, .section-text) {
  text-align: right;
}

.about-item {
  margin-block: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.about-item ion-icon {
  color: var(--selective-yellow);
  font-size: 20px;
  --ionicon-stroke-width: 50px;
}

.about-item .span {
  color: var(--eerie-black-1);
  font-family: var(--ff-league_spartan);
}





/*-----------------------------------*\
  #COURSE
\*-----------------------------------*/

.course { background-color: var(--isabelline); }

.course-card {
  position: relative;
  background-color: var(--white);
  border-radius: var(--radius-5);
  overflow: hidden;
}

.course-card .img-cover { transition: var(--transition-2); }

.course-card:is(:hover, :focus-within) .img-cover { transform: scale(1.1); }

.course-card :is(.abs-badge, .badge) {
  font-family: var(--ff-league_spartan);
  border-radius: var(--radius-3);
}

.course-card .abs-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: var(--selective-yellow);
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 5px;
  line-height: 1;
  padding: 6px 8px;
  padding-block-end: 3px;
}

.course-card .abs-badge ion-icon {
  font-size: 18px;
  margin-block-end: 5px;
  --ionicon-stroke-width: 50px;
}

.course-card .card-content { padding: 25px; }

.course-card .badge {
  background-color: var(--kappel_15);
  max-width: max-content;
  color: var(--kappel);
  line-height: 25px;
  padding-inline: 10px;
}

.course-card .card-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-block: 15px 8px;
  transition: var(--transition-1);
}

.course-card .card-title:is(:hover, :focus) { color: var(--kappel); }

.course-card :is(.wrapper, .rating-wrapper, .card-meta-list, .card-meta-item) {
  display: flex;
  align-items: center;
}

.course-card .wrapper { gap: 10px; }

.course-card .rating-wrapper { gap: 3px; }

.course-card .rating-wrapper ion-icon { color: var(--selective-yellow); }

.course-card .rating-text {
  color: var(--eerie-black-1);
  font-size: var(--fs-6);
  font-weight: var(--fw-500);
}

.course-card .price {
  color: var(--radical-red);
  font-family: var(--ff-league_spartan);
  font-size: var(--fs-4);
  font-weight: var(--fw-600);
  margin-block: 8px 15px;
}

.course-card .card-meta-list { flex-wrap: wrap; }

.course-card .card-meta-item {
  position: relative;
  gap: 5px;
}

.course-card .card-meta-item:not(:last-child)::after {
  content: "|";
  display: inline-block;
  color: var(--platinum);
  padding-inline: 10px;
}

.course-card .card-meta-item ion-icon {
  color: var(--quick-silver);
  --ionicon-stroke-width: 50px;
}

.course-card .card-meta-item .span {
  color: var(--eerie-black-1);
  font-size: var(--fs-7);
}

.course .btn {
  margin-inline: auto;
  margin-block-start: 60px;
}





/*-----------------------------------*\
  #VIDEO
\*-----------------------------------*/

.video {
  background-size: contain;
  background-position: center top;
}

.video-banner {
  position: relative;
  border-top-right-radius: 80px;
  border-bottom-left-radius: 120px;
}

.video .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--radical-red);
  font-size: 30px;
  padding: 16px;
  color: var(--white);
  border-radius: var(--radius-circle);
  box-shadow: 0 0 0 0 var(--white_50);
  z-index: 1;
  animation: pulse 3s ease infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 var(--white_50); }
  100% { box-shadow: 0 0 0 20px transparent; }
}

.video-banner::after {
  inset: 0;
  background-color: var(--black_30);
}





/*-----------------------------------*\
  #STATS
\*-----------------------------------*/

.stats-card {
  text-align: center;
  padding: 25px;
  border-radius: var(--radius-10);
}

.stats-card :is(.card-title, .card-text) { font-family: var(--ff-league_spartan); }

.stats-card .card-title {
  color: hsl(var(--color));
  font-size: var(--fs-2);
  line-height: 1.1;
}

.stats-card .card-text {
  color: var(--eerie-black-1);
  text-transform: uppercase;
}





/*-----------------------------------*\
  #BLOG
\*-----------------------------------*/

.blog-card .card-banner { border-radius: var(--radius-10); }

.blog-card .card-banner .img-cover { transition: var(--transition-2); }

.blog-card .card-banner::after {
  inset: 0;
  background-color: var(--black_50);
  opacity: 0;
  transition: var(--transition-1);
}

.blog-card:is(:hover, :focus-within) .card-banner .img-cover { transform: scale(1.1); }

.blog-card:is(:hover, :focus-within) .card-banner::after { opacity: 1; }

.blog-card .card-content {
  position: relative;
  margin-inline: 15px;
  background-color: var(--white);
  padding: 20px;
  border-radius: var(--radius-10);
  box-shadow: var(--shadow-3);
  margin-block-start: -100px;
  z-index: 1;
}

.blog-card .card-btn {
  position: absolute;
  top: -40px;
  right: 30px;
  background-color: var(--kappel);
  color: var(--white);
  font-size: 20px;
  padding: 20px;
  border-radius: var(--radius-circle);
  transition: var(--transition-1);
  opacity: 0;
}

.blog-card .card-btn:is(:hover, :focus) { background-color: var(--radical-red); }

.blog-card:is(:hover, :focus-within) .card-btn {
  opacity: 1;
  transform: translateY(10px);
}

.blog-card :is(.card-meta-item, .card-text, .card-subtitle) {
  font-size: var(--fs-5);
  text-align: right
  ;
}

.blog-card .card-subtitle { text-transform: uppercase; }

.blog-card .card-title {
  margin-block: 10px 15px;
  transition: var(--transition-1);
  text-align: right;
}

.blog-card .card-title:is(:hover, :focus) { color: var(--kappel); }

.blog-card :is(.card-meta-list, .card-meta-item) { display: flex; }

.blog-card .card-meta-list {
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-block-end: 20px;
}

.blog-card .card-meta-item {
  gap: 10px;
  align-items: center;
  color: var(--eerie-black-1);
}

.blog-card .card-meta-item ion-icon {
  color: var(--kappel);
  font-size: 18px;
  --ionicon-stroke-width: 40px;
}





/*-----------------------------------*\
  #FOOTER
\*-----------------------------------*/

.footer {
  background-repeat: no-repeat;
  background-color: var(--eerie-black-2);
  color: var(--gray-x-11);
  font-size: var(--fs-5);
}

.footer-top {
  display: grid;
  gap: 30px;
}

.footer-brand-text { margin-block: 20px;  text-align: right;}

.footer-brand .wrapper {
  display: flex;
  gap: 5px;
}

.footer-brand .wrapper .span { font-weight: var(--fw-500); }

.footer-link { transition: var(--transition-1); text-align: right; }

.footer-link:is(:hover, :focus) { color: var(--kappel); }

.footer-list-title {
  color: var(--white);
  font-family: var(--ff-league_spartan);
  font-size: var(--fs-3);
  font-weight: var(--fw-600);
  margin-block-end: 10px;
  text-align: right;
}

.footer-list .footer-link { padding-block: 5px; width: 200px;}

.newsletter-form { margin-block: 20px 35px; }

.newsletter-form .input-field {
  background-color: var(--white);
  padding: 12px;
  border-radius: var(--radius-5);
  margin-block-end: 20px;
}

.newsletter-form .btn {
  min-width: 100%;
  justify-content: center;
}

.social-list {
  display: flex;
  gap: 25px;
}

.footer-brand .logo img{
  margin-left: 300px;
}
.social-link { font-size: 20px;  }

.footer-bottom {
  border-block-start: 1px solid var(--eerie-black-1);
  padding-block: 30px;
}

.copyright { text-align: center; }

.copyright-link {
  color: var(--kappel);
  display: inline-block;
}

/* -------------------- Responsive -------------------- */
@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-list .footer-link {
    width: 100%;
  }

  .footer-brand .logo img {
    margin-left: 0;
    display: block;
    margin-inline: auto;
  }

  .footer-brand-text,
  .footer-link,
  .footer-list-title {
    text-align: center;
  }

  .social-list {
    justify-content: center;
  }
  .address{
    text-align: center;
  }
  .wrapper .span{
    text-align: center;
  }
}



/*-----------------------------------*\
  #BACK TO TOP
\*-----------------------------------*/

.back-top-btn {
  position: fixed;
  bottom: 40px;
  right: 30px;
  background-color: var(--kappel);
  color: var(--white);
  font-size: 20px;
  padding: 15px;
  border-radius: var(--radius-circle);
  z-index: 3000;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-1);
}

.back-top-btn.active {
  transform: translateY(10px);
  opacity: 1;
  pointer-events: all;
}





/*-----------------------------------*\
  #MEDIA QUERIES
\*-----------------------------------*/

/**
 * responsive for large than 575px screen
 */

@media (min-width: 575px) {

  /**
   * REUSED STYLE
   */

  .container {
    max-width: 520px;
    width: 100%;
    margin-inline: auto;
  }

  .grid-list { grid-template-columns: 1fr 1fr; }

  :is(.course, .blog) .grid-list { grid-template-columns: 1fr; }



  /**
   * HEADER
   */

  .header .container { max-width: unset; }

  .header-actions { gap: 30px; }



  /**
   * HERO
   */

  .hero-banner { grid-template-columns: 1fr 0.9fr; }



  /**
   * VIDEO
   */

  .video .play-btn { padding: 25px; }



  /**
   * STATS
   */

  .stats-card { padding: 40px 30px; }



  /**
   * FOOTER
   */

  .footer-brand,
  .footer-list:last-child { grid-column: 1 / 3; }

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

  .newsletter-form .input-field { margin-block-end: 0; }

  .newsletter-form .btn { min-width: max-content; }

}





/**
 * responsive for large than 768px screen
 */

@media (min-width: 768px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-1: 4.6rem;
    --fs-2: 3.8rem;

  }



  /**
   * REUSED STYLE
   */

  .container { max-width: 720px; }

  .btn { padding: 15px 30px; }

  :is(.course, .blog) .grid-list { grid-template-columns: 1fr 1fr; }



  /**
   * HEADER
   */

  .header .container { padding-inline: 30px; }

  .header .btn {
    display: flex;
    padding: 10px 30px;
    margin-inline: 20px;
  }



  /**
   * HERO
   */

  .hero { padding-block-start: calc(var(--section-padding) + 90px); }

  .hero .container { gap: 50px; }

  .hero-text { margin-block-end: 30px; }

  .hero-banner {
    position: relative;
    z-index: 1;
  }

  .hero-banner .img-holder { max-width: max-content; }

  .hero-banner .img-holder.one { justify-self: flex-end; }

  .hero-banner .img-holder.two { margin-block-start: 100px; }

  .hero-shape-1 {
    display: block;
    position: absolute;
    bottom: -40px;
    left: -10px;
  }



  /**
   * ABOUT
   */

  .about { padding-block-start: 50px; }

  .about-banner {
    padding: 60px;
    padding-inline-end: 0;
  }

  .about-banner .img-holder {
    max-width: max-content;
    margin-inline: auto;
  }

  .about-shape-1 {
    display: block;
    top: -40px;
    right: -70px;
  }



  /**
   * FOOTER
   */

  .footer-brand,
  .footer-list:last-child { grid-column: auto; }

  .newsletter-form .btn { padding-block: 10px; }

}





/**
 * responsive for large than 992px screen
 */

@media (min-width: 992px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-1: 5.5rem;
    --fs-2: 4.5rem;

  }



  /**
   * REUSED STYLE
   */

  .container { max-width: 960px; }

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

  :is(.course, .blog) .grid-list { grid-template-columns: repeat(3, 1fr); }



  /**
   * HERO
   */

  .hero .container {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .hero .section-title,
  .hero-text { text-align: right; }

  .hero .btn { margin-right: 10px; }



  /**
   * ABOUT
   */

  .about .container {
    grid-template-columns: 1fr 0.6fr;
    align-items: center;
    gap: 60px;
  }



  /**
   * VIDEO
   */

  .video-banner {
    max-width: 75%;
    margin-inline: auto;
  }



  /**
   * FOOTER
   */

  .footer .grid-list { grid-template-columns: 1fr 0.6fr 0.6fr 1.2fr; }

}





/**
 * responsive for large than 1200px screen
 */

@media (min-width: 1200px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-1: 6.5rem;

    /**
     * spacing
     */

    --section-padding: 120px;

  }



  /**
   * REUSED STYLE
   */

  .container { max-width: 1185px; }

  .shape { display: block; }

  .about-content,
  .video-card,
  .blog { position: relative; }



  /**
   * HEADER
   */

  .header-action-btn:last-child,
  .navbar .wrapper,
  .overlay { display: none; }

  .header.active {
    transform: translateY(-100%);
    animation: slideIn 0.5s ease forwards;
  }

  @keyframes slideIn {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(0); }
  }

  .navbar,
  .navbar.active { all: unset; }

  .navbar-list {
    display: flex;
    gap: 50px;
    padding: 0;
  }

  .navbar-item:not(:last-child) { border-block-end: none; }

  .navbar-link {
    color: var(--eerie-black-1);
    padding-block: 20px;
  }

  .header .btn { margin-inline-end: 0; }



  /**
   * HERO
   */

  .hero { padding-block-start: calc(var(--section-padding) + 120px); }

  .hero .container { gap: 80px; }

  .hero-shape-2 {
    top: -80px;
    z-index: -1;
  }



  /**
   * ABOUT
   */

  .about .container { gap: 110px; }

  .about-banner .img-holder { margin-inline: 0; }

  .about-shape-3 {
    top: -20px;
    left: -100px;
    z-index: -1;
  }

  .about-content { z-index: 1; }

  .about-shape-4 {
    top: 30px;
    right: -60px;
    z-index: -1;
  }



  /**
   * VIDEO
   */

  .video-shape-1 {
    top: -50px;
    left: 0;
  }

  .video-shape-2 {
    top: -80px;
    right: 120px;
    z-index: 1;
  }



  /**
   * BLOG
   */

  .blog-shape {
    top: 0;
    left: 0;
  }

}











   .contacts-section {
      text-align: center;
      background-color: var(--isabelline);
   
    }

    .contacts-title {
      font-size: 48px;
      font-weight: 800;
      color: var(--danger);
    }

    .underline {
      width: 80px;
      height: 4px;
      background-color: var(--kappel);
      margin: 10px auto 30px;
      border-radius: 2px;
    }

    .contacts-desc {
      max-width: 900px;
      margin: 0 auto 50px;
      font-size: 18px;
      line-height: 1.6;
      color: #555;
    }

    .contact-cards {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 30px;
    }

    .card {
      background-color: white;
      box-shadow: 0 8px 16px rgba(255, 133, 0, 0.1);
      border-radius: 15px;
      padding: 30px 25px;
      width: 320px;
      transition: transform 0.3s;
    }

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

    .icon {
      background-color: #e6f4ff;
      color: var(--danger);
      font-size: 24px;
      width: 60px;
      height: 60px;
      margin: 0 auto 15px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
    }

    .card p {
      margin: 0;
      font-size: 16px;
      color: #333;
      line-height: 1.6;
    }

    strong {
      color: #111;
    }

    @media (max-width: 768px) {
      .card {
        width: 100%;
        max-width: 90%;
      }
    }


    
.form__sec--img {
  position: relative;
}
.form__section .form__sec--img iframe {
  height: 55rem;
  position: relative;
}
iframe::after{
  content: "hello world";
  position: absolute;
  bottom: 50%;
  left: 0;
}

.form__sec--img::after {
  content: '';
  position: absolute;
  top: 0px;
  left: 0;
  background-image: url(../images/download.svg);
  width: 100%;
  height: 15rem;
  transform: rotateZ(180deg);
}
/* تحسين التجاوب مع الشاشات المختلفة */
@media (max-width: 1200px) {
  .form__sec--img::after {
    height: 18rem;
    top: -5px;
    
  }
}

@media (max-width: 992px) {
  .form__sec--img::after {
    height: 16rem;
    top: -5px;
  }
}

@media (max-width: 768px) {
  .form__sec--img::after {
    height: 14rem;
    top: -5px;
  }
}

@media (max-width: 576px) {
  .form__sec--img::after {
    height: 12rem;
    top: -5px;
  }
}

@media (max-width: 400px) {
  .form__sec--img::after {
    height: 10rem;
    top: -5px;
  }
}
.form__sec--img::before {
  content: '';
  position: absolute;
  top: -14rem;
  left: -1rem;
  background-image: url(../images/download\ \(1\).svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  height: 30rem;
  z-index: 10000;
  background-position: center;
  transform: rotate(125deg); /* إزالة التكرار في transform */
}

/* تحسين التجاوب مع الشاشات المختلفة */
@media (max-width: 1200px) {
  .form__sec--img::before {
    top: -12rem;
    height: 28rem;
  }
  .form__section .form__sec--img iframe {
    width: 100%;
  }
}

@media (max-width: 992px) {
  .form__sec--img::before {
    top: -8rem;
    height: 25rem;
  }
  .form__section .form__sec--img iframe {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .form__sec--img::before {
    top: -6rem;
    height: 22rem;
  }
  .form__section .form__sec--img iframe {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .form__sec--img::before {
    top: -9rem;
    height: 20rem;
  }
  .form__section .form__sec--img iframe {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .form__section .form__sec--img iframe {
    height: 40vh;
    width: 100%;
  }
  .form__sec--img::after {
    height: 12vh;
  }

}

@media (max-width: 480px) {
  .form__section .form__sec--img iframe {
    height: 35vh;
  }
  .form__sec--img::after {
    height: 10vh;
  }
 
}


.form__sec--content {
  display: flex;
  justify-content: space-around;
  padding: padd;
  padding: 2rem;
}
.form__sec--content h1 {
  font-size: 2.5rem;
  color:var(--kappel);
  text-align: right;
}
.form__sec--content p {

  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: #212121;
  text-align: right;
}
.label {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.label p {
  font-size: 2rem;
}
.form__--cont,
.form__f--cont .form__input {
  background: var(--isabelline);
  border-radius: 0.5rem;
  padding: 1rem;
  margin-bottom: 1rem;
  color:#e0eaf5;
}
.form__sec--form{
  padding-top: 10px;
}
.form__f--cont {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.form__sec--form {
  z-index: 1000;
}
.form__sec--form form {
  padding: 1rem;

  border-radius: 0.5rem;
}
input,
textarea {
  background-color: transparent;
  border: none;
  outline: none;
  resize: none;

  background-color: var(--white_50);
}
textarea {
  width: 100%;
  height: 10rem;
}
.sub__btn {
  width: 100%;
  height: 3rem;
  border-radius: 0.5rem;
  border: none;
  color: #e9f5ff;
  background-color: var(--teal);
  cursor: pointer;
}
.message.send{
  color: #09b909;
}
.message.fail{
  color: rgb(236, 58, 4);
}


/* ANIMATIONS */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

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

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@keyframes lineGrow {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@keyframes wave {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
.form__section{
  padding-top: 100px;
}
@media (max-width: 992px) {
  .animated__content {
    gap: 1.5rem;
  }

  .form__sec--content {
    flex-direction: column;
  }

  .form__sec--img {
    order: -1;
  }

  .form__sec--img iframe {
    min-height: 350px;
  }
}

@media (max-width: 768px) {
  .intro__content--title h1 {
    font-size: 2rem;
  }

  .form__sec--form h1 {
    font-size: 1.8rem;
  }

  .footer__container {
    gap: 3rem;
  }

  .footer__bottom {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .animated__ball {
    max-width: 100%;
  }

  .form__f--cont {
    flex-direction: column;
  }

  .footer__section h4 {
    font-size: 1.1rem;
  }

  .separated__ul {
    flex-direction: column;
    gap: 0;
  }

  .intro__content--title h1 {
    font-size: 1.8rem;
  }
}




        /* Animation Keyframes */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }


/* ========== Responsive Tweaks ========== */
@media (max-width: 1200px) {
    .slider-wrapper .slide {
        width: 200px;
        height: 300px;
        border-radius: 100px;
    }

    .slider-wrapper .slide:nth-child(1) {
        transform: translateX(60px) translateY(-30px);
    }

    .slider-wrapper .slide:nth-child(2) {
        height: 360px;
    }

    .slider-wrapper .slide:nth-child(3) {
        transform: translateX(-60px) translateY(-30px);
    }
}

@media (max-width: 992px) {
    .slider-wrapper .slide {
        width: 170px;
        height: 270px;
        border-radius: 85px;
    }

    .slider-wrapper .slide:nth-child(1) {
        transform: translateX(50px) translateY(-25px);
    }

    .slider-wrapper .slide:nth-child(2) {
        height: 320px;
    }

    .slider-wrapper .slide:nth-child(3) {
        transform: translateX(-50px) translateY(-25px);
    }
}

@media (max-width: 768px) {
    .slider-wrapper {
        gap: 10px;
        padding: 0 10px;
    }

    .slider-wrapper .slide {
        width: 140px;
        height: 220px;
        border-radius: 70px;
    }

    .slider-wrapper .slide:nth-child(1) {
        transform: translateX(35px) translateY(-20px);
    }

    .slider-wrapper .slide:nth-child(2) {
        height: 260px;
    }

    .slider-wrapper .slide:nth-child(3) {
        transform: translateX(-35px) translateY(-20px);
    }
}

@media (max-width: 576px) {
    .slider-wrapper .slide {
        width: 120px;
        height: 180px;
        border-radius: 60px;
    }

    .slider-wrapper .slide:nth-child(1) {
        transform: translateX(25px) translateY(-15px);
    }

    .slider-wrapper .slide:nth-child(2) {
        height: 220px;
    }

    .slider-wrapper .slide:nth-child(3) {
        transform: translateX(-25px) translateY(-15px);
    }
}

@media (max-width: 400px) {
    .slider-wrapper .slide {
        width: 100px;
        height: 150px;
        border-radius: 50px;
    }

    .slider-wrapper .slide:nth-child(1) {
        transform: translateX(15px) translateY(-10px);
    }

    .slider-wrapper .slide:nth-child(2) {
        height: 180px;
    }

    .slider-wrapper .slide:nth-child(3) {
        transform: translateX(-15px) translateY(-10px);
    }
}

body {
    overflow-x: hidden;
}


         /* ===== Image Slider Styles ===== */
        .hero-image {
            width: 50%;
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            height: 400px;
        }

        .slider {
            display: flex;
            width: 300%;
            height: 100%;
            transition: transform 0.5s ease-in-out;
        }

        .slide {
            width: 33.33%;
            height: 100%;
            flex-shrink: 0;
        }

        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .slider-nav {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 2;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .slider-dot:hover {
            transform: translateY(-2px);
        }

        .slider-dot.active {
            background-color: #f1242e;
        }

        .slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.7);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 2;
            color: #f1242e;
            font-weight: bold;
            font-size: 20px;
            transition: all 0.3s ease;
        }

        .slider-arrow:hover {
            background-color: #f1242e;
            color: white;
            transform: translateY(-50%) scale(1.1);
        }

        .slider-arrow.prev {
            left: 15px;
        }

        .slider-arrow.next {
            right: 15px;
        }

        /* ===== Circular Slider Styles ===== */
        .slider-container {
            position: relative;
            width: 100%;
            max-width: 450px;
            padding: 80px 20px;
            margin-top: -150px;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.8s ease-out 1s forwards;
        }

        .slider-wrapper {
            display: flex;
            justify-content: center;
            align-items: flex-end;
            gap: 20px;
            margin-top: 20px;
        }

        .slider-wrapper .slide {
            position: relative;
            width: 240px;
            height: 360px;
            border-radius: 120px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
            transition: all 0.5s ease;
            background: #fff;
            padding: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .slider-wrapper .slide:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }

        .slider-wrapper .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 120px;
            transition: transform 0.5s ease;
        }

        .slider-wrapper .slide:hover img {
            transform: scale(1.03);
        }
        
        .slider-wrapper .slide:nth-child(1) {
            height: 340px;
            width: 220px;
            transform: translateY(-40px);
            z-index: 2;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
            transform: translateX(80px);
        }
        
        .slider-wrapper .slide:nth-child(2) {
            height: 440px;
            width: 220px;
            transform: translateY(-10px);
            z-index: 3;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }
        
        .slider-wrapper .slide:nth-child(3) {
            height: 340px;
            width: 220px;
            transform: translateY(-40px);
            transform: translateX(-80px);
            z-index: 2;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }

        .slider-dots {
            margin-top: 30px;
            display: flex;
            justify-content: center;
            gap: 12px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ccc;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot:hover {
            transform: translateY(-2px);
        }

        .dot.active {
            background: #f1242e;
        }

        /* Optional glowing stars (like your image) */
        .stars {
            position: absolute;
            top: 20px;
            left: 20px;
            font-size: 20px;
            color: #f1242e;
        }
        /* ===== Responsive Adjustments (Smaller Size) ===== */
@media (max-width: 768px) {
    .hero-image {
        width: 95%;
        height: 200px;
    }

    .slider {
        width: 300%;
    }

    .slide {
        width: 33.33%;
    }

    .slider-container {
        max-width: 100%;
        padding: 20px 5px;
        margin-top: -60px;
    }

    .slider-wrapper {
        gap: 0;
        justify-content: center;
    }

    .slider-wrapper .slide {
        width: 85px;
        height: 140px;
        border-radius: 70px;
        padding: 3px;
        position: relative;
    }

    .slider-wrapper .slide:nth-child(1) {
        width: 75px;
        height: 120px;
        transform: translateX(12px);
        z-index: 2;
    }

    .slider-wrapper .slide:nth-child(2) {
        width: 95px;
        height: 160px;
        transform: translateY(-4px);
        z-index: 3;
    }

    .slider-wrapper .slide:nth-child(3) {
        width: 75px;
        height: 120px;
        transform: translateX(-12px);
        z-index: 2;
    }

    .slider-dots {
        margin-top: 15px;
        gap: 6px;
    }

    .dot {
        width: 8px;
        height: 8px;
    }

    .slider-arrow {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }

    .slider-arrow.prev {
        left: 4px;
    }

    .slider-arrow.next {
        right: 4px;
    }
}

  .vision-mission-section {
      display: flex;
      justify-content: center;
      gap: 50px;
      flex-wrap: wrap;
      background-color: #fff;
    }

    .vision-card,
    .mission-card,
    .philosophy-card {
      background-color:#1ab79d1a;
      color: white;
      border-radius: 12px;
      padding: 30px;
      width: 350px;
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .icon1 {
      font-size: 50px;
      opacity: 0.3;
      text-align: right;
    }

    .section-title1 {
      font-size: 22px;
      font-weight: 700;
      margin: 15px 0 10px;
      text-align: right;
      color: var(--danger);
    }

    .section-text1 {
      font-size: 16px;
      line-height: 1.6;
      text-align: right;
      color: #121212;
    }

    .divider {
      margin: 20px 0;
      height: 1px;
      background-color: #212121;
    }

    .section-footer {
      font-size: 14px;
      opacity: 0.8;
      text-align: right;
      color: #212121;
    }

    @media(max-width: 768px) {
      .vision-card,
      .mission-card,
      .philosophy-card {
        width: 100%;
      }
    }









    .section5 {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 10px 20px;
      flex-wrap: wrap;
      background-color: #fff;
    }

    .background-image1 {
      
      border-radius: 30px;
      overflow: hidden;
    }

    .background-image1 img {
      
      display: block;
      border-radius: 30px;
      border: 10px solid var(--isabelline);
    }

    .card1 {
      position: absolute;
      background: #f5f5f5;
      padding: 35px;
      border-radius: 30px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      width: 600px;
      max-width: 90%;
      border: 3px solid var(--kappel);
    }

    .left-card {
      left: 0;
      transform: translate(5%, -50%);
      top: 50%;
      height: 320px;
    }

    .right-card {
      right: 0;
      transform: translate(-5%, 20%);
      
      height: 300px;
    }

    .label {
      color: var(--main);
      font-weight: bold;
      margin-bottom: 10px;
      text-align: right;
    }

    h2 {
      font-size: 24px;
      color: #111;
      margin: 10px 0;
      line-height: 1.4;
      text-align: right;
    }

    .highlight {
      color: var(--danger);
    }

    .desc {
      color: #555;
      margin: 20px 0;
      text-align: right;
    }



    .input-group {
      display: flex;
      gap: 10px;
      margin-top: 20px;
      flex-wrap: wrap;
    }

    .input-group input {
      flex: 1;
      padding: 12px;
      border-radius: 30px;
      border: 1px solid #ccc;
      outline: none;
      min-width: 180px;
    }

    @media (max-width: 768px) {
      .card1 {
        position: static;
        transform: none;
        margin: 20px auto;
      }

      .section {
        padding: 40px 15px;
      }
    }
    @media (max-width: 768px) {
  .card1 {
    position: static;
    transform: none;
    margin: 20px auto;
    height: auto;
  }

  .left-card,
  .right-card {
    width: 100%;
    max-width: 100%;
  }

  .section {
    padding: 40px 15px;
    flex-direction: column;
    align-items: center;
  }

  .background-image1 img {
    width: 100%;
    height: auto;
  }

  .input-group {
    flex-direction: column;
  }

  .input-group input,
  .input-group .btn {
    width: 100%;
  }
}





.faq {
  width: 100%;
  margin: 0 auto;
}

.faq-item {
  border-radius: 10px;
    background-color: #fff;
  padding: 1rem;
  margin-bottom: 1rem;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: background-color 0.3s;
  opacity: 0;
  transform: translateY(20px);
}

.faq-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.faq-item:hover {
  background-color: #fff;
}

.faq-item h4 {
  font-size: 1.5rem;
  margin: 0;
  display: flex;
  justify-content: space-between;
  color: var(--danger);
  font-family: var(--font-header);
}

.faq-item p {
  display: none;
  margin-top: 0.5rem;
  font-size: 1.5rem;
  color: var(--text-secondary);
  font-family: var(--font-desc);
  text-align: right;
}

.faq-item.active p {
  display: block;
}



.cta {
  background: linear-gradient(135deg, #6e3c0e, #8b5e2a);
  color: white;
  text-align: center;
  padding: 4rem 0;
}

.cta h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-family: var(--font-header);
}

.cta p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 2rem;
  font-family: var(--font-desc);
}

.btn.light {
  background-color: white;
  color: var(--accent-color);
}

.btn.light:hover {
  background-color: #f7f7f7;
}

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

/* Responsive styles */
@media (max-width: 768px) {
  .hero-content {
    flex-direction: column-reverse;
    text-align: center;
    margin-top: 100px;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image {
    margin-top: 1.5rem;
  }

  .section-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 1rem;
  }

  section {
    padding: 2rem 0;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .card-content h3 {
    font-size: 1rem;
  }

  .services,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}
.section-title5{
  color: #121212;
  text-align: center;
  font-size: 3rem;
   font-family: 'Cairo', sans-serif;
}