/* Google Fonts are loaded from partials/site/head.blade.php to avoid @import CLS. */

:root {
  --main-color: #8cc63f;
  --second-color: #1e753b;
  --third-color: #a4d65e;
  --fourth-color: #7fb041;
  --fifth-color: #f5f5f5;
  --dark-color: #0b0f0c;
  --dark-soft: #121816;
  --background: linear-gradient(to right, #1e753b, #8cc63f);
  --background-btn: linear-gradient(135deg, #1e753b, #8cc63f);
  --background-btn-hover: linear-gradient(-135deg, #1e753b, #8cc63f);
  --white-color: #ffffff;
  --black-color: #000000;
  --placeholder-color: #a1a1a1;
  --text-muted: rgba(255, 255, 255, 0.7);
  --radius-pill: 50px;
  --radius-md: 16px;
  --radius-sm: 10px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
}

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

html,
body {
  scroll-behavior: auto !important;
  overflow-x: hidden;
  font-family: "Cairo", "Poppins", sans-serif !important;
  background: var(--white-color);
  color: var(--dark-color);
}

[dir="rtl"] body {
  font-family: "Cairo", sans-serif !important;
}

/* ==================================================
   BOOTSTRAP 5 RTL UTILITY COMPATIBILITY
   ================================================== */
[dir="rtl"] .text-start {
  text-align: right !important;
}

[dir="rtl"] .text-end {
  text-align: left !important;
}

[dir="rtl"] .text-center {
  text-align: center !important;
}

/* ==================================================
   GLOBAL RTL / DIRECTION POLISH
   ================================================== */
[dir="rtl"] .header-section,
[dir="rtl"] .services-section .header-section,
[dir="rtl"] .projects-section .header-section,
[dir="rtl"] .cta-content,
[dir="rtl"] .about-content-wrap .header-section,
[dir="rtl"] .why-section .header-section,
[dir="rtl"] .blog-header-title,
[dir="rtl"] .footer-brand,
[dir="rtl"] .footer-title,
[dir="rtl"] .footer-list,
[dir="rtl"] .footer-contact {
  text-align: right;
}

[dir="rtl"] .header-section p,
[dir="rtl"] .about-desc,
[dir="rtl"] .service-tab-body p,
[dir="rtl"] .service-detail-intro p {
  text-align: justify;
}

[dir="rtl"] .form-control-custom,
[dir="rtl"] .form-control,
[dir="rtl"] textarea,
[dir="rtl"] input:not([type="checkbox"]):not([type="radio"]),
[dir="rtl"] select {
  /* text-align: right; */
  direction:rtl;
}

[dir="rtl"] .accordion-button::after {
  margin-inline-start: auto;
  margin-inline-end: 0;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-thumb {
  background-color: var(--main-color);
  border-radius: 4px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Cairo", sans-serif !important;
  font-weight: 700;
}

.text-main {
  color: var(--main-color);
}

.text-second {
  color: var(--second-color);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--main-color);
  margin-bottom: 12px;
}

.section-label::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--main-color);
}

/* ================================
   BUTTONS — unified gradient pill
================================ */
:is(
  .btn-main,
  .btn-main-outline,
  .btn-explore,
  .btn-explore.btn-explore-light,
  .btn-send,
  .btn-header-quote,
  .btn-hero-primary,
  .btn-hero-video,
  .btn-all-articles,
  .btn-send-pill,
  .btn-map-pill
) {
  display: inline-flex;
  align-items: center;
  justify-content: space-between !important;
  gap: 12px;
  background: var(--background-btn);
  color: var(--white-color) !important;
  border: none;
  border-radius: var(--radius-pill);
  padding-block: 8px;
  padding-inline-start: 22px;
  padding-inline-end: 22px;
  font-family: "Cairo", sans-serif;
  font-weight: 700;
  font-size: 0.96rem;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(30, 117, 59, 0.32);
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  
  
  
  
  
  
  
  
  
  
  
  
  &:hover {
    background: var(--background-btn-hover);
    color: var(--white-color) !important;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(30, 117, 59, 0.42);
  }

  &:active {
    transform: translateY(-1px);
  }
}

:is(
  .btn-main .btn-main-icon,
  .btn-main-outline .btn-main-icon,
  .btn-explore .btn-explore-icon,
  .btn-send > i,
  .btn-send .btn-icon,
  .btn-send > span:last-child:not(:only-child),
  .btn-header-quote .btn-circle-icon,
  .btn-hero-primary .btn-icon,
  .btn-hero-video .btn-icon,
  .btn-hero-video .play-icon,
  .btn-all-articles .btn-all-articles-icon,
  .btn-send-pill > i,
  .btn-map-pill > i
) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--white-color);
  color: var(--second-color);
  font-size: 0.88rem;
  flex-shrink: 0;
  border: none;
  transition: transform 0.35s ease, background 0.35s ease, color 0.35s ease;
}

:is(.btn-main, .btn-main-outline):hover .btn-main-icon,
.btn-explore:hover .btn-explore-icon,
:is(.btn-hero-primary, .btn-hero-video):hover :is(.btn-icon, .play-icon),
.btn-header-quote:hover .btn-circle-icon,
.btn-all-articles:hover .btn-all-articles-icon,
:is(.btn-send, .btn-send-pill, .btn-map-pill):hover > i,
.btn-send:hover .btn-icon,
.btn-send:hover > span:last-child:not(:only-child) {
  background: var(--white-color);
  color: var(--second-color);
  transform: translateX(-3px);
}

:is(
  .btn-header-quote .btn-text,
  .btn-hero-primary span:not(.btn-icon),
  .btn-hero-video span:not(.btn-icon):not(.play-icon):not(.video-badge),
  .btn-send > span:first-child,
  .btn-send-pill > span,
  .btn-map-pill > span
) {
  color: var(--white-color);
}

.btn-hero-video .video-badge {
  display: none;
}

:is(.btn-hero-primary, .btn-hero-video) {
  font-size: 1.02rem;
  padding-block: 10px;
  padding-inline-start: 24px;
  padding-inline-end: 10px;
}

.btn-send {
  position: relative;
  overflow: hidden;
  letter-spacing: 0.2px;

  > span:last-child:not(:only-child) {
    background: var(--white-color);
    color: var(--second-color);

    i {
      width: auto;
      height: auto;
      background: transparent;
      color: inherit;
      font-size: inherit;
    }
  }
}

.btn-main-outline {
  font-size: 0.92rem;
}

.btn-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 0, 0, 0.2);
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-color);
  transition: all 0.3s ease;
  cursor: pointer;

  &:hover {
    background: var(--main-color);
    border-color: var(--main-color);
    color: var(--white-color);
  }

  &.light {
    border-color: rgba(255, 255, 255, 0.35);
    color: var(--white-color);

    &:hover {
      background: var(--main-color);
      border-color: var(--main-color);
    }
  }
}

.btn-header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 46px;
  padding: 0 18px;
  border-radius: var(--radius-pill);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white-color) !important;
  font-family: "Cairo", sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);

  i {
    color: var(--main-color);
    font-size: 0.85rem;
  }

  &:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--main-color);
    transform: translateY(-2px);
  }
}

.btn-header-phone-mobile {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--background-btn);
  color: var(--white-color) !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  box-shadow: 0 4px 12px rgba(30, 117, 59, 0.25);
}

.btn-header-quote {
  min-height: 46px;
  padding-block: 5px;
  padding-inline-start: 20px;
  padding-inline-end: 5px;
  font-size: 0.9rem;

  .btn-circle-icon {
    width: 36px;
    height: 36px;
    font-size: 0.8rem;
  }
}

.header-section {
  text-align: right;

  :is(.section-label, .section-label-about, .section-label-why) {
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    display: inline-block;
  }

  :is(h2, .section-title) {
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
  }

  p {
    font-size: 1.02rem;
    line-height: 1.6;
    max-width: 540px;
    margin-bottom: 0;
    opacity: 0.82;
  }
}

/*
##################################################
#                  LOADING                       #
##################################################
*/
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--white-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  /* Avoid a long blank filmstrip: fade the splash quickly once paint starts */
  animation: loaderSplashFade 0.01s linear 0.8s forwards;

  .loader-container {
    position: relative;
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  img {
    width: 110px;
    animation: pulseLogo 1.4s ease-in-out infinite;
  }

  &.loaded {
    pointer-events: none;
  }
}

@keyframes loaderSplashFade {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes pulseLogo {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.06);
    opacity: 0.85;
  }
}

/* ##################################################
   #                   NAVBAR                       #
   ################################################## */
.header {
  transition: all 0.35s ease;
  z-index: 1040;

  .navbar {
    padding-block: 16px;
  }

  .navbar .header-container {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
  }

  [dir="rtl"] .navbar .header-container {
    direction: rtl !important;
  }

  [dir="ltr"] .navbar .header-container {
    direction: ltr !important;
  }

  .navbar-brand {
    display: flex;
    align-items: center;
    /* padding: 0; */
    /* margin: 0; */
    
    

    img {
      width: 78px;
      height: auto;
      object-fit: contain;
      filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
    }
  }

  .navbar-nav {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .navbar-nav .nav-link {
    color: var(--white-color);
    font-weight: 600;
    font-size: 1.05rem;
    padding: 8px 16px !important;
    position: relative;
    transition: color 0.3s ease;

    &::after {
      content: "";
      position: absolute;
      bottom: -3px;
      left: 50%;
      transform: translateX(-50%) scaleX(0);
      width: 28px;
      height: 3px;
      border-radius: 3px;
      background: var(--main-color);
      box-shadow: 0 0 10px rgba(140, 198, 63, 0.6);
      transition: transform 0.3s ease;
    }

    &:hover,
    &.active {
      color: #ffffff;

      &::after {
        transform: translateX(-50%) scaleX(1);
      }
    }
  }

  .navbar-toggler i {
    color: var(--white-color);
  }

  .header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
  }

}

/* ==================================================
   MOBILE OFFCANVAS MENU
   ================================================== */
.offcanvas#mobileMenu {
  background-color: #ffffff !important;
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.25) !important;
  z-index: 1060 !important;
  width: 320px !important;
  max-width: 85vw !important;

  .offcanvas-header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 16px 20px !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
    direction: rtl !important;
    width: 100% !important;

    .navbar-brand {
      margin: 0 !important;
      padding: 0 !important;
      display: flex !important;
      align-items: center !important;

      img {
        width: 120px !important;
        max-height: 48px !important;
        height: auto !important;
        filter: none !important;
        object-fit: contain !important;
      }
    }

    .btn-close {
      margin: 0 !important;
      filter: none !important;
      opacity: 0.7 !important;
      font-size: 1rem !important;
      padding: 8px !important;
      transition: opacity 0.2s ease, transform 0.2s ease !important;

      &:hover {
        opacity: 1 !important;
        transform: rotate(90deg) !important;
      }
    }
  }

  .offcanvas-body {
    padding: 20px !important;
    display: flex !important;
    flex-direction: column !important;
    text-align: right !important;
  }

  .navbar-nav {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    text-align: right !important;
    width: 100% !important;
    gap: 4px !important;
    margin: 0 !important;
    padding: 0 !important;

    .nav-item {
      width: 100% !important;
      text-align: right !important;
      list-style: none !important;
    }

    .nav-link {
      color: #1e753b !important;
      font-weight: 700 !important;
      font-size: 1.05rem !important;
      line-height: 36px !important;
      padding: 8px 14px !important;
      border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
      display: flex !important;
      align-items: center !important;
      justify-content: flex-start !important;
      text-align: right !important;
      width: 100% !important;
      border-radius: 8px !important;
      transition: all 0.25s ease !important;

      &::after {
        display: none !important;
      }

      &:hover,
      &.active {
        color: #8cc63f !important;
        background: rgba(140, 198, 63, 0.1) !important;
        padding-inline-start: 20px !important;
      }
    }
  }

  .btn-send {
    background: linear-gradient(135deg, #1e753b, #8cc63f) !important;
    color: #ffffff !important;
    border-radius: 50px !important;
    padding: 24px !important;
    font-weight: 700 !important;
    font-size: 0.98rem !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    margin-top: 22px !important;
    width: 100% !important;
    text-decoration: none !important;
    box-shadow: 0 4px 14px rgba(30, 117, 59, 0.25) !important;
    transition: all 0.3s ease !important;
    border: none !important;

    &:hover {
      transform: translateY(-2px) !important;
      box-shadow: 0 6px 20px rgba(30, 117, 59, 0.35) !important;
      color: #ffffff !important;
    }
  }

  .list-contact {
    background: #f8faf8 !important;
    border: 1px solid rgba(30, 117, 59, 0.12) !important;
    border-radius: 10px !important;
    padding: 16px 18px !important;
    margin-top: 22px !important;
    text-align: right !important;

    strong {
      color: #1e753b !important;
      display: block !important;
      font-size: 0.86rem !important;
      margin-bottom: 3px !important;
    }

    a,
    span {
      color: #3f5549 !important;
      font-size: 0.92rem !important;
      text-decoration: none !important;
      transition: color 0.2s ease !important;
    }

    a:hover {
      color: #8cc63f !important;
    }
  }

  .header-social {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    margin-top: 18px !important;
    padding-top: 16px !important;
    border-top: 1px solid rgba(0, 0, 0, 0.08) !important;

    .social-link {
      background: linear-gradient(135deg, #1e753b, #8cc63f) !important;
      color: #ffffff !important;
      border-radius: 8px !important;
      width: 40px !important;
      height: 40px !important;
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
      font-size: 17px !important;
      text-decoration: none !important;
      transition: all 0.3s ease !important;

      &:hover {
        transform: translateY(-3px) !important;
        box-shadow: 0 4px 12px rgba(30, 117, 59, 0.35) !important;
        color: #ffffff !important;
      }
    }
  }
}

.header.header-main {
  background: transparent;
  box-shadow: none;
}

.header.fixed,
.header.header-main.fixed {
  background: rgba(11, 15, 12, 0.8);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

/* ##################################################
   #                   HERO                         #
   ################################################## */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--dark-color);

  .swiper,
  .swiper-slide {
    height: 100vh;
  }

  .swiper-slide {
    position: relative;

    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center center;
      transform: scale(1.04);
      transform-origin: center center;
      backface-visibility: hidden;
    }

    &::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to left,
          rgba(7, 10, 8, 0.88) 0%,
          rgba(7, 10, 8, 0.65) 45%,
          rgba(7, 10, 8, 0.2) 75%,
          rgba(7, 10, 8, 0.05) 100%);
      z-index: 1;
    }
  }

  [dir="ltr"] .swiper-slide::before {
    background: linear-gradient(to right,
        rgba(7, 10, 8, 0.88) 0%,
        rgba(7, 10, 8, 0.65) 45%,
        rgba(7, 10, 8, 0.2) 75%,
        rgba(7, 10, 8, 0.05) 100%);
  }

  .hero-content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 8% !important;
    left: auto !important;
    z-index: 3;
    max-width: 650px;
    color: var(--white-color);
    text-align: right !important;
    direction: rtl !important;
  }

  [dir="ltr"] .hero-content {
    left: 8% !important;
    right: auto !important;
    text-align: left !important;
    direction: ltr !important;
  }

  .hero-eyebrow {
    color: #cfc18e;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 16px;
    font-family: "Cairo", sans-serif;
  }

  h1,
  .hero-heading {
    font-size: clamp(2.4rem, 4.2vw, 3.8rem);
    line-height: 1.25;
    margin-bottom: 20px;
    font-weight: 800;

    .line-accent {
      color: var(--main-color);
    }
  }

  .hero-text,
  .hero-text p {
    font-size: 1.15rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 34px;
    max-width: 530px;
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
  }

  .hero-meta {
    position: absolute;
    bottom: 45px;
    left: 8% !important;
    right: auto !important;
    z-index: 3;
    display: flex !important;
    align-items: center !important;
    gap: 16px;
    color: var(--white-color);
  }

  [dir="ltr"] .hero-meta {
    left: 8% !important;
    right: auto !important;
  }

  .hero-pagination {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    user-select: none;
    direction: ltr !important;
  }

  .hero-pagination .current {
    color: #ffffff;
    font-size: 1.35rem;
    font-weight: 800;
  }

  .hero-progress {
    width: 130px;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    overflow: hidden;
  }

  .hero-progress span {
    display: block;
    height: 100%;
    width: 33%;
    background: var(--main-color);
    border-radius: 3px;
    transition: width 0.4s ease;
  }

}

.hero-mobile {
  position: relative;
  overflow: hidden;
  background: var(--dark-color);
  min-height: 70vh;

  .swiper,
  .swiper-wrapper,
  .swiper-slide {
    width: 100%;
    height: 70vh;
    min-height: 520px;
  }

  .swiper {
    .swiper-wrapper {
      .swiper-slide {
        position: relative;

        img {
          width: 100%;
          height: 100%;
          object-fit: cover;
        }
      }
    }
  }

  .hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 36px 20px 28px;
    color: var(--white-color);
    z-index: 5;
    text-align: right;
    direction: rtl;
    background: linear-gradient(
      10deg,
      rgba(7, 10, 8, 0.92) 0%,
      rgba(7, 10, 8, 0.7) 45%,
      rgba(7, 10, 8, 0.15) 100%
    );
  }

  [dir="ltr"] .hero-content {
    text-align: left;
    direction: ltr;
  }

  .hero-eyebrow {
    color: #cfc18e;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: "Cairo", sans-serif;
  }

  h1,
  .hero-heading {
    font-size: 1.55rem;
    line-height: 1.35;
    margin-bottom: 12px;
    font-weight: 800;

    .line-accent {
      color: var(--main-color);
    }
  }

  .hero-text,
  .hero-text p {
    font-size: 0.92rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 18px;
  }

  .hero-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    width: 60%;
    
    
    
    
    

    .btn-hero-primary,
    .btn-hero-video {
      /* width: 100%; */
      /* justify-content: space-between; */
    }
  }
}

/* ##################################################
   #                   SERVICES                     #
   ################################################## */
.services-section {
  scroll-margin-top: 85px;

  .header-section {
    .section-label {
      color: #4e825a;
      letter-spacing: 0.5px;

      &::before {
        display: none !important;
      }
    }

    h2 {
      font-size: clamp(1.85rem, 2.5vw, 2.6rem);
      color: #0e2017;
      line-height: 1.25;
    }

    p {
      color: #496356;
      line-height: 1.65;
      max-width: 540px;
    }
  }

  .service-card {
    height: 520px;
    border-radius: 16px;
    transform: skewX(-6.5deg);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
    transition: transform 0.4s ease, box-shadow 0.4s ease;

    .service-image {
      height: 100%;
      z-index: 1;

      img {
        object-position: top center;
        transform: skewX(6.5deg) scale(1.3);
        transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
      }
    }

    .service-body {
      height: 325px;
      clip-path: polygon(0 0, 100% 40%, 100% 100%, 0 100%);
      background: linear-gradient(180deg, rgba(8, 22, 14, 0.4) 0%, rgba(4, 11, 7, 1) 100%);
      padding: 80px 18px 24px;
      z-index: 2;

      &::before {
        content: "";
        position: absolute;
        inset-inline: 0;
        top: 0;
        height: 40%;
        background: linear-gradient(
          to top right,
          transparent calc(50% - 2px),
          rgba(140, 198, 63, 0.45) calc(50% - 2px),
          #8cc63f 50%,
          transparent calc(50% + 2px)
        );
        filter: drop-shadow(0 0 5px rgba(140, 198, 63, 0.75));
        pointer-events: none;
        z-index: 1;
      }

      :is(.service-icon, h4, p, .btn-main-outline) {
        position: relative;
        z-index: 2;
        transform: skewX(6.5deg);
      }

      .service-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 14px;

        svg {
          stroke: #8cc63f;
          transition: transform 0.3s ease;
        }
      }

      h4 {
        color: #fff;
        font-size: 1.15rem;
        line-height: 1.35;
      }

      p {
        color: rgba(255, 255, 255, 0.76);
        font-size: 0.84rem;
        line-height: 1.6;
        max-width: 95%;
      }

      .btn-main-outline {
        align-self: center;
        font-size: 0.88rem;
        padding-inline-end:8px;
      }
    }

    &:hover {
      transform: skewX(-6.5deg) translateY(-8px);
      box-shadow: 0 24px 48px rgba(0, 0, 0, 0.28);

      .service-image img {
        transform: skewX(6.5deg) scale(1.25);
      }

      .service-icon svg {
        transform: scale(1.1);
      }

      .btn-main-outline {
        background: var(--main-color);
        color: var(--white-color) !important;

        .btn-main-icon {
          background: var(--white-color);
          color: var(--main-color);
        }
      }
    }
  }
}

/* ##################################################
   #                   PROJECTS                     #
   ################################################## */
.projects-section {
  color: var(--white-color);
  scroll-margin-top: 85px;

  .header-section {
    .section-label {
      color: #8cc63f;
      letter-spacing: 0.5px;

      &::before {
        display: none !important;
      }
    }

    h2 {
      font-size: clamp(1.85rem, 2.5vw, 2.6rem);
      color: #fff;
      line-height: 1.25;
    }

    p {
      color: rgba(255, 255, 255, 0.8);
      line-height: 1.65;
      max-width: 540px;
    }
  }

  .projects-nav .btn-circle.light {
    width: 44px;
    height: 44px;
    border: 1.5px solid rgba(255, 255, 255, 0.28);
    color: #fff;

    &:hover {
      border-color: #8cc63f;
      background: #8cc63f;
      color: #050d09;
    }
  }

  .project-card {
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: #06110b;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.26);
    transition: border-color 0.4s ease, box-shadow 0.4s ease;

    &.card-landscape,
    &.card-padel {
      height: 250px;
    }

    &.card-track {
      height: 350px;
    }

    &.card-stadium {
      min-height: 524px;

      .project-meta h4 {
        font-size: 1.45rem;
      }
    }

    img {
      transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
    }

    &::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(3, 10, 6, 0.94) 0%, rgba(3, 10, 6, 0.45) 45%, transparent 75%);
      pointer-events: none;
    }

    .card-badge {
      width: 36px;
      height: 36px;
      background: rgba(0, 0, 0, 0.45);
      backdrop-filter: blur(6px);
      border: 1px solid rgba(255, 255, 255, 0.25);
      color: rgba(255, 255, 255, 0.85);
      font-size: 0.82rem;
      z-index: 2;
    }

    .project-info {
      z-index: 2;

      h4 {
        font-size: 1.25rem;
        font-weight: 700;
        line-height: 1.3;
      }

      .project-location {
        font-size: 0.88rem;
        color: rgba(255, 255, 255, 0.8);

        i {
          color: #8cc63f;
        }
      }

      .project-arrow-btn {
        width: 42px;
        height: 42px;
        border: 1.5px solid #8cc63f;
        background: rgba(5, 13, 9, 0.72);
        color: #8cc63f;
        transition: 0.25s ease;

        i {
          transition: transform 0.25s ease;
        }
      }
    }

    &:hover {
      border-color: rgba(140, 198, 63, 0.65);
      box-shadow: 0 16px 40px rgba(0, 0, 0, 0.42), 0 0 20px rgba(140, 198, 63, 0.16);

      img {
        transform: scale(1.06);
      }

      .project-arrow-btn {
        background: #8cc63f;
        color: #050d09;

        i {
          transform: translateX(-3px);
        }
      }
    }
  }

  .stats-row {
    border-top: 1px solid rgba(255, 255, 255, 0.12);

    .stat-item {
      padding: 10px 20px;
      border-inline-end: 1px solid rgba(255, 255, 255, 0.12);

      .stat-number {
        font-size: 2.5rem;
        font-weight: 800;
        line-height: 1;
        margin-bottom: 6px;
        font-family: "Poppins", sans-serif;
        letter-spacing: -0.5px;
        direction: ltr;
      }

      .stat-label {
        font-size: 0.92rem;
        color: rgba(255, 255, 255, 0.76);
        font-weight: 600;
      }
    }

    > [class*="col-"]:last-child .stat-item {
      border-inline-end: none;
    }
  }
}

/* ##################################################
   #                   ABOUT                        #
   ################################################## */
.about-section {
  z-index:1;
  .about-bg-accent {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(140, 198, 63, 0.08) 1.2px, transparent 1.2px);
    background-size: 28px 28px;
    pointer-events: none;
    opacity: 0.7;
  }

  .about-main-card {
    background: #fff;
  }

  .about-media {
    min-height: 520px;

    img {
      min-height: 520px;
      object-fit: cover;
    }

    &::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.08) 50%, transparent 100%);
      pointer-events: none;
    }
  }

  .about-play {
    position: absolute;
    bottom: 35px;
    inset-inline-end: 35px;
    z-index: 4;
    color: #fff;
    transition: 0.25s ease;

    .play-btn {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: #fff;
      color: #439335;
      font-size: 1.15rem;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
      transition: 0.25s ease;
      padding-inline-start: 3px;
    }

    .play-text {
      font-size: 1.12rem;
      font-weight: 700;
      text-shadow: 0 2px 8px rgba(0, 0, 0, 0.85);
    }

    &:hover {
      transform: translateY(-2px);

      .play-btn {
        transform: scale(1.08);
        background: #5da438;
        color: #fff;
        box-shadow: 0 0 25px rgba(93, 164, 56, 0.7);
      }
    }
  }

  .about-content-wrap {
    background: #fff;
    min-height: 520px;
    padding: 60px 75px 60px 65px;
    z-index: 3;
  }

  .about-leaf-watermark {
    position: absolute;
    bottom: -15px;
    inset-inline-start: -15px;
    width: 170px;
    height: 170px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.65;

    svg {
      width: 100%;
      height: 100%;
    }
  }

  .about-watermark {
    position: absolute;
    inset-inline-end: 14px;
    top: 50%;
    transform: translateY(-50%);
    writing-mode: vertical-rl;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.25em;
    color: rgba(78, 130, 90, 0.25);
    pointer-events: none;
    white-space: nowrap;
    z-index: 1;
  }

  .about-eyebrow {
    color: #5da438;
    font-size: 0.95rem;
    letter-spacing: 1px;
    z-index: 2;
  }

  .about-heading {
    font-size: clamp(1.9rem, 3vw, 2.85rem);
    color: #0c2114;
    letter-spacing: -0.5px;
    z-index: 2;
  }

  .about-desc {
    font-size: 1.04rem;
    line-height: 1.85;
    color: #486153;
    z-index: 2;

    strong {
      color: #1e753b;
    }
  }

  .value-col {
    .value-icon svg {
      stroke: #5da438;
      transition: transform 0.25s ease;
    }

    h5 {
      font-size: 1.18rem;
      color: #0e2017;
    }

    .value-sub {
      font-size: 0.88rem;
      color: #5d7568;
      white-space: nowrap;
    }

    &:hover .value-icon svg {
      transform: translateY(-3px) scale(1.1);
    }
  }

  .value-divider {
    width: 1px;
    height: 60px;
    background: rgba(14, 32, 23, 0.12);
    flex-shrink: 0;
  }

  .btn-about-pill {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, #3d8b37 0%, #68b43f 100%);
    color: #fff;
    border-radius: 50px;
    padding: 6px 26px 6px 8px;
    box-shadow: 0 8px 24px rgba(61, 139, 55, 0.35);
    transition: 0.25s ease;

    .btn-pill-text {
      font-size: 1rem;
      font-weight: 700;
    }

    .btn-pill-icon {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: var(--white-color);
      color:black;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.25s ease;
    }

    &:hover {
      box-shadow: 0 12px 30px rgba(61, 139, 55, 0.55);
      transform: translateY(-2px);
      color: #fff;

      .btn-pill-icon {
        transform: translateX(-4px);
      }
    }
  }

}

/* ##################################################
   #                   WHY CHOOSE US                #
   ################################################## */
.why-section {
  position: relative;
  color: #ffffff;
  scroll-margin-top: 85px;

  .why-bg-img {
    z-index: 0;
    object-position: center left;
  }

  .why-bg-overlay {
    z-index: 1;
    background:
      linear-gradient(
        to bottom,
        rgba(5, 12, 8, 0.38) 0%,
        rgba(5, 12, 8, 0.65) 55%,
        rgba(4, 9, 6, 0.92) 100%
      ),
      linear-gradient(
        90deg,
        rgba(5, 12, 8, 0.1) 0%,
        rgba(5, 12, 8, 0.55) 40%,
        rgba(5, 12, 8, 0.9) 75%,
        rgba(5, 12, 8, 0.97) 100%
      );
    pointer-events: none;
  }

  > .container-fluid {
    z-index: 2;
  }

  .header-section {
    .section-label-why {
      color: #8cc63f;
      font-size: 0.88rem;
      letter-spacing: 0.5px;
    }

    h2 {
      font-size: clamp(1.85rem, 2.5vw, 2.6rem);
      color: #ffffff;
      letter-spacing: -0.5px;
      line-height: 1.25;
    }

    .why-subtitle {
      color: rgba(255, 255, 255, 0.82);
      font-size: 1.05rem;
    }
  }

  .why-item {
    padding: 12px 16px;
    border-inline-end: 1px solid rgba(255, 255, 255, 0.18);
    transition: transform 0.3s ease;

    .why-icon-wrap svg {
      transition: transform 0.35s ease, stroke 0.35s ease;
    }

    h4 {
      color: #ffffff;
      font-size: 1.15rem;
    }

    p {
      color: rgba(255, 255, 255, 0.72);
      font-size: 0.92rem;
      line-height: 1.6;
    }

    &:hover {
      transform: translateY(-4px);

      .why-icon-wrap svg {
        transform: scale(1.12);
        stroke: #a6e053;
      }
    }
  }

  .why-grid > [class*="col-"]:last-child .why-item {
    border-inline-end: none;
  }
}

/* ##################################################
   #                   PARTNERS                     #
   ################################################## */
.partners-section {
  padding-block: 80px;
  background: var(--white-color);
  text-align: center;

  .header-section {
    margin-bottom: 45px;

    .section-label {
      font-size: 0.88rem;
      font-weight: 700;
      color: #4e825a;
      letter-spacing: 0.5px;
      margin-bottom: 8px;
      display: inline-block;
    }

    h2 {
      font-size: 2.6rem;
      font-weight: 800;
      color: var(--dark-color);
      margin-bottom: 10px;
      line-height: 1.25;
    }

    p {
      font-size: 1.02rem;
      line-height: 1.6;
      margin-inline: auto;
      max-width: 540px;
      margin-bottom: 0;
      color: rgba(0, 0, 0, 0.65);
    }
  }

  .partners-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;

    .partnersSwiper {
      flex: 1;
      overflow: hidden;
    }

    .partner-logo {
      height: 70px;
      display: flex;
      align-items: center;
      justify-content: center;

      opacity: 1;
      transition: all 0.3s ease;

      img {
        max-height: 56px;
        max-width: 120px;
        object-fit: contain;
      }

      &:hover {
        filter: grayscale(0);
        opacity: 1;
      }
    }
  }
}

/* ##################################################
   #                   CTA                          #
   ################################################## */
.cta-section {
  position: relative;
  color: #ffffff;
  overflow: hidden;
  scroll-margin-top: 85px;

  .cta-bg-img {
    z-index: 0;
    object-position: left 75%;
  }

  .cta-bg-overlay {
    z-index: 1;
    background: linear-gradient(
      to right,
      rgba(3, 14, 7, 0.74) 0%,
      rgba(3, 14, 7, 0.52) 42%,
      rgba(3, 14, 7, 0.72) 100%
    );
    pointer-events: none;
  }

  > .container-fluid {
    z-index: 2;
  }

  .cta-content {
    text-align: right;
    max-width: 520px;
    margin-inline-end: 20px;

    h2 {
      font-size: 2.35rem;
      font-weight: 800;
      color: #ffffff;
      margin-bottom: 6px;
      letter-spacing: -0.3px;
      text-align: right;
    }

    .cta-desc {
      color: rgba(255, 255, 255, 0.9);
      font-size: 1.02rem;
      line-height: 1.55;
    }

    .cta-actions {
      margin-top: 22px;
    }
  }

  .cta-contacts-wrap {
    padding-inline-start: 45px;
    border-inline-start: 1px solid rgba(255, 255, 255, 0.22);

    .cta-vertical-divider {
      width: 1px;
      height: 75px;
      background: rgba(255, 255, 255, 0.22);
      flex-shrink: 0;
      margin-inline: 32px;
    }

    .cta-contact-col {
      padding: 0 10px;

      .cta-icon {
        display: flex;
        align-items: center;
        justify-content: center;

        svg {
          transition: transform 0.3s ease;
        }
      }

      .cta-contact-title {
        color: #ffffff;
        font-size: 1.15rem;
        letter-spacing: 0.2px;
      }

      .cta-contact-val {
        color: rgba(255, 255, 255, 0.85);
        font-size: 0.95rem;
        font-weight: 500;
        transition: color 0.3s ease;

        &:hover {
          color: #8cc63f;
        }
      }

      &:hover .cta-icon svg {
        transform: scale(1.12);
      }
    }
  }
}

/* ##################################################
   #                   FOOTER                       #
   ################################################## */
.footer {
  position: relative;
  z-index: 2;
  color: var(--white-color);

  &::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: #050d09a6;
  }

  .footer-logo {
    width: 90px;
    margin-bottom: 14px;
  }

  .brand-name {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--main-color);
    line-height: 1.2;

    span {
      color: var(--second-color);
    }
  }

  .brand-tagline {
    color: var(--fourth-color);
    font-size: 0.85rem;
    margin-bottom: 12px;
  }

  .footer-brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 18px;
  }

  .footer-title {
    font-size: 1.15rem;
    margin-bottom: 22px;
  }

  .footer-list {
    display: grid;
    gap: 12px;

    a {
      color: rgba(255, 255, 255, 0.75);

      &:hover {
        color: var(--main-color);
      }
    }
  }

  .footer-contact {
    display: grid;
    gap: 14px;

    li {
      display: flex;
      align-items: flex-start;
      gap: 10px;

      i {
        color: var(--main-color);
        margin-top: 4px;
      }

      a {
        color: rgba(255, 255, 255, 0.8);

        &:hover {
          color: var(--main-color);
        }
      }
    }
  }

  .footer-social {
    display: flex;
    gap: 10px;
    margin-top: 18px;

    a {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255, 255, 255, 0.8);
      transition: 0.25s ease;

      &:hover {
        background: var(--main-color);
        color: var(--dark-color);
      }
    }
  }

  .footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 36px 0 18px;
  }

  .copyright {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 24px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.88rem;

    a {
      color: rgba(255, 255, 255, 0.75);

      &:hover {
        color: var(--main-color);
      }
    }

    .copyright-links {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
    }
  }
}

.social-icon {
  inset-inline-start: 16px;
  z-index: 1040;
  margin-bottom: 90px;

  .btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--background-btn);
    color: #fff;
    box-shadow: 0 8px 20px rgba(30, 117, 59, 0.35);

    &:hover {
      color: #fff;
      transform: translateY(-2px);
    }
  }
}

.back-to-top {
  position: fixed;
  inset-inline-end: 20px;
  bottom: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--background-btn);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: 0.25s ease;
  box-shadow: 0 8px 20px rgba(30, 117, 59, 0.35);

  &.show {
    opacity: 1;
    visibility: visible;
  }

  &:hover {
    color: #fff;
    transform: translateY(-3px);
  }
}

/* ##################################################
   #                   PAGE HEADER                  #
   ################################################## */
.page-header {
  min-height: 400px;
  color: var(--white-color);

  .page-header-bg {
    z-index: 0;
  }

  &::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse at 50% 40%, rgba(30, 117, 59, 0.28) 0%, transparent 70%),
      linear-gradient(180deg, rgba(6, 17, 11, 0.88) 0%, rgba(4, 11, 7, 0.92) 100%);
    z-index: 1;
  }

  .container {
    position: relative;
    z-index: 2;
  }

  .page-title {
    font-size: clamp(2.2rem, 3.8vw, 3.2rem);
    font-weight: 800;
    color: var(--white-color);
    margin-bottom: 10px;
    line-height: 1.3;
    font-family: "Cairo", sans-serif;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  }

  .page-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.86);
    max-width: 620px;
    margin: 0 auto 16px;
    line-height: 1.75;
    font-family: "Cairo", sans-serif;
  }

  .breadcrumb {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: inline-flex;
    align-items: center;
    padding: 6px 20px;
    border-radius: 50px;
    margin: 0;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    .breadcrumb-item a {
      color: var(--main-color);
      font-weight: 600;
      text-decoration: none;
      font-size: 0.88rem;
      transition: color 0.3s ease;

      &:hover {
        color: var(--third-color);
      }
    }

    .breadcrumb-item,
    .breadcrumb-item.active {
      color: rgba(255, 255, 255, 0.85);
      font-size: 0.88rem;
      font-weight: 600;
    }

    .breadcrumb-item + .breadcrumb-item::before {
      content: "‹";
      color: rgba(255, 255, 255, 0.45);
      font-size: 1.1rem;
      line-height: 1;
      padding: 0 0.5rem;
      float:none !important;
    }
  }
}

/* ##################################################
   #              INNER ABOUT / VISION / MISSION    #
   ################################################## */
.about-section.page-inner,
.mission-section,
.vision-section {
  .header-section {
    text-align: right;

    h2 {
      font-size: 1.15rem !important;
      font-weight: 600 !important;
      color: var(--main-color);
      margin-bottom: 0.5rem;
    }

    h3 {
      font-size: 1.75rem;
      font-weight: 700;
      color: var(--second-color);
      margin-bottom: 1rem;
      line-height: 1.4;
    }

    p {
      opacity: 0.85;
      line-height: 1.9;
    }
  }

  .about-image {
    border-radius: 16px;
    overflow: hidden;

    img {
      object-fit: cover;
      transition: transform 0.5s ease, filter 0.35s ease;
    }

    &:hover img {
      transform: scale(1.08);
      filter: brightness(1.05) saturate(1.1);
    }
  }
}

.about-section.page-inner {
  background: #fff;
}

/* ##################################################
   #              INNER SERVICES / PROJECTS         #
   ################################################## */
.services-section.page-inner {
  .services-grid .service-card {
    height: 520px;
  }

  .service-icon i {
    font-size: 1.7rem;
    color: #8cc63f;
    transform: skewX(6.5deg);
  }
}

.projects-section.page-inner {
  color: var(--white-color);

  .project-tabs {
    .nav-link {
      padding: 10px 26px;
      font-weight: 600;
      color: rgb(136 136 136 / 70%);
      background: transparent;
      border-radius: 0;
      position: relative;

      &::before {
        content: "/";
        position: absolute;
        inset-inline-end: -6px;
        color: inherit;
      }

      &:hover,
      &.active {
        color: var(--main-color);
        background: transparent;
      }
    }

    .nav-item:last-child .nav-link::before {
      display: none;
    }
  }

  .project-card.card-listing {
    height: 320px;
  }
}

/* ##################################################
   #                   SERVICE DETAILS              #
   ################################################## */
.service-details-section {
  .service-main-image {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 16px 40px rgba(11, 26, 16, 0.12);

    img {
      height: 420px;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    &:hover img {
      transform: scale(1.03);
    }
  }

  .service-badge {
    display: inline-flex;
    align-items: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--second-color);
    background: rgba(140, 198, 63, 0.16);
    border: 1px solid rgba(140, 198, 63, 0.3);
    border-radius: 999px;
    padding: 6px 16px;
  }

  .service-detail-intro {
    h2 {
      color: var(--second-color);
      font-weight: 800;
      font-size: clamp(1.75rem, 2.5vw, 2.3rem);
      line-height: 1.35;
    }

    .service-lead {
      font-size: 1.05rem;
      line-height: 1.9;
      color: rgba(11, 15, 12, 0.78);
      max-width: 72ch;
    }
  }

  .service-tabs-shell {
    background: #fff;
    border: 1px solid rgba(30, 117, 59, 0.12);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(11, 26, 16, 0.06);
  }

  .service-tabs-scroll {
    background: #f3f7f4;
    padding: 10px 14px;
    border-bottom: 1px solid rgba(30, 117, 59, 0.1);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .service-detail-tabs {
    flex-wrap: nowrap;
    gap: 8px;
    min-width: max-content;
    border: none;

    .nav-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      border: 1px solid transparent;
      background: transparent;
      color: rgba(11, 15, 12, 0.65);
      font-weight: 700;
      font-size: 0.98rem;
      padding: 12px 24px;
      border-radius: 12px;
      white-space: nowrap;

      &.active {
        color: var(--second-color);
        background: #fff;
        border-color: rgba(30, 117, 59, 0.15);
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);

        i {
          color: var(--main-color);
        }
      }
    }
  }

  .service-tab-content {
    padding: 28px 24px;

    .tab-pane-title,
    .service-block-title {
      font-size: 1.35rem;
      font-weight: 800;
      color: var(--second-color);
      margin-bottom: 14px;
      padding-bottom: 10px;
      position: relative;

      &::after {
        content: "";
        position: absolute;
        bottom: 0;
        inset-inline-start: 0;
        width: 44px;
        height: 3px;
        border-radius: 3px;
        background: var(--background-btn);
      }
    }

    p {
      line-height: 1.9;
      color: rgba(11, 15, 12, 0.82);
    }
  }

  .gallery-item {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 26px rgba(11, 26, 16, 0.08);

    img {
      height: 220px;
      object-fit: cover;
      transition: transform 0.45s ease;
    }

    &:hover img {
      transform: scale(1.05);
    }
  }

  .service-feature-item {
    background: #f8fbf9;
    border: 1px solid rgba(30, 117, 59, 0.1);
    border-radius: 14px;
    padding: 14px 16px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--second-color);
    transition: 0.25s ease;

    &:hover {
      background: #fff;
      border-color: rgba(140, 198, 63, 0.5);
      transform: translateY(-2px);
    }

    .feature-icon {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: rgba(140, 198, 63, 0.2);
      color: var(--main-color);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 0.85rem;
    }
  }

  .service-subcard {
    background: #fff;
    border: 1px solid rgba(30, 117, 59, 0.12);
    border-radius: 14px;
    padding: 18px;
    height: 100%;
    transition: 0.25s ease;

    &:hover {
      transform: translateY(-3px);
      border-color: rgba(140, 198, 63, 0.5);
      box-shadow: 0 12px 26px rgba(30, 117, 59, 0.1);
    }

    .subcard-icon {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      background: rgba(140, 198, 63, 0.14);
      color: var(--main-color);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      margin-bottom: 12px;
    }

    strong {
      display: block;
      color: var(--second-color);
      font-size: 1.02rem;
      margin-bottom: 6px;
    }

    p {
      margin: 0;
      font-size: 0.9rem;
      line-height: 1.7;
      color: rgba(11, 15, 12, 0.72);
    }
  }

  .service-sub-accordion,
  .service-faq-accordion {
    .accordion-item {
      border: 1px solid rgba(30, 117, 59, 0.12);
      border-radius: 14px !important;
      overflow: hidden;
      margin-bottom: 12px;
      background: #fff;
    }

    .accordion-button {
      font-family: "Cairo", sans-serif;
      font-weight: 700;
      color: var(--second-color);
      background: #f8faf8;
      box-shadow: none;

      &:not(.collapsed) {
        background: rgba(140, 198, 63, 0.12);
      }

      &:focus {
        box-shadow: none;
      }
    }

    .accordion-body {
      line-height: 1.85;
      color: rgba(11, 15, 12, 0.82);
    }
  }

  .service-step-card {
    background: #fff;
    border: 1px solid rgba(30, 117, 59, 0.12);
    border-radius: 18px;
    padding: 22px 18px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: 0.25s ease;

    &::before {
      content: "";
      position: absolute;
      top: 0;
      inset-inline: 0;
      height: 4px;
      background: var(--background-btn);
      opacity: 0;
      transition: opacity 0.25s ease;
    }

    &:hover {
      transform: translateY(-4px);
      border-color: rgba(140, 198, 63, 0.5);
      box-shadow: 0 14px 30px rgba(11, 26, 16, 0.09);

      &::before {
        opacity: 1;
      }
    }

    .step-num {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 44px;
      height: 30px;
      padding-inline: 12px;
      border-radius: 999px;
      background: var(--background-btn);
      color: #fff;
      font-weight: 800;
      font-size: 0.85rem;
    }

    .step-icon {
      width: 40px;
      height: 40px;
      border-radius: 12px;
      background: rgba(140, 198, 63, 0.14);
      color: var(--main-color);
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    h5 {
      color: var(--second-color);
      font-weight: 800;
      font-size: 1.05rem;
    }

    p {
      margin: 0;
      font-size: 0.9rem;
      line-height: 1.75;
      color: rgba(11, 15, 12, 0.72);
    }
  }

  .service-aside-sticky {
    position: sticky;
    top: 100px;
  }

  .service-types-sidebar,
  .service-sidebar {
    background: #fff;
    border: 1px solid rgba(30, 117, 59, 0.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);

    h4 {
      color: var(--second-color);
      font-weight: 800;
      padding-bottom: 12px;
      border-bottom: 2px solid rgba(140, 198, 63, 0.2);
    }
  }

  .service-types-list li {
    margin-bottom: 0.7rem;
    background: #f7faf8;
    border: 1px solid rgba(30, 117, 59, 0.08);
    border-radius: 12px;
    transition: 0.25s ease;

    a {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 13px 18px;
      font-weight: 700;
      font-size: 0.94rem;
      color: var(--second-color);
    }

    &:hover {
      background: rgba(140, 198, 63, 0.15);
      transform: translateX(-4px);
    }

    &.active {
      background: var(--background-btn);
      border-color: transparent;
      box-shadow: 0 6px 20px rgba(30, 117, 59, 0.25);

      a {
        color: #fff;
      }
    }

    &:last-child {
      margin-bottom: 0;
    }
  }
}

.contact-quick-form {
  .form-input-wrapper {
    position: relative;

    i {
      position: absolute;
      inset-inline-end: 15px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--main-color);
      font-size: 14px;
      z-index: 2;
    }

    &:has(.form-textarea) i {
      top: 16px;
      transform: none;
    }
  }

  .form-control-custom {
    width: 100%;
    padding-block: 12px;
    padding-inline: 15px 42px;
    border: 2px solid rgba(140, 198, 63, 0.15);
    border-radius: 10px;
    background: var(--white-color);
    color: var(--dark-color);
    font-size: 14px;
    outline: none;
    transition: 0.25s ease;

    &::placeholder {
      color: var(--placeholder-color);
    }

    &:focus {
      border-color: var(--main-color);
      box-shadow: 0 0 0 3px rgba(140, 198, 63, 0.12);
    }
  }

  .form-textarea {
    resize: vertical;
    min-height: 100px;
  }
  button[type="submit"] {
padding-inline-end:8px
  }
}

/* ##################################################
   #                   PROJECT DETAILS              #
   ################################################## */
.project-details-section {
  .project-main-image {
    border-radius: 16px;
    overflow: hidden;

    img {
      height: 460px;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

    &:hover img {
      transform: scale(1.03);
    }

    .swiper-button-next,
    .swiper-button-prev {
      width: 48px;
      height: 48px;
      background: rgba(255, 255, 255, 0.65);
      backdrop-filter: blur(8px);
      color: var(--second-color);
      border-radius: 10px;

      & svg {
        width:25px;
        height:25px;
      }

      &:hover {
        background: var(--second-color);
        color: var(--white-color);
      }
    }

    .swiper-pagination-bullet-active {
      background: var(--main-color);
    }
  }

  .project-info-card,
  .project-sidebar {
    background: var(--white-color);
    border: 1px solid rgba(0, 0, 0, 0.08);

    h2,
    h4 {
      color: var(--second-color);
    }

    .project-subtitle {
      color: var(--placeholder-color);
      font-size: 0.9rem;
      line-height: 1.7;
    }
  }

  .detail-item {
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);

    &:last-child {
      border-bottom: none;
    }

    .detail-icon {
      width: 40px;
      height: 40px;
      background: var(--background-btn);
      border-radius: 10px;
      color: var(--white-color);
      font-size: 15px;
    }

    .detail-label {
      font-size: 12px;
      color: var(--placeholder-color);
    }

    .detail-value {
      font-size: 0.95rem;
      color: var(--dark-color);
      font-weight: 700;
    }
  }

  .project-description {
    h3 {
      color: var(--second-color);
      font-weight: 700;
    }

    p {
      line-height: 1.9;
      color: var(--dark-color);
      opacity: 0.85;
    }
  }

  .section-title {
    color: var(--second-color);
    font-size: 1.05rem;
    font-weight: 700;

    i {
      color: var(--main-color);
    }
  }

  .feature-item {
    gap: 12px;
    padding: 12px 14px;
    background: rgba(140, 198, 63, 0.08);
    border-radius: 8px;
    border-inline-start: 3px solid var(--main-color);
    transition: 0.25s ease;

    &:hover {
      background: rgba(140, 198, 63, 0.14);
      transform: translateX(-4px);
    }

    i {
      color: var(--main-color);
    }

    span {
      font-weight: 600;
      font-size: 0.92rem;
    }
  }
}

/* ##################################################
   #                   BLOG / ARTICLES              #
   ################################################## */
.blog-section {
  background:
    radial-gradient(circle at 15% 20%, rgba(140, 198, 63, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(30, 117, 59, 0.05) 0%, transparent 40%),
    #f8faf8;
  scroll-margin-top: 85px;

  .blog-eyebrow {
    .blog-eyebrow-line {
      width: 26px;
      height: 3px;
      background: var(--main-color);
      border-radius: 3px;
    }

    .blog-eyebrow-text {
      font-size: 0.82rem;
      font-weight: 700;
      letter-spacing: 2px;
      color: #556c5e;
    }
  }

  .blog-main-heading {
    font-size: clamp(1.9rem, 3vw, 2.75rem);
    font-weight: 800;
    color: #0c2515;
    line-height: 1.25;
  }

  .blog-main-subtitle {
    font-size: 0.94rem;
    color: #5d7164;
    max-width: 580px;
  }

  .blog-vertical-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #fff;
    box-shadow: 0 12px 30px rgba(11, 26, 16, 0.12);
    border: 1px solid rgba(30, 117, 59, 0.12);
    transition: transform 0.35s ease, box-shadow 0.35s ease;

    &:hover {
      transform: translateY(-7px);
      box-shadow: 0 20px 42px rgba(11, 26, 16, 0.22);

      .card-bg-img {
        transform: scale(1.08);
      }

      .card-title {
        color: var(--main-color);
      }

      .read-arrow-circle {
        background: var(--main-color);
        color: var(--white-color);
      }
    }

    .blog-date-ribbon {
      position: absolute;
      top: 0;
      inset-inline-start: 18px;
      z-index: 3;
      background: #1e753b;
      border-radius: 0 0 10px 10px;
      padding: 10px 12px 8px;
      text-align: center;
      min-width: 52px;
      line-height: 1.15;
      box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);

      .ribbon-day {
        font-size: 1.35rem;
        font-weight: 900;
        display: block;
      }

      .ribbon-month {
        font-size: 0.72rem;
        font-weight: 700;
        display: block;
      }

      .ribbon-year {
        font-size: 0.65rem;
        opacity: 0.85;
        display: block;
      }
    }

    .card-bg-img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      transition: transform 0.6s ease;
    }

    .card-overlay {
      position: absolute;
      inset: 0;
      z-index: 2;
      background: linear-gradient(
        180deg,
        rgba(4, 14, 8, 0.08) 0%,
        rgba(4, 14, 8, 0.35) 40%,
        rgba(4, 14, 8, 0.88) 68%,
        rgba(2, 10, 5, 0.98) 100%
      );
    }

    .card-content {
      position: relative;
      z-index: 3;
      padding: 22px 18px 18px;
    }

    .card-category-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(8, 24, 15, 0.7);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(140, 198, 63, 0.45);
      border-radius: 50px;
      padding: 4px 12px;
      font-size: 0.76rem;
      font-weight: 700;
      margin-bottom: 12px;

      i {
        color: var(--main-color);
      }
    }

    .card-title {
      font-size: 1.12rem;
      font-weight: 800;
      line-height: 1.45;
      margin-bottom: 8px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      transition: color 0.3s ease;
    }

    .card-desc {
      color: rgba(255, 255, 255, 0.78);
      font-size: 0.82rem;
      line-height: 1.55;
      margin-bottom: 16px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .card-read-more {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.86rem;
      font-weight: 700;

      .read-arrow-circle {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background: #092015;
        border: 1.5px solid rgba(140, 198, 63, 0.45);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 0.75rem;
        transition: 0.25s ease;
      }
    }
  }
}

.blog-details-section {
  scroll-margin-top: 85px;

  .blog-details-image img {
    height: 420px;
  }

  .blog-meta {
    color: rgba(11, 15, 12, 0.65);
    font-size: 0.92rem;

    i {
      color: var(--main-color);
      margin-inline-end: 6px;
    }
  }

  .blog-content {
    h2 {
      font-size: clamp(1.5rem, 2.2vw, 2rem);
      color: var(--dark-color);
      line-height: 1.4;
    }

    p,
    ul {
      color: rgba(11, 15, 12, 0.78);
      line-height: 1.85;
    }

    p {
      margin-bottom: 1rem;
    }

    ul {
      padding-inline-start: 1.2rem;
    }
  }

  .blog-sidebar-card {
    background: #f7faf7;
    border: 1px solid rgba(30, 117, 59, 0.1);
    border-radius: 16px;
    padding: 22px;

    .recent-post {
      color: inherit;

      img {
        width: 72px;
        height: 72px;
        flex-shrink: 0;
      }

      h5 {
        font-size: 0.95rem;
        color: var(--dark-color);
        line-height: 1.4;
      }

      &:hover h5 {
        color: var(--main-color);
      }
    }
  }
}

/* ##################################################
   #                   CONTACT PAGE                   #
   ################################################## */
.contact-main-wrap {
  background: var(--white-color);
}

.court-visual-col {
  min-height: 540px;

  .court-visual-img {
    z-index: 0;
  }

  .court-visual-overlay {
    z-index: 1;
    background: linear-gradient(180deg, transparent 50%, rgba(4, 14, 8, 0.75) 100%);
    pointer-events: none;
  }

  .court-motto-overlay {
    z-index: 2;
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
  }
}

.form-watermark-col {

  .form-heading-title {
    font-size: clamp(1.8rem, 3vw, 2.3rem);
    color: var(--dark-color);
  }

}

.exact-input-wrap,
.exact-textarea-wrap {
  .form-control-exact,
  .form-select.form-control-exact {
    background: #f4f6f5;
    border: 1px solid #e3e8e5;
    border-radius: 10px;
    min-height: 48px;
    font-size: 0.92rem;
    color: var(--dark-color);
    box-shadow: none;

    &:focus {
      background: var(--white-color);
      border-color: var(--main-color);
      box-shadow: 0 0 0 3px rgba(140, 198, 63, 0.18);
    }

    &::placeholder {
      color: #98a2b3;
    }
  }

  .input-field-icon {
    position: absolute;
    inset-inline-start: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #98a2b3;
    font-size: 0.95rem;
    pointer-events: none;
    z-index: 2;
  }

  .form-control-exact,
  .form-select.form-control-exact {
    padding-inline-start: 42px;
  }
}

.exact-textarea-wrap {
  textarea.form-control-exact {
    min-height: 130px;
    resize: none;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .textarea-icon {
    top: 18px;
    transform: none;
  }
}

.exact-phone-group {
  direction: ltr;
  background: #f4f6f5;
  border: 1px solid #e3e8e5;
  border-radius: 10px;
  min-height: 48px;
  transition: all 0.25s ease;

  &:focus-within {
    background: var(--white-color);
    border-color: var(--main-color);
    box-shadow: 0 0 0 3px rgba(140, 198, 63, 0.18);
  }

  .phone-flag-prefix {
    border-inline-end: 1px solid #e3e8e5;
    color: #344054;
    font-size: 0.85rem;
    height: 100%;
  }

  .phone-input-raw {
    flex: 1;
    min-height: 46px;
    font-size: 0.92rem;
  }
}

.contact-info-row-bar {
  .info-col-icon {
    width: 52px;
    height: 52px;
    background: #f1f5f2;
    color: var(--second-color);
    font-size: 1.15rem;
    transition: all 0.3s ease;
  }

  .info-col-item:hover .info-col-icon {
    background: var(--main-color);
    color: var(--white-color);
  }

  .info-col-val {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 4px;
  }

  .info-col-link {
    color: var(--main-color);
    font-size: 0.9rem;

    &:hover {
      color: var(--second-color);
      gap: 0.75rem !important;
    }
  }
}

.contact-map-dark-section {
  background: #08160f;
  color: var(--white-color);

  .map-dark-title {
    font-size: clamp(1.8rem, 3vw, 2.35rem);
  }

  .map-dark-desc {
    max-width: 420px;
    line-height: 1.7;
  }

  .map-visual-frame {
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);

    iframe {
      display: block;
      min-height: 360px;
    }
  }
}

