
    body {
      font-family: 'Montserrat-Arabic-Light', sans-serif;
      background-color: #faf9f6;
      color: #1e1e1e;
      line-height: 1.8;
      font-size: 17px;
    }

    h1, h2, h3, .section-title {
      font-family: 'Montserrat-Arabic-Bold', sans-serif;
      color: #2c3e50;
      margin-bottom: 1rem;
    }


    .nav-link-wrapper:hover .dropdown {
      display: block;
    }

    .about-section {
      padding: 60px 20px;
      display: flex;
      align-items: center;
      gap: 40px;
      flex-wrap: wrap;
      justify-content: center;
    }
.header {
  background-color: #2F3C69 !important;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
}

    .about-image-side img {
      width: 100%;
      border-radius: 12px;
    }

    .about-text-side {
      max-width: 600px;
      text-align: right;
    }


 .about-section {
  padding: 60px 20px;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.about-image-side {
  flex: 1 1 400px;
  max-width: 500px;
}

.about-image-side img {
  width: 100%;

  border-radius: 20px; /* تقويس الزوايا */
  object-fit: cover;
}

.about-text-side {
  flex: 1 1 400px;
  max-width: 600px;
  text-align: right;
}

.about-text-side h2 {
  font-family: 'Montserrat-Arabic-Bold', sans-serif;
  color: #2c3e50;
  margin-bottom: 20px;
}

.about-text-side p {
  font-family: 'Montserrat-Arabic-Light', sans-serif;
  font-size: 17px;
  line-height: 1.8;
  color: #1e1e1e;
}
.goal-card {
  background-color: transparent !important; /* أو نفس لون الخلفية العامة */
  border: 1px solid #ddd; /* إن حبيت إطار ناعم */
}

.goal-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.goal-card img {
  max-height: 200px;
  object-fit: cover;
  border-radius: 12px;
}

.nav-link {
  position: relative;
  color: white;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;   /* مسافة تحت النص */
  right: 0;
  left: 0;
  height: 2px;
  background-color: white;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}


/* قائمة التنقل */
.nav-menu {
  display: flex;
  gap: 30px;
  align-items: center;
  position: relative;
}

/* حاوية كل رابط */
.nav-link-wrapper {
  position: relative;
}

/* رابط الصورة */
.nav-link {
  display: inline-block;
  transition: transform 0.3s ease;
}

/* تأثير التحويم */
.nav-link:hover {
  transform: scale(1.1);
}

/* صورة الرابط */
.nav-icon {
  width: 60px;
  height: auto;
  filter: grayscale(100%) brightness(0.7);
  transition: filter 0.3s ease, border 0.3s ease, padding 0.3s ease;
}

/* عند التحويم أو النشط */
.nav-link.active .nav-icon,
.nav-link:hover .nav-icon {
  filter: none;
}

/* عند فتح القائمة المنسدلة - تمييز الأيقونة */
.nav-link-wrapper:hover .nav-link .nav-icon {
  filter: none;
border: 2px solid #fcfcfc;
  border-radius: 8px;
  padding: 2px;
}

/* القائمة المنسدلة */
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 50%;
  transform: translateX(50%);
  padding: 12px 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  list-style: none;
  z-index: 1000;
  min-width: 180px;
  text-align: center;
  font-family: 'Foda Naskh', 'Tajawal', sans-serif;
  background-color: #f9f5ee;       /* لون خلفية مميز */
  border: 1px solid #2c3e50;       /* إطار ذهبي خفيف */
  backdrop-filter: blur(6px);
}

/* العناصر داخل القائمة */
.dropdown li {
  margin: 8px 0;
}

.dropdown li a {
  color: #0A2C38;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease, background-color 0.3s ease;
  display: block;
  padding: 4px 8px;
  border-radius: 6px;
}

/* عند تحويم الروابط داخل القائمة */
.dropdown li a:hover {
  color: #f8f8f8;                  /* لون ذهبي */
  font-weight: bold;
  background-color: #2c3e50;       /* خلفية مميزة عند التحويم */
}

/* إظهار القائمة عند التحويم */
.nav-link-wrapper:hover .dropdown {
  display: block;
}

/* القائمة المنسدلة عند scrolled header */
.header.scrolled .nav-link-wrapper .dropdown {
  background-color: #ffffff;
}

.header {
  background-color: #0A2C38;
}
.about-section {
  margin-top: 120px;
  padding-top: 30px;
}
@media (max-width: 768px) {
  .about-section {
    margin-top: 170px;
    padding-top: 50px;
  }
}

@media (max-width: 480px) {
  .about-section {
    margin-top: 210px;
    padding-top: 60px;
  }
}

.m.montserrat-medium-text {
  font-family: 'Montserrat-Arabic-Medium', sans-serif;
  font-weight: 500;
  font-size: 17px;
  line-height: 1.8;
  color: #333;
}
.montserrat-medium-text {
  font-family: 'Montserrat-Arabic-Medium', sans-serif;
  font-weight: 500;
  font-size: 17px;
  line-height: 1.8;
  color: #333;
}

.goals-custom-section {
  padding: 60px 20px;
  display: flex;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.goals-custom-section .about-image-side {
  flex: 1 1 400px;
  max-width: 500px;
}

.goals-custom-section .about-image-side img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.goals-custom-section .about-text-side {
  flex: 1 1 400px;
  max-width: 600px;
  text-align: right;
}

.goals-custom-section .about-text-side img {
  margin-bottom: 20px;
}

.goal-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  justify-content: center;
}

.goal-gallery-img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid #ddd;
  transition: transform 0.3s ease;
}

.goal-gallery-img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
