/* ================= RESET ================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

/* ================= ROOT ================= */
:root {

  /* ===== Brand Colors ===== */
  --primary: #004c96;
  --secondary: #4d8545;
  --black: #000000;
  --white: #ffffff;

  /* ===== Backgrounds ===== */
  --bg-main: #e6f0fa;
  --bg-sec: #edf6ec;
  --bg-light: #f5f7fa;

  /* ===== Text ===== */
  --text-title: #004c96;
  /* العناوين */
  --text-main: #1f2937;
  /* النص الأساسي */
  --text-gray: #6b7280;
  /* نص ثانوي */
  --text-white: #ffffff;
  /* على الخلفيات الداكنة */

  /* ===== Buttons ===== */
  --btn-primary: var(--primary);
  --btn-primary-hover: #003b73;

  /* ===== Layout ===== */
  --container: 1200px;
  --section: 90px;
  --radius: 12px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* ================= BODY ================= */
body {
  font-family: 'IBM Plex Sans Arabic', sans-serif;
  direction: rtl;
  line-height: 1.8;
  min-height: 100vh;
  background: var(--bg-main);
  color: var(--text-main);
}

/* ================= GLOBAL ================= */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
}

.section {
  padding-block: var(--section);
}

.section.alt {
  background: var(--bg-light);
}

/* ================= TYPOGRAPHY ================= */
h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
}

h3 {
  font-size: 1.4rem;
  font-weight: 600;
}

p {
  color: var(--text-light);
  font-size: 1rem;
}

/* ================= LINKS ================= */
a {
  color: var(--primary);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: var(--secondary);
}

/* ================= IMAGES ================= */
img {
  max-width: 100%;
  display: block;
}

/* ================= BUTTON ================= */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: var(--radius);
  background: var(--btn-primary);
  color: var(--text-white);
  font-size: 1rem;
  font-weight: 600;
  box-shadow: var(--shadow);
  transition: 0.3s ease;
}

.btn:hover {
  background: var(--btn-primary-hover);
  transform: translateY(-3px);
}

/* زر ثانوي */
.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  :root {
    --section: 60px;
  }

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.2rem;
  }
}


/* ____________________________________________________________________________ */
/* ____________________________________________________________________________ */
/* ____________________________________________________________________________ */

/* ___________________________ Header Start ___________________________ */
.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  z-index: 1000;
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

/* Logo */
.logo img {
  height: 55px;
}

/* NAV */
.nav-list {
  display: flex;
  align-items: center;
  gap: 35px;
  list-style: none;
}

.nav-list a,
.dropdown-toggle {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-main);
  background: none;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.nav-list a:hover,
.dropdown-toggle:hover {
  color: var(--primary);
}

/* Dropdown */
.dropdown-parent {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 120%;
  right: 0;
  background: white;
  min-width: 180px;
  padding: 10px 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s ease;
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 0.9rem;
}

.dropdown-menu a:hover {
  background: var(--bg-light);
}

.dropdown-parent:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Actions */
.header-actions {
  display: flex;
  gap: 15px;
}

.btn-whatsapp {
  background: var(--secondary);
  color: white;
}

.btn-whatsapp:hover {
  background: #3b6e35;
}

/* Mobile Toggle */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  background: none;
  border: none;
  cursor: pointer;
}

@media (max-width: 992px) {

  .nav {
    display: none;
  }

  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: block;
  }


  .nav {
    position: absolute;
    top: 80px;
    right: 0;
    width: 100%;
    background: white;
    padding: 20px 0;
    display: none;
    flex-direction: column;
  }

  .nav.active {
    display: flex;
  }

  .nav-list {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }


}


/* ___________________________ Header End ___________________________ */

/* ===================== Hero Section ===================== */

.hero{
padding:100px 0;
background:linear-gradient(135deg,#ffffff 0%,#f5f7fa 100%);
}

/* Layout */

.hero-wrapper{
display:grid;
grid-template-columns:1fr 1fr;
align-items:center;
gap:60px;
}

/* ================= Content ================= */

.hero-badge{
display:inline-block;
background:rgba(13,74,139,0.08);
color:#0d4a8b;
padding:6px 16px;
border-radius:30px;
font-size:14px;
font-weight:500;
margin-bottom:20px;
}

.hero-content h1{
font-size:42px;
line-height:1.4;
color:#1e293b;
margin-bottom:20px;
font-weight:700;
}

.hero-content h1 span{
color:#0d4a8b;
display:block;
}

.hero-content p{
color:#6b7280;
font-size:16px;
line-height:1.8;
max-width:520px;
margin-bottom:30px;
}

/* ================= Features ================= */

.hero-services{
display:flex;
gap:12px;
flex-wrap:wrap;
margin-bottom:30px;
}

.hero-services span{
background:white;
padding:7px 14px;
border-radius:20px;
font-size:14px;
box-shadow:0 4px 12px rgba(0,0,0,0.05);
}

/* ================= Buttons ================= */

.hero-buttons{
display:flex;
gap:15px;
flex-wrap:wrap;
}

.btn-primary{
background:#0d4a8b;
color:white;
padding:12px 28px;
border-radius:8px;
text-decoration:none;
font-weight:600;
transition:.3s;
}

.btn-primary:hover{
background:#0b3e73;
}

.btn-outline{
border:2px solid #0d4a8b;
color:#0d4a8b;
padding:12px 28px;
border-radius:8px;
text-decoration:none;
font-weight:600;
transition:.3s;
}

.btn-outline:hover{
background:#0d4a8b;
color:white;
}

/* ================= Image ================= */

.hero-image{
width:100%;
max-width:500px;
aspect-ratio:1/1;
overflow:hidden;
border-radius:20px;
box-shadow:0 25px 60px rgba(0,0,0,0.08);
}

.hero-image img{
width:100%;
height:100%;
object-fit:cover;
}

/* ================= Tablet ================= */

@media (max-width:992px){

.hero-wrapper{
grid-template-columns:1fr;
text-align:center;
gap:40px;
}

.hero-content p{
margin:auto;
margin-bottom:30px;
}

.hero-services{
justify-content:center;
}

.hero-buttons{
justify-content:center;
}

.hero-image{
display: none;
}


.hero-services span{
padding:5px 10px;
font-size:14px;
}

}

/* ================= Mobile ================= */

@media (max-width:768px){

.hero{
padding:60px 20px;
}

.hero-content h1{
font-size:30px;
}

.hero-content p{
font-size:15px;
}

.btn-primary,
.btn-outline{
padding:11px 20px;
font-size:14px;
}

.hero-image{
display: none;
}

}


/* ___________________ Services ShowCase Start ____________________ */
.services-showcase {
  margin-top: 4rem;
  margin-bottom: 5rem;
  background: var(--bg-main)
}


.section-head h2 {
  font-size: 10px;
  font-weight: 800;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 1rem;
  line-height: 1.4;
  color: #004c96;
}

.section-head p {
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 1rem;
  line-height: 1.4;
  color: #1f2937;
}

.showcase-wrapper {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}




/* Layout */
.showcase-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  background-color: #d4e6f7;
  border-radius: 3.5%;
}

.showcase-item.reverse {
  direction: ltr;
}


.btn-1 {
  background: #004c96;
  color: var(--white);
}

.btn-1:hover {
  background: #004c96;
  color: var(--white);
}


.btn-2 {
  background: #4d8545;
  color: var(--white);
}

.btn-2:hover {
  background: #4d8545;
  color: var(--white);
}

.showcase-item.reverse .showcase-content {
  direction: rtl;
}


/* Image */
.showcase-image {
  aspect-ratio: 1 / 1;
  background: var(--bg-sec);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.showcase-image img {
  width: 100%;
  height: 100%;
object-fit: contain;}


/* Content */
.showcase-content h3 {
  font-size: 1.9rem;
  margin: 15px 0 20px;
  font-family: 'Cairo', sans-serif;
  color: #004c96;
}

.showcase-content p {
  font-size: 1.1rem;
  color: #000;
  line-height: 1.8;
  margin-bottom: 25px;
}


/* Tag */
.showcase-tag {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 30px;
  background: rgba(0, 76, 150, 0.08);
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 800;
}


/* ------------------ */
.showcase-tag.secondary {
  background: rgba(77, 133, 69, 0.12);
  color: #4d8545;
  font-size: 0.9rem;
  font-weight: 800;
}


.reverse {
  background-color: #dcedda;
  padding-right: 2rem;

}

.showcase-content .secondary-h3 {
  color: #34682e;
}


/* Features */
.showcase-features {
  list-style: none;
  margin-bottom: 30px;
  padding: 0;
  color: #000;
}

.showcase-features li {
  margin-bottom: 10px;
  padding-right: 20px;
  position: relative;
  font-size: 1.1rem;
}

.showcase-features li::before {
  content: "✓";
  position: absolute;
  right: 0;
  color: #004c96;
  ;
  font-weight: bold;
}

/* __________________ Responsive Services Showcase __________________ */


/* ===================== Services Showcase ===================== */
.services-showcase {
  margin-top: 4rem;
  margin-bottom: 5rem;
  background: var(--bg-main);
}

.section-head h2 {
  font-size: 20px;
  font-weight: 800;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 1rem;
  line-height: 1.4;
  color: #004c96;
}

.section-head p {
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 1rem;
  line-height: 1.4;
  color: #1f2937;
}

.showcase-wrapper {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

/* Layout */
.showcase-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  background-color: #d4e6f7;
  border-radius: 3.5%;
  padding: 40px;
}

.showcase-item.reverse {
  direction: ltr;
}

.btn-1 {
  background: #004c96;
  color: var(--white);
}

.btn-2 {
  background: #4d8545;
  color: var(--white);
}

.showcase-item.reverse .showcase-content {
  direction: rtl;
}

/* Image */
.showcase-image {
  aspect-ratio: 1 / 1;
  background: var(--bg-sec);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Content */
.showcase-content h3 {
  font-size: 1.9rem;
  margin: 15px 0 20px;
  font-family: 'Cairo', sans-serif;
  color: #004c96;
}

.showcase-content p {
  font-size: 1.1rem;
  color: #000;
  line-height: 1.8;
  margin-bottom: 25px;
}

/* Tag */
.showcase-tag {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 30px;
  background: rgba(0, 76, 150, 0.08);
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 800;
}

.showcase-tag.secondary {
  background: rgba(77, 133, 69, 0.12);
  color: #4d8545;
  font-size: 0.9rem;
  font-weight: 800;
}

.showcase-content .secondary-h3 {
  color: #34682e;
}

/* Features List */
.showcase-features {
  list-style: none;
  margin-bottom: 30px;
  padding: 0;
  text-align: right;
}

.showcase-features li {
  margin-bottom: 10px;
  padding-right: 26px;
  position: relative;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* علامة الصح */
.showcase-features li::before {
  content: "✓";
  position: absolute;
  right: 0;
  top: 2px;
  color: #004c96;
  font-weight: bold;
  font-size: 16px;
}

/* ===================== Responsive ===================== */
@media (max-width: 992px) {
  /* Services Showcase */
  .showcase-item {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 30px;
    border-radius: 20px;
  }


   .section-head h2 {
  font-size: 20px;
  }

  
  .showcase-item.reverse {
    direction: rtl;
  }

  .showcase-wrapper {
    gap: 60px;
  }

  .showcase-image {
    max-width: 420px;
    margin: auto;
  }

  .showcase-content {
    text-align: center;
  }

  .showcase-features li {
    padding-right: 0;
  }
}

@media (max-width: 600px) {
  /* Services Showcase */
  .services-showcase {
    margin-top: 2rem;
    margin-bottom: 3rem;
  }

  .section-head h2 {
  font-size: 20px;
  }

  .section-head p {
    font-size: 16px;
  }

  .showcase-wrapper {
    margin-top: 50px;
    gap: 50px;
  }

  .showcase-content h3 {
    font-size: 1.5rem;
  }

  .showcase-content p {
    font-size: 0.95rem;
  }

  .showcase-features li {
    font-size: 0.95rem;
    padding-right: 24px;
  }

  .showcase-features li::before {
    font-size: 16px;
  }

  .showcase-image {
    aspect-ratio: auto;
    max-width: 100%;
  }

  .showcase-content .btn {
    width: 100%;
  }
}

/* ___________________________ Services ShowCase End ___________________________ */
/* ________________________________ Stats Start ________________________________ */
/* ================= Stats Section ================= */

.stats{
background:#004c96;
color:#fff;
padding:40px 0;
}

.stats-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:40px;
text-align:center;
}

.stat h3{
font-size:42px;
font-weight:700;
margin-bottom:8px;
}

.stat p{
font-size:16px;
opacity:.9;
}

/* ================= Tablet ================= */

@media (max-width:992px){

.stats-grid{
grid-template-columns:repeat(2,1fr);
gap:30px;
}

}

/* ================= Mobile ================= */

@media (max-width:600px){

.stats{
padding:50px 20px;
}

.stats-grid{
grid-template-columns:repeat(2,1fr); /* كل صف فيه عنصرين */
gap:20px;
}

.stat h3{
font-size:32px;
}

.stat p{
font-size:14px;
}

}
/* ________________________________ Stats End ________________________________ */
/* ______________________________ Services Start _____________________________ */
/* ===============================
   Services Carousel
================================= */

/* ================= SERVICES SECTION ================= */

/* ================= SECTION ================= */
/* ================= SERVICES SECTION ================= */

.services {
  padding: 100px 0;
  background: linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
}

.services .section-head {
  max-width: 720px;
  margin: auto;
  margin-bottom: 60px;
  text-align: center;
}

.services .section-head h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.3rem);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 15px;
}

.services .section-head p {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  color: #475569;
  line-height: 1.9;
}

/* ================= CAROUSEL WRAPPER ================= */

.services-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

/* ================= CAROUSEL ================= */

.services-carousel {
  display: flex;
  gap: clamp(14px, 2vw, 24px);
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 5px;
  scroll-snap-type: x mandatory;
}

.services-carousel::-webkit-scrollbar {
  display: none;
}

/* ================= CARD ================= */

.service-card {
  flex: 0 0 auto;
  width: clamp(210px, 24vw, 300px);
  background: #fff;
  border-radius: 20px;
  padding: clamp(20px, 2vw, 28px);
  transition: 0.35s ease;
  box-shadow:
    0 10px 25px rgba(15, 23, 42, 0.05),
    0 2px 8px rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(148,163,184,0.15);
  scroll-snap-align: start;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 18px 40px rgba(15, 23, 42, 0.1),
    0 5px 15px rgba(37, 99, 235, 0.08);
}

/* Featured Card */

.service-card.featured {
  background: linear-gradient(135deg, #2563eb, #0ea5e9);
  color: #fff;
  border: none;
}

.service-card.featured h3,
.service-card.featured p,
.service-card.featured li {
  color: #fff;
}

/* ================= CONTENT ================= */

.service-icon {
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  margin-bottom: 10px;
  font-weight: 700;
}

.service-card p {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  line-height: 1.8;
  margin-bottom: 15px;
  color: #475569;
}

.service-card ul {
  list-style: none;
  padding: 0;
}

.service-card ul li {
  position: relative;
  padding-right: 16px;
  margin-bottom: 8px;
  font-size: 0.85rem;
}

.service-card ul li::before {
  content: "";
  position: absolute;
  right: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  background: #2563eb;
  border-radius: 50%;
}

/* ================= ARROWS (DESKTOP ONLY) ================= */

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.95);
  font-size: 1.4rem;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  transition: 0.3s ease;
  z-index: 10;
}

.carousel-arrow:hover {
  background: #2563eb;
  color: #fff;
  transform: translateY(-50%) scale(1.1);
}

/* RTL positioning */
.carousel-arrow.left {
  right: -25px;
}

.carousel-arrow.right {
  left: -25px;
}

/* ================= RESPONSIVE ================= */

/* Large Screens */
@media (min-width: 1400px) {
  .service-card {
    width: 280px;
  }
}

/* Tablet */
@media (max-width: 992px) {

  .services {
    padding: 80px 0;
  }

  .service-card {
    width: clamp(200px, 35vw, 260px);
  }

  .carousel-arrow {
    display: none;
  }
}

/* Mobile */
@media (max-width: 576px) {

  .services {
    padding: 60px 0;
  }

  .services-carousel {
    gap: 15px;
  }

  .service-card {
    width: 85%;
  }
}
/* ______________________________ Services End _____________________________ */
/* ________________________________ CTA Start ______________________________ */
.cta {
  text-align: center;
  background: #4d8545;
  color: #fff;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.btn-main {
  display: inline-block;
  margin-top: 2rem;
  padding: 1rem 2rem;
  background: #dcedda;
  color: #000;
  border-radius: 40px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.btn-main:hover {
  transform: translateY(-5px);
}

/* ________________________________ CTA End ______________________________ */
/* ______________________________ Steps Start ____________________________ */
.steps__section {
  padding: 3rem 8%;
  background: linear-gradient(135deg, #dcedda, #95d5b2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.steps__title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.4;
  color: #2a4227;
}


/* Grid */
.steps__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
}

/* Card */
.step__card {
  position: relative;
  background: #dcedda;
  padding: 1.5rem 1.5rem 3rem;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  overflow: hidden;
}

.step__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

/* Step Number (Design Element) */
.step__number {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  font-size: 4.5rem;
  font-weight: 700;
  color: rgba(0, 76, 150, 0.08);
  /* الأزرق البراند */
  line-height: 1;
  pointer-events: none;
}

/* Content */
.step__card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #2a4227;
  font-weight: 600;
}

.step__card p {
  font-size: 1rem;
  line-height: 1.8;
  color: #444;
  max-width: 90%;
}

/* Decorative Line */
.step__decor {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0%;
  height: 4px;
  background: linear-gradient(to left,
      #004c96,
      #4d8545);
  transition: width 0.4s ease;
}

.step__card:hover .step__decor {
  width: 100%;
}








/* ===================== CTA Section ===================== */
.cta {
  text-align: center;
  background: #4d8545;
  color: #fff;
  padding: 3rem 1rem;
}

.cta h2 {
  font-size: 2rem;
  font-weight: 700;
}

.btn-main {
  display: inline-block;
  margin-top: 2rem;
  padding: 1rem 2rem;
  background: #dcedda;
  color: #000;
  border-radius: 40px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.btn-main:hover {
  transform: translateY(-5px);
}

/* ===================== Steps Section ===================== */
.steps__section {
  padding: 3rem 8%;
  background: linear-gradient(135deg, #dcedda, #95d5b2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.steps__title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.4;
  color: #2a4227;
}

/* Grid */
.steps__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
}

/* Card */
.step__card {
  position: relative;
  background: #dcedda;
  padding: 1.5rem 1.5rem 3rem;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  overflow: hidden;
  text-align: right; /* نصوص من اليمين */
}

.step__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

/* Step Number */
.step__number {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  font-size: 4.5rem;
  font-weight: 700;
  color: rgba(0, 76, 150, 0.08);
  line-height: 1;
  pointer-events: none;
}

/* Content */
.step__card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #2a4227;
  font-weight: 600;
}

.step__card p {
  font-size: 1rem;
  line-height: 1.8;
  color: #444;
  max-width: 100%;
}

/* Decorative Line */
.step__decor {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0%;
  height: 4px;
  background: linear-gradient(to left, #004c96, #4d8545);
  transition: width 0.4s ease;
}

.step__card:hover .step__decor {
  width: 100%;
}

/* ===================== Responsive ===================== */
@media (max-width: 992px) {

  .cta h2 {
    font-size: 1.8rem;
  }

  .btn-main {
    padding: 0.9rem 1.8rem;
  }

  .steps__grid {
    gap: 2rem;
  }

  .step__card {
    padding: 1.2rem 1.2rem 2.5rem;
  }

  .step__card h3 {
    font-size: 1.2rem;
  }

  .step__card p {
    font-size: 0.95rem;
  }

  .step__number {
    font-size: 3.8rem;
  }

}

@media (max-width: 600px) {

  /* CTA */
  .cta h2 {
    font-size: 1.6rem;
  }

  .btn-main {
    width: 100%;
    padding: 1rem;
  }

  /* Steps */
  .steps__grid {
    grid-template-columns: 1fr; /* عمود واحد */
    gap: 1.5rem;
  }

  .step__card {
    padding: 1rem 1rem 2rem;
  }

  .step__card h3 {
    font-size: 1.1rem;
  }

  .step__card p {
    font-size: 0.9rem;
  }

  .step__number {
    font-size: 3rem;
    left: 1rem;
    top: 1rem;
  }

  .step__decor {
    height: 3px;
  }

}




/* _______________________________ Steps End ________________________________ */
/* ___________________________ Before-After Start ____________________________ */
.before-after {
  padding: 3rem 8%;
  background: #d4e6f7;
}

.before-after .container {
  max-width: 1200px;
  margin: auto;
}

/* العنوان */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #004c96;
  margin-bottom: 5px;
}

.section-header p {
  font-size: 22px;
  font-weight: 500;
  text-align: center;
  max-width: 700px;
  margin: auto;
  line-height: 1.4;
  color: #1f2937;
}

/* الشبكة */
.ba-grid {
  display: grid;
  grid-template-columns: repeat(2, 520px);
  /* عرض ثابت */
  justify-content: center;
  /* يخليهم بالنص */
  column-gap: 20px;
  /* تقدر تتحكم فيها بحرية */
  gap: 30px;
}

/* الكرت */
.ba-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  text-align: center;
  max-width: 500px;
  margin: auto;
  /* يخليه بالنص */
}



/* الصور */
.ba-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 15px;
}

.ba-img {
  position: relative;
  background: #f3f6fa;
  border-radius: 15px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* الصورة كاملة بدون قص */
.ba-img img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  /* يمنع القص */
  display: block;
}

/* قبل / بعد ثابت */
.ba-img span {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #222;
  color: #fff;
  padding: 5px 12px;
  font-size: 0.8rem;
  border-radius: 20px;
  font-weight: 600;
}

/* لون بعد */
.ba-img.after span {
  background: #4d8545;
}

/* عنوان الكرت */
.ba-card h4 {
  margin-top: 10px;
  margin-bottom: 15px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #333;
}

/* ===================== Responsive ===================== */
@media (max-width: 992px) {

  .ba-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .ba-images {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .ba-card h4 {
    font-size: 1.05rem;
  }

    .ba-grid {
    grid-template-columns: 1fr; /* عمود واحد على الشاشات المتوسطة والصغيرة */
    gap: 25px;
  }

}

@media (max-width: 600px) {

  .before-after {
    padding: 2rem 5%;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .section-header p {
    font-size: 1rem;
  }

  .ba-card {
    max-width: 100%;
  }

  .ba-images {
    grid-template-columns: 1fr;
  }

  .ba-card h4 {
    font-size: 1rem;
  }

  .ba-img span {
    font-size: 0.75rem;
    padding: 4px 10px;
  }


    .ba-grid {
    grid-template-columns: 1fr; /* عمود واحد على الشاشات المتوسطة والصغيرة */
    gap: 25px;
  }
}

/* ___________________________ Before-After End ____________________________ */
/* ____________________________ location Start _____________________________ */
/* ================= Location Section ================= */

.location-section{
padding:100px 0;
background:#f8fafc;
}

.location-header{
text-align:center;
margin-bottom:40px;
}

.section-title{
font-size:36px;
font-weight:700;
margin-bottom:10px;
color:#111827;
}

.section-desc{
color:#6b7280;
font-size:16px;
}

.location-wrapper{
max-width:900px;
margin:auto;
text-align:center;
}

/* ===== Map Box ===== */

.map-box{
border-radius:20px;
overflow:hidden;
box-shadow:0 10px 35px rgba(0,0,0,0.1);
}

.map-box iframe{
width:100%;
height:420px;
border:0;
}

/* ===== Button ===== */

.map-btn{
display:inline-block;
margin-top:25px;
padding:12px 28px;
background:#2563eb;
color:#fff;
text-decoration:none;
border-radius:10px;
font-size:15px;
font-weight:600;
transition:.3s;
}

.map-btn:hover{
background:#1e40af;
transform:translateY(-2px);
}

/* ================= Responsive ================= */

@media (max-width:768px){

.location-section{
padding:70px 0;
}

.section-title{
font-size:28px;
}

.map-box iframe{
height:300px;
}

}





/* ____________________________ location End _____________________________ */
/* ____________________________ Footer Start _____________________________ */

.site-footer {
  background: var(--bg-main);
  color: #000000;
  padding: 80px 0 0;
  font-family: 'Cairo', sans-serif;
}

.site-footer .container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ===== توزيع متساوي 3 أعمدة ===== */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  padding-bottom: 60px;
}

/* كل عمود نفس التنسيق */
.footer-grid>div {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 180px;
}

/* ===== العناوين ===== */
.site-footer h3,
.site-footer h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  color: var(--primary);
  position: relative;
  padding-bottom: 10px;
}

.site-footer h3::after {
  content: "";
  width: 40px;
  height: 3px;
  background: #38bdf8;
  position: absolute;
  bottom: 0;
  right: 0;
  border-radius: 3px;
}

/* ===== النصوص ===== */
.site-footer p {
  font-size: 18px;
  line-height: 1.9;
  color: var(--primary);
  margin: 0;
}

/* ===============================
   روابط سريعة (2 في كل سطر)
================================ */

.site-footer ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-footer ul li a {
  display: block;
  text-align: center;
  padding: 10px 0;
  color: var(--primary);
  border-radius: 8px;
  font-size: 14px;
  text-decoration: none;
  color: #0f172a;
  box-shadow: 0 8px 20px rgba(56, 189, 248, 0.25);
}

/* ===============================
   قسم التواصل
================================ */

.footer-grid div:nth-child(3) p {
   display: block;
  text-align: center;
  padding: 10px 0;
  color: var(--primary);
  border-radius: 8px;
  font-size: 14px;
  text-decoration: none;
  color: #0f172a;
  box-shadow: 0 8px 20px rgba(56, 189, 248, 0.25);
}



/* ===============================
   Footer Bottom
================================ */

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  padding: 25px 0;
  background: #0b1220;
}

.footer-bottom p {
  margin: 0;
  font-size: 18px;
  color: #9ca3af;
}
/* __________________ Responsive Footer __________________ */

/* ===== تابلت ===== */
@media (max-width: 992px) {

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .site-footer {
    padding: 30px 0 0;
  }

  .site-footer h3,
  .site-footer h4 {
    font-size: 18px;
  }

  .site-footer p {
    font-size: 16px;
  }

}


/* ===== جوال ===== */
@media (max-width: 600px) {

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    text-align: center;
  }


  .footer-grid div:nth-child(2) {
  margin-top: -40px;
}


  .footer-grid > div {
    align-items: center;
  }

  /* العنوان */
  .site-footer h3::after {
    right: 50%;
    transform: translateX(50%);
  }

  /* روابط */
.site-footer ul {
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  max-width: 320px;
  gap: 10px;
}
  .site-footer ul li a {
    font-size: 15px;
    padding: 10px 0;
  }

  /* التواصل */
  .footer-grid div:nth-child(3) p {
    justify-content: center;
    width: 100%;
    max-width: 300px;
  }

  .footer-bottom p {
    font-size: 14px;
    padding: 0 10px;
  }

}
/* ____________________________ Footer End _____________________________ */
/* ________________________ Contact Buttons Start ______________________ */
/* ===== Floating Contact ===== */

.contact-float{
position:fixed;
bottom:88px;   /* هنا تتحكم بارتفاعها */
right:15px;
display:flex;
flex-direction:column;
gap:15px;
z-index:999;
}

.contact-float a{
display:flex;
align-items:center;
justify-content:center;
transition:.3s;
}

.contact-float img{
width:40px;
height:40px;
}

/* حركة بسيطة عند المرور */

.contact-float a:hover{
transform:scale(1.1);
}
/* ________________________ Contact Buttons End ______________________ */