* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html {
  /* Prevents font size jumps on orientation change in mobile Safari */
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  /* Standard height fix */
  height: 100%;
  width: 100%;
  overflow-x: hidden;
}

body {width: 100%;
  /* Use min-height instead of height to ensure it grows with content */
  min-height: 100%;
  margin: 0;
  padding: 0;
  /* Keep overflow-x here to catch stray animations or wide elements */
  overflow-x: hidden;
  /* Helps with absolute positioning inside the body */
  position: relative;
  /* Smooth text rendering */
  -webkit-font-smoothing: antialiased;
  background: #fff;
  color: #111;
  max-width: 100vw;
}
section {
  display: block; /* default, explicit if needed */
  width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}


.view-all {
  text-align: center;
  margin-top: 40px;
}

.view-all-btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #000000; /* your theme green */
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 30px;
  transition: 0.3s ease;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

.view-all-btn:hover {
  background-color: #256c44;
  transform: translateY(-3px);
}
/* ===== Header ===== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0; /* top:0; left:0; right:0 */
  z-index: 10000;
  background: #000;
  color: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.site-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/*ceo*/
/* Wrapper to isolate these styles and center text */
.sk-title-wrapper {
  font-family: inherit;
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 1px;
  display: flex;
  justify-content: center;  /* centers horizontally */
  align-items: center;       /* ensures perfect alignment */
  text-align: center;        /* ensures text stays centered */
  width: 100%;               /* takes full row width */
  margin: 0 auto;  
margin-top: 5px;  /* prevents shifting */
}

/* Bold + style only the span text */
.sk-title-wrapper .sk-title-main {
  font-weight: 700;
  color: #0A0A0A;
  padding-left: 5px;
  text-transform: uppercase;
}
/* Logo */
.logo {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 1px;
}

/* Desktop nav */
.primary-nav {
  display: block;
}

.nav-list {
  display: flex;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-list a {
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  padding: 8px 6px;
  display: inline-block;
  transition: color .2s ease, background .2s ease;
}

.nav-list a:hover,
.nav-list a:focus {
  color: #8dc63f;
  outline: none;
}

/* Hamburger button (hidden on desktop) */
.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
}

/* ========== MOBILE ========== */
@media (max-width: 880px) {
  .menu-toggle { display: block; }

  /* hide desktop nav visually (but keep accessible toggled state) */
.primary-nav {
  position: fixed;
  top: 64px;
  right: 0;
  width: 100%;
  max-width: 420px;
  height: calc(100vh - 64px);
  background: #000;

  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(.2,.9,.2,1);

  box-shadow: -10px 0 30px rgba(0,0,0,0.25);

  overflow-y: auto;
  overscroll-behavior: contain; /* modern & useful */
  touch-action: pan-y;
  box-sizing: border-box;
}

@media (max-width: 480px) {
  .primary-nav {
    max-width: 100%;
    width: 100%;
    overflow-x: hidden;
  }
}

  .primary-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 320ms cubic-bezier(.2,.9,.2,1);
    pointer-events: none;
  }

  .primary-nav.open::before {
    opacity: 1;
  }
  /* when active, slide in */
  .primary-nav.open {
    transform: translateX(0);
  }

  .nav-list {
    flex-direction: column;
    gap: 18px;
    padding: 28px 24px;
  }

  .nav-list a {
    font-size: 1.05rem;
    padding: 10px 12px;
    width: 100%;
    border-radius: 8px;
  }

  /* subtle separator */
  .nav-list a + a { margin-top: 6px; }
}

/* Extra small screens */
@media (max-width: 480px) {
  .site-inner {
    padding: 12px 16px;
  }

  .logo {
    font-size: 0.95rem;
    letter-spacing: 0.5px;
  }

  .menu-toggle {
    font-size: 22px;
    padding: 6px;
  }

  .primary-nav {
    max-width: 100%;
  }

  .nav-list {
    padding: 20px 16px;
    gap: 12px;
  }

  .nav-list a {
    font-size: 0.95rem;
    padding: 8px 10px;
  }
}

/* Prevent content shift (if header is fixed) - add top-padding to the page main wrapper */
.main-content { padding-top: 64px; } /* adjust value to match header height */

/* Hero Section */
.page-hero {
  position: relative;
  width: 100%;
  overflow-x: hidden;
  background: #ffffff; /* PURE white background */
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image {
  margin-top: 30px;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 0;
  object-fit: cover;
  display: block;
  box-shadow: 0 0 30px rgba(0,0,0,0.1);
}

.hero-content {
  position: absolute;
  text-align: center;
  color: #fff;
  border-radius: 20px;
  padding: 30px 20px;
  max-width: 90%;
  z-index: 2;
}

.hero-content h1 {
  margin-top: 70px;
  font-size: 2rem;
  font-weight: 700;
}

.hero-content h2 {
  font-size: 1.6rem;
  font-style: italic;
  color: #7dc142;
}

.hero-content p {
  font-size: 1rem;
  margin: 10px 0 20px;
}

.hero-btn {
  display: inline-block;
  background: #000000;
  color: white;
  padding: 10px 24px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
}

@media (min-width: 768px) {
  .hero-content h1 { font-size: 3rem; }
  .hero-content h2 { font-size: 2.2rem; }
}

@media (max-width: 480px) {
  .hero-content h1 {
    margin-top: 50px;
    font-size: 1.5rem;
  }
  
  .hero-content h2 {
    font-size: 1.2rem;
  }
  
  .hero-content p {
    font-size: 0.9rem;
    margin: 8px 0 15px;
  }
}

/* ===== Reset and isolate broucher section ===== */
.brochure-isolated {
  all: unset;
  display: block;
  font-family: Arial, sans-serif;
  background: #f8f8f8;
  padding: 60px 20px;
  text-align: center;
  border-top: 2px solid #e0e0e0;
  border-bottom: 2px solid #e0e0e0;
  box-sizing: border-box;
}

/* Fix the anchor tag inside isolated section */
.brochure-isolated a {
  all: revert;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #007BFF;
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 6px;
  transition: background 0.3s, transform 0.2s;
  box-shadow: 0 3px 6px rgba(0,0,0,0.15);
  cursor: pointer;
}
/* ===== Heading ===== */
.brochure-isolated h2 {
  font-size: 26px;
  font-weight: bold;
  color: #222;
  margin-bottom: 12px;
}

/* ===== Paragraph ===== */
.brochure-isolated p {
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.5;
}

/* ===== Download Button ===== */
.brochure-isolated .brochure-download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #000000;
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 6px;
  transition: background 0.3s, transform 0.2s;
  box-shadow: 0 3px 6px rgba(0,0,0,0.15);
  cursor: pointer;
}

.brochure-isolated .brochure-download-btn i {
  margin-right: 10px;
  font-size: 18px;
}

.brochure-isolated .brochure-download-btn:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}

/* Mobile responsiveness for brochure section */
@media (max-width: 768px) {
  .brochure-isolated {
    padding: 40px 15px;
  }

  .brochure-isolated h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }

  .brochure-isolated p {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .brochure-isolated .brochure-download-btn {
    font-size: 14px;
    padding: 12px 22px;
  }
}

@media (max-width: 480px) {
  .brochure-isolated {
    padding: 30px 12px;
  }

  .brochure-isolated h2 {
    font-size: 1.3rem;
  }

  .brochure-isolated p {
    font-size: 13px;
  }

  .brochure-isolated .brochure-download-btn {
    font-size: 13px;
    padding: 10px 18px;
    width: 90%;
  }
}

/* ===== Download Toast (Global, Not Isolated) ===== */
.download-toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #333;
  color: #fff;
  padding: 14px 20px;
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 9999;
  font-size: 15px;
  font-family: Arial, sans-serif;
}

.download-toast.show {
  opacity: 1;
  visibility: visible;
}

/* Scoped SK Intro Section */
.sk-intro {
  background: #fff;
  color: #222;
  padding: 6rem 0;
  font-family: "Poppins", sans-serif;
  position: relative;
  width: 100%;
  overflow-x: hidden;
}

/* CENTERED CONTAINER */
.sk-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;

  display: flex;
  justify-content: center;
}

/* CENTER CONTENT BLOCK */
.sk-left {
  max-width: 780px;
  width: 100%;
  text-align: center;
}

/* Title */
.sk-title {
  font-size: 3.2rem;
  margin: 0 0 0.6rem;
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.2;
}

/* Green word */
.sk-title-main {
  color: #12b886;
  display: block;
  text-transform: uppercase;
}

/* Italic second line */
.sk-title-sub {
  display: block;
  font-style: italic;
  color: #000;
}

/* Underline */
.sk-underline {
  width: 360px;
  height: 6px;
  background: #12b886;
  transform: rotate(-3deg);
  margin: 18px auto 28px; /* FIXED */
  border-radius: 4px;
}

/* Copy text */
.sk-copy {
  color: #4a4a4a;
  line-height: 1.8;
  max-width: 640px;
  margin: 0 auto 2.5rem;
  font-size: 1rem;
}

/* Badges */
.sk-badges {
  display: flex;
  gap: 60px;
  justify-content: center;
}

.sk-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 28px;
  padding: 14px 22px;
  cursor: pointer;

  -webkit-user-select: none; /* Safari / iOS */
  -moz-user-select: none;    /* Firefox */
  -ms-user-select: none;     /* Old Edge / IE */
  user-select: none;         /* Standard */
}


.sk-badge-ghost,
.sk-badge-primary {
  background: #000;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

/* Labels */
.sk-badge-labels {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 10px;
  color: #999;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Responsive */
@media (max-width: 768px) {
  .sk-intro {
    padding: 4rem 0;
  }

  .sk-title {
    font-size: 2.2rem;
  }

  .sk-underline {
    width: 220px;
  }

  .sk-badge-labels {
    gap: 40px;
  }

  .sk-copy {
    font-size: 0.95rem;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .sk-intro {
    padding: 3rem 15px;
  }

  .sk-container {
    padding: 0 15px;
  }

  .sk-title {
    font-size: 1.8rem;
    margin-bottom: 0.4rem;
  }

  .sk-underline {
    width: 150px;
    margin: 12px auto 20px;
  }

  .sk-copy {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }

  .sk-badge {
    padding: 10px 16px;
    font-size: 0.8rem;
  }

  .sk-badge-labels {
    gap: 15px;
    font-size: 0.7rem;
  }
}



/* ===== WAVE + STATS SECTION (COMPLETE RECODE) ===== */
.wave-stats {
  position: relative;
  width: 100%;
  padding: 80px 20px 0; /* Remove bottom padding to let waves extend */
  background: transparent; /* Make background transparent to show next section */
  overflow: hidden;
  text-align: center;
  box-sizing: border-box;
  margin-bottom: -50px; /* Negative margin to overlap with next section */
}

/* Wave SVG Background */
.wave-bg {
  position: absolute;
  bottom: -50px; /* Extend waves further down to overlap with next section */
  left: 0;
  width: 100%;
  height: auto;
  min-height: 200px; /* Increase height to cover more area */
  z-index: 1;
  pointer-events: none;
  will-change: transform;
}

/* Wave 1 - Moving Up Down - Smooth wave (front layer) */
.wave-bg.wave1 {
  -webkit-animation: waveUpDown1 6s ease-in-out infinite;
  animation: waveUpDown1 6s ease-in-out infinite;
  opacity: 0.9;
  z-index: 3;
}

/* Wave 2 - Moving Up Down - Peaky wave (middle layer) */
.wave-bg.wave2 {
  -webkit-animation: waveUpDown2 8s ease-in-out infinite 1s;
  animation: waveUpDown2 8s ease-in-out infinite 1s;
  opacity: 0.8;
  z-index: 2;
  bottom: -40px;
  min-height: 190px;
}

/* Wave 3 - Moving Up Down - Rolling wave (back layer) */
.wave-bg.wave3 {
  -webkit-animation: waveUpDown3 10s ease-in-out infinite 2s;
  animation: waveUpDown3 10s ease-in-out infinite 2s;
  opacity: 0.7;
  z-index: 1;
  bottom: -30px;
  min-height: 180px;
}

/* Wave 1 animation - moves up and down smoothly */
@-webkit-keyframes waveUpDown1 {
  0%, 100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(-25px);
    transform: translateY(-25px);
  }
}
@keyframes waveUpDown1 {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-25px);
  }
}

/* Wave 2 animation - moves up and down with different pattern */
@-webkit-keyframes waveUpDown2 {
  0%, 100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  25% {
    -webkit-transform: translateY(-18px);
    transform: translateY(-18px);
  }
  75% {
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
  }
}
@keyframes waveUpDown2 {
  0%, 100% {
    transform: translateY(0px);
  }
  25% {
    transform: translateY(-18px);
  }
  75% {
    transform: translateY(8px);
  }
}

/* Wave 3 animation - moves up and down with third pattern */
@-webkit-keyframes waveUpDown3 {
  0%, 100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  33% {
    -webkit-transform: translateY(-12px);
    transform: translateY(-12px);
  }
  66% {
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
  }
}
@keyframes waveUpDown3 {
  0%, 100% {
    transform: translateY(0px);
  }
  33% {
    transform: translateY(-12px);
  }
  66% {
    transform: translateY(5px);
  }
}

/* Wave path styling */
.wave-path {
  filter: drop-shadow(0 2px 8px rgba(0, 65, 194, 0.15));
}

/* Content Container */
.wave-content {
  position: relative;
  z-index: 4;
  padding: 40px 0 160px 0; /* Increased bottom padding to push content higher above waves */
}

/* Stats Boxes Container */
.wave-stats-boxes {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 50px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Individual Stat Box */
.stat-box {
  flex: 0 1 220px;
  min-width: 150px;
  text-align: center;
  transition: transform 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-5px);
}

/* Stat Number */
.stat-box h2 {
  font-size: 3.5rem;
  font-weight: 700;
  color: #0041c2;
  margin: 0 0 12px 0;
  line-height: 1;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.stat-box .count {
  display: block;
  background: linear-gradient(135deg, #0041c2, #00a8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Stat Label */
.stat-box p {
  font-size: 1.1rem;
  color: #555;
  margin: 15px 0 0 0; /* Increased top margin from 12px to 15px */
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* ===== RESPONSIVE WAVE SECTION ===== */

/* Tablets (768px and below) */
@media (max-width: 768px) {
  .wave-stats {
    padding: 60px 15px 0; /* Remove bottom padding */
    margin-bottom: -40px; /* Adjust overlap for tablets */
  }

  .wave-bg {
    bottom: -40px;
    min-height: 160px;
    will-change: transform;
  }

  .wave-content {
    padding: 30px 0 140px 0; /* Increased bottom padding for tablet */
  }

  /* Increase wave animation speed for tablets */
  .wave-bg.wave1 {
    -webkit-animation: waveUpDown1 5s ease-in-out infinite;
    animation: waveUpDown1 5s ease-in-out infinite;
    z-index: 3;
  }

  .wave-bg.wave2 {
    -webkit-animation: waveUpDown2 7s ease-in-out infinite 0.5s;
    animation: waveUpDown2 7s ease-in-out infinite 0.5s;
    z-index: 2;
    bottom: -30px;
    min-height: 150px;
  }

  .wave-bg.wave3 {
    -webkit-animation: waveUpDown3 9s ease-in-out infinite 1s;
    animation: waveUpDown3 9s ease-in-out infinite 1s;
    z-index: 1;
    bottom: -20px;
    min-height: 140px;
  }
}

/* Mobile Phones (480px and below) */
@media (max-width: 480px) {
  .wave-stats {
    padding: 50px 12px 0; /* Remove bottom padding */
    margin-bottom: -30px; /* Adjust overlap for mobile */
  }

  .wave-bg {
    bottom: -30px;
    min-height: 130px;
    will-change: transform;
  }

  .wave-content {
    padding: 20px 0 120px 0; /* Increased bottom padding for mobile */
  }

  .wave-stats-boxes {
    gap: 25px;
    padding: 0 10px;
    flex-direction: column;
  }

  .stat-box {
    flex: 0 1 auto;
    min-width: 100px;
  }

  .stat-box h2 {
    font-size: 2.2rem;
  }

  .stat-box p {
    font-size: 0.95rem;
    margin: 12px 0 0 0; /* Added top margin for mobile */
  }

  /* Even faster animation for phones */
  .wave-bg.wave1 {
    -webkit-animation: waveUpDown1 4s ease-in-out infinite;
    animation: waveUpDown1 4s ease-in-out infinite;
    z-index: 3;
  }

  .wave-bg.wave2 {
    -webkit-animation: waveUpDown2 6s ease-in-out infinite 0.5s;
    animation: waveUpDown2 6s ease-in-out infinite 0.5s;
    z-index: 2;
    bottom: -20px;
    min-height: 120px;
  }

  .wave-bg.wave3 {
    -webkit-animation: waveUpDown3 8s ease-in-out infinite 1s;
    animation: waveUpDown3 8s ease-in-out infinite 1s;
    z-index: 1;
    bottom: -10px;
    min-height: 110px;
  }
}
/* SOLUTIONS SECTION */
.solutions-section {
  margin-top: 5;
  background: #0041c2;
  color: #fff;
  padding: 100px 60px;
  border-radius: 0 0 0 0;
  position: relative;
  width: 100%;
  overflow-x: hidden;
}

.solutions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.solutions-left {
  flex: 1;
  min-width: 300px;
}

.solutions-left h3 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 20px;
}

.solutions-left p {
  color: #ccc;
  margin-bottom: 20px;
  line-height: 1.7;
}

.solutions-left ul {
  list-style: none;
}

.solutions-left li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  color: #ddd;
  font-size: 0.9rem;
}

.solutions-left li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #8dc63f;
}

.solutions-right {
  flex: 1;
  min-width: 320px;
}

.solutions-right img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .stats {
    gap: 50px;
  }

  .stat-box h2 {
    font-size: 2.5rem;
  }

  .solutions-section {
    padding: 60px 20px;
  }

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

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

@media (max-width: 480px) {
  .solutions-section {
    padding: 40px 15px;
  }

  .solutions-left h3 {
    font-size: 1.5rem;
  }

  .solutions-left p,
  .solutions-left li {
    font-size: 0.85rem;
  }
}

/* stp Projects Section */
.projects {
  padding: 100px 80px;
  display: flex;
  flex-direction: column;
  gap: 80px;
  background: #fff;
}

@media (max-width: 480px) {
  .projects {
    padding: 40px 15px;
  }
}

.project-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

.project-card.reverse {
  flex-direction: row-reverse;
}

.project-img {
  position: relative;
  flex: 1;
  min-width: 300px;
}

.project-img img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.overlay-tag {
  position: absolute;
  top: 15px;
  left: 15px;

  background: rgba(255, 255, 255, 0.2);

  -webkit-backdrop-filter: blur(10px); /* Safari / iOS */
  backdrop-filter: blur(10px);         /* Standard */

  color: #fff;
  padding: 10px 20px;
  border-radius: 12px;
  font-size: 0.9rem;
  text-align: center;
}


.overlay-tag span {
  font-size: 0.7rem;
  display: block;
}

.project-text {
  flex: 1;
  min-width: 300px;
}

.project-text h4 {
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  margin-bottom: 15px;
  color: #222;
}

.project-text h4 span {
  text-transform: uppercase;
  color: #888;
  font-size: 0.8rem;
  letter-spacing: 1px;
}

.project-text em {
  font-style: italic;
  font-weight: 400;
  color: #111;
}

.project-text p {
  color: #555;
  margin-bottom: 20px;
}

.btn.small {
  font-size: 0.85rem;
  padding: 8px 20px;
}

/* Responsive */
@media (max-width: 992px) {
  .stats-section {
    padding: 80px 30px;
  }

  .projects {
    padding: 80px 30px;
  }

  .project-card {
    text-align: center;
  }

  .overlay-tag {
    top: 10px;
    left: 10px;
    padding: 8px 14px;
    font-size: 0.8rem;
  }
}

@media (max-width: 600px) {
  .stats-numbers {
    gap: 40px;
  }

  .solutions {
    flex-direction: column;
  }

  .projects {
    padding: 60px 20px;
  }
}

@media (max-width: 480px) {
  .projects {
    padding: 40px 15px;
    gap: 50px;
  }

  .project-card {
    gap: 25px;
  }

  .project-img {
    min-width: 100%;
  }

  .project-text {
    min-width: 100%;
  }

  .project-text h4 {
    font-size: 1.3rem;
  }
}

/* ETP Section */
.etp-section {
  background: #0041c2;
  color: #fff;
  padding: 100px 60px;
  border-radius: 60px;
  margin-top: 80px;
  flex: 1 1 100%;
}

.etp-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.etp-left {
  flex: 1;
  min-width: 300px;
}

.etp-left h4 {
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  color: #8dc63f;
  margin-bottom: 10px;
}

.etp-left h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 20px;
}

.etp-left p {
  color: #ccc;
  line-height: 1.7;
  margin-bottom: 25px;
}

.etp-left ul {
  list-style: none;
}

.etp-left li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  color: #ddd;
  font-size: 0.9rem;
}

.etp-left li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #8dc63f;
}

.etp-right {
  flex: 1;
  min-width: 320px;
}

.etp-right img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

/* Solutions Showcase */
.solutions-showcase {
  padding: 100px 80px;
  display: flex;
  flex-direction: column;
  gap: 100px;
  background: #fff;
}

@media (max-width: 480px) {
  .solutions-showcase {
    padding: 40px 15px;
  }
}

.solution-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

.solution-card.reverse {
  flex-direction: row-reverse;
}

.solution-img {
  position: relative;
  flex: 1;
  min-width: 300px;
}

.solution-img img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.overlay-tag {
  position: absolute;
  top: 15px;
  left: 15px;

  background: rgba(255, 255, 255, 0.2);

  -webkit-backdrop-filter: blur(10px); /* Safari / iOS */
  backdrop-filter: blur(10px);         /* Standard */

  color: #fff;
  padding: 10px 20px;
  border-radius: 12px;
  font-size: 0.9rem;
  text-align: center;
}


.overlay-tag span {
  font-size: 0.7rem;
  display: block;
}

.solution-text {
  flex: 1;
  min-width: 300px;
}

.solution-text h4 {
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  margin-bottom: 15px;
  color: #222;
}

.solution-text h4 span {
  text-transform: uppercase;
  color: #888;
  font-size: 0.8rem;
  letter-spacing: 1px;
}

.solution-text em {
  font-style: italic;
  font-weight: 400;
  color: #111;
}

.solution-text p {
  color: #555;
  margin-bottom: 20px;
}

.btn.small {
  font-size: 0.85rem;
  padding: 8px 20px;
}

/* Responsive */
@media (max-width: 992px) {
  .etp-section {
    padding: 80px 30px;
  }

  .solutions-showcase {
    padding: 80px 30px;
  }

  .solution-card {
    text-align: center;
  }
}

@media (max-width: 600px) {
  .etp-content {
    flex-direction: column;
  }

  .solutions-showcase {
    padding: 60px 20px;
  }
}

@media (max-width: 480px) {
  .etp-section {
    padding: 40px 15px;
    border-radius: 0;
    margin-top: 60px;
  }

  .etp-left h2 {
    font-size: 1.5rem;
  }

  .etp-left p,
  .etp-left li {
    font-size: 0.85rem;
  }

  .solutions-showcase {
    padding: 40px 15px;
    gap: 60px;
  }

  .solution-card {
    gap: 25px;
  }

  .solution-text h4 {
    font-size: 1.3rem;
  }
}
/* maintainace servisec section */

/* ========== MAINTENANCE SECTION (Scoped) ========== */
.maintenance-section {
  padding: 5rem 8%;
  background: #0041c2;
  color: #fff;
  position: relative;
  font-family: "Poppins", sans-serif;
  width: 100%;
  overflow-x: hidden;
}

/* ===== Stats ===== */
.maintenance-section .maint-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  text-align: center;
  margin-bottom: 3rem;
  flex-wrap: nowrap; /* Keep them in one horizontal line */
}

.maintenance-section .maint-stats div {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.maintenance-section .maint-stats div h3 {
  font-size: 3rem;
  font-weight: 700;
  color: #00ffc3;
  margin: 0;
}

.maintenance-section .maint-stats div p {
  font-size: 1rem;
  color: #ddd;
  margin-top: 0.3rem;
}

/* ===== Responsive Adjustments for Stats ===== */
@media (max-width: 1024px) {
  .maintenance-section .maint-stats {
    flex-wrap: wrap;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .maintenance-section .maint-stats div h3 {
    font-size: 2.2rem;
  }
}

@media (max-width: 480px) {
  .maintenance-section {
    padding: 2.5rem 15px;
  }

  .maintenance-section .maint-stats {
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }

  .maintenance-section .maint-stats div h3 {
    font-size: 1.8rem;
  }

  .maintenance-section .maint-stats div p {
    font-size: 0.85rem;
  }

  .maintenance-section .left h1 {
    font-size: 1.5rem;
  }

  .maintenance-section .left p {
    font-size: 0.9rem;
  }

  .maintenance-section .right li {
    font-size: 0.95rem;
  }
}

/* ===== Main Content ===== */
.maintenance-section .content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-bottom: 5rem;
}

.maintenance-section .left,
.maintenance-section .right {
  flex: 1 1 45%;
  min-width: 300px;
}

.maintenance-section .tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #00ffc3;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
}

.maintenance-section .left h1 {
  font-size: 2.2rem;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: #fff;
}

.maintenance-section .left p {
  color: #ccc;
  line-height: 1.6;
  font-size: 1rem;
}

/* ===== Right Side List ===== */
.maintenance-section .right ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.maintenance-section .right li {
  font-weight: 600;
  font-size: 1.05rem;
  margin: 1rem 0 0.3rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #fff;
}

.maintenance-section .right li i {
  color: #00ffc3;
}

.maintenance-section .right p {
  color: #aaa;
  margin-left: 1.8rem;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* ===== ETP CONTENT ===== */
.maintenance-section .etp-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-top: 4rem;
}

.maintenance-section .etp-left {
  flex: 1 1 45%;
  min-width: 300px;
}

.maintenance-section .etp-left h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #00ffc3;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.maintenance-section .etp-left h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.maintenance-section .etp-left p {
  color: #ccc;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.maintenance-section .etp-left ul {
  list-style: none;
  padding: 0;
  color: #fff;
}

.maintenance-section .etp-left ul li {
  margin-bottom: 0.8rem;
  color: #ddd;
  position: relative;
  padding-left: 1.2rem;
}

.maintenance-section .etp-left ul li::before {
  content: "✔";
  color: #00ffc3;
  position: absolute;
  left: 0;
  top: 0;
}

/* ===== Image Styling ===== */
.maintenance-section .image-container {
  flex: 1 1 45%;
  text-align: center;
}

.maintenance-section .image-container img {
  width: 100%;
  max-width: 650px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(255, 255, 255, 0.08);
  transition: transform 0.6s ease;
}

.maintenance-section .image-container img:hover {
  transform: scale(1.03);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .maintenance-section .left h1,
  .maintenance-section .etp-left h2 {
    font-size: 1.8rem;
  }

  .maintenance-section .content,
  .maintenance-section .etp-content {
    flex-direction: column;
    text-align: left;
  }

  .maintenance-section .left,
  .maintenance-section .right,
  .maintenance-section .etp-left {
    flex: 1 1 100%;
  }

  .maintenance-section .image-container img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 768px) {
  .maintenance-section {
    padding: 3rem 5%;
  }

  .maintenance-section .left h1,
  .maintenance-section .etp-left h2 {
    font-size: 1.6rem;
  }

  .maintenance-section .etp-left h4 {
    font-size: 1rem;
  }

  .maintenance-section .image-container img {
    border-radius: 15px;
  }
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  line-height: 1.5;
}

.check-icon {
  width: 20px;
  height: 20px;
  fill: #22c55e; /* green check */
  flex-shrink: 0;
  margin-top: 2px;
}

.service-note {
  margin: 12px 0;
  color: #555;
  font-style: italic;
}

/* =============================
   FEATURES SECTION
============================= */

.features {
  padding: 90px 0;
  background: #fff;
}

.features .container {
  max-width: 1200px;
  margin-top:40px;
  margin-bottom: 40;
  padding: 0 20px;
}

.features-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 30px;
}

/* GRID */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; /* reduced gap */
  align-items: start;
}

/* COMMON COLUMN */
.feature-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

/* PRIMARY COLUMN */
.feature-col--primary {
  background: #0041c2;
  color: #fff;
  padding: 50px 24px;
  border-radius: 28px;
}

/* PUSH MIDDLE COLUMN DOWN */
.feature-col--middle {
  margin-top: 130px; /* adjust this to move column down */
}

/* TEXT */
.feature-content {
  text-align: center;
  max-width: 320px;
}

.feature-content h3 {
  margin-bottom: 6px;
  font-size: 1.2rem;
}

.feature-content p {
  font-size: 0.95rem;
  color: rgba(0,0,0,0.7);
}

.feature-col--primary p {
  color: rgba(255,255,255,0.85);
}

/* =============================
   IMAGES (SEPARATE CONTROL)
============================= */

.feature-img {
  display: block;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* PRIMARY IMAGE */
.feature-img--primary {
  width: 260px;
  height: 380px;
  border-radius: 20px;
  margin-bottom: 16px;
}

/* MIDDLE IMAGE */
.feature-img--middle {
  width: 170px;
  height: 170px;
  border-radius: 50%;
}

/* =============================
   CIRCLES (COLUMN 3)
============================= */

.circle-bg {
  width: 210px;
  height: 240px;
  border-radius: 15%;
  padding: 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.circle-bg.light {
  background: #f3f3f3;
}

.circle-bg.dark {
  background: #0041c2;
  color: #fff;
}

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

@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-col--middle {
    margin-top: 0;
  }

  .feature-img--primary {
    width: 220px;
    height: 320px;
  }

  .feature-img--middle {
    width: 150px;
    height: 150px;
  }
}



/* General Reset of reliable dont touch */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #fff;
  color: #2d3e2f;
}

/* Section Layout */
.performance {
  padding: 60px 20px;
  text-align: center;
}

.performance h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #234422;
}

.performance .subtitle {
  color: #777;
  margin-top: 8px;
  font-size: 0.95rem;
}

/* Main container grid */
.container {
  max-width: 1600px; /* fits all 5 columns side by side */
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
}


/* 5-column grid with responsive wrapping */


/* Force 5 equal columns */
.grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: start;
  justify-items: center;
  gap: 2rem;
  margin-top: 40px;
}


/* Each column */
.col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Text & Image Styling */
.col h3 {
  font-size: 1.5rem;
  color: #234422;
  margin-bottom: 5px;
}

.col p {
  color: #555;
  font-size: 0.9rem;
  margin-bottom: 15px;
  line-height: 1.4;
}

/* Images */
.col img {
  height: 800px;
  width: 100%;
  max-width: none; /* remove restriction */
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
/* Center column (buttons + box) */
.center-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.cta {
  color: #0041c2;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;

}

.btn-outline {
  border: 1px solid #234422;
  background: transparent;
  color: #000000;
  padding: 10px 24px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: #234422;
  color: #fff;
}

.btn-dark {
  background: #000000;
  color: #fff;
  border: none;
  padding: 10px 24px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-dark:hover {
  background: #1b261b;
}

/* Highlight box */
.highlight {
  background: #0041c2;
  color: #fff;
  padding: 25px 40px;
  border-radius: 20px;
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.highlight h4 {
  font-size: 1.6rem;
  margin-bottom: 5px;
}

/* Responsive */
@media (max-width: 1024px) {
  .grid-5 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .grid-5 {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
  }

  .performance h2 {
    font-size: 1.5rem;
  }

  .col img {
    height: 200px;
  }

  .col h3 {
    font-size: 1.2rem;
  }

  .col p {
    font-size: 0.85rem;
  }

  .highlight {
    padding: 20px 30px;
  }

  .btn-outline, .btn-dark {
    padding: 8px 20px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .performance {
    padding: 40px 15px;
  }

  .container {
    padding: 0 10px;
  }

  .grid-5 {
    grid-template-columns: 1fr;
    gap: 0.8rem;
    margin-top: 25px;
  }

  .performance h2 {
    font-size: 1.3rem;
  }

  .performance .subtitle {
    font-size: 0.85rem;
  }

  .col img {
    height: 150px;
  }

  .col h3 {
    font-size: 1rem;
  }

  .col p {
    font-size: 0.8rem;
  }

  .highlight {
    padding: 15px 20px;
    margin-top: 10px;
  }

  .highlight h4 {
    font-size: 1.3rem;
  }

  .highlight p {
    font-size: 0.8rem;
  }

  .btn-outline, .btn-dark {
    padding: 8px 16px;
    font-size: 0.85rem;
  }
}

/* --- Ultra-Wide Displays (2560px and above) --- */
@media (min-width: 2560px) {
  .container {
    max-width: 2300px;
    padding: 0 120px;
  }

  .grid-5 {
    grid-template-columns: repeat(5, 1fr);
    gap: 4rem; /* extra spacious */
  }

  .col img {
    max-width: 320px;
  }

  .col h3 {
    font-size: 2rem;
  }

  .col p {
    font-size: 1.1rem;
  }

  .highlight {
    padding: 40px 60px;
    border-radius: 30px;
  }

  .btn-outline,
  .btn-dark {
    padding: 14px 34px;
    font-size: 1.05rem;
  }
}

@media (max-width: 1200px) {
  .grid-5 {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (max-width: 800px) {
  .grid-5 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .grid-5 {
    grid-template-columns: 1fr;
  }
}


/* Make column 2 and 5 taller */
.grid-5 .col:nth-child(2) img,
.grid-5 .col:nth-child(5) img {
  height: 250px;       /* increase or decrease as you like */
  object-fit: cover;
}

/* Keep other images balanced */
.grid-5 .col:nth-child(1) img,
.grid-5 .col:nth-child(3) img,
.grid-5 .col:nth-child(4) img {
  height: 170px;
  width: 100%;
  max-width: 100%;
}

.overlay-wipe {
  position: fixed;
  top: 0;
  left: 0;
  width:0;
}/* =============================
   GLOBAL STYLES
============================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: linear-gradient(-45deg, #d7e1ec, #f0fff0, #e0f7fa, #fff3e0);
  background-size: 400% 400%;
  animation: gradientShift 12s ease infinite;
  color: #2d3e2f;
  overflow-x: hidden;
  max-width: 100vw;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}





/* =============================
   PERFORMANCE SECTION
============================= */
.performance {
  padding: 60px 20px;
  text-align: center;
}

.performance h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #234422;
}

.performance .subtitle {
  color: #777;
  margin-top: 8px;
  font-size: 0.95rem;
}

.container {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
}

/* 5-column grid */
.grid-5 {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  align-items: start;
  justify-items: center;
  gap: 2rem;
  margin-top: 40px;
}

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

.col h3 {
  font-size: 1.5rem;
  color: #234422;
  margin-bottom: 5px;
}

.col p {
  color: #555;
  font-size: 0.9rem;
  margin-bottom: 15px;
  line-height: 1.4;
}

.col img {
  height: 200px;
  width: 100%;
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Center column */
.center-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.btn-outline,
.btn-dark {
  padding: 10px 24px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-outline {
  border: 1px solid #0041c2;
  background: transparent;
  color: #234422;
}

.btn-outline:hover {
  background: #234422;
  color: #fff;
}

.btn-dark {
  background: #000000;
  color: #fff;
  border: none;
}

.btn-dark:hover {
  background: #1b261b;
}

/* Highlight box */
.highlight {
  background: #000000;
  color: #fff;
  padding: 25px 40px;
  border-radius: 20px;
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.highlight h4 {
  font-size: 1.6rem;
  margin-bottom: 5px;
}

/* Make columns 2 & 5 taller */
.grid-5 .col:nth-child(2) img,
.grid-5 .col:nth-child(5) img {
  height: 250px;
}

.grid-5 .col:nth-child(1) img,
.grid-5 .col:nth-child(3) img,
.grid-5 .col:nth-child(4) img {
  height: 170px;
  width:200px
}

/* =====================================
   GRID-5 SECTION
===================================== */

@media (max-width: 1024px) {
  .grid-5 {
    grid-template-columns: repeat(auto-fit, minmax(5, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .grid-5 {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
  }
}

@media (max-width: 500px) {
  .grid-5 {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 2560px) {
  .grid-5 {
    gap: 4rem;
  }
}

/* =============================
   PAGE LOAD OVERLAY (No GSAP)
============================= */
.overlay-wipe {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #234422;
  z-index: 9999;
  animation: overlaySlideUp 1.2s ease-out forwards;
}

@keyframes overlaySlideUp {
  from { transform: translateY(0); }
  to { transform: translateY(-100%); }
}




/* Advanced lower Section */

.lower {
  width: 100%;
  height: 100%;
  background: #234422;
  z-index: 9999;
  transform: translateY(0);
  background: #fff;
  padding: 1rem 10%;
  text-align: left;
  color: #222;
  font-family: "Poppins", sans-serif;
  position: relative;
}

.lower h2 {
  font-size: 3rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

.lower h2 .muted {
  font-weight: 300;
  font-style: italic;
  color: #777;
}

.lower h2 .dot {
  color: #888;
}

.lower-desc {
  max-width: 900px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 3rem;
}

.lower-footer {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* ✅ FIX: move avatar slightly downward */
.avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ddd;
  position: relative;
  top: 10px; /* move image lower */
}

/* Divider + Tag unchanged */
.tag {
  background: #111;
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 1px;
  border-radius: 25px;
  padding: 0.6rem 1.4rem;
  text-transform: uppercase;
  font-weight: 500;
}

.divider-line {
  margin-bottom: 6px;
  flex-grow: 1;
  height: 2px;
  background: #222;
  opacity: 0.6;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 768px) {
  .lower {
    padding: 4rem 1.5rem;
  }

  .lower h2 {
    font-size: 2.2rem;
  }

  .lower-desc {
    font-size: 0.95rem;
  }

  .lower-footer {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }
.tag {
  margin: 0 auto; /* ✅ centers the WATER CLEANING button */
}
  .divider-line {
    width: 100%;
  }

  /* optional: reset avatar offset on mobile */
.avatar {
    position: relative;
    top: 35px; /* pushes image slightly down */
    margin-top: 15px; /* extra breathing space */
  }
}


/* ===== Testimonial Section ===== */
:root{
  --max-width: 1200px;
  --card-width: 32%; /* 3 cards */
  --card-height: 20%; /* 3 cards */
  --gap: 3.5rem;
  --title-font: 48px;
  --card-radius: 22px;
  --avatar-size: 84px;
}

*{box-sizing:border-box}
body{font-family:"Poppins",system-ui,Arial; margin:0; background:#fff; color:#222}

/* Section and title */
.testimonials-section{padding:72px 4% 100px; text-align:center}
.title{font-size:var(--title-font); font-weight:400; margin-bottom:48px;}

/* wrapper centers content and sets overflow for avatars/arrows */
.testimonials-wrap{
  max-width:var(--max-width);
  margin:0 auto;
  position:relative;
  padding:0 40px; /* space for arrows */
}

/* arrows outside the cards */
.nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:38px;height:38px;border-radius:50%;
  background:transparent;border:1px solid rgba(0,0,0,0.12);
  display:flex;align-items:center;justify-content:center;
  cursor:pointer; font-size:20px; color:#111; z-index:40;
}
.nav-left{left:6px}
.nav-right{right:6px}
.nav:hover{background:#111;color:#fff;border-color:transparent}

/* cards container */
.cards{
  display:flex;
  justify-content:center;
  gap:var(--gap);
  align-items:flex-start;
  /* to avoid shrinking: */
  flex-wrap:nowrap;
}

/* each card */
.card{
  flex:0 0 var(--card-width); /* exact width, prevents shrinking */
  max-width:360px;
  position:relative;
  border-radius:var(--card-radius);
  overflow:visible; /* allow avatar to overflow */
  box-shadow:0 8px 18px rgba(0,0,0,0.04);
}

/* inner to control padding and vertical layout */
.card-inner{
  background: #fff;
  border-radius:var(--card-radius);
  padding:5px 28px -4px; /* top padding makes room for avatar */
  min-height: 360px; /* keep card tall and equal */
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:space-between;
}

/* avatar overlapping */
.avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
  /* moves avatar upward */
  border: 4px solid #fff; /* optional white border */
  background-color: #eee; /* fallback if image missing */
  display: flex;
  justify-content: center;
  align-items: center;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* card text */
.quote{font-size:14px;line-height:1.8;color:#333;text-align:center;margin:0 8px 18px;margin-bottom: 20px}
.author{font-weight:700; letter-spacing:1px; margin:0; margin-top: 12px; font-size:12px}
.role{font-size:11px;color:#666;margin-top:6px; margin-bottom: 10px}

/* background variants */
.card--gray .card-inner{background:#f6f6f6}
.card--blue .card-inner{background:#dbeff8}
.card--green .card-inner{background:#dcedd9}

/* Responsive breakpoints */
/* tablet - 2 columns */
@media (max-width: 1000px){
  :root{--card-width: 45%}
  .cards{gap:2.2rem}
  .card-inner{min-height:320px}
}

/* mobile - 1 column stack, hide arrows */
@media (max-width: 640px){
  :root{--card-width: 100%}
  .cards{flex-direction:column;align-items:center;gap:1.5rem}
  .nav{display:none}
  .testimonials-wrap{padding:0 16px}
  .title{font-size:32px}
}

/* clint list */

.clint-section {
  font-size: 1.5rem;
  background: #f7f7f7;
  padding: 50px 50px;
  margin-bottom: 5px;
  margin-top: 75px;
  text-align: center;
}

.logo-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.slide-track {
  display: flex;
  width: calc(18 * 150px * 2); /* 18 logos x 2 sets x width */
  animation: scroll 40s linear infinite;
}

.slide {
  flex: 0 0 auto;
  width: 150px;
  margin: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slide img {
  width: 100px;
  height: 100px;
  object-fit: contain; /* Optional: maintain aspect ratio */
}


@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Client Section */
.clint-section {
  font-size: 1.5rem;
  background: #f7f7f7;
  padding: 50px 50px;
  margin-bottom: 5px;
  margin-top: 75px;
  text-align: center;
}

.logo-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.slide-track {
  display: flex;
  width: calc(18 * 150px * 2); /* 18 logos x 2 sets x width */
  animation: scroll 40s linear infinite;
}

.slide {
  flex: 0 0 auto;
  width: 150px;
  margin: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slide img {
  border-radius: 50%;        /* Makes the image circular */
  width: 100px;
  height: 100px;
  object-fit: cover;         /* Fills the circle */
  border: 2px solid #ddd;    /* Optional: thin border around each image */
  box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* Optional: subtle shadow */
  transition: transform 0.3s ease;
}

.slide img:hover {
  transform: scale(1.1);     /* Smooth zoom on hover */
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Mobile Responsiveness for Client Section */
@media (max-width: 768px) {
  .clint-section {
    padding: 40px 20px;
    margin-top: 60px;
  }

  .slide {
    width: 120px;
    margin: 8px;
  }

  .slide img {
    width: 80px;
    height: 80px;
  }

  .clint-section {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .clint-section {
    padding: 30px 10px;
    margin-top: 40px;
  }

  .clint-section {
    font-size: 1.1rem;
  }

  .slide {
    width: 100px;
    margin: 6px;
  }

  .slide img {
    width: 70px;
    height: 70px;
    border: 1px solid #ddd;
  }
}
.faq-section {
  max-width: 700px;
  margin: 80px auto;
  font-family: "Poppins", sans-serif;
  text-align: center;
}

.faq-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #12372a;
  border: 2px solid #12372a;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 50px;
  margin-bottom: 40px;
}

.faq-item {
  background: #e6e6e6;
  border-radius: 25px;
  margin: 15px 0;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 25px;
  font-size: 1.1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  cursor: pointer;
  color: #222;
  font-weight: 500;
}

.icon {
  font-size: 1.8rem;
  color: #12372a;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  background: #f7f7f7;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  padding: 15px 0;
  text-align: left;
}

/* Active state */
.faq-item.active .faq-answer {
  max-height: 250px;
  padding: 15px 25px;
}

.faq-item.active .icon {
  transform: rotate(45deg); /* + turns into × (close icon) */
}

/* Mobile Responsiveness for FAQ */
@media (max-width: 768px) {
  .faq-section {
    max-width: 100%;
    margin: 60px auto;
    padding: 0 20px;
  }

  .faq-title {
    font-size: 1.5rem;
    padding: 8px 20px;
    margin-bottom: 30px;
  }

  .faq-item {
    margin: 12px 0;
  }

  .faq-question {
    padding: 15px 18px;
    font-size: 1rem;
  }

  .faq-answer {
    padding: 0 18px;
  }

  .faq-answer p {
    font-size: 0.95rem;
  }

  .icon {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .faq-section {
    margin: 40px auto;
  }

  .faq-title {
    font-size: 1.3rem;
    padding: 8px 16px;
  }

  .faq-question {
    padding: 12px 15px;
    font-size: 0.95rem;
  }

  .faq-answer p {
    font-size: 0.9rem;
    padding: 12px 0;
  }

  .icon {
    font-size: 1.3rem;
  }
}
.blog-section {
  text-align: center;
  padding: 80px 5%;
  background: #fff;
}

/* Header */
.blog-header h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: #111;
}

.blog-header p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 40px;
}

/* ✅ Grid Layout */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* FORCE one row */
  gap: 2rem;
  justify-items: center;
}


/* Blog Card */
.blog-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  text-align: left;
  max-width: 420px;
  width: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Image */
.blog-image {
  position: relative;
}

.blog-image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 20px;
}

/* Arrow */
.blog-image .arrow {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: #000;
  color: #fff;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

/* Meta */
.blog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 12px 16px 0;
  font-size: 0.9rem;
  color: #555;
}

.blog-meta .author {
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-meta .author img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
}

/* Title */
.blog-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 12px 16px 24px;
  color: #111;
  line-height: 1.4;
}

/* View All */
.view-all {
  margin-top: 40px;
}

.view-all-btn {
  display: inline-block;
  background: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 25px;
  padding: 12px 32px;
  transition: 0.3s ease;
}

.view-all-btn:hover {
  background: #333;
}

/* Mobile */
@media (max-width: 768px) {
  .blog-section {
    padding: 60px 20px;
  }

  .blog-header h2 {
    font-size: 1.9rem;
  }

  .blog-header p {
    font-size: 0.9rem;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .blog-card {
    max-width: 100%;
  }

  .blog-title {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .blog-section {
    padding: 40px 15px;
  }

  .blog-header h2 {
    font-size: 1.5rem;
  }

  .blog-header p {
    font-size: 0.85rem;
    margin-bottom: 25px;
  }

  .blog-grid {
    gap: 1rem;
  }

  .blog-image img {
    height: 180px;
  }

  .blog-image .arrow {
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
  }

  .blog-title {
    font-size: 1rem;
    margin: 10px 12px 18px;
  }

  .blog-meta {
    font-size: 0.8rem;
    margin: 10px 12px 0;
  }

  .view-all-btn {
    padding: 10px 24px;
    font-size: 0.9rem;
  }
}



/* cta footer  */
/* ===== CTA Banner ===== */
.cta-banner {
  position: relative;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.cta-banner img {
  width: 80%;
  height: 400px;
  object-fit: cover;
  border-top-left-radius: 60px;
  border-top-right-radius: 60px;
  border-bottom-left-radius: 60px;
  border-bottom-right-radius: 60px;
  filter: brightness(60%); /* darkens image for text */
}

.cta-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 600px;
  width: 90%;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 10px;
}

.cta-content h2 span {
  font-style: italic;
  opacity: 0.8;
}

.cta-content p {
  font-size: 1rem;
  margin-bottom: 25px;
}

.cta-form {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.cta-form input {
  width: 70%;
  padding: 12px 16px;
  border: none;
  border-radius: 25px;
  outline: none;
}

.cta-form button {
  background: #000;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  font-size: 1.3rem;
  cursor: pointer;
}

/* ===== Footer Section ===== */
/* ===== CTA Banner ===== */
.cta-banner {
  position: relative;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.cta-banner img {
  width: 75%;
  height: 400px;
  object-fit: cover;
  border-bottom-left-radius: 60px;
  border-bottom-right-radius: 60px;
  filter: brightness(60%); /* darkens image for text */
}

.cta-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 600px;
  width: 90%;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 10px;
}

.cta-content h2 span {
  font-style: italic;
  opacity: 0.8;
}

.cta-content p {
  font-size: 1rem;
  margin-bottom: 25px;
}

.cta-form {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.cta-form input {
  width: 70%;
  padding: 12px 16px;
  border: none;
  border-radius: 25px;
  outline: none;
}

.cta-form button {
  background: #000;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  font-size: 1.3rem;
  cursor: pointer;
}

/* ===== Mobile Responsive for CTA Banner ===== */
@media (max-width: 768px) {
  .cta-banner img {
    width: 90%;
    height: 300px;
  }

  .cta-content h2 {
    font-size: 2rem;
  }

  .cta-content p {
    font-size: 0.9rem;
    line-height: 1.4;
  }
}

@media (max-width: 480px) {
  .cta-banner img {
    width: 95%;
    height: 250px;
  }

  .cta-content h2 {
    font-size: 1.5rem;
  }

  .cta-content p {
    font-size: 0.8rem;
    line-height: 1.3;
  }
}

/* ===== Footer Section ===== */

ul li a {
  color: inherit;            /* Use the same text color as before */
  text-decoration: none;     /* Remove underline */
}

ul li a:hover {
  text-decoration: underline; /* Optional hover effect */
}


.footer {
  background: #222;
  color: #fff;
  padding: 80px 10% 40px;
  margin-top: -60px;
}

/* Layout */
.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 3rem;
}

.footer-col h4 {
  font-size: 0.9rem;
  letter-spacing: 1px;
  margin-bottom: 15px;
  color: #aaa;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin: 8px 0;
  color: #ddd;
  font-size: 0.9rem;
  cursor: pointer;
  transition: color 0.3s;
}

.footer-col ul li:hover {
  color: #fff;
}

/* Company column */
.company h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.company .social i {
  margin-right: 10px;
  color: #0a84ff;
  font-size: 1.2rem;
}
/* column */

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid #555;
  margin-top: 40px;
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #ccc;
}

/* ===== Responsive ===== */

/* Tablets and small laptops (<=1024px) */
@media (max-width: 1024px) {
  .footer-content {
    justify-content: center;
    gap: 2rem;
  }
}

/* Mobile (<=768px) → 2 columns instead of 1 */
@media (max-width: 768px) {
  .footer-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    text-align: center;
  }

  .company {
    grid-column: span 2; /* make company full-width at top */
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
  }
}

/* Extra small screens (<=480px) → 1 column for safety */
@media (max-width: 480px) {
  .footer-content {
    grid-template-columns: 1fr;
  }

  .company {
    grid-column: auto;
  }
}


/* WhatsApp Floating Button */
/* This styles the anchor tag container */
.whatsapp-float {
  position: fixed;        /* Fixes it to the screen */
  width: 60px;            /* Set actual button size */
  height: 60px;           /* Set actual button size */
  bottom: 20px;           /* Distance from bottom */
  right: 20px;            /* Distance from right */
  background-color: #25d366; 
  border-radius: 50px;    /* Makes it a circle */
  display: flex;          /* Centers the icon inside */
  align-items: center;
  justify-content: center;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
  z-index: 9999;          /* Ensures it stays above all other content */
}

/* This fixes the "Too Big" issue by controlling the image inside */
.whatsapp-float img {
  width: 55px;            /* Adjust this to make the icon look right */
  height: auto;           /* Keeps aspect ratio */
  display: block;
}

/* Hover effect for a professional feel */
.whatsapp-float:hover {
  transform: scale(1.1);
  transition: 0.3s ease-in-out;
}