/* =======================
   Global Reset & Font
======================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
    padding-top: 80px
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
  color: #1f2933;
  background-color: #ffffff;
  line-height: 1.6;
}

/* =======================
   Navbar
======================= */


.navbar {
  position: fixed;
  width: 100%;
  z-index: 1050;
  transition: all 0.4s ease;
  background: rgba(255,255,255,0.85);
}

.navbar.scrolled {
  background: #ffffff;
  box-shadow: 0 4px 25px rgba(0,0,0,0.08);
}

.navbar-brand {
  font-size: 1.7rem;
  font-weight: 700;
}

.navbar-brand span {
  color: #1e7a5c !important;
}

.navbar-nav .nav-link {
  margin: 0 15px;
  font-weight: 500;
  color: #1f2933 !important;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #1e7a5c !important;
}

.navbar .btn-success {
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.navbar .btn-success:hover {
  background: #155e47 !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(30,122,92,0.2);
}

/* =======================
   Hero Section
======================= */


/* ===============================
   SIDRA HERO SECTION
================================ */

.sidra-hero {
  position: relative;
  overflow: hidden;
}

/* Images */
.sidra-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1);
}

/* Overlay */
.sidra-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.6) 0%,
    rgba(0,0,0,0.35) 45%,
    rgba(0,0,0,0.7) 100%
  );
  z-index: 1;
}

/* Caption */
.sidra-hero-caption {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex !important;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

/* Typography */
.sidra-hero-caption h1 {
  color: #fff;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  max-width: 1100px;
  animation: sidraFadeUp 1.2s ease forwards;
}

.sidra-hero-caption h1 span {
  display: block;
  font-weight: 300;
  font-size: 0.7em;
  margin-top: 0.5rem;
  opacity: 0.9;
}

/* Long Text */
.sidra-hero-long {
  font-size: clamp(1.6rem, 3vw, 3rem);
}

/* Indicators */
.sidra-hero-indicators button {
  width: 42px;
  height: 3px;
  border-radius: 0;
  background-color: rgba(255,255,255,0.4);
}

.sidra-hero-indicators .active {
  background-color: #ffffff;
}

/* Animation */
@keyframes sidraFadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .sidra-hero-caption h1 {
    font-size: 1.8rem;
    letter-spacing: 1px;
  }
}

.sidra-tagline.accent {
  font-size: clamp(1.5rem, 2.5vw, 2.4rem);
  font-weight: 600;
  text-align: center;
  max-width: 900px;
  margin: 4rem auto 0;
  line-height: 1.6;
  color: #111827;
}

.sidra-tagline.accent span {
  color: #0f766e; /* أخضر فاخر */
  font-weight: 700;
  position: relative;
}

.sidra-tagline.accent span::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #0f766e;
  bottom: -6px;
  left: 0;
}



/* ==========================
   Hero Section – SIDRA
========================== */
.hero-section {
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #f5f7fa 100%
  );
  position: relative;
  overflow: hidden;
}

/* subtle background accent */
.hero-section::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(3,77,40,0.08) 0%,
    transparent 70%
  );
}

/* Heading */
.hero-section h1 {
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #1f2933;
  margin-bottom: 24px;
}

.hero-section h1 span {
  color: #034d28;
}

/* Subtitle */
.hero-section p {
  font-size: 20px;
  color: #4b5563;
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

/* Button */
.btn-main {
  padding: 14px 36px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  background: #034d28;
  color: #ffffff;
  border: none;
  transition: all 0.3s ease;
}

.btn-main:hover {
  background: #027a1f;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(3,77,40,0.25);
}

/* Responsive */
@media (max-width: 991px) {
  .hero-section {
    min-height: auto;
    padding: 120px 0 100px;
  }

  .hero-section h1 {
    font-size: 42px;
  }

  .hero-section p {
    font-size: 18px;
  }
}

@media (max-width: 575px) {
  .hero-section h1 {
    font-size: 34px;
  }

  .hero-section p {
    font-size: 16px;
  }
}
/* ==========================
   Who We Are – SIDRA
========================== */
.who-section {
  padding: 140px 0;
  background: #ffffff;
  position: relative;
}

/* subtle vertical accent */
.who-section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(3,77,40,0.15),
    transparent
  );
  transform: translateX(-50%);
}

/* Title */
.who-section h2 {
  font-size: 40px;
  font-weight: 700;
  color: #034d28;
  text-align: center;
  margin-bottom: 20px;
}

/* Divider */
.who-section .divider {
  width: 80px;
  height: 4px;
  background: #034d28;
  margin: 0 auto 40px;
  border-radius: 2px;
}

/* Text */
.who-section p {
  font-size: 18px;
  line-height: 1.9;
  color: #1f2933;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 991px) {
  .who-section {
    padding: 100px 0;
  }

  .who-section h2 {
    font-size: 32px;
  }

  .who-section p {
    font-size: 16px;
  }
}
/* ==========================
   Why SIDRA – Executive Section
========================== */


/* ===============================
   WHAT WE DO – WHITE GRADIENT
================================ */

.sidra-what-we-do {
  padding: 6rem 0;
  background-color: #f8fafc;
}

/* Header */
.sidra-wtd-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

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

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

/* Cards */
.sidra-wtd-card {
  position: relative;
  padding: 3rem 2.5rem;
  background-color: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(15,118,110,0.15);
  box-shadow: 0 18px 40px rgba(0,0,0,0.06);
  transition: all 0.4s ease;
  overflow: hidden;
}

/* Gradient accent line */
.sidra-wtd-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(
    90deg,
    #0f766e,
    #22c55e
  );
  opacity: 0.9;
}

/* Hover effect */
.sidra-wtd-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(15,118,110,0.15);
}

/* Soft green glow on hover */
.sidra-wtd-card:hover::after {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(
    120deg,
    rgba(15,118,110,0.35),
    rgba(34,197,94,0.25),
    transparent 60%
  );
  z-index: -1;
  filter: blur(20px);
}

/* Number */
.sidra-wtd-icon {
  position: absolute;
  top: 18px;
  right: 24px;
  font-size: 3.2rem;
  font-weight: 700;
  color: rgba(15,118,110,0.12);
}

/* Text */
.sidra-wtd-card h3 {
  font-size: 1.35rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1rem;
}

.sidra-wtd-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: #475569;
}

/* Responsive */
@media (max-width: 992px) {
  .sidra-wtd-grid {
    grid-template-columns: 1fr;
  }
}
/* ===============================
   WHY SIDRA PARTNERS
================================ */
/* ===============================
   WHY SIDRA – STATEMENTS
================================ */

.sidra-statements {
  padding: 7rem 0;
  background-color: #ffffff;
}

/* Header */
.sidra-statements-header {
  max-width: 700px;
  margin-bottom: 4rem;
}

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

/* List */
.sidra-statements-list {
  max-width: 900px;
}

/* Statement */
.sidra-statement {
  position: relative;
  display: block;
  padding: 1.8rem 2rem 1.8rem 3.5rem;
  margin-bottom: 1.2rem;
  text-decoration: none;
  background-color: #ffffff;
  border: 1px solid rgba(15,118,110,0.12);
  transition: all 0.3s ease;
}

.sidra-statement:hover {
  background-color: #f0fdfa;
  border-color: rgba(15,118,110,0.35);
}

/* Green line */
.statement-line {
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(
    180deg,
    #0f766e,
    #22c55e
  );
}

/* Text */
.sidra-statement h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #0f172a;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .sidra-statement {
    padding: 1.5rem 1.5rem 1.5rem 2.5rem;
  }
}
/* ===============================
   VISION 2030 – NATIONAL OS
================================ */

.sidra-v2030 {
  padding: 8rem 0;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #f8fafc 100%
  );
}

/* Intro */
.sidra-v2030-intro {
  max-width: 820px;
  margin-bottom: 5rem;
}

.sidra-v2030-intro h2 {
  font-size: clamp(2.2rem, 3vw, 2.8rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
}

.sidra-v2030-intro .lead {
  font-size: 1.3rem;
  font-weight: 500;
  color: #0f766e;
  margin-bottom: 1.2rem;
  line-height: 1.6;
}

.sidra-v2030-intro p {
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.8;
}

/* Modules */
.sidra-v2030-modules {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem 4rem;
}

/* Module */
.v2030-module {
  position: relative;
  padding-left: 4rem;
}

.module-index {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 2.6rem;
  font-weight: 700;
  color: rgba(15,118,110,0.18);
}

.v2030-module p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #0f172a;
}

/* Responsive */
@media (max-width: 768px) {
  .sidra-v2030-modules {
    grid-template-columns: 1fr;
  }
}
.v2030-module {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.v2030-module:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
/* ===============================
   SIDRA SUPPORT SECTION
================================ */
.sidra-support {
  padding: 6rem 0;
  background: linear-gradient(180deg, #f0fdfa 0%, #ffffff 100%);
}

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

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

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

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

/* Individual Support Item */
.support-item {
  background: #ffffff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
  opacity: 0; /* initial state for animation */
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards;
  animation-delay: calc(var(--i) * 0.15s);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.support-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

.support-item h3 {
  font-size: 1.2rem;
  color: #0f172a;
  margin-bottom: 1rem;
}

/* Partner Logos */
.partners-logos {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.partners-logos img {
  max-height: 40px;
  object-fit: contain;
}

/* Responsive */
@media (max-width: 768px) {
  .sidra-support-points {
    grid-template-columns: 1fr;
  }
}
.vision-link {
  color: #1e7f43; /* الأخضر */
  text-decoration: underline;
  font-weight: inherit;
}

.vision-link:hover {
  text-decoration: none;
  opacity: 0.85;
}


/* Animation Keyframes */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ===== Why Sidra Section ===== */
.why-sidra {
  padding: 90px 0;
  background-color: #ffffff;
}

.why-sidra .container {
  max-width: 720px;
}

/* Title */
.why-sidra h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0b2c3d;
  margin-bottom: 12px;
}

/* Divider */
.why-sidra .divider {
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, #1a7f37, #9df09d);
  margin: 0 auto 40px;
  border-radius: 2px;
}

/* Bullet Points */
.bullet-points {
  list-style: none;
  padding: 0;
  margin: 0 auto 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bullet-points li {
  background: #f8f9fa;
  padding: 16px 20px 16px 44px;
  border-radius: 14px;
  font-size: 1.05rem;
  color: #5f6b7a;
  position: relative;
  text-align: left;
}

/* Custom Check Icon */
.bullet-points li::before {

  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #1a7f37;
  font-weight: 700;
  font-size: 1.1rem;
}

/* Button */
.btn-main {
  display: inline-block;
  padding: 14px 38px;
  border-radius: 50px;
  background: linear-gradient(135deg, #1a7f37, #6feb94);
  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);
}

/* ===== Mobile ===== */
@media (max-width: 576px) {
  .why-sidra {
    padding: 60px 0;
  }

  .why-sidra h2 {
    font-size: 1.8rem;
  }

  .bullet-points li {
    font-size: 0.95rem;
    padding: 14px 16px 14px 40px;
  }

  .btn-main {
    width: 100%;
    text-align: center;
  }
}

/* ==========================
   CTA – Partner with SIDRA
========================== */
.cta-section {
  padding: 140px 0;
  background: linear-gradient(
    180deg,
    #034d28 0%,
    #023d21 100%
  );
  position: relative;
  overflow: hidden;
}

/* subtle accent */
.cta-section::before {
  content: "";
  position: absolute;
  right: -15%;
  top: -30%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(255,255,255,0.08),
    transparent 70%
  );
}

/* Title */
.cta-section h2 {
  font-size: 40px;
  font-weight: 700;
  color: #ffffff;
  max-width: 820px;
  margin: 0 auto 40px;
  line-height: 1.4;
}

/* Button */
.cta-btn {
  display: inline-block;
  padding: 16px 42px;
  font-size: 16px;
  font-weight: 600;
  background: #ffffff;
  color: #034d28;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.25);
  background: #e8f5ee;
}

/* Responsive */
@media (max-width: 991px) {
  .cta-section {
    padding: 100px 0;
  }

  .cta-section h2 {
    font-size: 30px;
  }
}
/* ==========================
   SIDRA Footer
========================== */
.sidra-footer {
  background: #034d28;
  color: #ffffff;
  padding: 80px 0 30px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  margin-bottom: 50px;
}

/* Brand */
.footer-brand h2 {
  font-size: 28px;
  color: #a3f0b0;
  margin-bottom: 16px;
}

.footer-brand p {
  line-height: 1.7;
  color: #d7efe1;
}

/* Titles */
.footer-links h4,
.footer-contact h4,
.footer-newsletter h4 {
  font-size: 18px;
  margin-bottom: 18px;
  color: #a3f0b0;
}

/* Links */
.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #a3f0b0;
}

/* Contact */
.footer-contact p {
  margin-bottom: 12px;
  line-height: 1.6;
}

/* Social */
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-right: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #ffffff;
  font-size: 18px;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #a3f0b0;
  color: #034d28;
  transform: translateY(-2px);
}

/* Newsletter */
.footer-newsletter p {
  margin-bottom: 14px;
  color: #d7efe1;
}

.footer-newsletter form {
  display: flex;
  flex-direction: column;
}

.footer-newsletter input {
  padding: 12px 14px;
  border-radius: 8px;
  border: none;
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-newsletter button {
  background: #a3f0b0;
  color: #034d28;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.footer-newsletter button:hover {
  background: #7ed588;
}

/* Bottom */
.footer-bottom {
  border-top: 1px solid #046638;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-size: 14px;
  color: #cce6d5;
}

.footer-legal a {
  color: #cce6d5;
  text-decoration: none;
  margin: 0 6px;
}

.footer-legal a:hover {
  text-decoration: underline;
}

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

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

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}
/* ===== Cards Section ===== */
.cards-section {
  padding: 80px 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

/* Wrapper */
.cards-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */
.feature-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 20px;
  position: relative;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  overflow: hidden;
}

/* Top Accent Line */
.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #1a7f37, #a0d8ac);
}

/* Hover Effect */
.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

/* Title */
.feature-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #0b2c3d;
}

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

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

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

  .feature-card {
    padding: 30px 22px;
  }
}
.footer-cta {
  display: inline-block;
  margin-top: 14px;
  padding: 10px 18px;

  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;

  color: #0a7a4a;              /* أخضر SIDRA */
  border: 1px solid #0a7a4a;
  border-radius: 6px;

  text-decoration: none;
  background: transparent;

  transition: all 0.3s ease;
}

.footer-cta:hover {
  background-color: #0a7a4a;
  color: #ffffff;
  transform: translateY(-2px);
}
