body {
  font-family: 'Tajawal' , sans-serif !important;
}

.about-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #ffffff, #f7fafc);
  overflow: hidden;
}

/* ===== الأشكال الخلفية المتحركة ===== */
.background-shapes .shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  animation: float 10s infinite ease-in-out;
  z-index: 0;
}

/* توزيع جديد للدوائر */
.shape1 {
  width: 220px;
  height: 220px;
  background: var(--orange);
  top: 15%;
  right: 10%; /* خلف النص */
  animation-delay: 1s;
}

.shape2 {
  width: 300px;
  height: 300px;
  background: var(--primary);
  bottom: 5%;
  left: 8%; /* أسفل القسم */
  animation-delay: 3s;
}

.shape3 {
  width: 180px;
  height: 180px;
  background: var(--primary);
  top: 40%;
  left: 65%; /* خلف الصورة */
  animation-delay: 5s;
}

/* حركة الدوائر */
@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-20px) rotate(10deg);
  }
}

/* ===== المحتوى ===== */
.about-content {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  z-index: 1;
}

/* ===== النص ===== */
.about-text h3 {
  font-size: 2.3rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
}

.about-text p {
  color: #555;
  margin-bottom: 25px;
  line-height: 1.9;
  font-size: 1.1rem;
}

/* ===== الصورة ===== */
.about-image {
  text-align: center;
  position: relative;
}

.image-frame {
  position: relative;
  display: inline-block;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease;
}

.image-frame::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 5px solid var(--primary);
  border-radius: 20px;
  z-index: -1;
  transition: all 0.4s ease;
}

.image-frame img {
  width: 100%;
  border-radius: 20px;
  display: block;
  transition: transform 0.4s ease;
}

.image-frame:hover img {
  transform: scale(1.06);
}

.image-frame:hover::before {
  top: -30px;
  left: -30px;
  opacity: 0.8;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .about-text h3::after {
    right: 50%;
    transform: translateX(50%);
  }

  /* تقليل الدوائر قليلاً على الشاشات المتوسطة */
  .shape1 { top: 10%; right: 20%; width: 180px; height: 180px; }
  .shape2 { bottom: 10%; left: 5%; width: 250px; height: 250px; }
  .shape3 { top: 55%; left: 50%; width: 150px; height: 150px; }
}

@media (max-width: 576px) {
  .about-section {
    padding: 60px 20px;
  }

  .about-text h3 {
    font-size: 1.8rem;
  }

  .about-text p {
    font-size: 1rem;
  }

  .image-frame::before {
    top: -15px;
    left: -15px;
  }

  /* تقليل حجم الدوائر أكثر */
  .shape1, .shape2, .shape3 {
    opacity: 0.12;
    transform: scale(0.8);
  }
}


/* Mission & Vision */
.mission-vision {
    background: white;
    padding: 60px 0;
    margin: 40px 0;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.mv-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: var(--light-bg);
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: white;
}

.mv-card h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.mv-card p {
    color: #666;
    line-height: 1.7;
}

/* Values Section */
.values-section {
    padding: 80px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--primary);
}

.value-card h4 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}