/* ═══════════════════════════════════════════════
   VARIABLES & RESET
═══════════════════════════════════════════════ */
:root {
  --bg: #24150d;
  --bg-card: #24150d;
  --bg-card-hover: #123927;
  --gold: #dfa951;
  --gold-light: #f0d98a;
  --gold-dark: #a8862a;
  --white: #ffffff;
  --muted: #b6bcc8;
  --muted-dark: #6b7385;
  --border: rgba(212, 175, 55, 0.15);
  --border-hover: rgba(212, 175, 55, 0.4);
  --shadow-gold: 0 0 30px rgba(212, 175, 55, 0.15);
  --shadow-card: 0 8px 40px rgba(0, 0, 0, 0.4);
  --font-main: "IBM Plex Sans Arabic", "Cairo", sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 16px;
  --radius-sm: 10px;
  --hero-img-opacity: 0.5;
  --hero-img-gradient-dark: rgba(8, 31, 26, 0.7);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background: var(--bg);
  color: var(--white);
  direction: rtl;
  overflow-x: hidden;
  line-height: 1.7;
}

a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
ul {
  list-style: none;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad {
  padding: 15px 0;
  margin-top: 25px;
}

/* ═══════════════════════════════════════════════
   CANVAS & DECORATIVE LAYERS
═══════════════════════════════════════════════ */
#bgCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.4;
}

#particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat linear infinite;
}

@keyframes particleFloat {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.3;
  }
  100% {
    transform: translateY(-100px) scale(1);
    opacity: 0;
  }
}

.svg-layer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.deco-pattern {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  opacity: 0.25;
}

/* ═══════════════════════════════════════════════
   SECTION HEADERS
═══════════════════════════════════════════════ */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border-hover);
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 20px;
  background: rgba(212, 175, 55, 0.05);
  text-shadow: 1px 1px 0px black;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-family: var(--font-main);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 16px;
  color: var(--white);
}

.section-sub {
  font-size: 1.05rem;
  color: var(--white);
  max-width: 600px;
  margin: 0 auto;
  text-shadow: 1px 1px 0px black;
}

.gold-text {
  /* background: linear-gradient(
    135deg,
    var(--gold) 0%,
    var(--gold-light) 50%,
    var(--gold) 100%
  ); */
  -webkit-background-clip: text;
  /* -webkit-text-fill-color: transparent; */
  background-clip: text;
  color: var(--gold);
  text-shadow: 1px 1px 0px black;
}

/* ═══════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 50px;
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn:hover::after {
  opacity: 1;
}

.btn-gold {
  background: linear-gradient(
    135deg,
    var(--gold-dark),
    var(--gold),
    var(--gold-light)
  );
  color: #0f1115;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.35);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ═══════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition:
    background 0.4s,
    padding 0.4s,
    backdrop-filter 0.4s;
}

.navbar.scrolled {
  /* background: rgb(47, 82, 71); */
  backdrop-filter: blur(20px);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* LOGO */
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
}

.logo-img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  /* Black logo → gold luxury via CSS filter */
  filter: brightness(0) saturate(100%) invert(78%) sepia(60%) saturate(600%)
    hue-rotate(5deg) brightness(105%);
  transition:
    filter 0.3s,
    drop-shadow 0.3s;
  filter: brightness(0) saturate(100%) invert(78%) sepia(60%) saturate(600%)
    hue-rotate(5deg) brightness(105%)
    drop-shadow(0 0 8px rgba(212, 175, 55, 0.7));
}
.logo-img-sm {
  width: 90px;
  height: 90px;
}

.logo-wrap:hover .logo-img {
  filter: brightness(0) saturate(100%) invert(90%) sepia(80%) saturate(500%)
    hue-rotate(5deg) brightness(115%)
    drop-shadow(0 0 16px rgba(240, 217, 138, 0.9));
  transform: scale(1.05);
  transition: all 0.3s;
}

.logo-text {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}
.logo-text span {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--gold);
}

/* NAV LINKS */
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  right: 50%;
  height: 1.5px;
  background: var(--gold);
  transition:
    left 0.3s,
    right 0.3s;
}
.nav-links a:hover {
  color: var(--gold);
}
.nav-links a:hover::after {
  left: 14px;
  right: 14px;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 100;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
}
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 140px 0 80px;
  overflow: hidden;
  z-index: 1;
  min-height: 1200px;
}

/* Background image overlay merged into hero to blend with trust-strip */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-bg-slider {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.hero-bg-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  opacity: 0;

  animation: heroFade 24s infinite;
}

/* Slide 1 */
.hero-bg-slide--1 {
  background-image: url("https://i.postimg.cc/bqgtY6YX/Whats-App-Image-2026-06-12-at-1-40-56-PM.jpg");
  animation-delay: 0s;
}

/* Slide 2 */
.hero-bg-slide--2 {
  background-image: url("https://i.postimg.cc/fLTqXTmd/Whats-App-Image-2026-06-24-at-12-56-32-AM.jpg");
  animation-delay: 6s;
}

/* Slide 3 */
.hero-bg-slide--3 {
  background-image: url("https://i.postimg.cc/LRJz8Rrc/1781287910627-jpg.jpg");
  animation-delay: 12s;
}

/* Slide 4 */
.hero-bg-slide--4 {
  background-image: url("https://i.postimg.cc/R03FXLnV/Whats-App-Image-2026-06-12-at-1-40-55-PM.jpg");
  animation-delay: 18s;
}

@keyframes heroFade {
  0% {
    opacity: 0;
  }

  8% {
    opacity: 1;
  }

  22% {
    opacity: 1;
  }

  30% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

/* @media (prefers-reduced-motion: reduce) {
  .hero-bg-slide {
    animation: none;
    opacity: 0;
  }

  .hero-bg-slide--1 {
    opacity: 1;
  }
} */

/* .hero::after { */
/* a subtle dark gradient at bottom to merge with trust-strip */
/* content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 180px; */
/* top layer: radial dimmer to reduce visibility in the center where text sits,
     then a bottom gradient to smoothly fuse with the trust-strip */
/* background:
    radial-gradient(
      circle at 50% 40%,
      rgba(8, 31, 26, 0.9) 0%,
      rgba(8, 31, 26, 0.7) 28%,
      rgba(8, 31, 26, 0) 60%
    ),
    linear-gradient(180deg, transparent, var(--hero-img-gradient-dark));
  pointer-events: none;
  z-index: 0;
} */

/* .hero-bg-glow {
  position: absolute;
  top: -200px;
  right: -100px;
  width: 800px;
  height: 800px;
  background: radial-gradient(
    ellipse,
    rgba(212, 175, 55, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
  animation: glowPulse 6s ease-in-out infinite;
} */

/* @keyframes glowPulse {
  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
} */

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--border-hover);
  color: var(--gold-light);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 40px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
  /* padding: 20px 14px; */
  /* border-radius: 25px; */
  /* background: #1eb53838; */
  /* border: 1px solid var(--border-hover); */
  /* backdrop-filter: blur(32px); */
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 900px;
  margin-bottom: 40px;
  line-height: 1.8;
  /* padding: 20px 14px; */
  /* border-radius: 25px; */
  /* background: #1eb53838; */
  /* border: 1px solid var(--border-hover); */
  /* backdrop-filter: blur(32px); */
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 60px;
}
/* .hero-stats and related .stat styles removed */

.hero-lines {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1;
}

/* ═══════════════════════════════════════════════
   TRUST STRIP
═══════════════════════════════════════════════ */
.trust-strip {
  position: relative;
  z-index: 2;
  /* background: var(--bg-card); */
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}

.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
}
.trust-item i {
  color: var(--gold);
  font-size: 1.1rem;
}

.trust-sep {
  width: 1px;
  height: 30px;
  background: var(--border);
}

/* ═══════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════ */
.about {
  position: relative;
  z-index: 2;
  min-height: 1000px;
}

/* Fused background image for About section */
.about::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("https://i.postimg.cc/L915PvS8/1781286937630-jpg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 3;
}

.about-visual {
  position: relative;
}

.about-card-wrap {
  position: relative;
  padding: 20px;
}

.about-img-frame {
  background: linear-gradient(135deg, rgba(15, 17, 21, 0.9), #1a1d26);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  /* padding: 28px; */
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card), var(--shadow-gold);
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
}

.about-img-frame::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.about-img-inner {
  width: 100%;
  aspect-ratio: 340 / 420;
  border-radius: 24px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid rgba(212, 175, 55, 0.14);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 16px 40px rgba(0, 0, 0, 0.25);
  position: relative;
}

.about-img-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 12px 30px rgba(0, 0, 0, 0.22);
  pointer-events: none;
}

.about-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.about-badge-card {
  position: absolute;
  bottom: -10px;
  left: 20px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #0f1115;
  padding: 14px 20px;
  border-radius: 14px;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.about-para {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 16px;
  text-shadow: 1px 1px 0px black;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 32px;
  text-shadow: 1px 1px 0px black;
}

.about-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--white);
}
.about-feat i {
  color: var(--gold);
  font-size: 1rem;
}

/* ═══════════════════════════════════════════════
   WHY US
═══════════════════════════════════════════════ */
.why-us {
  position: relative;
  z-index: 2;
  background: rgba(23, 26, 33, 0.5);
}

/* Fused background image for Why Us section */
.why-us::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    /* linear-gradient(
      180deg,
      var(--hero-img-gradient-dark),
      rgba(8, 31, 26, 0.25)
    ), */ url("https://i.postimg.cc/q7gTTGxd/1781286575700-jpg-(1)-(1).webp");
  background-size: cover;
  background-position: center left;
  background-repeat: no-repeat;
  /* background-blend-mode: overlay; */
  /* mix-blend-mode: overlay; */
  /* opacity: 0.5; */
  /* filter: saturate(0.9) contrast(1) blur(0.4px); */
  /* transform: scale(1.02); */
  /* z-index: 1; under content */
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-grid {
  position: relative;
  z-index: 3; /* ensure cards render above the fused background */
}

.why-card {
  /* background: var(--bg-card); */
  /* border: 1px solid var(--border); */
  /* border-radius: var(--radius); */
  padding: 36px 28px;
  /* transition: var(--transition); */
  position: relative;
  overflow: hidden;
}

/* .why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.4s;
} */

/* .why-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card), var(--shadow-gold);
}

.why-card:hover::before {
  transform: scaleX(1);
} */

.why-icon {
  width: 56px;
  height: 56px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.3rem;
  color: var(--gold);
  /* transition: var(--transition); */
  text-shadow: 1px 1px 0px black;
}

/* .why-card:hover .why-icon {
  background: rgba(212, 175, 55, 0.18);
  border-color: var(--border-hover);
} */

.why-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--gold);
  text-shadow: 1px 1px 0px black;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--white);
  line-height: 1.7;
  text-shadow: 1px 1px 0px black;
}

/* ═══════════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════════ */
.services {
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.cat-mobile-image {
  display: none;
}

/* Fused background image for Services section */
.services::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("https://i.postimg.cc/9Cw9sZSt/Whats-App-Image-2026-06-12-at-1-40-57-PM.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.services > .container {
  position: relative;
  z-index: 3;
}

.services-category {
  margin-bottom: 56px;
}

.cat-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.cat-header i {
  width: 44px;
  height: 44px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gold);
  flex-shrink: 0;
  text-shadow: 1px 1px 0px black;
}

.cat-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
  text-shadow: 1px 1px 0px black;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.service-card {
  /* background: var(--bg-card); */
  /* border: 1px solid var(--border); */
  border-radius: var(--radius-sm);
  padding: 12px 20px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to left, var(--gold), var(--gold-light));
  transition: width 0.4s;
}

.service-card:hover {
  border-color: var(--bg);
  background: var(--bg);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.service-card:hover::after {
  width: 100%;
}

.service-card i {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}

.service-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--gold);
  text-shadow: 1px 1px 0px black;
}

.service-card p {
  font-size: 0.85rem;
  color: var(--white);
  line-height: 1.65;
  text-shadow: 1px 1px 0px black;
}

/* ═══════════════════════════════════════════════
   PROCESS
═══════════════════════════════════════════════ */
.process {
  position: relative;
  z-index: 2;
  /* background: rgba(23, 26, 33, 0.5); */
}

.process-mobile-image{
    display:none;
}

.process::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("https://i.postimg.cc/jtQWv870/1781289060702-jpg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* .process > .container {
  margin-top: 1000px;
} */

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 20px;
}

.process-timeline::before {
  content: "";
  position: absolute;
  top: 44px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--gold),
    var(--gold),
    transparent
  );
  opacity: 0.3;
}

.process-step {
  position: relative;
  text-align: center;
  padding: 0 16px;
}

.step-connector {
  position: absolute;
  top: 44px;
  left: -50%;
  right: 50%;
  height: 1px;
  background: var(--border);
  display: none;
}

.step-num {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 12px;
  opacity: 0.7;
  text-shadow: 1px 1px 0px black;
}

.step-icon {
  width: 70px;
  height: 70px;
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 1.4rem;
  color: var(--gold);
  transition: var(--transition);
  position: relative;
  z-index: 2;
}

.process-step:hover .step-icon {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.1);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.25);
  transform: scale(1.1);
}

.step-content h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--white);
  text-shadow: 1px 1px 0px black;
}

.step-content p {
  font-size: 0.85rem;
  color: var(--white);
  line-height: 1.65;
  text-shadow: 1px 1px 0px black;
}

/* ═══════════════════════════════════════════════
   REGISTRATION
═══════════════════════════════════════════════ */
.registration {
  position: relative;
  z-index: 2;
}

.reg-mobile-image{
    display:none;
}

/* Fused background image for Registration section */
.registration::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    /* linear-gradient(
      180deg,
      var(--hero-img-gradient-dark),
      rgba(8, 31, 26, 0.25)
    ), */ url("https://i.postimg.cc/LRJz8Rrc/1781287910627-jpg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* background-blend-mode: overlay; */
  /* mix-blend-mode: overlay; */
  /* opacity: 0.5; */
  /* filter: saturate(0.9) contrast(1) blur(0.4px); */
  /* transform: scale(1.02); */
  /* z-index: 1; */
}

.reg-wrap {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}

.reg-wrap {
  position: relative;
  z-index: 3; /* ensure registration content appears above the fused background */
}

/* Registration subtitle and logos */
.reg-subtitle {
  font-size: 1.05rem;
  color: var(--white);
  text-align: center;
  max-width: 760px;
  margin: 12px auto 8px;
  text-shadow: 1px 1px 0px black;
}

.reg-logos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 800px;
  margin: 800px auto 0;
  padding: 14px;
  direction: rtl; /* ensure logos appear right-to-left */
  /* background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08),
    rgba(212, 175, 55, 0.04)
  ); */
  /* border: 1px solid rgba(212, 175, 55, 0.2); */
  /* border-radius: 20px; */
  /* box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22); */
  /* backdrop-filter: blur(12px); */
}

.reg-logo {
  width: 100%;
  height: 120px;
  padding: 18px 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 14px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.35),
    0 10px 26px rgba(0, 0, 0, 0.18);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    filter 0.25s ease;
  object-fit: contain;
}
.reg-logo:hover {
  transform: translateY(-4px) scale(1.02);
  filter: brightness(1.05);
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.45),
    0 16px 34px rgba(0, 0, 0, 0.25),
    0 0 22px rgba(212, 175, 55, 0.15);
}

.services-mobile-bg {
  display: none;
}

.reg-card {
  width: 100%;
  max-width: 800px;
  /* background: linear-gradient(135deg, var(--bg-card), #1a1e28); */
  /* border: 1px solid var(--border-hover); */
  /* border-radius: 24px; */
  padding: 48px;
  display: flex;
  gap: 32px;
  align-items: flex-start;
  position: relative;
  /* overflow: hidden; */
  /* box-shadow: var(--shadow-card), var(--shadow-gold); */
}

.reg-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold),
    var(--gold-light),
    var(--gold),
    transparent
  );
}

.reg-icon-wrap {
  width: 70px;
  height: 70px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--border-hover);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--gold);
  flex-shrink: 0;
  text-shadow: 1px 1px 0px black;
}

.reg-content {
  flex: 1;
}

.reg-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--gold-light);
  text-shadow: 1px 1px 0px black;
}

.reg-content p {
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.75;
  text-shadow: 1px 1px 0px black;
}

.reg-number-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  /* background: rgba(212, 175, 55, 0.06); */
  /* border: 1px solid var(--border); */
  /* border-radius: 12px; */
  padding: 14px 20px;
}

.reg-label {
  font-size: 0.85rem;
  color: var(--gold);
  text-shadow: 1px 1px 0px black;
  font-weight: 500;
}

.reg-num {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 3px;
  /* background: linear-gradient(135deg, var(--gold), var(--gold-light)); */
  color: var(--white);
  /* -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; */
  font-family: monospace;
  text-shadow: 1px 1px 0px black;
}

.reg-seal {
  width: 100px;
  flex-shrink: 0;
  animation: sealRotate 20s linear infinite;
}

@keyframes sealRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.reg-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.reg-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  /* background: var(--bg-card); */
  /* border: 1px solid var(--border); */
  /* border-radius: 30px; */
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  transition: var(--transition);
  text-shadow: 1px 1px 0px black;
}
.reg-badge i {
  color: var(--gold);
  text-shadow: 1px 1px 0px black;
}
.reg-badge:hover {
  border-color: var(--border-hover);
  color: var(--white);
}

/* ═══════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════ */
.contact {
  position: relative;
  z-index: 2;
  /* background: rgba(23, 26, 33, 0.5); */
}

/* Fused background image for Contact section */
.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    /* linear-gradient(
      180deg,
      var(--hero-img-gradient-dark),
      rgba(8, 31, 26, 0.25)
    ), */ url("https://i.postimg.cc/rpq3gw3J/Whats-App-Image-2026-06-12-at-1-40-56-PM-(1).jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* background-blend-mode: overlay; */
  /* mix-blend-mode: overlay; */
  /* opacity: 0.5; */
  /* filter: saturate(0.9) contrast(1) blur(0.4px); */
  /* transform: scale(1.02); */
  /* z-index: 1; */
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.contact-grid {
  position: relative;
  z-index: 3; /* ensure contact content appears above the fused background */
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  /* background: var(--bg-card); */
  /* border: 1px solid var(--border); */
  /* border-radius: var(--radius-sm); */
  padding: 18px 20px;
  transition: var(--transition);
  color: var(--muted);
  text-decoration: none;
}

/* .contact-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  transform: translateX(-4px);
  color: var(--white);
} */

.contact-card-wa .cc-icon {
  background: rgba(37, 211, 102, 0.12);
  color: #25d366;
  border-color: rgba(37, 211, 102, 0.25);
}
.contact-card-wa:hover {
  border-color: rgba(37, 211, 102, 0.4);
}

.cc-icon {
  width: 46px;
  height: 46px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gold);
  flex-shrink: 0;
  text-shadow: 1px 1px 0px black;
}

.cc-label {
  display: block;
  font-size: 0.75rem;
  color: var(--white);
  text-shadow: 1px 1px 0px black;
  margin-bottom: 3px;
}

.cc-val {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  text-shadow: 1px 1px 0px black;
}

/* FORM */

.contact-form {
  /* background: var(--bg-card); */
  /* border: 1px solid var(--border); */
  /* border-radius: 24px; */
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.contact-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.contact-form h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 28px;
  color: var(--gold);
  text-shadow: 1px 1px 0px black;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  text-shadow: 1px 1px 0px black;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  font-family: var(--font-main);
  font-size: 0.95rem;
  color: var(--white);
  transition: var(--transition);
  outline: none;
  appearance: none;
  box-shadow: 0.5px 0.5px gold;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--white);
  text-shadow: 1px 1px 0px black;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.04);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.08);
}

.form-group select option {
  background: #1a1d26;
}

.form-group textarea {
  resize: vertical;
}

.form-success {
  display: none;
  margin-top: 16px;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.3);
  border-radius: 10px;
  padding: 14px 18px;
  color: #25d366;
  font-size: 0.9rem;
  font-weight: 600;
  align-items: center;
  gap: 10px;
}
.form-success.show {
  display: flex;
}

/* ═══════════════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════════════ */
.cta-section {
  position: relative;
  z-index: 2;
  padding: 100px 0;
  overflow: hidden;
}

.cta-mobile-image{
    display:none;
}

.cta-bg-effect {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 80% 60% at 50% 50%,
      rgba(212, 175, 55, 0.07) 0%,
      transparent 70%
    ),
    linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.04), transparent);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-inner {
  position: relative;
  z-index: 3; /* above the background image */
  text-align: center;
  display: flex;
  justify-content: flex-end;
  flex-wrap: nowrap;
  flex-direction: column;
  /* min-height: 450px; */
}

/* Hero image fused with canvas/textures: low-opacity, blended, and dark-gradient overlay */
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    /* linear-gradient(
      180deg,
      var(--hero-img-gradient-dark),
      rgba(8, 31, 26, 0.25)
    ), */ url("https://i.postimg.cc/8kKsN8tV/Whats-App-Image-2026-06-12-at-1-40-55-PM-(2).webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* background-blend-mode: overlay; */
  /* mix-blend-mode: overlay; */
  /* opacity: 0.5; low opacity to subtly fuse with canvas/textures */
  /* filter: saturate(0.9) contrast(1) blur(0.4px); */
  /* transform: scale(1.02); */
  /* z-index: 1; place under .cta-inner but above page canvas (which is z-index:0) */
}

.cta-icon {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 24px;
  display: block;
  opacity: 0.8;
  text-shadow: 1px 1px 0px black;
}

.cta-inner h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-inner p {
  font-size: 1.05rem;
  color: var(--white);
  text-shadow: 1px 1px 0px black;
  max-width: 560px;
  margin: 0 auto 40px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.footer {
  position: relative;
  z-index: 2;
  /* background: var(--bg-card); */
  border-top: 1px solid var(--border);
  padding-top: 60px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 16px;
  line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.footer-links a {
  display: block;
  font-size: 0.9rem;
  color: var(--muted);
  padding: 5px 0;
  transition: var(--transition);
}
.footer-links a:hover {
  color: var(--gold);
  transform: translateX(-4px);
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--muted);
  padding: 5px 0;
}
.footer-contact i {
  color: var(--gold);
  width: 16px;
}

.footer-bottom {
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--muted-dark);
}

/* ═══════════════════════════════════════════════
   WHATSAPP FLOAT
═══════════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  z-index: 999;
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  text-decoration: none;
}

.wa-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 10px 35px rgba(37, 211, 102, 0.55);
}

.wa-float::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.3);
  animation: waPulse 2s ease-in-out infinite;
}

@keyframes waPulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.wa-tooltip {
  position: absolute;
  left: calc(100% + 12px);
  background: #1a1d26;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 8px;
  white-space: nowrap;
  border: 1px solid var(--border);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  font-family: var(--font-main);
}

.wa-float:hover .wa-tooltip {
  opacity: 1;
}

/* ═══════════════════════════════════════════════
   SCROLL TO TOP
═══════════════════════════════════════════════ */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--gold);
  font-size: 1rem;
  cursor: pointer;
  z-index: 999;
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.scroll-top:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--border-hover);
  transform: translateY(-3px);
}

/* ═══════════════════════════════════════════════
   REVEAL ANIMATION
═══════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger for grid children */
.why-grid .why-card:nth-child(1),
.services-grid .service-card:nth-child(1) {
  transition-delay: 0.1s;
}
.why-grid .why-card:nth-child(2),
.services-grid .service-card:nth-child(2) {
  transition-delay: 0.2s;
}
.why-grid .why-card:nth-child(3),
.services-grid .service-card:nth-child(3) {
  transition-delay: 0.3s;
}
.why-grid .why-card:nth-child(4),
.services-grid .service-card:nth-child(4) {
  transition-delay: 0.4s;
}
.why-grid .why-card:nth-child(5) {
  transition-delay: 0.5s;
}
.why-grid .why-card:nth-child(6) {
  transition-delay: 0.6s;
}

.process-step:nth-child(1) {
  transition-delay: 0.1s;
}
.process-step:nth-child(2) {
  transition-delay: 0.25s;
}
.process-step:nth-child(3) {
  transition-delay: 0.4s;
}
.process-step:nth-child(4) {
  transition-delay: 0.55s;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-visual {
    max-width: 500px;
    margin: 0 auto;
    /* margin-top: 500px; */
  }
  .why-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .process-timeline {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .process-timeline::before {
    display: none;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-bg-slide {
    background-size: contain;
  }
  .reg-logos {
    gap: 12px;
    padding: 12px;
  }
  .reg-logo {
    height: 92px;
    padding: 14px 16px;
  }

  .about {
    min-height: 800px;
  }

  /* .section-pad {
    padding: 70px 0;
  } */

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(15, 17, 21, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 32px;
    gap: 8px;
    border-left: 1px solid var(--border);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 90;
  }

  .nav-links.open {
    right: 0;
  }
  .nav-links a {
    width: 100%;
    font-size: 1rem;
    padding: 12px 16px;
  }
  .hamburger {
    display: flex;
  }

  .hero {
    padding: 120px 0 60px;
    min-height: 800px;
  }
  /* hero-stats responsive styles removed */

  .why-grid {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }

  

  .process::before {
    /* content: ""; */
    display: none;
    /* position: absolute;
    inset: 0;
    pointer-events: none;

    background-image:
      url("https://i.postimg.cc/jtQWv870/1781289060702-jpg.jpg"),
      url("https://i.postimg.cc/90kM3c5L/Whats-App-Image-2026-06-29-at-12-013-55-AM1.jpg");

    background-size: contain, contain;

    background-repeat: no-repeat, no-repeat;

    background-position:
      center 35%,
      center 90%; */
  }

  /* .process-timeline {
    grid-template-columns: 1fr;
  } */

  .process-mobile-image{
    display:block;

    width:100vw;

    margin-right:calc(50% - 50vw);
    margin-left:calc(50% - 50vw);

    margin-top:28px;
}

.process-mobile-image img{
    display:block;
    width:100%;
    height:auto;
}

  .reg-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 24px;
  }
  .reg-seal {
    display: none;
  }
  .reg-number-wrap {
    justify-content: center;
  }

  .reg-logos {
    margin-top: 0px;
  }

  .registration::before {
    display: none;
    /* content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
      url(https://i.postimg.cc/LRJz8Rrc/1781287910627-jpg.jpg),
      url(https://i.postimg.cc/yxxdrk5F/Whats-App-Image-2026-06-29-at-12-03-55-AM1.jpg);
    background-size: contain, contain, contain, contain;
    background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
    background-position:
      center 60%,
      center 95%,
    center 115%,
      center 105%; */
  }

    .reg-mobile-image{
    display:block;

    width:100vw;

    margin-right:calc(50% - 50vw);
    margin-left:calc(50% - 50vw);

    margin-top:28px;
}

.reg-mobile-image img{
    display:block;
    width:100%;
    height:auto;
}

  .contact::before {
    display: none;
    /* content: ""; */
    /* position: absolute;
    inset: 0;
    pointer-events: none;

    background-image:
      url("https://i.postimg.cc/qqFRfpVc/Whats-App-Image-2026-06-29-at-12-03-3561-AM.jpg"),
      url("https://i.postimg.cc/L5WXdmKD/Whats-App-Image-2026-06-29-at-12-03-54566-AM.jpg"),
      url("https://i.postimg.cc/XqqJDphy/Whats-App-Image-2026-06-29-at-12-03-55-1AM.jpg");

    background-size: contain, contain, contain;
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-position:
      center 24%,
      center 55%,
      center 81%; */
  }

  .form-row {
    grid-template-columns: 1fr;
  }
  .contact-form {
    padding: 28px 20px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .trust-inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .trust-sep {
    width: 60px;
    height: 1px;
  }

  /* إلغاء الخلفية القديمة للموبايل */
  .services::before {
    display: none;
  }

  .cat-mobile-image{
    display:block;
    width:100vw;

    margin-right:calc(50% - 50vw);
    margin-left:calc(50% - 50vw);

    margin-top:20px;
    margin-bottom:24px;
}

.cat-mobile-image img{
    display:block;
    width:100%;
    height:auto;
}

  /* .services-mobile-bg {
    position: absolute;
    inset: 0;
    z-index: 0;

    display: flex;
    flex-direction: column;
  }

  .services-mobile-bg-img {
    flex: 1;
    min-height: 320px;

    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;

    background-color: #0b0f14;
  } */

  /* .img-1 {
    background-image: url("https://i.postimg.cc/9Cw9sZSt/Whats-App-Image-2026-06-12-at-1-40-57-PM.webp");
  }

  .img-2 {
    background-image: url("https://i.postimg.cc/Lm2Ppdp1/Whats-App-Image-2026-06-12-at-1-40-55-PM-(4).jpg");
  }

  .img-3 {
    background-image: url("https://i.postimg.cc/3Y9qby48/1781284804214-jpg-(1).webp");
  }

  .img-4 {
    background-image: url("https://i.postimg.cc/YtMFHcH7/1781285815558-jpg.jpg");
  }

  .img-5 {
    background-image: url("https://i.postimg.cc/SQSzMKgP/Whats-App-Image-2026-06-29-at-12-03-3561-AM.jpg");
  } */

  /* .img-6 {
    background-image: url("https://i.postimg.cc/PJGC8N8P/Whats-App-Image-2026-06-12-at-1-40-57-PM-(2).jpg");
  }

  .img-7 {
    background-image: url("https://i.postimg.cc/BbWj1t16/Whats-App-Image-2026-06-12-at-1-40-57-PM-(3).jpg");
  }

  .img-8 {
    background-image: url("https://i.postimg.cc/prNmnyn9/Whats-App-Image-2026-06-12-at-1-40-57-PM-(4).jpg");
  } */

  .services > .container {
    position: relative;
    z-index: 5;
  }

  .cta-section::before {
    display: none;
  }

   .cta-mobile-image{
    display:block;

    width:100vw;

    margin-right:calc(50% - 50vw);
    margin-left:calc(50% - 50vw);

    margin-top:28px;
}

.cta-mobile-image img{
    display:block;
    width:100%;
    height:auto;
}
}

@media (max-width: 480px) {
  .reg-logos {
    grid-template-columns: 1fr;
    max-width: 100%;
    gap: 10px;
  }
  .reg-logo {
    height: 104px;
    padding: 16px 22px;
  }
  .reg-subtitle {
    font-size: 0.98rem;
  }

  .hero-title {
    font-size: 2rem;
  }
  .hero-actions {
    flex-direction: column;
    margin-top: 600px;
  }
  .btn {
    width: 100%;
    justify-content: center;
  }
  .about-features {
    grid-template-columns: 1fr;
  }
  /* hero-stats responsive styles removed */
  .reg-badges {
    flex-direction: column;
    align-items: center;
  }
}
