body {
font-family: 'Poppins', sans-serif;
}

/* ================= NAVBAR ================= */
.navbar {
  padding: 12px 0;
  background: #ffffff;
  transition: all 0.35s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

/* SHRINK ON SCROLL */
.navbar.scrolled {
  padding: 10px 0;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}
/* 
.navbar-brand {
  display: flex;
  align-items: center;
} */

.navbar-brand img {
  height: 52px;    
  width: 60px;             /* navbar height stays same */
  transform: scale(1.7);        /* 🔥 INCREASED MORE */
  transform-origin: left center;
  transition: all 0.35s ease;
}

/* LOGO SHRINK ON SCROLL */
.navbar.scrolled .navbar-brand img {
  transform: scale(1.50);       /* still bigger after scroll */
}



/* NAV LINKS */
.navbar-nav .nav-link {
  color: #004641 !important;
  font-weight: 600;
  margin-left: 20px;
  position: relative;
  padding-bottom: 5px;
}

/* UNDERLINE ANIMATION */
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  left: 0;
  bottom: 0;
  background: #7fffe0;
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 100%;
}

/* CONTACT BUTTON */
.btn-main {
  background: #004641;
  color: #ffffff;
  font-weight: 600;
  border-radius: 30px;
  padding: 10px 24px;
  transition: all 0.3s ease;
}

.btn-main:hover {
  background: #7fffe0;
  color: #004641;
}

/* MOBILE MENU FIX */
@media (max-width: 991px) {
  .navbar-collapse {
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    margin-top: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }

  .navbar-nav .nav-link {
    margin-left: 0;
    padding: 10px 0;
  }
}

/* ================= HERO ================= */
.hero {
  min-height: 80vh;
  background:
    linear-gradient(rgba(0,70,65,0.25), rgba(0,70,65,0.25)),
    url("https://hdwallpaperim.com/wp-content/uploads/2017/08/27/137449-water-hand-water_drops-splashes-bokeh.jpg") center/cover no-repeat;
  color: #fff;
}

.hero-badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(0,255,200,0.15);
  border-radius: 30px;
  color: #7fffe0;
  font-size: 14px;
  margin-bottom: 20px;
}

.hero h1 span {
  color: #7fffe0;
}

/* ================= CONTENT ================= */
.icon-box {
  border: 1px solid #eaeaea;
  padding: 25px;
  border-radius: 15px;
}

/* ================= FOOTER ================= */
footer {
  background: #004641;
  color: #ffffff;
}
/* ================= ABOUT SECTION ================= */
/* ================= ABOUT SECTION ================= */
.ews-about-section {
  padding: 80px 12px;
  background: #f9fbfc;
}

/* MAIN GRID */
.ews-container {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

/* ================= LEFT SIDE ================= */
.ews-about-visual {
  position: relative;
  height: 460px;

  /* ✅ IMAGE SET HERE */
  background-image: url("https://4.imimg.com/data4/TX/BR/MY-7083251/effluent-water-treatment-plant-500x500.jpg");
  background-size: cover;
  background-position: center;

  border-radius: 18px;
  overflow: hidden;
}

/* Glow background */
.ews-glow-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at left,
    rgba(0,255,200,0.25),
    transparent 60%
  );
}

/* Floating glow bar */
.ews-glow-bar {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(to right, #bfeee4, #2e6f6b);
  padding: 14px 24px;
  border-radius: 40px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #004641;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.ews-glow-dot {
  width: 18px;
  height: 18px;
  background: #7fffe0;
  border-radius: 50%;
}

/* ================= RIGHT CONTENT ================= */
.ews-about-content {
  max-width: 100%;
}

.ews-about-tag {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #00a79d;
}

.ews-about-title {
  font-size: 42px;
  font-weight: 800;
  margin: 12px 0 20px;
  color: #0b1c2d;
  line-height: 1.2;
}

.ews-about-title span {
  color: #00a79d;
}

.ews-about-content p {
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 16px;
}

/* ================= POINTS ================= */
.ews-about-points {
  margin-top: 25px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.ews-point {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: #0b1c2d;
}

.ews-point::before {
  content: "✓";
  width: 28px;
  height: 28px;
  background: rgba(0,255,200,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00a79d;
  font-weight: 800;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .ews-container {
    grid-template-columns: 1fr;
  }

  .ews-about-visual {
    height: 280px;
  }

  .ews-about-title {
    font-size: 34px;
  }
}

@media (max-width: 576px) {
  .ews-about-title {
    font-size: 28px;
  }

  .ews-about-points {
    grid-template-columns: 1fr;
  }
}
/* ================= GLOW TEXT MOVE ANIMATION ================= */
.ews-glow-text {
  display: inline-block;
  white-space: nowrap;
  animation: glowMove 3s ease-in-out infinite alternate;
}

/* Keyframes */
@keyframes glowMove {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(12px);
  }
}
/*  */
/* ================= WHY CHOOSE US ================= */
.ews-why-section {
  padding: 90px 15px;
  background: linear-gradient(180deg, #f9fbfc, #ffffff);
}

.ews-why-container {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
}

/* LEFT CONTENT */
.ews-why-tag {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #00a79d;
}

.ews-why-title {
  font-size: 44px;
  font-weight: 800;
  margin: 12px 0 20px;
  line-height: 1.2;
  color: #0b1c2d;
}

.ews-why-title span {
  color: #00a79d;
}

.ews-why-desc {
  color: #4a5568;
  line-height: 1.8;
  font-size: 16px;
}

/* RIGHT GRID */
.ews-why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* CARD */
.ews-why-card {
  background: #ffffff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ews-why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.ews-why-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(0, 167, 157, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.ews-why-icon i {
  font-size: 28px;
  color: #00a79d;
}

.ews-why-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: #0b1c2d;
  margin-bottom: 10px;
}

.ews-why-card p {
  font-size: 15px;
  color: #4a5568;
  line-height: 1.6;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .ews-why-container {
    grid-template-columns: 1fr;
  }

  .ews-why-title {
    font-size: 36px;
  }
}

@media (max-width: 576px) {
  .ews-why-title {
    font-size: 30px;
  }

  .ews-why-grid {
    grid-template-columns: 1fr;
  }
}
/* ================= HERO SECTION ================= */
.ews-hero {
  position: relative;
  padding: 100px 15px;
  background: linear-gradient(135deg, #f5fbff, #ffffff);
  overflow: hidden;
}

/* ================= BUBBLES ================= */
.ews-bubbles {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.ews-bubbles span {
  position: absolute;
  bottom: -120px;
  background: rgba(0, 167, 157, 0.15);
  border-radius: 50%;
  animation: bubbleMove 18s linear infinite;
}

/* Bubble sizes & positions */
.ews-bubbles span:nth-child(1) {
  left: 8%;
  width: 200px;
  height: 200px;
  animation-duration: 20s;
}
.ews-bubbles span:nth-child(2) {
  left: 20%;
  width: 150px;
  height: 150px;
  animation-duration: 14s;
}
.ews-bubbles span:nth-child(3) {
  left: 35%;
  width: 100px;
  height: 100px;
  animation-duration: 17s;
}
.ews-bubbles span:nth-child(4) {
  left: 50%;
  width: 200px;
  height: 200px;
  animation-duration: 13s;
}
.ews-bubbles span:nth-child(5) {
  left: 65%;
  width: 100px;
  height: 100px;
  animation-duration: 19s;
}
.ews-bubbles span:nth-child(6) {
  left: 78%;
  width: 150px;
  height: 150px;
  animation-duration: 15s;
}
.ews-bubbles span:nth-child(7) {
  left: 90%;
  width: 100px;
  height: 100px;
  animation-duration: 12s;
}
.ews-bubbles span:nth-child(8) {
  left: 95%;
  width: 26px;
  height: 26px;
  animation-duration: 16s;
}

@keyframes bubbleMove {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0;
  }
  10% {
    opacity: 0.5;
  }
  100% {
    transform: translateY(-110vh) scale(1.2);
    opacity: 0;
  }
}

/* ================= CONTAINER ================= */
.ews-hero-container {
  position: relative;
  z-index: 1;
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* LEFT CONTENT */
.ews-badge {
  display: inline-block;
  background: rgba(0, 167, 157, 0.15);
  color: #00a79d;
  padding: 8px 18px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
}

.ews-hero-title {
  font-size: 56px;
  font-weight: 900;
  margin: 20px 0;
  line-height: 1.1;
  color: #0b1c2d;
}

.ews-hero-title span {
  color: #00a79d;
}

.ews-hero-desc {
  font-size: 17px;
  color: #4a5568;
  line-height: 1.8;
  max-width: 520px;
}

/* FEATURES */
.ews-hero-features {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.ews-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  padding: 14px 18px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  font-weight: 600;
  color: #0b1c2d;
}

.ews-feature i {
  font-size: 20px;
  color: #00a79d;
}

/* RIGHT VISUAL */
.ews-hero-visual {
  position: relative;
  height: 520px;
}

.ews-image-card {
  position: absolute;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.ews-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ews-image-card.large {
  width: 80%;
  top: -20px;      /* 👈 move up */
  bottom: -20px;   /* 👈 move down */
  right: 0;
}


.ews-image-card.small {
  width: 45%;
  height: 42%;
  left: 0;
}

.ews-image-card.small.top {
  top: 0;
}

.ews-image-card.small.bottom {
  bottom: 0;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .ews-hero-container {
    grid-template-columns: 1fr;
  }

  .ews-hero-visual {
    height: 420px;
    margin-top: 40px;
  }

  .ews-hero-title {
    font-size: 42px;
  }
}

@media (max-width: 576px) {
  .ews-hero-title {
    font-size: 34px;
  }

  .ews-hero-visual {
    height: 360px;
  }

  .ews-image-card.large {
    width: 100%;
    position: relative;
  }

  .ews-image-card.small {
    display: none;
  }
}
/* ================= FAQ SECTION ================= */
.ews-faq {
  padding: 100px 15px;
  background: #f6fffc;
}

.ews-faq-container {
  max-width: 900px;
  margin: auto;
}

/* HEADER */
.ews-faq-header {
  text-align: center;
  margin-bottom: 50px;
}

.ews-faq-header h2 {
  font-size: 42px;
  font-weight: 800;
  color: #0b1c2d;
  margin-bottom: 10px;
}

.ews-faq-header p {
  font-size: 17px;
  color: #4a5568;
}

/* FAQ LIST */
.ews-faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* ITEM */
.ews-faq-item {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  overflow: hidden;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.ews-faq-item.active {
  border-color: rgba(0,167,157,0.3);
}

/* QUESTION */
.ews-faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 26px 28px;
  font-size: 18px;
  font-weight: 700;
  color: #00a79d;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.ews-faq-item:not(.active) .ews-faq-question {
  color: #0b1c2d;
}

.ews-faq-question .icon {
  width: 36px;
  height: 36px;
  background: rgba(0,167,157,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: #00a79d;
}

/* ANSWER */
.ews-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.ews-faq-item.active .ews-faq-answer {
  max-height: 500px;
}

.ews-faq-answer p {
  padding: 0 28px 26px;
  color: #4a5568;
  line-height: 1.7;
  font-size: 16px;
}

/* RESPONSIVE */
@media (max-width: 576px) {
  .ews-faq-header h2 {
    font-size: 32px;
  }

  .ews-faq-question {
    font-size: 16px;
  }
}
/* ================= FOOTER ================= */
.ews-footer {
  background: linear-gradient(180deg, #0b1220, #0f172a);
  color: #cbd5e1;
  padding: 80px 15px 0;
  font-family: "Poppins", sans-serif;
}

.ews-footer-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
}

/* BRAND */
.ews-footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.ews-footer-logo {
  width: 44px;
  height: 44px;
  background: #00a79d;
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.ews-footer-brand h3 {
  color: #ffffff;
  font-weight: 700;
  margin: 0;
}

.ews-footer-desc {
  font-size: 14.5px;
  line-height: 1.7;
  margin-bottom: 18px;
}

/* SOCIAL */
.ews-footer-socials {
  display: flex;
  gap: 12px;
}

.ews-footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: 0.3s;
}

.ews-footer-socials a:hover {
  background: #00a79d;
}

/* TITLES */
.ews-footer-col h4 {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 18px;
  font-weight: 600;
}

/* CONTACT LIST */
.ews-footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ews-footer-list li {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 14.5px;
}

.ews-footer-list i {
  color: #00a79d;
  font-size: 18px;
  margin-top: 4px;
}

/* LINKS */
.ews-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ews-footer-links li {
  margin-bottom: 12px;
}

.ews-footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 14.5px;
  transition: 0.3s;
}

.ews-footer-links a:hover {
  color: #00a79d;
}

/* BOTTOM */
.ews-footer-bottom {
  margin-top: 50px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  padding: 20px 0;
  font-size: 14px;
  color: #94a3b8;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .ews-footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .ews-footer-container {
    grid-template-columns: 1fr;
  }

  .ews-footer {
    text-align: center;
  }

  .ews-footer-brand {
    justify-content: center;
  }

  .ews-footer-socials {
    justify-content: center;
  }

  .ews-footer-list li {
    justify-content: center;
    text-align: left;
  }
}
html, body {
  scroll-behavior: smooth;
}

/* Only for small screens (max-width: 576px) */
@media (max-width: 576px) {
  html, body {
    overflow-x: hidden !important;
  }
}
/* NAVBAR BRAND FIX */
.navbar-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

/* BRAND WRAP */
.brand-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;        /* 🔥 hard center */
  justify-content: center;
  text-align: center;
}

/* LOGO */
.brand-wrap img {
  height: 55px;
  width: auto;
  margin: 0 auto;             /* 🔥 force center */
  display: block;
}

/* TEXT */
.brand-text {
  margin-top: 15px;
  font-size: 18px;
  font-weight: 700;
  color: red;
  letter-spacing: 1.2px;
  text-align: center;
  transform: translateX(22px); /* 👉 right side move */
}

