/* SECTION */
.what-banner {
background: #ebe0f7; /* soft lavender */
  padding: 80px 0 100px 0; /* ❌ remove left padding */
  font-family: "Poppins", sans-serif;
}

/* CONTAINER */
.what-banner .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px; /* small safe padding */
  
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 60px; /* controlled spacing */
}

/* LEFT CONTENT */
.banner-content {
  flex: 0 0 42%; /* slightly tighter */
}

/* BREADCRUMB */
.breadcrumb {
  font-size: 14px;
  color: #6c7a89;
  margin-bottom: 20px;
}

/* TITLE */
.banner-content h1 {
   white-space: nowrap;
  font-size: 68px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;

  background: linear-gradient(90deg, #1a9aa6, #2ecc71);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* TEXT */
.banner-content p {
  font-size: 18px;
  line-height: 1.8;
  color: #5c6b7a;
  max-width: 520px;
}

/* IMAGE SIDE */
.banner-image {
  flex: 0 0 58%; /* give image more space */
  display: flex;
  justify-content: flex-end; /* keep space after image */
}

/* IMAGE */
.banner-image img {
  width: 100%;
  max-width: 650px;
  height: 420px;
  object-fit: cover;
  border-radius: 20px;
}

/* =========================
   RESPONSIVE
========================= */
/* Tablet */
@media (max-width: 1200px) {
  .banner-content h1 {
    font-size: 52px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .banner-content h1 {
    font-size: 34px;
    white-space: normal; /* allow wrap on small screens */
  }
}
/* Tablet */
@media (max-width: 1200px) {
  .what-banner .container {
    max-width: 1100px;
    gap: 40px;
  }

  .banner-content h1 {
    font-size: 52px;
  }

  .banner-image img {
    max-width: 550px;
    height: 380px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .what-banner {
    padding: 60px 20px;
  }

  .what-banner .container {
    flex-direction: column;
    text-align: center;
  }

  .banner-content,
  .banner-image {
    flex: 100%;
  }

  .banner-image {
    justify-content: center;
  }

  .banner-content h1 {
    font-size: 38px;
  }

  .banner-content p {
    margin: auto;
  }

  .banner-image img {
    height: auto;
  }
}


/*section 2*/
/* SECTION */
.cc-features {
  background: #0b1b26;
  padding: 100px 20px;
  overflow: hidden;
}

/* WRAPPER */
.cc-wrap {
  max-width: 1300px;
  margin: auto;
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

/* CARD */
.cc-box {
  position: relative;
  flex: 1 1 350px;
  padding: 40px;
  background: #0f2431;
  border-radius: 18px;
  color: #cfd9e3;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);

  /* ENTRY ANIMATION */
  transform: translateY(60px);
  opacity: 0;
  animation: cc-rise 0.8s ease forwards;
}

/* stagger animation */
.cc-box:nth-child(2) { animation-delay: 0.2s; }
.cc-box:nth-child(3) { animation-delay: 0.4s; }

/* GREEN SLIDE LAYER */
.cc-box::before {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #00c897, #00e0a4);
  opacity: 0.08;
  transition: 0.6s ease;
  z-index: 0;
}

/* HOVER */
.cc-box:hover::before {
  top: 0;
}

/* CONTENT ABOVE LAYER */
.cc-box * {
  position: relative;
  z-index: 1;
}

/* ICON */
.cc-icon {
  font-size: 28px;
  margin-bottom: 20px;
  color: #00e0a4;
}

/* TITLE */
.cc-box h3 {
  color: #ffffff;
  margin-bottom: 15px;
  font-size: 22px;
}

/* TEXT */
.cc-box p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* LINK */
.cc-box a {
  color: #00e0a4;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.cc-box a:hover {
  letter-spacing: 1px;
}

/* ENTRY ANIMATION */
@keyframes cc-rise {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* =====================
   RESPONSIVE
===================== */

/* Tablet */
@media (max-width: 992px) {
  .cc-wrap {
    gap: 20px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .cc-features {
    padding: 70px 15px;
  }

  .cc-wrap {
    flex-direction: column;
  }

  .cc-box {
    padding: 30px;
  }
}

.cc-box {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
}

/* TOP GREEN LINE */
.cc-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, #00c897, #00e0a4);
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
}

.cc-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #00c897, #00e0a4);
  border-radius: 14px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 20px;

  box-shadow: 0 10px 25px rgba(0, 200, 151, 0.3);
}

/* SVG inside */
.cc-icon svg {
  width: 26px;
  height: 26px;
  color: #ffffff; /* icon color */
}

.cc-box:hover .cc-icon {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 224, 164, 0.5);
  transition: 0.3s;
}

/*Community Services*/

/* SECTION */

.cs-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
  transition: 0.3s ease;
}

/* IMAGE OVERLAY (hidden initially) */
.cs-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  opacity: 0;
  transition: 0.4s ease;
}

/* BOTTOM BORDER (hidden initially) */
.cs-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  width: 0; /* 🔥 start hidden */
  transition: 0.4s ease;
}
.cs-community {
  padding: 100px 20px;
  background: #f6f8fb;
  font-family: "Poppins", sans-serif;
}

/* HEADER */
.cs-head {
  text-align: center;
  max-width: 700px;
  margin: auto;
  margin-bottom: 60px;
}

.cs-tag {
  display: inline-block;
  background: #e6f7f2;
  color: #00a884;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 15px;
}

.cs-head h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.cs-head p {
  color: #666;
  font-size: 15px;
}

/* GRID */
.cs-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.cs-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);

  transform: translateY(60px);
  opacity: 0;
  transition: 0.6s ease;
}

/* SHOW ON SCROLL */
.cs-card.show {
  transform: translateY(0);
  opacity: 1;
}

/* IMAGE */
.cs-img {
  position: relative;
}

.cs-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* BADGE */
.cs-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 10px;
  border-radius: 12px;
  color: #fff;
  font-size: 16px;
}

/* COLORS */
.blue { background: #3b82f6; }
.orange { background: #f97316; }
.purple { background: #8b5cf6; }
.pink { background: #ec4899; }

/* BODY */
.cs-body {
  padding: 20px;
}

.cs-body h3 {
  margin-bottom: 10px;
}

.cs-body p {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

.cs-body a {
  color: #00a884;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.cs-body a:hover {
  letter-spacing: 1px;
}

/* HOVER EFFECT */
.cs-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* IMAGE ZOOM */
.cs-card:hover img {
  transform: scale(1.1);
  transition: 0.5s;
}

/* =====================
   RESPONSIVE
===================== */

/* Tablet */
@media (max-width: 992px) {
  .cs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .cs-grid {
    grid-template-columns: 1fr;
  }

  .cs-head h2 {
    font-size: 24px;
  }
}
.cs-blue:hover .cs-img::after {
  background: rgba(59, 130, 246, 0.35);
  opacity: 1;
}

.cs-blue:hover::after {
  width: 100%;
  background: #3b82f6;
}
.cs-orange:hover .cs-img::after {
  background: rgba(249, 115, 22, 0.35);
  opacity: 1;
}

.cs-orange:hover::after {
  width: 100%;
  background: #f97316;
}
.cs-purple:hover .cs-img::after {
  background: rgba(139, 92, 246, 0.35);
  opacity: 1;
}

.cs-purple:hover::after {
  width: 100%;
  background: #8b5cf6;
}
.cs-pink:hover .cs-img::after {
  background: rgba(236, 72, 153, 0.35);
  opacity: 1;
}

.cs-pink:hover::after {
  width: 100%;
  background: #ec4899;
}
.cs-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}


/*Benefits*/


/* SECTION */
.mb-section {
  padding: 100px 0; /* remove side padding */
  background: #f7f9fc;
  font-family: "Poppins", sans-serif;
}

/* HEADER */
.mb-head {
  text-align: center;
  max-width: 900px;
  margin: auto;
  margin-bottom: 70px;
}

.mb-tag {
  background: #e6f7f2;
  color: #00a884;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
}

.mb-head h2 {
  margin: 15px 0;
  font-size: 36px;
}

.mb-head p {
  color: #6b7280;
  font-size: 16px;
}

/* 🔥 MAIN WRAPPER (WIDER) */
.mb-wrapper {
  max-width: 1400px; /* 🔥 increased */
  margin: auto;
  padding: 0 40px; /* slight edge spacing */

  display: flex;
  gap: 80px; /* more breathing space */
  align-items: center;
}

/* LEFT LIST */
.mb-list {
  flex: 1.2; /* 🔥 slightly bigger */
}

/* ITEM */
.mb-item {
  display: flex;
  align-items: center;
  gap: 16px;

  padding: 18px 24px;
  margin-bottom: 18px;

  background: #eef2f6;
  border-radius: 14px;

  transition: all 0.3s ease;
  cursor: pointer;
}

/* ICON */
.mb-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #e5e7eb;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #00a884;
  font-size: 14px;

  transition: 0.3s;
}

/* TEXT */
.mb-item p {
  margin: 0;
  font-size: 16px;
  color: #1f2937;
}

/* HOVER */
.mb-item:hover {
  background: #e6f7f2;
  transform: translateX(10px);
}

.mb-item:hover .mb-icon {
  background: linear-gradient(135deg, #00c897, #00e0a4);
  color: #fff;
  box-shadow: 0 6px 18px rgba(0,200,150,0.4);
}

/* 🔥 RIGHT CTA (BIGGER + STRONGER) */
.mb-cta {
  flex: 1;

  background: linear-gradient(135deg, #00a884, #009e7f);
  color: #fff;

  padding: 60px 50px; /* 🔥 bigger box */
  border-radius: 20px;

  text-align: center;

  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.mb-cta h3 {
  font-size: 26px;
  margin-bottom: 15px;
}

.mb-cta p {
  font-size: 15px;
  margin-bottom: 30px;
}

/* BUTTON */
.mb-btn {
  background: #fff;
  color: #00a884;
  padding: 14px 30px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 500;
  display: inline-block;

  transition: 0.3s;
}

.mb-btn:hover {
  background: #f1f5f9;
  transform: translateY(-2px);
}

/* =====================
   RESPONSIVE
===================== */

/* Tablet */
@media (max-width: 1100px) {
  .mb-wrapper {
    flex-direction: column;
    gap: 40px;
    padding: 0 20px;
  }

  .mb-list {
    width: 100%;
  }

  .mb-cta {
    width: 100%;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .mb-head h2 {
    font-size: 26px;
  }

  .mb-item {
    padding: 14px 16px;
  }

  .mb-cta {
    padding: 40px 25px;
  }
}

/*Our Services*/

/* =====================
   SECTION
===================== */
.cs2-services {
  padding: 100px 20px;
  background: #f6f8fb;
  font-family: "Poppins", sans-serif;
}

/* =====================
   HEADER
===================== */
.cs2-head {
  text-align: center;
  margin-bottom: 60px;
}

.cs2-tag {
  display: inline-block;
  background: #e6f7f2;
  color: #00a884;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 10px;
}

.cs2-head h2 {
  font-size: 34px;
  font-weight: 600;
  color: #1f2937;
}

/* =====================
   CONTAINER
===================== */
.cs2-container {
  max-width: 1200px;
  margin: auto;
}

/* =====================
   GRID (FIXED)
===================== */
.cs2-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* =====================
   CARD
===================== */
.cs2-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px;

  box-shadow: 0 10px 25px rgba(0,0,0,0.08);

  /* 🔥 SAME HEIGHT SYSTEM */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;

  transition: all 0.3s ease;
}

/* =====================
   ICON BOX
===================== */
.cs2-icon {
  width: 60px;
  height: 60px;

  background: #e6f7f2;
  color: #00a884;

  border-radius: 14px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 22px;
  margin-bottom: 18px;
}

/* =====================
   TITLE
===================== */
.cs2-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 10px;
}

/* =====================
   DESCRIPTION
===================== */
.cs2-card p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;

  margin-bottom: 5px;

  /* 🔥 EQUAL HEIGHT TEXT */
  min-height: 60px;
}

/* =====================
   LIST
===================== */
.cs2-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 0;
  padding-top: 0;

}

.cs2-card ul li {
  font-size: 14px;
  color: #1f2937;
  margin-bottom: 8px;

  padding-left: 22px;
  position: relative;
}

/* CHECK ICON */
.cs2-card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #00a884;
  font-size: 14px;
}
/* REMOVE FIRST ITEM EXTRA SPACE */
.cs2-card ul li:first-child {
  margin-top: 0;
}
/* =====================
   HOVER EFFECT
===================== */
.cs2-card:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* =====================
   RESPONSIVE
===================== */

/* Tablet */
@media (max-width: 992px) {
  .cs2-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .cs2-grid {
    grid-template-columns: 1fr;
  }

  .cs2-head h2 {
    font-size: 26px;
  }

  .cs2-card {
    padding: 20px;
  }

   .cs2-card p {
    margin-bottom: 8px;
  }

  .cs2-card ul {
    margin-top: 0;
  }
} 

/* cta*/

/* SECTION */
.cta-support {
  padding: 80px 20px;
  background: #f6f8fb;
}

/* BOX */
.cta-box {
  max-width: 1200px;
  margin: auto;
  text-align: center;

  background: linear-gradient(135deg, #1fa37a, #3fb69a);
  color: #ffffff;

  padding: 60px 40px;
  border-radius: 24px;

  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

/* TITLE */
.cta-box h2 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 20px;
}

/* TEXT */
.cta-box p {
  font-size: 18px;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 30px auto;
  opacity: 0.95;
}

/* BUTTON */
.cta-btn {
  display: inline-block;
  background: #ffffff;
  color: #1fa37a;

  padding: 14px 30px;
  border-radius: 10px;

  font-size: 15px;
  font-weight: 500;
  text-decoration: none;

  transition: all 0.3s ease;
}

/* HOVER */
.cta-btn:hover {
  background: #f1f5f9;
  transform: translateY(-2px);
}

/* =====================
   RESPONSIVE
===================== */

/* Tablet */
@media (max-width: 992px) {
  .cta-box h2 {
    font-size: 28px;
  }

  .cta-box p {
    font-size: 16px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .cta-box {
    padding: 40px 20px;
  }

  .cta-box h2 {
    font-size: 22px;
  }

  .cta-box p {
    font-size: 15px;
  }

  .cta-btn {
    width: 100%;
    padding: 14px;
  }
}