.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.hero-slides {
  position: absolute; top:0; left:0;
  width:100%; height:100%;
}
.hero-slide {
  position: absolute; top:0; left:0;
  width:100%; height:100%;
  background-size: cover;
  background-position: center;
  opacity:0;
  transform: translateY(20px);
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}
.hero-slide.active {
  opacity:1;
  transform: translateY(0);
}
.hero-slide--1 { background-image: url('../images/hero1.webp?v=1918'); }
.hero-slide--2 { background-image: url('../images/hero2.webp?v=1918'); }
.hero-slide--3 { background-image: url('../images/hero3.webp?v=1918'); }

.hero-slide::before {
  content:"";
  position:absolute;
  inset:0;
  background: rgba(0,0,0,0.4);
  opacity:0;
  transition: opacity 1s ease-in-out;
  z-index:1;
}
.hero-slide.active::before {
  opacity:1;
}

.hero-content {
  position: relative;
  z-index:2;
  width:100%; height:100%;
  display:flex; 
  flex-direction:column;
  align-items:center; 
  justify-content:center;
  text-align:center; 
  color:#fff;
  padding:0 20px;
}
.hero-title {
  font-size:2rem;
  font-weight:700;
  margin-bottom:1rem;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.hero-desc {
  font-size:1.2rem;
  max-width:600px;
  line-height:1.5;
  margin-bottom:1.5rem;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.hero-title.is-changing,
.hero-desc.is-changing {
  opacity: 0;
  transform: translateY(20px);
}
.hero-buttons {
  display:flex; gap:1rem; flex-wrap:wrap; justify-content:center;
}
.hero-button {
  display:inline-block;
  padding:10px 20px;
  font-weight:600;
  border-radius:4px;
  text-decoration:none;
  background-color: #077169;
  color:#ffffff;
  transition: background-color 0.3s;
}
.hero-button:hover {
  background-color: #999;
  color:#fff;
}

@media(max-width:768px) {
  .hero-section {
    height:70vh;
  }
  .hero-title {
    font-size:1.8rem;
  }
  .hero-desc {
    font-size:1.1rem;
  }
}

.about-section {
  width: 100%;
  background-color: #f9f9f9; 
  padding: 60px 20px; 
  direction: rtl; 
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr; 
  gap: 2rem;
  align-items: center; 
}
@media (max-width: 768px) {
  
  .about-grid {
grid-template-columns: 1fr;
text-align: center;
  }
}


.about-col-left {
  display: flex;
  justify-content: center; 
  align-items: center;
}
.about-logo {
  width: min(320px, 80%);
  height: auto;
  display: block;
}

.about-col-right {
  display: flex; 
  flex-direction: column; 
  gap: 1rem; 
  text-align: right; 
}
@media (max-width: 768px) {
  .about-col-right {
text-align: center; 
  }
}

.about-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #076e6a; 
}

.about-desc {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 1rem;
}

.about-buttons {
  display: flex; 
  gap: 1rem;
  flex-wrap: wrap; 
  
}

.about-btn {
  display: inline-block;
  padding: 12px 24px;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  background-color: #076e6a;
  color: #fff;
  transition: background-color 0.3s, transform 0.3s;
}
.about-btn:hover {
  background-color: #0a905a;
  transform: translateY(-2px);
}

.services-wave-section {
  position: relative;
  padding: 100px 20px;
  direction: rtl; 
  text-align: center; 
  overflow: hidden; 
  background: #f9f9f9;
}

.services-wave-top {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  line-height: 0;
  z-index: 1;
}
.services-wave-top svg {
  display: block;
  width: 100%;
  height: auto;
}

.services-wave-bottom {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  line-height: 0;
  z-index: 1;
}
.services-wave-bottom svg {
  display: block;
  width: 100%;
  height: auto;
  transform: rotate(180deg);
}

.services-content-container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding-bottom: 40px;
}

.services-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}
.services-subtitle {
  font-size: 1.2rem;
  line-height: 1.5;
  color: #ffffff;
  margin-bottom: 2.5rem;
}

.services-grid-flag {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(5, 1fr); 
  justify-items: center;
}

@media (max-width: 768px) {
  .services-grid-flag {
grid-template-columns: repeat(2, 1fr); 
gap: 1rem; 
padding: 0 10px; 
width: 100%; 
box-sizing: border-box; 
  }
  
  .service-flag-card {
width: 100%; 
max-width: 160px; 
margin: 0 auto; 
  }
}

.service-flag-card {
  background: #fff;
  width: 220px; 
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  overflow: hidden; 
  position: relative;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.service-flag-card:hover {
  transform: translateY(-4px) scale(1.02) rotate(-0.5deg);
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}
@media (max-width: 768px) {
  .service-flag-card {
width: 180px;
  }
}

.flag-header {
  position: relative;
  background: linear-gradient(90deg, #076e6a, #0a905a);
  height: 80px;
  clip-path: polygon(0 0, 100% 0, 80% 100%, 0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.service-icon {
  font-size: 2rem;
  color: #fff;
  z-index: 2;
}

.flag-body {
  padding: 16px;
}
.flag-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #076e6a; 
  margin-bottom: 0.4rem;
}
.flag-body p {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.4;
}

.service-flag-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(0,0,0,0), rgba(0,0,0,0.15));
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 1;
}
.service-flag-card:hover::before {
  opacity: 0.1;
}

.service-flag-card > * {
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .flag-header {
height: 60px;
  }
  .service-icon {
font-size: 1.8rem;
  }
  .flag-body h3 {
font-size: 0.95rem;
  }
  .flag-body p {
font-size: 0.8rem;
  }
  
  .services-title {
color: #000;
}

  .services-subtitle {
color: #000;
}
}

.vision-wave-section {
  position: relative;
  padding: 80px 20px;
  direction: rtl;
  color: #fff;
  overflow: hidden;
  background: #f9f9f9; 
  text-align: center;
}

.vision-wave-top {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  line-height: 0;
  z-index: 1;
}
.vision-wave-top svg {
  display: block;
  width: 100%;
  height: auto;
}

.vision-wave-bottom {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  line-height: 0;
  z-index: 1;
}
.vision-wave-bottom svg {
  display: block;
  width: 100%;
  height: auto;
  transform: rotate(180deg);
}

.vision-container {
  position: relative;
  z-index: 2; 
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 0; 
}

.benefits-diagonal-section {
  position: relative;
  width: 100%;
  padding: 60px 20px;
  direction: rtl;
  overflow: hidden;
  text-align: center;
}

.benefits-wave-top {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  z-index: 2; 
  line-height: 0;
}
.benefits-wave-top svg {
  display: block;
  width: 100%;
  height: auto;
}

.diagonal-bg {
  position: absolute;
  top: 0; left: 0; 
  width: 100%; height: 100%;
  background: linear-gradient(135deg,
#076e6a 0%,
#0a905a 30%,
#0fad67 70%,
#10d072 100%
  );
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0% 100%);
  z-index: 1;
}

.benefits-wave-bottom {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  z-index: 2;
  line-height: 0;
}
.benefits-wave-bottom svg {
  display: block;
  width: 100%;
  height: auto;
  transform: rotate(180deg);
}

.benefits-diagonal-container {
  position: relative;
  z-index: 3; 
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 0;
}

.benefits-diagonal-title {
  font-size: 2rem;
  font-weight: 700;
  color: #000; 
  margin-bottom: 2rem;
}

.benefits-diagonal-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(4, 1fr);
  justify-items: center;
}

@media (max-width: 768px) {
  .benefits-diagonal-grid {
grid-template-columns: repeat(2, 1fr);
gap: 1rem; 
padding: 0 10px; 
width: 100%;
box-sizing: border-box;
  }
  
  .benefit-glass-card {
width: 100%; 
max-width: 150px; 
margin: 0 auto; 
  }
  
  .benefit-glass-inner {
padding: 15px 10px; 
  }
  
  .benefit-text {
font-size: 0.85rem; 
max-width: 130px; 
  }
}

.benefit-glass-card {
  width: 240px;
  height: 320px;
  perspective: 1000px; 
  display: flex; 
  align-items: center; 
  justify-content: center;
  transform: translateY(30px);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
@media (max-width: 768px) {
  .benefit-glass-card {
width: 180px; 
height: 260px;
  }
}

.benefit-glass-card.fade-up-active {
  transform: translateY(0);
  opacity: 1;
}

.benefit-glass-inner {
  width: 100%; height: 100%;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(6px);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: transform 0.6s ease, box-shadow 0.4s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  transform-style: preserve-3d;
  position: relative;
}

.benefit-glass-card:hover .benefit-glass-inner {
  transform: rotateY(10deg) rotateX(-8deg) translateY(-10px) scale(1.02);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.benefit-glass-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: 
linear-gradient(45deg, rgba(255,255,255,0), rgba(255,255,255,0.2)),
radial-gradient(circle at 20% 20%, rgba(255,255,255,0.15), transparent 50%);
  opacity: 0;
  transition: opacity 0.4s;
  border-radius: 12px;
  z-index: 0;
}
.benefit-glass-card:hover .benefit-glass-inner::before {
  opacity: 1;
}

.benefit-glass-inner > * {
  position: relative;
  z-index: 1;
}

.benefit-icon {
  font-size: 3rem;
  color: #0a905a; 
  margin-bottom: 15px;
  transition: transform 0.3s;
}
.benefit-glass-card:hover .benefit-icon {
  transform: scale(1.15) rotate(-8deg);
}

.benefit-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: #000; 
  margin-bottom: 0.5rem;
}
.benefit-text {
  font-size: 0.95rem;
  line-height: 1.5;
  max-width: 200px;
  margin: 0 auto;
  color: #000; 
  text-align: center;
}

@media (max-width: 768px) {
  .benefit-icon {
font-size: 2.2rem;
  }
  .benefit-name {
font-size: 1.1rem;
  }
  .benefit-text {
font-size: 0.9rem;
max-width: 150px;
  }
}

.projects-section {
  position: relative;
  padding: 60px 20px 80px;
  background: #f9f9f9;
  direction: rtl;
  text-align: center;
  overflow: hidden; 
}
.projects-wave-top {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  line-height: 0;
  z-index: 1;
}

.projects-wave-top svg {
  display: block;
  width: 100%;
  height: auto;
  transform: scale(1); 
  transition: transform 0.4s ease;
}

@media (max-width: 768px) {
  .projects-wave-top svg {
transform: scale(1.1) translateY(-5%);
  }

  
  .projects-title,
  .projects-subtitle {
color: #000 !important;
  }
}

@media (min-width: 992px) {
  .projects-wave-top svg {
transform: scale(0.9);
  }
}

.projects-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}
.projects-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}
.projects-subtitle {
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 2rem;
}

.projects-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  justify-items: center;
}

.project-item {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
  transform: translateY(30px);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.fade-up-active {
  transform: translateY(0);
  opacity: 1;
}

.project-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s;
  border-radius: 6px;
}
.project-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(0,0,0,0), rgba(0,0,0,0.4));
  opacity: 0;
  transition: opacity 0.3s;
}
.project-item:hover::before {
  opacity: 1;
}
.project-item:hover img {
  transform: scale(1.05);
}

.lightbox-overlay {
  position: fixed;
  top:0; left:0; right:0; bottom:0;
  background: rgba(0,0,0,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  z-index: 9999;
}
.lightbox-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.lb-img {
  max-width: 80%;
  max-height: 80%;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
  object-fit: contain;
}

.lb-close {
  position: absolute;
  top: 20px; 
  right: 20px;
  font-size: 2rem;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10001;
  transition: transform 0.3s;
}
.lb-close:hover {
  transform: scale(1.2);
}

.lb-prev,
.lb-next {
  position: absolute;
  font-size: 2rem;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10001;
  transition: transform 0.3s;
}
.lb-prev:hover,
.lb-next:hover {
  transform: scale(1.2);
}
.lb-prev {
  left: 5%;
}
.lb-next {
  right: 5%;
}

.hero-section {
  height: 100vh !important;
  min-height: 560px;
}

.hero-slide::before {
  background: linear-gradient(180deg,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.45) 50%,
    rgba(4, 63, 60, 0.55) 100%) !important;
  opacity: 1 !important;
}

.hero-content {
  direction: rtl;
  padding: 0 24px !important;
}

.hero-title {
  font-size: clamp(1.8rem, 5vw, 3.5rem) !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  margin-bottom: 1.2rem !important;
  max-width: 900px;
}
.hero-desc {
  font-size: clamp(1rem, 2vw, 1.25rem) !important;
  line-height: 1.7 !important;
  max-width: 680px !important;
  margin: 0 auto 2rem !important;
  opacity: 0.95;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
  gap: 14px !important;
  flex-wrap: wrap;
  justify-content: center !important;
}

.hero-button {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  padding: 13px 28px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  border-radius: 999px !important;
  text-decoration: none !important;
  background: linear-gradient(135deg, var(--aj-green) 0%, #14b670 100%) !important;
  color: #fff !important;
  border: 2px solid transparent !important;
  box-shadow: 0 10px 30px rgba(10, 144, 90, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.3s ease !important;
  white-space: nowrap;
}
.hero-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(10, 144, 90, 0.5) !important;
  background: linear-gradient(135deg, #14b670 0%, var(--aj-green) 100%) !important;
  color: #fff !important;
}

.hero-button + .hero-button {
  background: transparent !important;
  border: 2px solid rgba(255, 255, 255, 0.7) !important;
  box-shadow: none !important;
}
.hero-button + .hero-button:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: #fff !important;
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .hero-section { height: 92vh !important; min-height: 520px; }
  .hero-title { font-size: clamp(1.6rem, 7vw, 2.4rem) !important; }
  .hero-desc { font-size: 15px !important; }
  .hero-button { padding: 11px 22px !important; font-size: 14px !important; }
}
@media (max-width: 400px) {
  .hero-buttons { flex-direction: column; width: 100%; }
  .hero-button { width: 100%; justify-content: center; }
}

section.about-section,
section.services-wave-section,
section.vision-wave-section,
section.benefits-diagonal-section,
section.projects-section {
  padding: clamp(60px, 8vw, 100px) 20px !important;
  scroll-margin-top: 80px;
}

.section-title, .about-title, .services-title, .vision-title,
.benefits-title, .projects-title {
  font-size: clamp(1.75rem, 3.8vw, 2.4rem) !important;
  font-weight: 800 !important;
  color: var(--aj-green-ink) !important;
  margin-bottom: 1rem !important;
  line-height: 1.3 !important;
}

.section-lead, .about-desc, .services-desc, .vision-desc,
.benefits-desc, .projects-desc {
  font-size: clamp(15px, 1.8vw, 17px) !important;
  line-height: 1.8 !important;
  color: var(--aj-muted) !important;
}

.about-section {
  background:
    radial-gradient(ellipse 900px 500px at 95% -5%, rgba(10, 144, 90, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse 700px 500px at 0% 105%, rgba(7, 110, 106, 0.10) 0%, transparent 55%),
    #ffffff !important;
  padding: clamp(80px, 10vw, 130px) 20px !important;
  position: relative;
  overflow: hidden !important;
  direction: rtl;
}

.about-bg-shape {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.about-bg-shape:not(.about-bg-shape--2) {
  top: -120px;
  left: -120px;
  background: radial-gradient(circle, rgba(22, 196, 122, 0.12) 0%, transparent 70%);
}
.about-bg-shape--2 {
  bottom: -120px;
  right: -120px;
  background: radial-gradient(circle, rgba(7, 110, 106, 0.10) 0%, transparent 70%);
}

.about-container {
  position: relative;
  z-index: 2;
  max-width: 1220px !important;
  margin: 0 auto !important;
}

.about-grid {
  display: grid !important;
  grid-template-columns: 1fr 1.2fr !important;
  gap: clamp(40px, 5vw, 80px) !important;
  align-items: center !important;
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr !important; }
  .about-col-right { text-align: center !important; }
  .about-col-left { order: -1; }
}

.about-visual {
  position: relative;
  max-width: 460px;
  margin: 0 auto;
  aspect-ratio: 1 / 1;
}

.about-visual__frame {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 32px;
  background:
    linear-gradient(135deg, #076e6a 0%, #0a905a 50%, #14b670 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
  box-shadow:
    0 30px 60px rgba(4, 63, 60, 0.25),
    inset 0 0 0 1px rgba(255, 255, 255, 0.15);
  overflow: hidden;
  z-index: 2;
}
.about-visual__frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.2) 0%, transparent 40%),
    radial-gradient(circle at 70% 80%, rgba(0, 0, 0, 0.15) 0%, transparent 50%);
  pointer-events: none;
}
.about-visual__frame .about-logo {
  position: relative;
  z-index: 1;
  max-width: 100%;
  max-height: 100%;
  width: min(420px, 90%);
  height: auto;
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  filter: brightness(0) invert(1) drop-shadow(0 14px 30px rgba(0, 0, 0, 0.22));
  object-fit: contain;
}

.about-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: #ffffff;
  padding: 18px 24px;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(4, 63, 60, 0.18);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  z-index: 3;
  border: 1px solid rgba(10, 144, 90, 0.1);
  transform: rotate(-4deg);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.about-badge:hover { transform: rotate(0deg) scale(1.05); }
.about-badge__num {
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 900;
  background: linear-gradient(135deg, #076e6a, #14b670);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  line-height: 1;
}
.about-badge__label {
  font-size: 11px;
  font-weight: 700;
  color: var(--aj-muted);
  white-space: nowrap;
}

.about-dots {
  position: absolute;
  width: 140px;
  height: 140px;
  top: -24px;
  right: -24px;
  z-index: 1;
  background-image: radial-gradient(circle, #0a905a 1.5px, transparent 1.5px);
  background-size: 14px 14px;
  opacity: 0.35;
  border-radius: 12px;
}

.about-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  font-size: 12.5px;
  font-weight: 800;
  color: var(--aj-green-dark);
  background: rgba(10, 144, 90, 0.08);
  border: 1.5px solid rgba(10, 144, 90, 0.22);
  border-radius: 999px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.about-eyebrow__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, #076e6a, #14b670);
  box-shadow: 0 0 0 3px rgba(10, 144, 90, 0.18);
}

.about-title {
  font-size: clamp(2rem, 4.3vw, 3rem) !important;
  font-weight: 900 !important;
  color: var(--aj-green-ink) !important;
  line-height: 1.2 !important;
  margin: 0 0 20px !important;
}
.about-title__accent {
  background: linear-gradient(135deg, #076e6a 0%, #14b670 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.about-desc {
  font-size: clamp(15px, 1.8vw, 17px) !important;
  line-height: 2 !important;
  color: #4b5563 !important;
  margin: 0 0 24px !important;
}

.about-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 10px;
}
.about-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--aj-green-ink);
  font-weight: 500;
  max-width: 60%;
}
.about-features li i {
  color: #14b670;
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}
@media (max-width: 900px) {
  .about-features { text-align: start; max-width: 600px; margin-inline: auto; margin-bottom: 28px; }
  .about-features li { justify-content: flex-start; max-width: 100%; }
}

@media (max-width: 720px) {
  .about-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 16px;
    max-width: 100%;
  }
  .about-features li:nth-child(3) {
    grid-column: 1 / -1;
    max-width: calc(50% - 8px);
    margin: 0 auto;
  }
}
@media (max-width: 420px) {
  .about-features { grid-template-columns: 1fr; max-width: 340px; }
  .about-features li:nth-child(3) { grid-column: auto; max-width: 100%; margin: 0; }
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 0 0 32px;
}
.about-stat {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: #ffffff;
  border: 1px solid rgba(10, 144, 90, 0.12);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(4, 63, 60, 0.05);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.3s ease,
              box-shadow 0.3s ease;
  direction: rtl;
}
.about-stat:hover {
  transform: translateY(-4px);
  border-color: rgba(10, 144, 90, 0.35);
  box-shadow: 0 18px 36px rgba(10, 144, 90, 0.14);
}
.about-stat::after {
  content: '';
  position: absolute;
  right: 18px;
  bottom: 0;
  width: 40px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, #14b670, transparent);
  opacity: 0;
  transition: opacity 0.3s ease, width 0.35s ease;
}
.about-stat:hover::after { opacity: 1; width: 70px; }

.about-stat__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(10, 144, 90, 0.12), rgba(22, 196, 122, 0.04));
  color: var(--aj-green-dark);
  font-size: 20px;
  transition: transform 0.35s ease, background 0.35s ease, color 0.35s ease;
}
.about-stat:hover .about-stat__icon {
  transform: rotate(-6deg) scale(1.05);
  background: linear-gradient(135deg, #076e6a, #14b670);
  color: #ffffff;
}
.about-stat__body {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  min-width: 0;
}
.about-stat__num {
  font-size: clamp(1.3rem, 2.3vw, 1.6rem);
  font-weight: 900;
  background: linear-gradient(135deg, #076e6a, #14b670);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.about-stat__label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--aj-muted);
  margin-top: 4px;
}

@media (max-width: 720px) {
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
  }
  
  .about-stat:nth-child(3) {
    grid-column: 1 / -1;
    max-width: calc(50% - 7px);
    margin: 0 auto;
  }
  .about-stat { padding: 14px 16px; }
  .about-stat__icon { width: 42px; height: 42px; font-size: 19px; }
}
@media (max-width: 420px) {
  .about-stats { grid-template-columns: 1fr; max-width: 320px; margin-inline: auto; }
  .about-stat:nth-child(3) { grid-column: auto; max-width: 100%; margin: 0; }
}

.about-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.about-buttons .about-btn {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  padding: 13px 28px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  border-radius: 999px !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease !important;
  white-space: nowrap;
  cursor: pointer;
}
.about-buttons .about-btn--primary {
  background: linear-gradient(135deg, #076e6a 0%, #14b670 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 10px 30px rgba(10, 144, 90, 0.32);
  border: 2px solid transparent;
}
.about-buttons .about-btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(10, 144, 90, 0.5);
  color: #ffffff !important;
}
.about-buttons .about-btn--ghost {
  background: transparent !important;
  color: var(--aj-green-dark) !important;
  border: 2px solid rgba(10, 144, 90, 0.28) !important;
}
.about-buttons .about-btn--ghost:hover {
  background: rgba(10, 144, 90, 0.08) !important;
  border-color: var(--aj-green) !important;
  transform: translateY(-3px);
  color: var(--aj-green-dark) !important;
}

@media (max-width: 900px) {
  .about-buttons { justify-content: center; }
  .about-visual { max-width: 380px; }
  .about-badge { bottom: -16px; left: -16px; padding: 14px 20px; }
}
@media (max-width: 500px) {
  .about-visual { max-width: 280px; }
  .about-visual__frame { padding: 32px; border-radius: 26px; }
  .about-dots { width: 100px; height: 100px; top: -16px; right: -16px; }
  .about-badge { padding: 12px 18px; }
  .about-badge__num { font-size: 22px; }
  .about-badge__label { font-size: 10px; }
}

.about-col img { max-width: 100%; height: auto; }

.services-wave-section {
  background:
    radial-gradient(ellipse 600px 300px at 10% -5%, rgba(10, 144, 90, 0.09) 0%, transparent 60%),
    radial-gradient(ellipse 800px 400px at 95% 105%, rgba(7, 110, 106, 0.10) 0%, transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #fafaf6 100%) !important;
  padding: clamp(80px, 10vw, 140px) 20px !important;
  position: relative;
  overflow: hidden !important;
}

.services-wave-top,
.services-wave-bottom { display: none !important; }

.services-wave-section::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: min(600px, 60%);
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--aj-green) 50%, transparent);
  border-radius: 3px;
}
.services-wave-section::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(180deg, transparent, rgba(4, 63, 60, 0.04));
  pointer-events: none;
}

.services-wave-section .services-content-container {
  text-align: center;
  padding-top: 0 !important;
}

.services-wave-section .services-eyebrow {
  display: block !important;
  width: fit-content !important;
  max-width: fit-content !important;
  margin: 0 auto clamp(36px, 5vw, 56px) auto !important;
  padding: 9px 22px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  color: var(--aj-green-dark) !important;
  text-transform: uppercase !important;
  background: #ffffff !important;
  border: 1.5px solid rgba(10, 144, 90, 0.25) !important;
  border-radius: 999px !important;
  box-shadow: 0 4px 14px rgba(10, 144, 90, 0.12) !important;
  position: relative !important;
  z-index: 3;
  line-height: 1;
  text-align: center;
}

.services-wave-section .services-eyebrow::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--aj-green-dark), #14b670);
  box-shadow: 0 0 0 3px rgba(10, 144, 90, 0.15);
  margin-inline-end: 10px;
  position: relative;
  top: -1px;
}

.services-wave-section .services-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem) !important;
  font-weight: 900 !important;
  color: var(--aj-green-ink) !important;
  margin: 0 0 18px !important;
  line-height: 1.15 !important;
  position: relative;
  display: inline-block;
  padding: 0;
}
.services-wave-section .services-title::after { display: none; }

.services-wave-section .services-title-accent {
  display: inline-block;
  background: linear-gradient(135deg, var(--aj-green-dark) 0%, var(--aj-green) 45%, #16c47a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent !important;
  position: relative;
}

.services-wave-section .services-title-accent::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -6px;
  height: 10px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 10' preserveAspectRatio='none'><path d='M 0 5 Q 50 0 100 5 T 200 5' stroke='%2314b670' stroke-width='3' fill='none' stroke-linecap='round'/></svg>") center/100% 100% no-repeat;
  opacity: 0.65;
}

.services-wave-section .services-subtitle {
  font-size: clamp(15px, 1.8vw, 17.5px) !important;
  line-height: 1.85 !important;
  color: var(--aj-muted) !important;
  max-width: 640px;
  margin: 0 auto clamp(40px, 5vw, 64px) !important;
  font-weight: 400;
}

.services-grid-flag {
  display: grid !important;
  grid-template-columns: repeat(6, 1fr) !important; 
  gap: clamp(20px, 2.5vw, 32px) !important;
  max-width: 1140px !important;
  margin: 0 auto !important;
  padding: 0 16px !important;
  box-sizing: border-box;
  width: 100% !important;
  justify-items: stretch !important;
}

.services-grid-flag > :nth-child(1) { grid-column: 1 / span 2; }
.services-grid-flag > :nth-child(2) { grid-column: 3 / span 2; }
.services-grid-flag > :nth-child(3) { grid-column: 5 / span 2; }
.services-grid-flag > :nth-child(4) { grid-column: 2 / span 2; }
.services-grid-flag > :nth-child(5) { grid-column: 4 / span 2; }

@media (max-width: 900px) {
  .services-grid-flag { grid-template-columns: repeat(2, 1fr) !important; }
  .services-grid-flag > :nth-child(n) { grid-column: auto !important; }
  
  .services-grid-flag > :nth-child(5) {
    grid-column: 1 / -1 !important;
    max-width: calc(50% - 8px);
    margin: 0 auto;
  }
}
@media (max-width: 560px) {
  .services-grid-flag { grid-template-columns: 1fr !important; max-width: 380px; }
  .services-grid-flag > :nth-child(5) { max-width: 100%; margin: 0; }
}

.services-grid-flag .service-flag-card {
  width: 100% !important;
  max-width: 100% !important;
  background: #ffffff !important;
  border-radius: 20px !important;
  box-shadow: 0 4px 18px rgba(4, 63, 60, 0.08) !important;
  border: 1px solid rgba(10, 144, 90, 0.08) !important;
  padding: 48px 24px 28px !important;
  margin-top: 44px !important; 
  position: relative;
  text-align: center !important;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.35s ease,
              border-color 0.35s ease !important;
  overflow: visible !important;
  direction: rtl;
  display: flex !important;
  flex-direction: column !important;
}
.services-grid-flag .service-flag-card:hover {
  transform: translateY(-8px) rotate(0deg) scale(1) !important;
  box-shadow: 0 24px 46px rgba(10, 144, 90, 0.18) !important;
  border-color: rgba(10, 144, 90, 0.25) !important;
}

.services-grid-flag .flag-header {
  position: absolute !important;
  top: -40px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 82px !important;
  height: 82px !important;
  background: linear-gradient(135deg, var(--aj-green-dark) 0%, var(--aj-green) 50%, #14b670 100%) !important;
  border-radius: 50% !important;
  clip-path: none !important;
  box-shadow: 0 12px 30px rgba(10, 144, 90, 0.35),
              inset 0 0 0 4px rgba(255, 255, 255, 0.12) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.3s ease !important;
}
.services-grid-flag .service-flag-card:hover .flag-header {
  transform: translateX(-50%) rotate(-6deg) scale(1.05) !important;
  box-shadow: 0 18px 40px rgba(10, 144, 90, 0.5),
              inset 0 0 0 4px rgba(255, 255, 255, 0.18) !important;
}

.services-grid-flag .flag-header::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1.5px dashed rgba(10, 144, 90, 0.28);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.5s ease;
  animation: aj-spin 14s linear infinite;
  animation-play-state: paused;
}
.services-grid-flag .service-flag-card:hover .flag-header::before {
  opacity: 1;
  animation-play-state: running;
}
@keyframes aj-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.services-grid-flag .service-icon {
  font-size: 2rem !important;
  color: #ffffff !important;
  z-index: 2;
  line-height: 1;
}

.services-grid-flag .flag-body {
  padding: 0 !important;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.services-grid-flag .flag-body h3 {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem) !important;
  font-weight: 800 !important;
  color: var(--aj-green-ink) !important;
  margin: 0 0 12px !important;
  line-height: 1.35 !important;
  min-height: 2.7em;
}
.services-grid-flag .flag-body p {
  font-size: 14.5px !important;
  line-height: 1.75 !important;
  color: var(--aj-muted) !important;
  margin: 0 0 20px !important;
  flex: 1;
}

.services-grid-flag .service-flag-card::before { display: none !important; }

@media (max-width: 560px) {
  .services-grid-flag .service-flag-card {
    padding: 42px 22px 24px !important;
    margin-top: 42px !important;
  }
  .services-grid-flag .flag-header {
    top: -36px !important;
    width: 74px !important;
    height: 74px !important;
  }
  .services-grid-flag .service-icon { font-size: 1.8rem !important; }
  .services-grid-flag .flag-body h3 { min-height: auto; }
}

@media (max-width: 768px) {
  .services-wave-section .services-title,
  .services-wave-section .services-subtitle { color: var(--aj-green-ink) !important; }
  .services-wave-section .services-subtitle { color: var(--aj-muted) !important; }
}

.vision-wave-top, .vision-wave-bottom,
.projects-wave-top, .projects-wave-bottom,
.benefits-wave-top, .benefits-wave-bottom { display: none !important; }

.vision-wave-section {
  background:
    radial-gradient(ellipse 900px 500px at 90% -10%, rgba(7, 110, 106, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse 700px 400px at 5% 110%, rgba(22, 196, 122, 0.10) 0%, transparent 55%),
    linear-gradient(180deg, #061f1d 0%, #0a302d 100%) !important;
  padding: clamp(80px, 10vw, 130px) 20px !important;
  position: relative;
  overflow: hidden !important;
  color: #fff !important;
  direction: rtl;
}

.vision-wave-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.6;
  pointer-events: none;
  mask-image: radial-gradient(circle at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(circle at center, black 30%, transparent 75%);
}

.vision-container {
  position: relative;
  z-index: 2;
  max-width: 1240px !important;
  margin: 0 auto !important;
}

.vm-header { text-align: center; max-width: 720px; margin: 0 auto clamp(48px, 6vw, 72px); }

.vm-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  color: #7eecb3;
  text-transform: uppercase;
  padding: 8px 20px;
  background: rgba(22, 196, 122, 0.08);
  border: 1.5px solid rgba(22, 196, 122, 0.28);
  border-radius: 999px;
  margin-bottom: clamp(22px, 3vw, 30px);
}
.vm-eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #16c47a;
  box-shadow: 0 0 0 3px rgba(22, 196, 122, 0.25);
}

.vm-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem) !important;
  font-weight: 900 !important;
  color: #ffffff !important;
  line-height: 1.2 !important;
  margin: 0 0 16px !important;
}
.vm-title-accent {
  background: linear-gradient(135deg, #16c47a 0%, #7eecb3 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.vm-lead {
  font-size: clamp(15px, 1.9vw, 17.5px);
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

.vm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.5vw, 28px);
  align-items: stretch;
}
@media (max-width: 960px) {
  .vm-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
}

.vm-card {
  position: relative;
  background: linear-gradient(155deg,
    rgba(255, 255, 255, 0.07) 0%,
    rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  padding: clamp(26px, 3vw, 36px);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.35s ease,
              box-shadow 0.35s ease;
  text-align: right;
}
.vm-card:hover {
  transform: translateY(-6px);
  border-color: rgba(22, 196, 122, 0.5);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35),
              0 0 0 1px rgba(22, 196, 122, 0.25);
}

.vm-card--featured {
  background: linear-gradient(155deg,
    rgba(22, 196, 122, 0.14) 0%,
    rgba(7, 110, 106, 0.08) 100%);
  border-color: rgba(22, 196, 122, 0.32);
}

.vm-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, #076e6a 0%, #16c47a 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  margin-bottom: 22px;
  box-shadow: 0 10px 26px rgba(22, 196, 122, 0.3),
              inset 0 0 0 3px rgba(255, 255, 255, 0.1);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.vm-card:hover .vm-card__icon { transform: rotate(-8deg) scale(1.08); }

.vm-card__label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: #7eecb3;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.vm-card__title {
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  font-weight: 900;
  color: #fff;
  margin: 0 0 14px;
  line-height: 1.3;
}

.vm-card__text {
  font-size: 15px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

.vm-card__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.vm-card__list li {
  position: relative;
  padding-right: 24px;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.78);
}
.vm-card__list li::before {
  content: '\F270'; 
  font-family: "bootstrap-icons";
  position: absolute;
  right: 0;
  top: 1px;
  color: #16c47a;
  font-size: 14px;
}

.vm-card__shine {
  position: absolute;
  top: 0; right: -60%;
  width: 50%; height: 100%;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.08) 50%, transparent 100%);
  transform: skewX(-20deg);
  transition: right 0.8s ease;
  pointer-events: none;
}
.vm-card:hover .vm-card__shine { right: 120%; }

.benefits-diagonal-section {
  background:
    radial-gradient(ellipse 800px 500px at 10% 0%, rgba(10, 144, 90, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse 800px 500px at 90% 100%, rgba(22, 196, 122, 0.18) 0%, transparent 55%),
    linear-gradient(135deg, #043f3c 0%, #076e6a 50%, #0a905a 100%) !important;
  padding: clamp(80px, 10vw, 130px) 20px !important;
  position: relative;
  overflow: hidden !important;
}
.diagonal-bg { display: none !important; } 

.benefits-diagonal-section .bf-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(48px, 6vw, 72px);
}
.bf-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  margin-bottom: clamp(22px, 3vw, 30px);
}
.bf-eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.25);
}
.benefits-diagonal-section .benefits-diagonal-title {
  font-size: clamp(2rem, 4.5vw, 3rem) !important;
  font-weight: 900 !important;
  color: #fff !important;
  margin: 0 0 16px !important;
  line-height: 1.2 !important;
}
.bf-title-accent {
  background: linear-gradient(135deg, #ffffff 0%, #a8ffd3 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.bf-lead {
  font-size: clamp(15px, 1.9vw, 17.5px);
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
}

.bf-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(18px, 2.5vw, 26px);
  max-width: 1040px;
  margin: 0 auto;
}
@media (max-width: 720px) { .bf-grid { grid-template-columns: 1fr; max-width: 520px; } }

.bf-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: clamp(28px, 3vw, 40px);
  background: linear-gradient(160deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  overflow: hidden;
  text-align: right;
  direction: rtl;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.35s ease,
              box-shadow 0.35s ease,
              background 0.35s ease;
}
.bf-card:hover {
  transform: translateY(-6px);
  border-color: rgba(22, 196, 122, 0.5);
  box-shadow: 0 26px 50px rgba(0, 0, 0, 0.3),
              0 0 0 1px rgba(22, 196, 122, 0.25);
  background: linear-gradient(160deg,
    rgba(22, 196, 122, 0.14) 0%,
    rgba(255, 255, 255, 0.02) 100%);
}

.bf-card::before {
  content: '';
  position: absolute;
  top: -30%; left: -20%;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(22, 196, 122, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.bf-card:hover::before { opacity: 1; }

.bf-card__num {
  position: absolute;
  top: 18px;
  left: 18px;
  min-width: 44px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 900;
  color: #7eecb3;
  background: rgba(22, 196, 122, 0.14);
  border: 1px solid rgba(22, 196, 122, 0.35);
  border-radius: 999px;
  text-align: center;
  font-family: 'Tajawal', Arial, sans-serif;
}

.bf-card__icon {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: linear-gradient(135deg, #076e6a 0%, #16c47a 100%);
  color: #ffffff;
  font-size: 28px;
  box-shadow:
    0 14px 30px rgba(22, 196, 122, 0.35),
    inset 0 0 0 3px rgba(255, 255, 255, 0.12);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.bf-card:hover .bf-card__icon {
  transform: rotate(-8deg) scale(1.08);
}

.bf-card__title {
  position: relative;
  font-size: clamp(1.3rem, 2.2vw, 1.55rem);
  font-weight: 900;
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
  padding-bottom: 12px;
}
.bf-card__title::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 36px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, #7eecb3, transparent);
  transition: width 0.35s ease;
}
.bf-card:hover .bf-card__title::after { width: 72px; }

.bf-card__text {
  font-size: 14.5px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
  flex: 1;
}

.bf-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  margin-top: 6px;
  font-size: 12px;
  font-weight: 700;
  color: #7eecb3;
  background: rgba(22, 196, 122, 0.1);
  border: 1px solid rgba(22, 196, 122, 0.25);
  border-radius: 999px;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.bf-card__tag i { font-size: 11px; }
.bf-card:hover .bf-card__tag {
  background: rgba(22, 196, 122, 0.22);
  color: #ffffff;
  border-color: rgba(22, 196, 122, 0.5);
}

@media (max-width: 520px) {
  .bf-card__num { top: 14px; left: 14px; font-size: 11px; padding: 5px 10px; }
  .bf-card__icon { width: 56px; height: 56px; font-size: 24px; }
}

.projects-section {
  background:
    radial-gradient(ellipse 800px 400px at 100% 0%, rgba(22, 196, 122, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse 600px 400px at 0% 100%, rgba(7, 110, 106, 0.08) 0%, transparent 55%),
    linear-gradient(180deg, #0b1f1d 0%, #061513 100%) !important;
  padding: clamp(80px, 10vw, 130px) 20px !important;
  position: relative;
  overflow: hidden !important;
  color: #fff;
}

.pf-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(48px, 6vw, 72px);
  direction: rtl;
}
.pf-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  color: #7eecb3;
  text-transform: uppercase;
  padding: 8px 20px;
  background: rgba(22, 196, 122, 0.08);
  border: 1.5px solid rgba(22, 196, 122, 0.28);
  border-radius: 999px;
  margin-bottom: clamp(22px, 3vw, 30px);
}
.pf-eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #16c47a;
  box-shadow: 0 0 0 3px rgba(22, 196, 122, 0.25);
}
.projects-section .pf-title,
.projects-section .projects-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem) !important;
  font-weight: 900 !important;
  color: #fff !important;
  margin: 0 0 16px !important;
  line-height: 1.2 !important;
}
.pf-title-accent {
  background: linear-gradient(135deg, #16c47a 0%, #7eecb3 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.pf-lead,
.projects-section .projects-subtitle {
  font-size: clamp(15px, 1.9vw, 17.5px) !important;
  line-height: 1.85 !important;
  color: rgba(255, 255, 255, 0.72) !important;
  margin: 0 !important;
}

.pf-carousel {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 56px;
  direction: rtl;
}
@media (max-width: 640px) {
  .pf-carousel { padding: 0 12px; }
}

.pf-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc(33.333% - 16px);
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 8px 2px 24px;
  -ms-overflow-style: none;
  scrollbar-width: none;
  direction: rtl;
}
.pf-track::-webkit-scrollbar { display: none; }

@media (max-width: 960px) { .pf-track { grid-auto-columns: calc(50% - 12px); gap: 16px; } }
@media (max-width: 560px) { .pf-track { grid-auto-columns: 85%; gap: 12px; } }

.pf-slide {
  scroll-snap-align: center;
  scroll-snap-stop: always;
}
.pf-slide__link {
  display: block;
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.4);
  transform: translateY(0);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.4s ease;
  background: #0a1e1c;
}
.pf-slide__link:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.55);
}
.pf-slide__link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.pf-slide__link:hover img { transform: scale(1.06); }
.pf-slide__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 45%, rgba(4, 31, 28, 0.85) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 18px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}
.pf-slide__link:hover .pf-slide__overlay { opacity: 1; }
.pf-slide__icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  transform: translateY(10px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.pf-slide__link:hover .pf-slide__icon { transform: translateY(0); opacity: 1; }

.pf-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}
.pf-nav:hover {
  background: #16c47a;
  border-color: #16c47a;
  transform: translateY(-50%) scale(1.08);
}
.pf-nav--prev { right: 0; }
.pf-nav--next { left: 0; }

@media (max-width: 640px) {
  .pf-nav { width: 40px; height: 40px; font-size: 17px; }
  .pf-nav--prev { right: -4px; }
  .pf-nav--next { left: -4px; }
}

.pf-progress {
  position: relative;
  width: min(280px, 60%);
  height: 3px;
  margin: 32px auto 0;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  overflow: hidden;
  direction: ltr;
}
.pf-progress__fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: linear-gradient(90deg, #16c47a 0%, #7eecb3 100%);
  border-radius: 999px;
  transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 0 10px rgba(22, 196, 122, 0.5);
}
.pf-counter {
  text-align: center;
  margin-top: 14px;
  font-family: 'Tajawal', Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  direction: ltr;
}
.pf-counter__current {
  color: #7eecb3;
  font-size: 16px;
}
.pf-counter__total {
  color: rgba(255, 255, 255, 0.4);
}

.pf-empty {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
}

.pt-section {
  background:
    radial-gradient(ellipse 800px 400px at 15% 0%, rgba(22, 196, 122, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse 800px 400px at 85% 100%, rgba(7, 110, 106, 0.10) 0%, transparent 55%),
    #ffffff;
  padding: clamp(70px, 9vw, 120px) 20px;
  position: relative;
  overflow: hidden;
  direction: rtl;
}

.pt-bg-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.pt-bg-shape--1 {
  top: -160px; right: -160px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(22, 196, 122, 0.1) 0%, transparent 70%);
}
.pt-bg-shape--2 {
  bottom: -180px; left: -180px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(7, 110, 106, 0.08) 0%, transparent 70%);
}

.pt-container {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  margin: 0 auto;
}

.pt-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(40px, 5vw, 60px);
}
.pt-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  font-size: 12.5px;
  font-weight: 800;
  color: var(--aj-green-dark);
  background: rgba(10, 144, 90, 0.08);
  border: 1.5px solid rgba(10, 144, 90, 0.22);
  border-radius: 999px;
  margin-bottom: 22px;
  text-transform: uppercase;
}
.pt-eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: linear-gradient(135deg, #076e6a, #14b670);
  box-shadow: 0 0 0 3px rgba(10, 144, 90, 0.2);
}
.pt-title {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--aj-green-ink);
  margin: 0 0 14px;
  line-height: 1.2;
}
.pt-title-accent {
  background: linear-gradient(135deg, #076e6a, #14b670);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.pt-lead {
  font-size: clamp(15px, 1.8vw, 17px);
  line-height: 1.85;
  color: var(--aj-muted);
  margin: 0;
}

.pt-showcase {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(14px, 2vw, 24px);
  background: linear-gradient(135deg, #ffffff 0%, #f8faf9 100%);
  border-radius: 24px;
  box-shadow:
    0 30px 60px rgba(4, 63, 60, 0.10),
    inset 0 0 0 1px rgba(10, 144, 90, 0.08);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.4s ease;
}
.pt-showcase:hover {
  transform: translateY(-4px);
  box-shadow: 0 40px 80px rgba(4, 63, 60, 0.16);
}

.pt-showcase::before,
.pt-showcase::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  border: 2px solid #14b670;
  pointer-events: none;
  opacity: 0.5;
}
.pt-showcase::before {
  top: 12px; right: 12px;
  border-bottom: none;
  border-left: none;
  border-top-right-radius: 12px;
}
.pt-showcase::after {
  bottom: 12px; left: 12px;
  border-top: none;
  border-right: none;
  border-bottom-left-radius: 12px;
}

.pt-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
  object-fit: contain;
}

@media (max-width: 600px) {
  .pt-showcase { padding: 10px; border-radius: 18px; }
  .pt-showcase::before,
  .pt-showcase::after { width: 28px; height: 28px; }
  .pt-image { border-radius: 10px; }
}

.rq-section {
  background:
    radial-gradient(ellipse 700px 500px at 20% 0%, rgba(10, 144, 90, 0.10) 0%, transparent 55%),
    radial-gradient(ellipse 700px 500px at 90% 100%, rgba(7, 110, 106, 0.12) 0%, transparent 55%),
    linear-gradient(180deg, #fafaf6 0%, #f1f5f2 100%);
  padding: clamp(80px, 10vw, 130px) 20px;
  position: relative;
  overflow: hidden;
  direction: rtl;
}

.rq-bg-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.rq-bg-shape--1 {
  top: -180px; right: -180px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(22, 196, 122, 0.12) 0%, transparent 70%);
}
.rq-bg-shape--2 {
  bottom: -200px; left: -200px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(7, 110, 106, 0.10) 0%, transparent 70%);
}

.rq-container {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
}

.rq-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(40px, 5vw, 60px);
}
.rq-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  font-size: 12.5px;
  font-weight: 800;
  color: var(--aj-green-dark);
  background: rgba(10, 144, 90, 0.08);
  border: 1.5px solid rgba(10, 144, 90, 0.22);
  border-radius: 999px;
  margin-bottom: 22px;
  text-transform: uppercase;
}
.rq-eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: linear-gradient(135deg, #076e6a, #14b670);
  box-shadow: 0 0 0 3px rgba(10, 144, 90, 0.2);
}
.rq-title {
  font-size: clamp(2rem, 4.3vw, 3rem);
  font-weight: 900;
  color: var(--aj-green-ink);
  margin: 0 0 16px;
  line-height: 1.2;
}
.rq-title-accent {
  background: linear-gradient(135deg, #076e6a, #14b670);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.rq-lead {
  font-size: clamp(15px, 1.9vw, 17px);
  line-height: 1.85;
  color: var(--aj-muted);
  margin: 0;
}

.rq-picker {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(18px, 2.5vw, 28px);
  max-width: 820px;
  margin: 0 auto;
}
@media (max-width: 640px) { .rq-picker { grid-template-columns: 1fr; max-width: 420px; } }

.rq-pick {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: clamp(32px, 4vw, 44px) clamp(20px, 3vw, 32px);
  background: #ffffff;
  border: 2px solid rgba(10, 144, 90, 0.12);
  border-radius: 22px;
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.3s ease,
              box-shadow 0.3s ease,
              background 0.3s ease;
  font-family: inherit;
  overflow: hidden;
}
.rq-pick::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 140px; height: 140px;
  background: radial-gradient(circle, rgba(22, 196, 122, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(50%, -50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.rq-pick:hover,
.rq-pick:focus-visible {
  transform: translateY(-6px);
  border-color: var(--aj-green);
  box-shadow: 0 24px 50px rgba(10, 144, 90, 0.18);
  outline: none;
}
.rq-pick:hover::before,
.rq-pick:focus-visible::before { opacity: 1; }

.rq-pick__icon {
  width: 76px;
  height: 76px;
  border-radius: 20px;
  background: linear-gradient(135deg, #076e6a 0%, #14b670 100%);
  color: #ffffff;
  font-size: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(10, 144, 90, 0.3);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.rq-pick:hover .rq-pick__icon {
  transform: rotate(-6deg) scale(1.05);
}
.rq-pick__title {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 900;
  color: var(--aj-green-ink);
  margin: 8px 0 0;
}
.rq-pick__desc {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--aj-muted);
  margin: 0;
  max-width: 280px;
}
.rq-pick__cta {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 800;
  color: var(--aj-green-dark);
  padding: 10px 24px;
  border-radius: 999px;
  background: rgba(10, 144, 90, 0.08);
  transition: background 0.25s ease, color 0.25s ease;
}
.rq-pick:hover .rq-pick__cta {
  background: linear-gradient(135deg, #076e6a, #14b670);
  color: #ffffff;
}

.rq-forms {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
}
.rq-forms[hidden] { display: none !important; }

.rq-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 700;
  color: var(--aj-green-dark);
  background: #ffffff;
  border: 1.5px solid rgba(10, 144, 90, 0.2);
  border-radius: 999px;
  cursor: pointer;
  margin-bottom: 22px;
  font-family: inherit;
  transition: all 0.25s ease;
}
.rq-back:hover {
  background: rgba(10, 144, 90, 0.08);
  border-color: var(--aj-green);
  transform: translateX(-4px);
}

.rq-form {
  background: #ffffff;
  border: 1px solid rgba(10, 144, 90, 0.12);
  border-radius: 24px;
  padding: clamp(28px, 4vw, 44px);
  box-shadow: 0 24px 60px rgba(4, 63, 60, 0.08);
}
.rq-form[hidden] { display: none !important; }

.rq-form__head {
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px dashed rgba(10, 144, 90, 0.15);
}
.rq-form__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 800;
  color: var(--aj-green-dark);
  background: rgba(10, 144, 90, 0.1);
  border-radius: 999px;
  margin-bottom: 10px;
}
.rq-form__title {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 900;
  color: var(--aj-green-ink);
  margin: 0 0 8px;
}
.rq-form__lead {
  font-size: 14.5px;
  color: var(--aj-muted);
  margin: 0;
}

.rq-field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
@media (max-width: 600px) { .rq-field-grid { grid-template-columns: 1fr; } }

.rq-field { display: flex; flex-direction: column; gap: 8px; }
.rq-field--full { grid-column: 1 / -1; }

.rq-field__label {
  font-size: 13px;
  font-weight: 700;
  color: var(--aj-green-ink);
}
.rq-field__label small {
  display: block;
  font-weight: 500;
  font-size: 11.5px;
  color: var(--aj-muted);
  margin-top: 2px;
}

.rq-field input,
.rq-field select,
.rq-field textarea {
  width: 100%;
  padding: 13px 16px;
  font-size: 15px;
  font-family: 'Tajawal', Arial, sans-serif;
  color: var(--aj-text);
  background: #f8faf9;
  border: 1.5px solid rgba(10, 144, 90, 0.15);
  border-radius: 12px;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  direction: rtl;
  box-sizing: border-box;
}
.rq-field textarea { resize: vertical; min-height: 80px; }
.rq-field input:focus,
.rq-field select:focus,
.rq-field textarea:focus {
  outline: none;
  border-color: var(--aj-green);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(10, 144, 90, 0.12);
}
.rq-field input[type="file"] {
  padding: 10px 14px;
  font-size: 14px;
  cursor: pointer;
}
.rq-field input[type="file"]::file-selector-button {
  background: linear-gradient(135deg, #076e6a, #14b670);
  color: #ffffff;
  border: none;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  margin-left: 12px;
  transition: transform 0.2s ease;
}
.rq-field input[type="file"]::file-selector-button:hover { transform: translateY(-1px); }

.rq-submit-row {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}
.rq-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  font-size: 15.5px;
  font-weight: 800;
  color: #ffffff;
  background: linear-gradient(135deg, #076e6a 0%, #14b670 100%);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 12px 30px rgba(10, 144, 90, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}
.rq-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(10, 144, 90, 0.5);
}
.rq-submit:disabled { opacity: 0.65; cursor: not-allowed; }
.rq-submit.is-sending .rq-submit__text::after {
  content: '...';
  animation: rq-dots 1.2s infinite;
}
@keyframes rq-dots {
  0%, 20%   { content: '...'; }
  40%       { content: '.'; }
  60%       { content: '..'; }
  80%, 100% { content: '...'; }
}

.rq-msg {
  margin-top: 18px;
  text-align: center;
  font-size: 14.5px;
  font-weight: 600;
  min-height: 22px;
}
.rq-msg.is-success { color: #0a905a; }
.rq-msg.is-error   { color: #d93025; }

.hero-section {
  min-height: 100svh !important;
  height: 100vh !important;
  height: 100dvh !important;
}

.hero-slide {
  background-position: center center;
}

.vm-tabs {
  display: inline-grid;
  grid-template-columns: repeat(3, minmax(92px, 1fr));
  gap: 8px;
  width: min(540px, 100%);
  margin: 0 auto 28px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
}

.vm-tab {
  min-height: 44px;
  padding: 10px 16px;
  color: rgba(255, 255, 255, 0.78);
  font-family: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  background: transparent;
  border: 0;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.vm-tab.is-active,
.vm-tab[aria-selected="true"] {
  color: #043f3c;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.vm-grid--tabs {
  grid-template-columns: minmax(0, 760px) !important;
  justify-content: center;
}

.vm-grid--tabs .vm-card {
  min-height: 300px;
}

.vm-grid--tabs .vm-card[hidden] {
  display: none !important;
}

.benefits-diagonal-section {
  background:
    radial-gradient(ellipse 700px 420px at 8% 0%, rgba(22, 196, 122, 0.2) 0%, transparent 58%),
    radial-gradient(ellipse 760px 460px at 92% 100%, rgba(255, 255, 255, 0.12) 0%, transparent 58%),
    linear-gradient(135deg, #043f3c 0%, #076e6a 55%, #0a905a 100%) !important;
}

.bf-card {
  border-radius: 18px;
}

@media (max-width: 768px) {
  .hero-section {
    min-height: 100svh !important;
    height: 100vh !important;
    height: 100dvh !important;
  }

  .hero-slide {
    background-position: center top;
  }

  .hero-content {
    justify-content: center;
    padding: 96px 18px 42px !important;
  }

  .hero-title {
    font-size: clamp(2rem, 10vw, 3rem) !important;
  }

  .hero-desc {
    max-width: 35ch !important;
    font-size: 15px !important;
  }

  section.about-section,
  section.services-wave-section,
  section.vision-wave-section,
  section.benefits-diagonal-section,
  section.projects-section {
    padding: 56px 16px !important;
  }

  .about-grid {
    gap: 28px !important;
  }

  .about-visual {
    max-width: min(330px, 88vw) !important;
    aspect-ratio: 1 / 0.92;
  }

  .about-visual__frame {
    padding: 24px !important;
    border-radius: 24px !important;
  }

  .about-visual__frame .about-logo {
    width: min(250px, 86%) !important;
    padding: 0;
  }

  .about-badge {
    bottom: -12px !important;
    left: 8px !important;
    padding: 10px 14px !important;
    border-radius: 14px !important;
  }

  .about-title {
    font-size: clamp(1.8rem, 8vw, 2.35rem) !important;
  }

  .about-desc {
    font-size: 15px !important;
    line-height: 1.9 !important;
  }

  .about-features {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
    max-width: none !important;
  }

  .about-features li,
  .about-features li:nth-child(3) {
    grid-column: auto !important;
    max-width: none !important;
    margin: 0 !important;
    justify-content: flex-start !important;
    font-size: 13.5px !important;
  }

  .about-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    max-width: none !important;
    gap: 10px !important;
  }

  .about-stat,
  .about-stat:nth-child(3) {
    grid-column: auto !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 12px !important;
  }

  .services-grid-flag {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px !important;
    max-width: 560px !important;
  }

  .services-grid-flag > :nth-child(n),
  .services-grid-flag > :nth-child(5) {
    grid-column: auto !important;
    max-width: none !important;
    margin: 0 !important;
  }

  .services-grid-flag > :nth-child(5) {
    grid-column: 1 / -1 !important;
    width: min(280px, 100%);
    justify-self: center;
  }

  .services-grid-flag .service-flag-card {
    min-height: 0 !important;
    padding: 42px 12px 18px !important;
    margin-top: 34px !important;
    border-radius: 16px !important;
  }

  .services-grid-flag .flag-header {
    top: -30px !important;
    width: 60px !important;
    height: 60px !important;
  }

  .services-grid-flag .service-icon {
    font-size: 1.45rem !important;
  }

  .services-grid-flag .flag-body h3 {
    min-height: 0 !important;
    font-size: 14px !important;
  }

  .services-grid-flag .flag-body p {
    font-size: 12.5px !important;
    line-height: 1.65 !important;
    margin-bottom: 0 !important;
  }

  .vm-tabs {
    width: 100%;
    margin-bottom: 18px;
  }

  .vm-tab {
    min-height: 40px;
    padding: 8px 10px;
    font-size: 13px;
  }

  .vm-grid--tabs .vm-card {
    min-height: 0;
    padding: 24px 20px !important;
  }

  .vm-card__icon {
    width: 52px;
    height: 52px;
    font-size: 22px;
    margin-bottom: 16px;
  }

  .vm-card__text,
  .vm-card__list li {
    font-size: 14px;
    line-height: 1.8;
  }

  .bf-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
    max-width: none !important;
  }

  .bf-card {
    padding: 22px 16px !important;
    gap: 10px;
  }

  .bf-card__icon {
    width: 48px;
    height: 48px;
  }

  .bf-card__title {
    font-size: 15px !important;
  }

  .bf-card__text {
    font-size: 12.5px !important;
    line-height: 1.65 !important;
  }
}

@media (max-width: 430px) {
  .hero-buttons {
    flex-direction: row !important;
    width: auto !important;
    gap: 10px !important;
  }

  .hero-button {
    width: auto !important;
    min-width: 132px;
    padding: 10px 18px !important;
  }

  .about-features,
  .about-stats {
    grid-template-columns: 1fr !important;
  }

  .services-grid-flag {
    gap: 12px !important;
  }

  .services-grid-flag .service-flag-card {
    padding-inline: 10px !important;
  }
}

.about-eyebrow {
  width: max-content;
  max-width: 100%;
  text-transform: none !important;
}

.about-features {
  align-items: stretch;
}

.about-features li {
  max-width: none;
  padding: 12px 14px;
  background: rgba(10, 144, 90, 0.055);
  border: 1px solid rgba(10, 144, 90, 0.12);
  border-radius: 14px;
}

@media (max-width: 768px) {
  .about-section {
    padding-top: 34px !important;
  }

  .about-visual {
    max-width: min(300px, 82vw) !important;
    aspect-ratio: 1 / 0.82 !important;
    margin-bottom: 22px;
  }

  .about-visual__frame {
    padding: 18px !important;
    border-radius: 22px !important;
  }

  .about-visual__frame .about-logo {
    width: min(235px, 88%) !important;
    padding: 0 !important;
  }

  .about-badge {
    bottom: -14px !important;
    left: 4px !important;
    padding: 9px 13px !important;
    transform: rotate(-3deg) !important;
  }

  .about-dots {
    width: 80px !important;
    height: 80px !important;
    top: -8px !important;
    right: -10px !important;
    opacity: 0.22 !important;
  }

  .about-col-right {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .about-eyebrow {
    margin: 0 auto 18px !important;
    padding: 7px 16px !important;
    font-size: 12px !important;
    border-radius: 999px !important;
  }

  .about-title {
    max-width: 10ch;
    margin-inline: auto !important;
    text-align: center !important;
  }

  .about-desc {
    max-width: 38ch;
    margin-inline: auto !important;
    text-align: center !important;
  }

  .about-features {
    grid-template-columns: 1fr !important;
    width: min(100%, 420px);
    gap: 10px !important;
    margin: 0 auto 22px !important;
  }

  .about-features li,
  .about-features li:nth-child(3) {
    width: 100% !important;
    max-width: none !important;
    min-height: 54px;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 10px !important;
    padding: 12px 14px !important;
    text-align: right !important;
    line-height: 1.55 !important;
    background: #ffffff !important;
    border: 1px solid rgba(10, 144, 90, 0.16) !important;
    box-shadow: 0 10px 24px rgba(4, 63, 60, 0.055);
  }

  .about-features li i {
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 0 !important;
    color: #0a905a !important;
    background: rgba(20, 182, 112, 0.1);
    border-radius: 50%;
  }

  .about-stats {
    width: min(100%, 420px);
    margin-inline: auto !important;
  }
}

@media (max-width: 430px) {
  .about-section {
    padding-inline: 14px !important;
  }

  .about-visual {
    max-width: min(270px, 78vw) !important;
  }

  .about-title {
    font-size: clamp(1.75rem, 9vw, 2.2rem) !important;
  }

  .about-desc {
    font-size: 14.5px !important;
    line-height: 1.85 !important;
  }
}

.hero-section {
  min-height: 100svh !important;
  height: 100svh !important;
  background: #043f3c;
}

.hero-slide {
  background-position: center center !important;
}

.hero-slide--1 {
  background-position: center 52% !important;
}

.hero-slide--2 {
  background-position: center 48% !important;
}

.hero-slide--3 {
  background-position: center 50% !important;
}

.hero-slide::before {
  background:
    linear-gradient(180deg, rgba(4, 63, 60, 0.42) 0%, rgba(4, 63, 60, 0.2) 34%, rgba(4, 63, 60, 0.62) 100%),
    rgba(0, 0, 0, 0.16) !important;
}

.about-section {
  background:
    radial-gradient(circle at 12% 12%, rgba(20, 182, 112, 0.1), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f7fbf9 100%) !important;
}

.about-grid {
  gap: clamp(26px, 5vw, 58px) !important;
}

.about-title {
  letter-spacing: 0 !important;
}

.about-features {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px !important;
}

.about-features li,
.about-features li:nth-child(3) {
  grid-column: auto;
  width: auto;
  max-width: none;
  margin: 0;
}

.home-cta-section {
  position: relative;
  padding: clamp(56px, 7vw, 86px) 20px;
  background:
    linear-gradient(180deg, #f7fbf9 0%, #ffffff 100%);
  direction: rtl;
}

.home-cta {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  width: min(1120px, 100%);
  min-height: 310px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 54px);
  overflow: hidden;
  color: #ffffff;
  border-radius: 22px;
  background-image:
    linear-gradient(90deg, rgba(4, 63, 60, 0.92), rgba(7, 110, 106, 0.72), rgba(10, 144, 90, 0.38)),
    url('../images/hero3.webp?v=1918');
  background-size: cover;
  background-position: center;
  box-shadow: 0 24px 70px rgba(4, 63, 60, 0.18);
}

.home-cta::after {
  content: '';
  position: absolute;
  inset: 18px;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  pointer-events: none;
}

.home-cta__content {
  max-width: 650px;
}

.home-cta__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  padding: 8px 14px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}

.home-cta__dot {
  width: 9px;
  height: 9px;
  background: #22c77a;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(34, 199, 122, 0.16);
}

.home-cta__title {
  max-width: 13ch;
  margin: 0 0 14px;
  color: #ffffff;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.15;
}

.home-cta__text {
  max-width: 52ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.9;
}

.home-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.home-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 12px 22px;
  color: #043f3c;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
  border-radius: 999px;
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.home-cta__btn:hover,
.home-cta__btn:focus-visible {
  transform: translateY(-2px);
}

.home-cta__btn--primary {
  color: #ffffff;
  background: linear-gradient(135deg, #0a905a, #18c57a);
  box-shadow: 0 14px 30px rgba(10, 144, 90, 0.32);
}

.home-cta__btn--ghost {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.home-cta__btn--ghost:hover,
.home-cta__btn--ghost:focus-visible {
  color: #043f3c;
  background: #ffffff;
}

.vision-wave-section {
  background:
    radial-gradient(circle at 80% 10%, rgba(20, 182, 112, 0.18), transparent 28%),
    linear-gradient(180deg, #043f3c 0%, #062f2d 100%) !important;
}

.vm-header {
  max-width: 760px !important;
}

.vm-title {
  letter-spacing: 0 !important;
}

.vm-tabs {
  width: min(100%, 520px) !important;
  margin-inline: auto !important;
  border-radius: 999px !important;
}

.vm-grid--tabs {
  grid-template-columns: minmax(0, 760px) !important;
  justify-content: center !important;
}

.vm-grid--tabs .vm-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px 20px;
  min-height: 0 !important;
  padding: clamp(26px, 4vw, 42px) !important;
}

.vm-grid--tabs .vm-card[hidden] {
  display: none !important;
}

.vm-card__icon {
  grid-row: span 3;
  margin: 0 !important;
}

.vm-card__label,
.vm-card__title,
.vm-card__text,
.vm-card__list {
  text-align: start !important;
}

@media (max-width: 768px) {
  .hero-section {
    min-height: 100svh !important;
    height: 100svh !important;
  }

  .hero-content {
    justify-content: center !important;
    padding: calc(var(--aj-header-h) + 34px) 18px 56px !important;
  }

  .hero-title {
    font-size: clamp(2.05rem, 9vw, 3rem) !important;
    line-height: 1.18 !important;
    max-width: 11ch;
  }

  .hero-desc {
    max-width: 28ch;
    font-size: 15.5px !important;
    line-height: 1.85 !important;
  }

  .hero-button {
    min-width: 136px;
    border-radius: 999px !important;
  }

  .about-section {
    padding: 36px 14px 54px !important;
  }

  .about-grid {
    gap: 18px !important;
  }

  .about-visual {
    max-width: min(236px, 68vw) !important;
    aspect-ratio: 1 / 0.74 !important;
    margin-bottom: 8px !important;
  }

  .about-visual__frame {
    padding: 14px !important;
    border-radius: 18px !important;
  }

  .about-visual__frame .about-logo {
    width: min(198px, 88%) !important;
    padding: 0 !important;
  }

  .about-badge {
    bottom: -10px !important;
    left: 2px !important;
    padding: 8px 11px !important;
    transform: rotate(-2deg) !important;
  }

  .about-badge__num {
    font-size: 20px !important;
  }

  .about-badge__label {
    font-size: 10px !important;
  }

  .about-dots {
    display: none !important;
  }

  .about-eyebrow {
    margin-bottom: 14px !important;
  }

  .about-title {
    max-width: 12ch !important;
    margin-bottom: 12px !important;
    font-size: clamp(2rem, 8vw, 2.65rem) !important;
    line-height: 1.16 !important;
  }

  .about-desc {
    max-width: 35ch !important;
    margin-bottom: 18px !important;
    font-size: 14.5px !important;
    line-height: 1.82 !important;
  }

  .about-features {
    grid-template-columns: 1fr !important;
    width: min(100%, 390px) !important;
    gap: 9px !important;
    margin-bottom: 18px !important;
  }

  .about-features li,
  .about-features li:nth-child(3) {
    min-height: 48px !important;
    padding: 10px 12px !important;
    font-size: 13.2px !important;
    border-radius: 13px !important;
  }

  .about-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    width: min(100%, 390px) !important;
    gap: 10px !important;
  }

  .about-stat:nth-child(3) {
    grid-column: 1 / -1 !important;
    width: min(210px, 100%) !important;
    justify-self: center !important;
  }

  .about-buttons {
    width: min(100%, 390px);
    justify-content: center;
    margin-top: 4px !important;
  }

  .home-cta-section {
    padding: 42px 14px !important;
  }

  .home-cta {
    grid-template-columns: 1fr;
    min-height: 360px;
    padding: 26px 18px;
    text-align: center;
    background-image:
      linear-gradient(180deg, rgba(4, 63, 60, 0.9), rgba(4, 63, 60, 0.68)),
      url('../images/hero3.webp?v=1918');
  }

  .home-cta::after {
    inset: 12px;
  }

  .home-cta__content {
    margin-inline: auto;
  }

  .home-cta__title {
    max-width: 10ch;
    margin-inline: auto;
    font-size: clamp(1.85rem, 8vw, 2.5rem);
  }

  .home-cta__text {
    max-width: 31ch;
    margin-inline: auto;
    font-size: 14px;
  }

  .home-cta__actions {
    justify-content: center;
  }

  .home-cta__btn {
    min-width: 142px;
    padding-inline: 18px;
  }

  .vision-wave-section {
    padding: 52px 14px !important;
  }

  .vm-header {
    margin-bottom: 20px !important;
  }

  .vm-eyebrow {
    padding: 8px 15px !important;
    font-size: 12px !important;
  }

  .vm-title {
    font-size: clamp(1.85rem, 7vw, 2.5rem) !important;
    line-height: 1.22 !important;
  }

  .vm-lead {
    max-width: 34ch !important;
    font-size: 14px !important;
    line-height: 1.85 !important;
  }

  .vm-tabs {
    padding: 5px !important;
    margin-bottom: 16px !important;
  }

  .vm-tab {
    min-height: 38px !important;
    padding: 7px 8px !important;
    font-size: 12.5px !important;
    border-radius: 999px !important;
  }

  .vm-grid--tabs .vm-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 22px 16px !important;
    text-align: center !important;
    border-radius: 18px !important;
  }

  .vm-card__icon {
    width: 54px !important;
    height: 54px !important;
    margin-inline: auto !important;
    border-radius: 16px !important;
  }

  .vm-card__label,
  .vm-card__title,
  .vm-card__text,
  .vm-card__list {
    text-align: center !important;
  }

  .vm-card__text,
  .vm-card__list li {
    font-size: 13.5px !important;
    line-height: 1.85 !important;
  }

  .vm-card__list {
    gap: 8px !important;
    padding: 0 !important;
  }

  .vm-card__list li {
    padding: 8px 10px !important;
    background: rgba(255, 255, 255, 0.055);
    border-radius: 10px;
  }

  .vm-card__list li::before {
    display: none !important;
  }
}

@media (max-width: 430px) {
  .about-visual {
    max-width: min(218px, 64vw) !important;
  }

  .about-title {
    max-width: 11ch !important;
  }

  .about-stat {
    padding: 12px 10px !important;
  }

  .about-stat__num {
    font-size: 20px !important;
  }

  .about-stat__label {
    font-size: 12px !important;
  }
}
