




:root {
  --primary-green: #2fbf71;
  --dark-green: #1f8f52;
  --accent-lime: #7ed957;
  --dark-bg: #0f0f0f;
  --menu-bg: #1b1b1b;
  --white: #ffffff;
}

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

body {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--white);
  color: var(--dark-bg);
}

/* =========================
   HERO
========================= */

/* =========================
   HERO SECTION
========================= */

.hero {
  padding: 80px 20px;
  background: url('../../images/homebanner.jpeg') center/cover no-repeat;
  
    position: relative;
  padding: 120px 20px;
  color: white;
}

.hero {
  background: url('../../images/homebanner.jpeg') center/cover no-repeat;
  position: relative;
  padding: 120px 20px;
  color: white;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.hero-inner {
  position: relative;
  max-width: 1200px;
  margin: auto;
}



.hero-inner {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

/* LEFT CONTENT */



.hero h1 {
  font-size: 52px;
  line-height: 1.15;
  margin-bottom: 18px;
}

.hero h1 span {
  color: var(--primary-green);
}

.hero-sub {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-body {
  font-size: 16px;
  line-height: 1.75;
  color: #fff;
  margin-bottom: 32px;
}

.hero-trust {
  list-style: none;
  margin-bottom: 36px;
  padding: 0;
}

.hero-trust li {
  font-size: 15px;
  margin-bottom: 10px;
}

.hero-buttons{
  display:flex;
  gap:20px;
  flex-wrap:wrap;
}

.hero-btn {
  display: inline-block;
  padding: 16px 42px;
  border-radius: 50px;
  background: linear-gradient(90deg, var(--primary-green), var(--accent-lime));
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
  gap: 20px;
}

.hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(47,191,113,0.35);
}





.hero-trust{
  text-align: left;
  padding-left: 0;
  list-style: none;
}

.hero-trust{
  text-align:left !important;
}

.hero-trust{
  list-style: none;
  padding: 0;
  margin: 20px 0;
  text-align: left;
  display: inline-block;
}

.hero-trust li{
  text-align: left;
  margin-bottom: 8px;
}

.hero{
  text-align:left;
}

.hero-content{
  max-width:650px;
}

.hero-trust{
  list-style:none;
  padding:0;
  margin:20px 0;
}

.hero-trust li{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:8px;
}

.hero-trust i{
  color:#00c853;
}
/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {
    
  .hero {
  padding: 0px;
}

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
    
  }
  .hero-content{
      padding: 10px;
  }

  .hero-animation {
    order: -1;
  }

  .hero-img {
    max-width: 100%;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero-sub {
    font-size: 16px;
  }

  .hero-body {
    font-size: 15px;
  }



  .hero-btn {
    width: 100%;
  }
}




/* =========================
   STATS SECTION
========================= */

.stats-section {
  position: relative;
  background: url('../../images/homebanner2.jpeg') center/cover no-repeat;
  padding: 120px 20px;
  overflow: hidden;
}

.stats-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(15,15,15,0.9),
    rgba(31,143,82,0.85)
  );
  z-index: 1;
}

.stats-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
  color: var(--white);
}

.stat-box {
  padding: 20px;
  border-left: 1px solid rgba(255,255,255,0.15);
}

.stat-box:first-child {
  border-left: none;
}

.stat-icon {
  font-size: 40px;
  margin-bottom: 20px;
  color: var(--accent-lime);
}

.stat-number {
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 18px;
  color: var(--accent-lime);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
  }

  .stat-box {
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 40px;
  }

  .stat-box:nth-child(1),
  .stat-box:nth-child(2) {
    border-top: none;
  }
}

@media (max-width: 600px) {
  .stats-container {
    grid-template-columns: 1fr;
  }

  .stat-number {
    font-size: 42px;
  }
}







.what-we-remove {
  background: var(--primary-green);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}

.wwr-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  text-align: center;
  color: var(--white);
}

.what-we-remove h2 {
  font-size: 40px;
  margin-bottom: 10px;
}

.wwr-sub {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 50px;
}

/* CARD GRID / SLIDER */
.wwr-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* CARD */
.wwr-card {
  background: var(--white);
  color: #333;
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: float 4s ease-in-out infinite;
}

.wwr-card:nth-child(even) {
  animation-delay: 1.5s;
}

.wwr-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* ICON */
.wwr-icon {
  font-size: 40px;
  display: inline-block;
  margin-bottom: 15px;
}

.wwr-icon i{
  font-size: 28px;
  color: var(--primary-green);
}

/* FLOAT ANIMATION */
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
  100% { transform: translateY(0); }
}

/* NOTE */
.wwr-note {
  margin-top: 50px;
  font-size: 17px;
  opacity: 0.95;
}



/* =====================
   CARD CTA BUTTON
===================== */
.wwr-card-btn {
  margin-top: 40px;
  padding: 10px 18px;
  background: var(--primary-green);
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  border-radius: 20px;
  transition: transform 0.25s ease, background 0.25s ease;
}

.wwr-card-btn:hover {
  background: var(--dark-green);
  transform: translateY(-2px);
}

/* =====================
   FINAL SECTION CTA
===================== */
.wwr-final-cta {
  margin: 60px 0 20px;
  text-align: center;
}

.wwr-main-btn {
  display: inline-block;
  padding: 16px 36px;
  background: var(--accent-lime);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  border-radius: 40px;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.wwr-main-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}




/* =====================
   BOTTOM WAVE
===================== */
.wwr-wave {
  height: 140px;
  background: var(--white);
  border-top-left-radius: 100% 60px;
  border-top-right-radius: 100% 60px;
  margin-top: 80px;
}



/* =====================
   MOBILE – FINAL POLISH
===================== */
@media (max-width: 900px) {

  /* Section spacing */
  .what-we-remove {
    padding-top: 50px;
  }

  .wwr-container {
    padding: 0 16px;
  }

  /* Slider */
  .wwr-cards {
    display: flex;
    overflow-x: auto;

    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;

    padding: 20px 0 0;
    margin: 0;

    gap: 20px;
  }

  /* Card */
  .wwr-card {
    flex: 0 0 100%;
    max-width: 100%;

    scroll-snap-align: center;

    margin: 0 auto;
    padding: 24px 20px;              /* ✅ compact padding */
    border-radius: 18px;

    min-height: 190px;               /* ✅ FIXED visual height */

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    background: var(--white);
  }

  .wwr-icon {
    font-size: 36px;
    margin-bottom: 12px;
  }

  .wwr-card h3 {
    margin-bottom: 6px;
  }

  .wwr-card p {
    font-size: 14px;
    line-height: 1.45;
    text-align: center;
  }

  /* Dots */
  .wwr-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 24px 0 0;                /* ✅ more breathing room */
  }

  .wwr-dots .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,0.45);
  }

  .wwr-dots .dot.active {
    background: var(--accent-lime);
  }

  /* Bottom note spacing */
  .wwr-note {
    margin-top: 36px;
    padding: 0 10px;
    font-size: 15px;
    line-height: 1.5;
  }

  /* Hide scrollbar */
  .wwr-cards::-webkit-scrollbar {
    display: none;
  }
}



@media (max-width: 900px) {
  .wwr-card-btn {
    margin-top: 14px;
    font-size: 13px;
  }

  .wwr-main-btn {
    font-size: 16px;
    padding: 14px 32px;
  }
}

/* =====================
   DESKTOP CARD FIX
===================== */
.wwr-card {
  display: flex;
  flex-direction: column;
  align-items: center;

  /* 🔥 important */
  justify-content: flex-start;
}



/* =====================
   MOBILE DOT INDICATORS
===================== */
@media (max-width: 900px) {

  .wwr-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
  }

  .wwr-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
    transition: background 0.3s ease;
  }

  .wwr-dots .dot.active {
    background: var(--accent-lime);
  }
}





.scroll900-section {
  padding: 120px 20px;
  background: #fff;
}

.scroll900-container {
  display: flex;
  max-width: 1400px;
  margin: auto;
  gap: 80px;
}

/* LEFT SIDE */

.scroll900-left {
  width: 45%;
  position: sticky;
  top: 120px;
  height: fit-content;
}

.scroll900-label {
  color: var(--accent-lime);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.scroll900-left h2 {
  font-size: 56px;
  margin-bottom: 25px;
  color: var(--dark-bg);
}

.scroll900-left p {
  margin-bottom: 30px;
  line-height: 1.7;
  color: #555;
}

.scroll900-btn {
  background: var(--accent-lime);
  padding: 14px 28px;
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

/* RIGHT SIDE */

.scroll900-right {
  width: 55%;
  max-height: 600px;
  overflow-y: auto;
  padding-right: 20px;
}

.scroll900-step {
  padding: 40px 0;
  border-bottom: 1px solid #ddd;
  cursor: none;
}

.scroll900-step h3 {
  font-size: 30px;
  margin-bottom: 15px;
}

.scroll900-step span {
  color: var(--accent-lime);
  margin-right: 8px;
}

.scroll900-step p {
  color: #666;
}

/* CUSTOM CURSOR */

.scroll900-cursor {
  position: fixed;
  width: 50px;
  height: 50px;
  background: var(--accent-lime);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.scroll900-cursor i {
  color: white;
  font-size: 18px;
}

/* RESPONSIVE */

@media (max-width: 992px) {

  .scroll900-container {
    flex-direction: column;
  }

  .scroll900-left,
  .scroll900-right {
    width: 100%;
  }

  .scroll900-left {
    position: relative;
    top: 0;
  }

  .scroll900-right {
    max-height: none;
    overflow: visible;
  }
}








.process888-section {
  padding: 120px 20px;
  background: radial-gradient(circle at center, #0b5d3a 0%, #043c28 60%, #032d1f 100%);
  color: var(--white);
  overflow: hidden;
  background: url('../../images/homebanner3.jpeg') center/cover no-repeat;
  
}


.process888-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: auto;
  gap: 60px;
  
}

.process888-section {
  position: relative;
  padding: 100px 20px;
  background: url('../../images/homebanner3.jpeg') center/cover no-repeat;
  z-index: 1;
  overflow: hidden;
}

/* Overlay */
.process888-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(47, 191, 113, 0.2); /* --primary-green with opacity */
  z-index: 0;
}

/* Keep content above overlay */
.process888-container {
  position: relative;
  z-index: 2;
}

/* LEFT SIDE */

.process888-left {
  width: 35%;
}

.process888-label {
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--accent-lime);
  margin-bottom: 20px;
}

.process888-left h2 {
  font-size: 52px;
  line-height: 1.2;
  margin-bottom: 25px;
}

.process888-sub {
  font-size: 22px;
  margin-bottom: 40px;
  opacity: 0.9;
}

.process888-buttons {
  display: flex;
  gap: 20px;
  align-items: center;
}

.btn-primary {
  background: var(--accent-lime);
  padding: 14px 28px;
  border-radius: 8px;
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
}

.btn-link {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid var(--white);
  padding-bottom: 4px;
}

/* CENTER IMAGE */

.process888-image {
  width: 30%;
  text-align: center;
}

.process888-image img {
  max-width: 100%;
}

/* RIGHT SIDE */

.process888-right {
  width: 35%;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.process888-card {
  background: rgba(0, 0, 0, 0.35);
  padding: 30px;
  border-radius: 14px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.process888-check {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--accent-lime);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-bg);
  font-size: 18px;
  flex-shrink: 0;
}

.process888-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.process888-card p {
  margin: 0;
  opacity: 0.85;
  line-height: 1.6;
}

/* RESPONSIVE */

@media (max-width: 1100px) {

  .process888-container {
    flex-direction: column;
    text-align: center;
  }

  .process888-left,
  .process888-right,
  .process888-image {
    width: 100%;
  }

  .process888-right {
    margin-top: 40px;
  }

  .process888-card {
    text-align: left;
  }
}

  
  
  
  
  
  
  
  
  
.curve900-section {
  padding: 150px 20px;
  background: #fff;
}

.curve900-wrapper {
  position: relative;
  max-width: 1400px;
  height: 520px;
  margin: auto;
}

.curve900-svg {
  position: absolute;
  width: 100%;
  height: 400px;
  top: 90px;.process888-section {
  padding: 120px 20px;
  background: radial-gradient(circle at center, #0b5d3a 0%, #043c28 60%, #032d1f 100%);
  color: var(--white);
  overflow: hidden;
}

.process888-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: auto;
  gap: 60px;
}

/* LEFT SIDE */

.process888-left {
  width: 35%;
}

.process888-label {
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--accent-lime);
  margin-bottom: 20px;
}

.process888-left h2 {
  font-size: 52px;
  line-height: 1.2;
  margin-bottom: 25px;
}

.process888-sub {
  font-size: 22px;
  margin-bottom: 40px;
  opacity: 0.9;
}

.process888-buttons {
  display: flex;
  gap: 20px;
  align-items: center;
}

.btn-primary {
  background: var(--accent-lime);
  padding: 14px 28px;
  border-radius: 8px;
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
}

.btn-link {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid var(--white);
  padding-bottom: 4px;
}

/* CENTER IMAGE */

.process888-image {
  width: 30%;
  text-align: center;
}

.process888-image img {
  max-width: 100%;
}

/* RIGHT SIDE */

.process888-right {
  width: 35%;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.process888-card {
  background: rgba(0, 0, 0, 0.35);
  padding: 30px;
  border-radius: 14px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.process888-check {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--accent-lime);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-bg);
  font-size: 18px;
  flex-shrink: 0;
}

.process888-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.process888-card p {
  margin: 0;
  opacity: 0.85;
  line-height: 1.6;
}

/* RESPONSIVE */

@media (max-width: 1100px) {

  .process888-container {
    flex-direction: column;
    text-align: center;
  }

  .process888-left,
  .process888-right,
  .process888-image {
    width: 100%;
  }

  .process888-right {
    margin-top: 40px;
  }

  .process888-card {
    text-align: left;
  }
  .process888-buttons {
  
  align-items: center;
}

}

}

/* --------- BLOCK POSITIONS ---------- */

/* Crest 1 */
.block900-1 {
  position: absolute;
  left: 10%;
  top: 70px;
  width: 240px;
  text-align: center;
}

/* Trough 1 */
.block900-2 {
  position: absolute;
  left: 36%;
  top: 210px;
  width: 240px;
  text-align: center;
}

/* Crest 2 */
.block900-3 {
  position: absolute;
  left: 62%;
  top: 70px;
  width: 240px;
  text-align: center;
}

/* Trough 2 */
.block900-4 {
  position: absolute;
  left: 84%;
  top: 210px;
  width: 240px;
  text-align: center;
}

/* --------- ICON STYLES ---------- */

.icon900-1,
.icon900-2,
.icon900-3,
.icon900-4 {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid #7ed957;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  color: #2fbf71;
  background: white;
  margin: 15px auto;
}



.icon900-2,.icon900-4{
    margin-top: 140px;
}


/* --------- TEXT ---------- */

.text900-1 h3,
.text900-2 h3,
.text900-3 h3,
.text900-4 h3 {
  font-size: 28px;
  color: #2fbf71;
  margin: 10px 0 5px;
}

.text900-1 p,
.text900-2 p,
.text900-3 p,
.text900-4 p {
  font-size: 16px;
  font-weight: 600;
}

.text900-1,.text900-3{
    padding-top: 100px;
}

/* --------- MOBILE RESPONSIVE ---------- */

@media (max-width: 992px) {

  .curve900-wrapper {
    height: auto;
  }

  .curve900-svg {
    display: none;
  }

  .block900-1,
  .block900-2,
  .block900-3,
  .block900-4 {
    position: static;
    width: 100%;
    margin-bottom: 60px;
  }

}
@media (max-width: 992px) {

  .curve900-wrapper {
    height: auto;
  }

  .curve900-svg {
    display: none;
  }

  .block900-1,
  .block900-2,
  .block900-3,
  .block900-4 {
    position: static;
    width: 100%;
    margin-bottom: 60px;

    display: flex;
    flex-direction: column; /* Force vertical stack */
    align-items: center;
  }

  /* FORCE ICON FIRST FOR ALL BLOCKS */

  .icon900-1,
  .icon900-2,
  .icon900-3,
  .icon900-4 {
    order: 1;
  }

  .text900-1,
  .text900-2,
  .text900-3,
  .text900-4 {
    order: 2;
  }
}






  
  
  
  
  /* =====================
   WHY CHOOSE SECTION
===================== */
.why-choose {
  padding: 100px 20px;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    rgba(47, 191, 113, 0.06) 100%
  );
}

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

/* HEADER */
.why-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 70px;
}

.why-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(0,0,0,0.05);
  color: var(--primary-green);
  border-radius: 20px;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 14px;
}

.why-header h2 {
  font-size: 44px;
  margin-bottom: 14px;
}

.why-header p {
  font-size: 18px;
  color: #555;
}

/* =====================
   CARDS GRID
===================== */
.why-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.why-card {
  background: #fff;
  border-radius: 20px;
  padding: 34px 26px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  animation: whyFloat 5s ease-in-out infinite;
}

.why-card:nth-child(even) {
  animation-delay: 1.8s;
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

.why-card h3 {
  margin: 18px 0 10px;
  font-size: 20px;
}

.why-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

/* FLOAT ANIMATION */
@keyframes whyFloat {
  0% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

/* =====================
   ICONS
===================== */
.why-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  margin: 0 auto;
}

.why-icon.local    { background: #2fbf71; }
.why-icon.pricing  { background: #00bfa6; }
.why-icon.speed    { background: #ff9800; }
.why-icon.team     { background: #3f51b5; }
.why-icon.cleaning { background: #2e7d32; }

/* =====================
   CTA
===================== */
.why-cta {
  text-align: center;
  margin-top: 70px;
}

.why-main-btn {
  display: inline-block;
  padding: 18px 44px;
  background: var(--primary-green);
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  border-radius: 40px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-main-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

/* =====================
   MOBILE
===================== */
@media (max-width: 900px) {

  .why-cards {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .why-card {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background: rgba(255,255,255,0.75);
  }

  .why-header h2 {
    font-size: 32px;
  }

  .why-header p {
    font-size: 16px;
  }

}





/* SECTION */
.service-areas{
  padding:90px 8%;
  background:#fff;
}

/* GRID */
.areas-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:center;
}

/* IMAGE */
.areas-image img{
  width:100%;
  border-radius:12px;
  object-fit:cover;
}

/* CONTENT */
.areas-content h1{
  font-size:38px;
  font-weight:800;
  margin-bottom:10px;
  color:var(--dark-bg);
}

.areas-subtitle{
  color:#555;
  margin-bottom:30px;
  font-size:17px;
}

/* ACCORDION */
.areas-accordion{
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 6px 20px rgba(0,0,0,0.08);
}

/* ITEM */
.accordion-item{
  border-bottom:1px solid #e5e5e5;
}

/* HEADER */
.accordion-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:18px 20px;
  font-weight:700;
  cursor:pointer;
  background:var(--primary-green);
}

.accordion-header span{
  color:var(--green);
  font-size:16px;
}

/* ICON */
.plus-icon{
  font-size:26px;
  color:var(--green);
  transition:transform 0.3s ease;
}

/* BODY */
.accordion-body{
  max-height:0;
  overflow:hidden;
  padding:0 20px;
  transition:max-height 0.4s ease, padding 0.3s ease;
  background:#fff;
}

.accordion-body p{
  margin: 0;
  color:#444;
  font-size:15px;
}

/* ACTIVE */
.accordion-item.active .accordion-body{
  max-height: 2000px; /* big enough for long lists */
  padding:15px 20px;
}


.accordion-item.active .plus-icon{
  transform:rotate(45deg);
}
.accordion-item{
  border-bottom:1px solid #e5e5e5;
  overflow: hidden;
}


/* FOOT NOTE */
.area-note{
  margin-top:30px;
  font-size:16px;
  font-weight:600;
  color:#333;
}


/* MOBILE */
@media(max-width:900px){
  .areas-grid{
    grid-template-columns:1fr;
    text-align:center;
  }

  .areas-image{
    order:-1;
    display:flex;
    justify-content:center;
  }

  .areas-image img{
    max-width:420px;
  }

  .accordion-header{
    text-align:left;
  }
}




.service777-section {
  position: relative;
  padding: 120px 20px;
  background: url('../../images/homebanner4.jpeg') no-repeat left center;
  background-size: contain;
  background-color: var(--dark-bg);
  overflow: hidden;
}

/* Dark Gradient Overlay */

.service777-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.2) 0%,
    rgba(0,50,30,0.9) 45%,
    rgba(0,60,40,1) 70%
  );
  z-index: 1;
}

.service777-container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: auto;
}

/* LEFT SIDE CARDS */

.service777-left {
  position: relative;
  width: 40%;
}

.service777-card {
  display: flex;
  align-items: center;
  gap: 15px;
  background: var(--white);
  padding: 25px 30px;
  border-radius: 14px;
  width: 300px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.service777-card.highlight {
  background: var(--accent-lime);
  color: var(--white);
}

.service777-icon {
  font-size: 28px;
  color: var(--primary-green);
}

.service777-card.highlight .service777-icon {
  color: var(--white);
}

.service777-card h4 {
  margin: 0;
  font-size: 20px;
}

.service777-card span {
  font-size: 14px;
  opacity: 0.8;
}

/* RIGHT SIDE CONTENT */

.service777-right {
  width: 50%;
  color: var(--white);
}

.service777-label {
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 15px;
  color: var(--accent-lime);
}

.service777-right h2 {
  font-size: 56px;
  line-height: 1.2;
  margin-bottom: 30px;
}

.service777-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
}

.service777-list li {
  margin-bottom: 18px;
  font-size: 18px;
  line-height: 1.6;
}

.service777-list i {
  color: var(--accent-lime);
  margin-right: 10px;
}

.service777-btn {
  display: inline-block;
  padding: 15px 30px;
  background: var(--accent-lime);
  color: var(--white);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.3s ease;
}

.service777-btn:hover {
  background: var(--primary-green);
}

/* RESPONSIVE */

@media (max-width: 992px) {

  .service777-container {
    flex-direction: column;
    gap: 60px;
  }

  .service777-left,
  .service777-right {
    width: 100%;
  }

  .service777-section {
    background-size: cover;
    background-position: center;
  }

  .service777-card {
    width: 100%;
  }

  .service777-right h2 {
    font-size: 36px;
  }
}




.cta-clear{
  background: var(--dark-bg);
  color: var(--white);
  padding: 90px 20px;
}

.cta-clear-container{
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.cta-clear h2{
  font-size: 42px;
  margin-bottom: 25px;
  color: var(--white);
}

.cta-intro{
  font-size: 18px;
  margin-bottom: 20px;
  color: #dcdcdc;
  line-height: 1.7;
}

.cta-clear p{
  font-size: 17px;
  line-height: 1.7;
  color: #cfcfcf;
}

.cta-highlight{
  margin-top: 25px;
  font-weight: 700;
  color: var(--accent-lime);
  font-size: 20px;
}

.cta-divider{
  width: 80px;
  height: 3px;
  background: var(--primary-green);
  margin: 35px auto;
}

.cta-clear h3{
  margin-bottom: 25px;
  font-size: 24px;
}

.cta-buttons{
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-btn{
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.25s;
}

.cta-btn.primary{
  background: linear-gradient(90deg,var(--primary-green),var(--accent-lime));
  color: var(--white);
}

.cta-btn.secondary{
  background: var(--menu-bg);
  color: var(--white);
  border: 1px solid var(--primary-green);
}

.cta-btn:hover{
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}


/* Tablets */
@media (max-width: 992px){

  .cta-clear{
    padding: 70px 20px;
  }

  .cta-clear h2{
    font-size: 34px;
  }

  .cta-clear p{
    font-size: 16px;
  }

  .cta-highlight{
    font-size: 18px;
  }

}


/* Mobile */
@media (max-width: 600px){

  .cta-clear{
    padding: 60px 18px;
  }

  .cta-clear h2{
    font-size: 28px;
    line-height: 1.3;
  }

  .cta-clear h3{
    font-size: 20px;
  }

  .cta-clear p{
    font-size: 15px;
    line-height: 1.6;
  }

  .cta-buttons{
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .cta-btn{
    width: 100%;
    max-width: 280px;
    text-align: center;
    padding: 14px 20px;
  }

}
.cta-clear{
  background: var(--primary-green);
  color: var(--dark-bg);
  padding: 90px 20px;
}

.cta-clear h2{
  color: var(--dark-bg);
}

.cta-clear p{
  color: #1b1b1b;
}

.cta-highlight{
  color: var(--dark-green);
  font-weight: 700;
}

.cta-divider{
  width: 80px;
  height: 3px;
  background: var(--dark-green);
  margin: 35px auto;
}

.cta-btn.primary{
  background: var(--dark-bg);
  color: var(--white);
}

.cta-btn.secondary{
  background: transparent;
  border: 2px solid var(--dark-bg);
  color: var(--dark-bg);
}

.cta-btn.secondary:hover{
  background: var(--dark-bg);
  color: var(--white);
}

.cta-buttons{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  text-align: center;
}








