/* =====================
   Execution Philosophy
===================== */
.execution-section {
  padding: 140px 0;
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    #f7f9fc 100%
  );
}

.execution-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Left Side */
.execution-statement .tag {
  display: inline-block;
  margin-bottom: 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #0a7d4f;
}

.execution-statement h2 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.15;
  color: #0f172a;
}

.execution-statement h2 span {
  color: #0a7d4f;
}

/* Right Side */
.execution-content h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 18px;
  color: #1e293b;
}

.execution-content p {
  font-size: 17px;
  line-height: 1.3;
  color: #475569;
  max-width: 480px;
}

/* Accent Line */
/* .execution-line {
  margin-top: 40px;
  width: 120px;
  height: 3px;
  background: linear-gradient(
    90deg,
    #0a7d4f,
    #2563eb
  );
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.execution-line::after {
  content: "";
  position: absolute;
  left: -40%;
  top: 0;
  width: 40%;
  height: 100%;
  background: rgba(255,255,255,0.6);
  animation: slide 2.5s infinite;
} */

@keyframes slide {
  0% { left: -40%; }
  100% { left: 120%; }
}

/* Responsive */
@media (max-width: 991px) {
  .execution-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .execution-statement h2 {
    font-size: 42px;
  }
}
/* =====================
   Execution Model
===================== */

/* ===============================
   EXECUTION MODEL
================================ */

.execution-model {
  padding: 6rem 0;
  background: #ffffff;
}

/* Header */
.model-header .tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #0f766e;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.model-header h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4rem;
}

/* Flow Grid */
.execution-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

/* Card */
.execution-card {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f0fdfa 100%);
  padding: 2.5rem 2rem 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 6px 20px rgba(15, 118, 110, 0.1);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Hover */
.execution-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 36px rgba(15, 118, 110, 0.22);
}

/* Step Number */
.step-number {
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 2.6rem;
  font-weight: 700;
  color: rgba(15, 118, 110, 0.18);
}

/* Text */
.execution-card h4 {
  font-size: 1.2rem;
  color: #0f172a;
  margin-bottom: 0.8rem;
}

.execution-card p {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.7;
}

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

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

  .step-number {
    top: -16px;
    font-size: 2.2rem;
  }
}

/* =====================
   Delivery Principles
===================== */
.delivery-section {
  padding: 140px 0;
  background: #f8fafc;
}

.delivery-header {
  max-width: 600px;
  margin-bottom: 80px;
}

.delivery-header .tag {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #0a7d4f;
  display: inline-block;
  margin-bottom: 16px;
}

.delivery-header h2 {
  font-size: 42px;
  font-weight: 700;
  color: #0f172a;
}

/* Grid */
.delivery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}

/* Item */
.delivery-item {
  position: relative;
  padding-left: 64px;
}

.delivery-item .number {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 28px;
  font-weight: 700;
  color: #0a7d4f;
  opacity: 0.25;
}

.delivery-item h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #1e293b;
}

.delivery-item p {
  font-size: 16px;
  line-height: 1.7;
  color: #475569;
  max-width: 420px;
}

/* Subtle interaction */
.delivery-item:hover .number {
  opacity: 0.6;
}

/* Responsive */
@media (max-width: 991px) {
  .delivery-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .delivery-header h2 {
    font-size: 36px;
  }
}
/* =====================
   Why Sidra
===================== */

/* ===============================
   PREMIUM CARDS GRID
================================ */

.cards-section {
  padding: 6rem 0;
  background: #f8fafc;
}

/* Section Head */
.section-head {
  text-align: center;
  margin-bottom: 4rem;
}

.section-head .tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0f766e;
  margin-bottom: 1rem;
}

.section-head h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 700;
  color: #0f172a;
}

/* Cards Grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}

/* Premium Card */
.premium-card {
  position: relative;
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 2.2rem 2rem 2rem 3.5rem;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

/* Hover */
.premium-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(15, 118, 110, 0.18);
}

/* Number Circle */
.card-number {
  position: absolute;
  left: 1.5rem;
  top: 1.5rem;
  font-size: 2.4rem;
  font-weight: 700;
  color: rgba(15, 118, 110, 0.18);
}

/* Title */
.premium-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

/* Paragraph */
.premium-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #475569;
}

/* Optional Gradient Strip on top */
.premium-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #0f766e, #0d9488);
  border-top-left-radius: 1.5rem;
  border-top-right-radius: 1.5rem;
}

/* Responsive */
@media (max-width: 1200px) {
  .cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .premium-card {
    padding-left: 2.5rem;
  }

  .card-number {
    font-size: 2rem;
    left: 1rem;
    top: 1rem;
  }
}

 /* ==========================
   Global Partnerships Section
========================== */
.global-section {
  padding: 160px 0;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #f8fafc 100%
  );
}

/* ==========================
   Header
========================== */
.global-header {
  max-width: 900px;
  margin-bottom: 100px;
}

.global-header .tag {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #0a7d4f;
  display: inline-block;
  margin-bottom: 18px;
}

.global-header h2 {
  font-size: 50px;
  font-weight: 700;
  line-height: 1.2;
  color: #0f172a;
}

.global-header h2 span {
  color: #0a7d4f;
}

/* ==========================
   Grid Layout
========================== */
.global-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  margin-bottom: 120px;
}

/* ==========================
   Insights
========================== */
.global-insights h4,
.global-partnerships h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 24px;
  color: #1e293b;
}

.global-insights ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.global-insights li {
  font-size: 16px;
  padding-left: 26px;
  margin-bottom: 16px;
  position: relative;
  color: #475569;
  line-height: 1.7;
}

.global-insights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  background: #0a7d4f;
  border-radius: 50%;
}

/* ==========================
   Partnerships
========================== */
.global-partnerships p {
  font-size: 16px;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 24px;
}

.global-partnerships .emphasis {
  font-weight: 600;
  color: #0f172a;
}

/* ==========================
   Vision 2030 Box (Fixed Identity)
========================== */
.vision-box {
  padding: 60px;
  background: #f0fdf4;
  border-left: 6px solid #0a7d4f;
  border-radius: 10px;
  margin-bottom: 90px;
}

.vision-box h3 {
  font-size: 28px;
  font-weight: 600;
  color: #0a7d4f;
  margin-bottom: 16px;
}

.vision-box p {
  font-size: 16px;
  line-height: 1.8;
  color: #334155;
  max-width: 720px;
}

/* ==========================
   CTA
========================== */
.global-cta {
  text-align: center;
}

.global-cta a {
  font-size: 18px;
  font-weight: 600;
  color: #0a7d4f;
  text-decoration: none;
  position: relative;
}

.global-cta a::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: #0a7d4f;
  transition: width 0.3s ease;
  margin: 8px auto 0;
}

.global-cta a:hover::after {
  width: 100%;
}

/* ==========================
   Responsive
========================== */
@media (max-width: 991px) {
  .global-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .global-header h2 {
    font-size: 38px;
  }

  .vision-box {
    padding: 40px;
  }
}
/* ===== Thought Leadership Section ===== */
 /* ===== Thought Leadership Section ===== */
.thought-leadership {
  padding: 100px 0;
  background-color: #f9fbfd;
}

.thought-leadership .container {
  max-width: 100%; /* نسمح للـ grid بالتمدد */
  padding: 0 20px;
  margin: 0 auto;
}

/* Title */
.section-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #0b2c3d;
  text-align: center;
  margin-bottom: 20px;
}

/* Intro */
.section-intro {
  max-width: 820px;
  margin: 0 auto 60px;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.9;
  color: #5f6b7a;
}

/* ===== Flexbox Grid for 5 Cards ===== */
.points-grid {
  display: flex;
  gap: 24px;
  overflow-x: auto; /* يسمح بالتمرير الأفقي على الشاشات الضيقة */
  padding-bottom: 10px;
  scroll-behavior: smooth;
}

.point-card {
  flex: 0 0 calc(20% - 19.2px); /* 5 كاردات في صف واحد مع الـ gap */
  min-width: 220px; /* عرض أدنى للكارد */
  background: #ffffff;
  padding: 30px 24px;
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.point-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.12);
}

/* Card Title */
.point-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a7f37;
  margin-bottom: 12px;
}

/* Card Text */
.point-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #5f6b7a;
  margin: 0;
}

/* إخفاء شريط التمرير على المتصفحات */
.points-grid::-webkit-scrollbar {
  display: none;
}
.points-grid {
  -ms-overflow-style: none;  /* IE و Edge */
  scrollbar-width: none;  /* Firefox */
}

/* ===== Vision Link ===== */
.vision-link {
  margin-top: 70px;
  text-align: center;
}

.vision-link p {
  max-width: 760px;
  margin: 0 auto 25px;
  font-size: 1rem;
  color: #4b5563;
}

/* Button */
.btn-main {
  display: inline-block;
  padding: 14px 38px;
  border-radius: 50px;
  background: linear-gradient(135deg, #1a7f37, #375f3a);
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-main:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* ===== Global CTA ===== */
.global-cta {
  margin: 80px 0;
  text-align: center;
}

/* Button */
.btn-sidra {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 34px;
  font-size: 1.05rem;
  font-weight: 600;
  color: #0b2c3d;
  text-decoration: none;
  border-radius: 50px;
  border: 2px solid #1a7f37;
  background: transparent;
  transition: all 0.3s ease;
}

/* Arrow */
.btn-sidra::after {
  content: "→";
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

/* Hover */
.btn-sidra:hover {
  color: #ffffff;
  background: linear-gradient(135deg, #1a7f37, #285c44);
  border-color: transparent;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.btn-sidra:hover::after {
  transform: translateX(4px);
}

/* ===== Mobile Button ===== */
@media (max-width: 576px) {
  .thought-leadership {
    padding: 70px 0;
  }

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

  .btn-sidra {
    width: 100%;
    justify-content: center;
  }
}
