/* =======================
   About Section
======================= */
.about-section {
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    #f4f9f6 100%
  );
  position: relative;
  overflow: hidden;
}

/* عنوان السكشن */
.about-title {
  font-size: 3rem;
  font-weight: 700;
  color: #0f3d2e;
  margin-bottom: 60px;
  position: relative;
}

.about-title span {
  color: #1a7f5a;
}

.about-title::after {
  content: "";
  width: 80px;
  height: 4px;
  background: #1a7f5a;
  position: absolute;
  bottom: -15px;
  left: 0;
  border-radius: 10px;
}

/* النص */
.about-text p {
  font-size: 1.05rem;
  color: #334155;
  line-height: 1.9;
  margin-bottom: 20px;
}

/* صورة */
.about-image {
  position: relative;
}

.about-image img {
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

/* أنيميشن Hover */
.about-image img:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.2);
}

/* خلفية ديكور */
.about-section::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(26, 127, 90, 0.08);
  border-radius: 50%;
  top: -100px;
  right: -100px;
}

/* Responsive */
@media (max-width: 768px) {
  .about-title {
    font-size: 2.2rem;
    text-align: center;
  }

  .about-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .about-text {
    margin-bottom: 40px;
  }
}
/* =======================
   Vision & Mission Section
======================= */
/* Vision Section */

 /* Section */
.vision-section {
  padding: 120px 0;
  background: #f9fafb;
  font-family: "Inter", sans-serif;
}

/* Header */
.vision-header {
  max-width: 720px;
  margin-bottom: 70px;
}

.vision-header h1 {
  font-size: 3.1rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.vision-header span {
  color: #0a5c3d;
}

.vision-header p {
  font-size: 1.15rem;
  color: #555;
  line-height: 1.7;
}

/* Boxes */
.vision-box {
  height: 100%;
  background: #ffffff;
  padding: 55px;
  border-radius: 24px;
  box-shadow: 0 30px 65px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Titles */
.vision-box h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #0a5c3d;
}

/* Text */
.vision-lead {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.75;
  margin-bottom: 30px;
}

/* Points */
.vision-points p {
  position: relative;
  padding-left: 22px;
  margin-bottom: 14px;
  color: #444;
  font-size: 1.02rem;
}

.vision-points p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 2px;
  background-color: #0a5c3d;
  opacity: 0.6;
}
.vision-box:hover {
  background: linear-gradient(
    145deg,
    #ffffff 0%,
    #f4f8f6 40%,
    #eef4f1 100%
  );
  transform: translateY(-6px);
  box-shadow: 0 40px 80px rgba(0,0,0,0.10);
}

/* =======================
   Values Section
======================= */
.values-section {
  padding: 100px 0;
  background: #ffffff;
}

.values-wrapper {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

/* كل Value */
.value-item {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  padding: 40px;
  background: linear-gradient(135deg, #f4f9f6, #ffffff);
  border-radius: 22px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.value-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.12);
}

/* الرقم الكبير */
.value-number {
  font-size: 3rem;
  font-weight: 700;
  color: rgba(26, 127, 90, 0.2);
  min-width: 70px;
  line-height: 1;
}

/* المحتوى */
.value-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #0f3d2e;
  margin-bottom: 12px;
}

.value-content p {
  font-size: 1.05rem;
  color: #334155;
  line-height: 1.9;
}

/* Responsive */
@media (max-width: 768px) {
  .value-item {
    flex-direction: column;
  }

  .value-number {
    font-size: 2.5rem;
  }
}
/* ===============================
   SIDRA SECTORS SECTION
================================ */
.sidra-sectors {
  padding: 6rem 0;
  background: #f8fafc;
}

.sidra-sectors-intro {
  max-width: 800px;
  margin: 0 auto 4rem;
  text-align: center;
}

.sidra-sectors-intro h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.sidra-sectors-intro p {
  font-size: 1.1rem;
  color: #0f766e;
  line-height: 1.6;
}

/* Sectors Grid */
.sidra-sectors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 2rem;
}

/* Individual Sector Item */
.sector-item {
  background: #ffffff;
  padding: 1.8rem 1.5rem;
  border-radius: 1rem;
  text-align: center;
  font-weight: 500;
  font-size: 1rem;
  color: #0f172a;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards;
  animation-delay: calc(var(--i) * 0.12s);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sector-item:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 1024px) {
  .sidra-sectors-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .sidra-sectors-grid {
    grid-template-columns: 1fr;
  }
}

/* Reuse animation keyframes */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Edge Section */
.edge-section {
  padding: 6rem 0;
  background: #ffffff;
}

.section-title {
  text-align: center;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.section-title span {
  color: #0f766e;
}

.edge-intro {
  text-align: center;
  font-size: 1.1rem;
  color: #0f766e;
  margin-bottom: 3rem;
  line-height: 1.6;
}

/* Edge Cards Column */
.edge-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Individual Edge Card */
.edge-card {
  background: #f0fdfa;
  padding: 1.5rem 1.8rem;
  border-radius: 1rem;
  font-size: 1rem;
  color: #0f172a;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards;
  animation-delay: calc(var(--i) * 0.12s);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.edge-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .edge-cards {
    gap: 1rem;
  }
}

/* Fade Up Animation */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.sidra-strengths {
  padding: 90px 0;
}

.sidra-strengths .container {
  max-width: 900px;
  margin: auto;
}

.strength-item {
  text-align: center;
  margin-bottom: 50px;
}

.strength-item h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 16px;
}

.toggle-btn {
  background: transparent;
  border: 1px solid #1b6f4a;
  color: #1b6f4a;
  padding: 10px 30px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.toggle-btn:hover {
  background: #1b6f4a;
  color: #fff;
}

.strength-content {
  max-width: 720px;
  margin: 24px auto 0;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.45s ease;
}

.strength-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
}

/* Active */
.strength-item.active .strength-content {
  opacity: 1;
  max-height: 400px;
}
