:root {
  --navy: #0e2a4d;
  --navy-2: #123057;
  --navy-deep: #081b33;
  --blue: #1f7bc9;
  --blue-soft: #eaf4fc;
  --green: #20ab55;
  --green-dark: #179246;
  --yellow: #f5b429;
  --yellow-dark: #dd9c16;
  --red: #e6483a;
  --ink: #16324f;
  --muted: #5f7185;
  --line: #e3ebf2;
  --white: #fff;
  --radius: 18px;
  --shadow: 0 14px 34px rgba(14, 42, 77, 0.09);
  --container: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Tajawal", sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.75;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 86px 0;
}

.section-alt {
  background: var(--blue-soft);
}

.section-head {
  max-width: 640px;
  margin-bottom: 44px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.tag {
  color: var(--blue);
  font-weight: 800;
  font-size: 0.95rem;
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.section-head.center .tag {
  justify-content: center;
  width: 100%;
}

.tag::before {
  content: "";
  width: 26px;
  height: 3px;
  background: var(--blue);
  border-radius: 3px;
}

h1,
h2,
h3 {
  color: var(--navy);
  font-weight: 800;
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  margin-bottom: 14px;
  line-height: 1.4;
}

.section-desc {
  color: var(--muted);
  font-size: 1.02rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.98rem;
  transition: 0.25s ease;
  white-space: nowrap;
}

.btn-green {
  background: var(--green);
  color: #fff;
  box-shadow: 0 10px 22px rgba(32, 171, 85, 0.28);
}

.btn-green:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}

.btn-blue {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 10px 22px rgba(31, 123, 201, 0.28);
}

.btn-blue:hover {
  background: #17629f;
  transform: translateY(-2px);
}

.btn-outline-white {
  border: 2px solid rgba(255, 255, 255, 0.55);
  color: #fff;
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn-sm {
  padding: 11px 20px;
  font-size: 0.9rem;
}


/* ---------- PHOTO SLOTS ---------- */

.photo-slot {
  border: 2px dashed #b9cee2;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #f4f9fd, #eaf3fb);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #7d97ae;
  gap: 8px;
  text-align: center;
  padding: 18px;
  min-height: 180px;
}

.photo-slot i {
  font-size: 2rem;
  color: #a9c3da;
}

.photo-slot span {
  font-size: 0.82rem;
  font-weight: 700;
}

.photo-slot--dark {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.85);
}

.photo-slot--dark i {
  color: rgba(255, 255, 255, 0.7);
}


/* ---------- HEADER ---------- */

.site-header {
  position: static;
  top: 0;
  z-index: 100;
  background: #fff;
  box-shadow: 0 2px 14px rgba(14, 42, 77, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--navy);
}

.logo-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-weight: 700;
  color: var(--ink);
  font-size: 0.96rem;
}

.nav a {
  position: relative;
  padding: 6px 0;
  color: #33475c;
}

.nav a.active,
.nav a:hover {
  color: var(--blue);
}

.nav a.active::after {
  content: "";
  position: absolute;
  bottom: -4px;
  right: 0;
  left: 0;
  height: 3px;
  background: var(--blue);
  border-radius: 3px;
}

.burger {
  display: none;
  font-size: 1.3rem;
  color: var(--navy);
}


/* ---------- HERO ---------- */

.hero {
  background: linear-gradient(180deg, #fff, #f7fbfe 70%);
  padding: 60px 0 40px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  line-height: 1.45;
}

.hero h1 span {
  display: block;
  color: var(--blue);
  font-size: 0.72em;
  margin-top: 6px;
}

.hero p {
  color: var(--muted);
  margin: 20px 0 22px;
  max-width: 520px;
  font-size: 1.02rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff3da;
  color: var(--yellow-dark);
  border: 1px solid #f6d896;
  padding: 10px 18px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.92rem;
  margin-bottom: 24px;
}

.hero-badge i {
  background: var(--yellow);
  color: #fff;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
 
}

.stat .stat-top {
  font-weight: 900;
  font-size: 1.35rem;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 6px;
}



.stat .stat-top i {
  color: var(--yellow);
  font-size: 1.1rem;
}

.stat span {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 600;
}

.hero-visual {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-blob {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, #dcecfb, transparent 60%),
    radial-gradient(circle at 80% 80%, #e3f8ea, transparent 55%);
  border-radius: 40px;
}

.hero-photo {
  position: relative;
  width: 100%;
  height: 400px;
}

.hero-photo .photo-slot {
  height: 100%;
}

.hero-float {
  position: absolute;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--navy);
}

.hero-float i {
  color: var(--green);
  font-size: 1.1rem;
}

.hero-float.f1 {
  top: 10%;
  right: -4%;
}

.hero-float.f2 {
  bottom: 8%;
  left: -4%;
}


/* ---------- SERVICES ---------- */

.services-wrap {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: start;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px 14px;
  text-align: center;
  transition: 0.25s;
}

.service-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.service-card i {
  font-size: 1.6rem;
  color: var(--blue);
  margin-bottom: 12px;
}

.service-card span {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy);
  display: block;
}

.services-side {
  background: var(--blue-soft);
  border-radius: var(--radius);
  padding: 12px;
  text-align: center;
}

.services-side i {
  font-size: 2.6rem;
  color: var(--blue);
  margin-bottom: 18px;
}

.services-side p {
  color: var(--muted);
  margin-bottom: 18px;
}


/* ---------- PROBLEM / SOLUTION ---------- */

.ps-wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: center;
}

.ps-photo {
  height: 100%;
  min-height: 320px;
}

.ps-photo .photo-slot {
  height: 100%;
}

.ps-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.ps-col h3 {
  font-size: 1.3rem;
  margin-bottom: 18px;
}

.ps-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-weight: 600;
  color: var(--ink);
  font-size: 0.95rem;
}

.ps-list.bad i {
  color: var(--red);
  background: #fdeceb;
}

.ps-list.good i {
  color: var(--green);
  background: #e6f7ec;
}

.ps-list i {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex: none;
  margin-top: 3px;
}

.ps-solution {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
}

.ps-solution h3 {
  font-size: 1.15rem;
  margin-bottom: 18px;
}

.ps-solution .btn {
  margin-top: 16px;
  width: 100%;
  justify-content: center;
}


/* ---------- WHY US ---------- */

.why-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
}

.why-card {
  text-align: center;
}

.why-card i {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: var(--blue-soft);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin: 0 auto 14px;
}

.why-card h4 {
  font-size: 0.98rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.why-card p {
  font-size: 0.82rem;
  color: var(--muted);
}


/* ---------- GALLERY ---------- */

.gallery-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
}

.gallery-track::-webkit-scrollbar {
  height: 8px;
}

.gallery-track::-webkit-scrollbar-thumb {
  background: #cfe0ee;
  border-radius: 10px;
}

.gallery-card {
  scroll-snap-align: start;
  flex: 0 0 320px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}



.gallery-imgs .photo-slot {
  min-height: 170px;
  border-radius: 0;
}

.gallery-imgs .before {
  border-left: 1px solid var(--line);
}

.gallery-caption {
  padding: 16px;
  text-align: center;
  font-weight: 800;
  color: var(--navy);
}

.gallery-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
}

.gallery-nav button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--blue);
  font-size: 1rem;
  box-shadow: var(--shadow);
  transition: 0.25s;
}

.gallery-nav button:hover {
  background: var(--blue);
  color: #fff;
}


/* ---------- HOW IT WORKS ---------- */

.how-wrap {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;
  align-items: center;
}

.how-photo {
  min-height: 360px;
}

.how-photo .photo-slot {
  height: 100%;
}

.how-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.how-step {
  display: flex;
  gap: 18px;
  position: relative;
  padding-bottom: 36px;
}

.how-step:last-child {
  padding-bottom: 0;
}

.how-step::before {
  content: "";
  position: absolute;
  top: 52px;
  bottom: 0;
  right: 25px;
  width: 2px;
  background: repeating-linear-gradient(
    to bottom,
    #cfe0ee 0 6px,
    transparent 6px 12px
  );
}

.how-step:last-child::before {
  display: none;
}

.how-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex: none;
}

.how-step h4 {
  font-size: 1.05rem;
  margin-bottom: 4px;
  color: var(--navy);
}

.how-step p {
  color: var(--muted);
  font-size: 0.9rem;
  max-width: 420px;
}

.how-step .btn {
  margin-top: 14px;
}


/* ---------- PROMO ---------- */

.promo-section {
  padding-top: 0;
}

.promo {
  background: linear-gradient(
    120deg,
    var(--navy-deep),
    var(--navy-2)
  );
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.promo-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
}

.promo-photo {
  min-height: 280px;
}

.promo-photo .photo-slot {
  height: 100%;
  border-radius: 0;
}

.promo-text {
  padding: 46px 44px;
  color: #fff;
}

.promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: #3a2a00;
  font-weight: 800;
  font-size: 0.82rem;
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.promo-text h3 {
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  margin-bottom: 12px;
}

.promo-text p {
  color: #c6d4e5;
  max-width: 440px;
  margin-bottom: 18px;
  font-size: 0.95rem;
}

.promo-loc {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #c6d4e5;
  font-size: 0.85rem;
  margin-bottom: 22px;
}

.promo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}


/* ---------- AREAS ---------- */

.areas {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(
    180deg,
    #123057,
    #0e2a4d
  );
  padding: 56px 44px;
}

.areas-inner {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: center;
}

.areas h3 {
  color: #fff;
  font-size: clamp(1.3rem, 2.6vw, 1.8rem);
  margin-bottom: 12px;
}

.areas p {
  color: #c6d4e5;
  font-size: 0.92rem;
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.area-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  padding: 9px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
}

.area-tag i {
  color: var(--yellow);
  font-size: 0.75rem;
}


/* ---------- TESTIMONIALS ---------- */

.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.test-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}

.stars {
  color: var(--yellow);
  font-size: 0.85rem;
  margin-bottom: 14px;
}

.test-card p {
  color: var(--ink);
  font-size: 0.92rem;
  margin-bottom: 20px;
  min-height: 70px;
}

.test-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.test-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.test-user strong {
  display: block;
  font-size: 0.92rem;
  color: var(--navy);
}

.test-user span {
  font-size: 0.78rem;
  color: var(--muted);
}

.test-score {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 6px;
  font-weight: 800;
  color: var(--navy);
}

.test-score i {
  color: var(--yellow);
}


/* ---------- FAQ ---------- */

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  font-weight: 800;
  color: var(--navy);
  font-size: 0.98rem;
  text-align: right;
}

.faq-q i {
  transition: 0.25s;
  color: var(--blue);
}

.faq-item.open .faq-q i {
  transform: rotate(180deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 22px;
  color: var(--muted);
  font-size: 0.92rem;
}

.faq-item.open .faq-a {
  max-height: 200px;
  padding-bottom: 20px;
}


/* ---------- FOOTER ---------- */

.footer {
  background: linear-gradient(
    180deg,
    #0e2a4d,
    #081b33
  );
  color: #c6d4e5;
  position: relative;
  overflow: hidden;
}

.footer-cta {
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 60px 0;
  text-align: center;
}

.footer-cta .logo {
  justify-content: center;
  color: #fff;
  margin-bottom: 14px;
}

.footer-cta h3 {
  color: #fff;
  font-size: clamp(1.4rem, 2.8vw, 1.9rem);
  margin-bottom: 22px;
}

.footer-cta .hero-actions {
  justify-content: center;
}

.footer-cols {
  padding: 56px 0;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 36px;
}

.footer-cols h5 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 18px;
}

.footer-cols li {
  margin-bottom: 11px;
  font-size: 0.88rem;
  color: #a9bcd0;
}

.footer-cols li i {
  margin-left: 8px;
  color: var(--yellow);
}

.footer-cols li a {
  transition: 0.2s;
}

.footer-cols li a:hover {
  color: #fff;
}

.footer-description {
  font-size: 0.88rem;
  color: #a9bcd0;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: #3a2a00;
  font-weight: 800;
  font-size: 0.8rem;
  padding: 8px 16px;
  border-radius: 50px;
  margin-top: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 0.82rem;
  color: #8fa4bb;
}


/* ---------- RESPONSIVE ---------- */

@media (max-width: 960px) {

  .nav {
    position: absolute;
    top: 82px;
    right: 0;
    left: 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    box-shadow: 0 10px 20px rgba(14, 42, 77, 0.08);
    max-height: 0;
    overflow: hidden;
    transition: 0.3s;
  }

  .nav.open {
    max-height: 400px;
  }

  .nav a {
    width: 100%;
    padding: 14px 24px;
    border-bottom: 1px solid var(--line);
  }

  .header-cta {
    display: none;
  }

  .burger {
    display: block;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
    min-height: 280px;
  }

  .hero-photo {
    height: 260px;
  }

  .hero-float {
    display: none;
  }

  .services-wrap {
    grid-template-columns: 1fr;
  }

  .services-side {
    order: -1;
  }

  .ps-wrap {
    grid-template-columns: 1fr;
  }

  .ps-right {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .how-wrap {
    grid-template-columns: 1fr;
  }

  .how-photo {
    order: -1;
    min-height: 220px;
  }

  .promo-inner {
    grid-template-columns: 1fr;
  }

  .promo-photo {
    min-height: 200px;
  }

  .areas-inner {
    grid-template-columns: 1fr;
  }

  .test-grid {
    grid-template-columns: 1fr;
  }

  .footer-cols {
    grid-template-columns: 1fr 1fr;
    padding : 20px
  }
}


@media (max-width: 640px) {

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}


@media (max-width: 600px) {

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}


@media (max-width: 560px) {

  .hero-actions,
  .promo-actions {
    flex-direction: column;
  }

  .hero-actions .btn,
  .promo-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .footer-cols {
    grid-template-columns: 1fr;
  }

  .areas {
    padding: 40px 24px;
  }

  .promo-text {
    padding: 36px 24px;
  }

}


 

 
/* ===================== STICKY CONTACT BUTTONS ===================== */

.sticky-contact {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sticky-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  min-width: 210px;
  padding: 14px 20px;

  border-radius: 50px;

  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;

  box-shadow: 0 8px 25px rgba(14, 42, 77, 0.2);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.sticky-btn i {
  font-size: 1.25rem;
}

.sticky-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(14, 42, 77, 0.25);
}

.sticky-whatsapp {
  background: #20ab55;
}

.sticky-whatsapp:hover {
  background: #179246;
}

.sticky-call {
  background: #1f7bc9;
}

.sticky-call:hover {
  background: #17629f;
}


/* ===================== MOBILE ===================== */

@media (max-width: 600px) {

  .sticky-contact {
    left: 12px;
    right: 12px;
    bottom: 12px;
    flex-direction: row;
    gap: 10px;
  }

  .sticky-btn {
    min-width: 0;
    flex: 1;
    padding: 13px 12px;
    font-size: 0.78rem;
  }

  .sticky-btn i {
    font-size: 1.1rem;
  }
}




.img-sl{
  width : 100%;
  height : auto;
  border-radius: 12px
}


.img-gallery{
  width: 100%;
  height: 250px
}