/* =========================================
   1. GLOBAL VARIABLES & RESET
   ========================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

:root {
  --primary-blue: #4398f3;
  --light-blue-bg: #e6f7ff;
  --cta-yellow: #ffc107;
  --text-dark: #333;
  --white: #fff;
}

body {
  background: linear-gradient(180deg, #f0f8ff 0%, #e6f7ff 50%, #f0f8ff 100%);
  position: relative;
  overflow-x: hidden;
}
.wave-separator {
  position: absolute;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 1; /* Content ke upar rahe */
  pointer-events: none; /* Click through ho sake */
}

/* 2. SVG Settings + Lighter Color */
.wave-separator svg {
  position: relative;
  display: block;
  width: calc(100% + 50px); /* Thoda chauda taaki animation mein kate nahi */
  height: 60px; /* Height adjust kar sakte hain */
  /* Animation apply kar rahe hain */
  animation: gentleFlow 8s ease-in-out infinite alternate;
}

/* Color - Wapas thoda light kiya gaya hai */
.wave-separator .shape-fill {
  /* Brand blue ka bahut halka version - subtle water feel */
  fill: rgba(0, 86, 179, 0.08);
}

/* 3. The Animation Keyframes (Halka sa hilna) */
@keyframes flowRight {
  0% {
    transform: translateX(-50%); /* Start from left */
  }
  100% {
    transform: translateX(0%); /* Move to right */
  }
}
/* Variation A: Section ke Bottom par lagane ke liye (Jaisa abhi tha) */
.wave-bottom {
  bottom: -1px; /* Gap fix */
  /* Ulta ghumaya taaki "U" shape bane */
  transform: rotate(180deg);
}

/* Variation B: Agle section ke Top par lagane ke liye (Naya look) */
.wave-top {
  top: -1px; /* Gap fix */
  /* Seedha rakha taaki "n" shape bane aur upar se latke */
  transform: rotate(0deg);
}
.section-wrapper,
.why-choose-section,
.reviews-section,
.features-section {
  background: rgba(255, 255, 255, 0.7); /* Glassy effect */
  backdrop-filter: blur(10px); /* Modern blur effect */
  border-radius: 30px; /* Soft edges */
  margin: 20px 20px; /* Thoda gap taaki background dikhe */
  box-shadow: 0 10px 30px rgba(0, 86, 179, 0.05); /* Soft blue shadow */
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .section-wrapper,
  .why-choose-section,
  .reviews-section {
    margin: 10px 10px;
    border-radius: 20px;
  }
}

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

/* =========================================
   2. HEADER & NAVIGATION
   ========================================= */
/* Top Bar */
.top-bar {
  background-color: #4398f3;
  color: #fff;
  padding: 8px 0;
  font-size: 5px;
  width: 100%;
  font-weight: 400;
      text-align: center;

}
.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-info span {
  margin-right: 20px;
}
.top-info i {
  color: #016837;
  margin-right: 5px;
}

/* Main Header */
.main-header {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  width: 100%;
  transition: all 0.3s ease;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* Nav Menu (Desktop) */
.nav-menu {
  display: flex;
  gap: 25px;
  align-items: center;
}

.nav-link {
  color: #333;
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  position: relative;
  padding: 5px 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-blue);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}
.nav-link:hover {
  color: var(--primary-blue);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Desktop Button */
.header-btn {
  background: linear-gradient(135deg, #0056b3 0%, #4398f3 100%);
  color: white;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 86, 179, 0.2);
  transition: transform 0.2s, box-shadow 0.2s;
}

.header-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 86, 179, 0.3);
}

.mobile-cta-btn,
.hamburger {
  display: none;
}

/* =========================================
   3. HERO SECTION
   ========================================= */
/* =========================================
   GD STYLE HERO SECTION (Deep Blue & Orange)
   ========================================= */
/* =========================================
   HERO CATEGORY BOXES (3 Glassy Boxes)
   ========================================= */

.hero-category-boxes {
    display: flex;
    gap: 15px; /* Boxes ke beech gap */
    margin-bottom: 30px;
    margin-top: 10px;
    flex-wrap: wrap; /* Mobile par adjust hone ke liye */
}

.glass-cat-box {
    flex: 1; /* Sab barabar width lenge */
    min-width: 100px; /* Mobile par bahut chhota na ho */
    background: #4398f3; /* Transparent White */
    backdrop-filter: blur(10px); /* Glass Blur Effect */
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3); /* Halka Border */
    border-radius: 12px;
    padding: 15px 10px;
    text-align: center;
    color: #fff;
    transition: transform 0.3s ease, background 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.glass-cat-box:hover {
    background: rgb(0 0 0 / 25%);
    transform: translateY(-5px);
    border-color: #ffffff;
}

/* Icon Styling */
.cat-icon {
    font-size: 24px;
    color: #fff; /* Orange Icon */
    margin-bottom: 2px;
}

/* Text Styling */
.glass-cat-box span {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
}

@media (max-width: 768px) {
    #ecowell-hyderabad-form {
        height: 950px !important; /* Mobile par form lamba ho jata hai */
        min-height: 950px !important;
    }
    
    .glass-form-card {
        padding-bottom: 20px; /* Niche thoda extra gap taaki form saaf dikhe */
    }
}
/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-category-boxes {
        gap: 10px;
    }
    
    .glass-cat-box {
        padding: 12px 5px;
    }

    .cat-icon {
        font-size: 20px;
    }

    .glass-cat-box span {
        font-size: 12px;
    }
}
.hero-section {
  /* Deep Blue Gradient bilkul reference image jaisa */
  background: linear-gradient(180deg, #406c9d -75%, #000000 159%),
    url(upload/banner2.png);
  background-blend-mode: hard-light;
  background-size: cover;
  background-position: center;
  padding: 120px 0 80px 0; /* Extra bottom padding wave ke liye */
  position: relative;
  color: white;
}


.hero-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start; /* Top align taaki list barabar dikhe */
  gap: 40px;
}

/* --- LEFT SIDE Styling --- */
.hero-text {
  flex: 1;
  text-align: left;
  padding-top: 10px;
}

/* 1. Orange Top Tag */
.orange-top-tag {
  background-color: #4398f3; /* GD Orange */
  color: #fff;
  display: inline-block;
  padding: 10px 20px;
  font-weight: 700;
  font-size: 13px;
  border-radius: 5px;
  margin-bottom: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* 2. Main Title */
.hero-title {
  font-size: 50px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 15px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* 3. Vertical Feature List */
.gd-features-list {
  display: flex;
  flex-direction: column;
  gap: 18px; /* Items ke beech gap */
}

.gd-feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
}

.gd-icon {
  width: 28px;
  height: 28px;
  background: #fff; /* White Circle */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4398f3; /* Orange Checkmark */
  flex-shrink: 0;
}
.gd-icon i {
  font-size: 14px;
  font-weight: 900;
}

/* --- RIGHT SIDE: GLASS FORM --- */
.hero-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.glass-form-card {
 
  border-radius: 15px;
  width: 100%;
  max-width: 380px;
 
}

.form-header {
  text-align: center;
  padding: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.form-header h3 {
  margin: 0;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
}

.form-body {
  padding: 37px;
}

.input-group{
    margin:-13px;
}
/* Inputs (Rounded White Rectangles) */
.gd-input {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
  color: #333;
  background: #fff;
  font-family: "Poppins", sans-serif;
}

/* Orange Button */
.gd-orange-btn {
  width: 100%;
  background: #4398f3; /* GD Orange */
  color: white;
  padding: 14px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: 0.3s;
  margin-top: 10px;
}

.gd-orange-btn:hover {
  background: #016837;
  transform: scale(1.02);
}

/* Wave Fix */
.hero-bottom-curve {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
}
.hero-bottom-curve svg {
  display: block;
}
.description {
  color: #fff;
  margin-bottom: 30px;
  font-size: 14px;
  line-height: 1.6;
}
/* Mobile Responsiveness */
@media (max-width: 768px) {
  .hero-section {
    padding: 100px 0; /* Mobile padding adjust */
    background-position:1113px 0px;
  }

  .hero-container {
    flex-direction: column;
    gap: 50px;
  }

  .hero-text {
    text-align: left; /* Text left hi rakhein jaisa image me hai */
    padding: 0 10px;
  }

  .hero-title {
    font-size: 35px;
  }

  .hero-image {
    justify-content: center;
    width: 103%;
  }

  .glass-form-card {
    max-width: 100%;
  }
  .form-body {
  padding: 25px;
}
}
.form-footer {
  margin-top: 15px;
  text-align: center;
  border-top: 1px solid #eee;
  padding-top: 10px;
}
.location-text {
  font-size: 0.8rem;
  color: #27ae60;
  font-weight: 600;
  margin-bottom: 3px;
}
.trust-text {
  font-size: 0.75rem;
  color: #ffffff;
}

/* =========================================
   4. FEATURES SECTION
   ========================================= */
.features-section {
  padding-bottom: 20px;
  text-align: center;
  background: #fff;
}

.section-title {
  font-size: 2rem;
  color: var(--primary-blue);
  margin-bottom: 40px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.feature-card {
  background: #f8faff;
  padding: 20px;
  border-radius: 10px;
  transition: 0.3s;
}

.feature-card:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.icon-box {
  font-size: 2rem;
  color: var(--primary-blue);
  margin-bottom: 15px;
}
.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #333;
}
.feature-card p {
  font-size: 0.9rem;
  color: #666;
}

/* =========================================
   5. COMPARISON SECTION
   ========================================= */
.comparison-section {
  padding: 37px 0;
  background: #f4f9fd;
}

.comparison-container-box {
  background: #fff;
  border-radius: 25px;
  box-shadow: 0 15px 40px rgba(0, 86, 179, 0.1);
  overflow: hidden;
  padding: 30px;
}

.comparison-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.comparison-column {
  flex: 1;
}
.column-title {
  text-align: center;
  margin-bottom: 25px;
  color: var(--primary-blue);
  font-size: 1.3rem;
}

.separator-line {
  width: 2px;
  background: linear-gradient(to bottom, transparent, #ddd, transparent);
  margin: 0 10px;
}

.comparison-item {
  display: flex;
  align-items: center;
  background: #f8faff;
  padding: 15px;
  border-radius: 15px;
  margin-bottom: 20px;
  transition: transform 0.2s;
}

.comparison-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.item-image {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 12px;
  margin-right: 20px;
  border: 2px solid #eee;
}

.item-content {
  flex: 1;
}
.icon-title {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
.icon-title h4 {
  font-size: 1.1rem;
  color: #333;
  margin-left: 10px;
}
.icon-dirty {
  color: #a0a0a0;
  font-size: 1.2rem;
}
.icon-clean {
  color: var(--primary-blue);
  font-size: 1.2rem;
}
.item-content p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.4;
}

/* =========================================
   6. PROCESS TIMELINE SECTION
   ========================================= */
.process-timeline-section {
  background: linear-gradient(to bottom, #f4f9fd, #eaf6ff);
  padding: 60px 0;
}

.timeline-box {
  background: url("upload/bgbanner.webp"); /* Ensure path is correct */
  border-radius: 20px;
  padding: 20px 30px;
  box-shadow: 0 10px 30px rgba(0, 86, 179, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #e1eeff;
  position: relative;
  overflow: hidden;
}

.timeline-steps {
  display: flex;
  align-items: center;
  flex: 2;
  justify-content: space-around;
}
.step-item {
  display: flex;
  align-items: center;
  gap: 15px;
}
.step-icon {
  font-size: 2rem;
  color: var(--primary-blue);
}
.step-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 2px;
  text-transform: uppercase;
}
.step-text p {
  font-size: 0.85rem;
  color: #666;
}
.step-arrow {
  color: #0854d1;
  font-size: 1.5rem;
}
.timeline-image {
  flex: 0;
  display: flex;
  justify-content: flex-end;
}
.timeline-image img {
  height: 100px;
  border-radius: 10px;
  object-fit: cover;
  margin-left: 20px;
}

/* =========================================
   7. WHY CHOOSE SECTION
   ========================================= */
.why-choose-section {
  padding: 50px;
  background: #eef7ff;
  text-align: center;
}

.section-subtitle {
  color: #555;
  margin-top: -30px;
  margin-bottom: 40px;
  font-size: 1.1rem;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.benefit-card {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  text-align: left;
  gap: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid #f0f0f0;
  transition: transform 0.3s;
}

.benefit-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-blue);
}

.benefit-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

/* Desktop: Make the 5th child span full width but look like a single card centered */
.benefits-grid .benefit-card:nth-child(5) {
  grid-column: span 2; /* 2 columns ki jagah lega taaki center ho sake */
  width: 49%; /* Width fix ki taaki upar wale cards jaisa size dikhe */
  margin: 0 auto; /* Horizontally center karne ke liye */
}

/* Mobile Fix: Mobile par wapas normal width aur single column ho jayega */
@media (max-width: 768px) {
  .benefits-grid .benefit-card:nth-child(5) {
    grid-column: span 1; /* Mobile par single column */
    width: 100%; /* Full width */
  }
}

.blue-circle {
  background-color: #e3f2fd;
  color: var(--primary-blue);
}
.outline-circle {
  border: 2px solid var(--primary-blue);
  color: var(--primary-blue);
  background: #fff;
}
.gold-badge {
  background: linear-gradient(135deg, #fffbf0, #fff);
  border: 2px solid #ffc107;
  color: #d4a017;
}

.benefit-content h3 {
  font-size: 1.1rem;
  color: var(--primary-blue);
  margin-bottom: 5px;
}
.benefit-content p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.4;
}

/* =========================================
   8. SMART PRODUCT SELECTION (Slider Logic Included)
   ========================================= */
.smart-selection-section {
  padding: 80px 0;
  background-color: #fff;
  text-align: center;
}

.smart-header h2 {
  font-size: 2.2rem;
  color: #002b5c;
  font-weight: 700;
  margin-bottom: 10px;
}
.smart-header p {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.slider-wrapper {
  position: relative;
  padding: 0 10px;
}
.slider-btn {
  display: none;
} /* Hidden on desktop */

.smart-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.smart-card {
  background: #fff;
  width: 100%;
  max-width: 480px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 50, 100, 0.1);
  border: 1px solid #f0f0f0;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.water-wave-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 35%;
  background: linear-gradient(to top, #cceeff 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 0;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.card-upper {
  padding: 30px 30px 10px 30px;
  z-index: 1;
}
.card-upper h3 {
  font-size: 1.6rem;
  color: #002b5c;
  font-weight: 700;
  margin-bottom: 5px;
}
.badge-blue {
  background: #e3f2fd;
  color: #0056b3;
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-block;
}

.product-visual {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  margin: 10px 0;
}
.product-visual img {
  max-height: 100%;
  max-width: 80%;
  object-fit: contain;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.15));
}

.card-details {
  padding: 0 30px 40px 30px;
  position: relative;
  z-index: 1;
}
.smart-features {
  list-style: none;
  text-align: left;
  margin-bottom: 25px;
  display: inline-block;
}
.smart-features li {
  font-size: 1rem;
  color: #333;
  margin-bottom: 10px;
  font-weight: 500;
}
.smart-features i {
  color: #0056b3;
  margin-right: 10px;
}

.smart-btn {
  display: block;
  width: 100%;
  background-color: #ffc107;
  color: #000;
  font-weight: 700;
  padding: 16px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1rem;
  box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
  transition: all 0.3s ease;
}
.smart-btn:hover {
  background-color: #ffca2c;
  transform: scale(1.02);
}

/* =========================================
   9. HARD WATER SECTION (Slider Logic Included)
   ========================================= */
.hard-water-section {
  padding: 50px;
  background-color: #00baff14;
  text-align: center;
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-bottom: 50px;
}

.problem-card {
  text-align: center;
  transition: transform 0.3s ease;
  border-radius: 20px;
  background: #fff;
}
.problem-card:hover {
  transform: translateY(-5px);
}

.problem-img {
  width: 100%;
  height: 180px;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}
.problem-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.problem-card h3 {
  font-size: 1.1rem;
  color: #333;
  font-weight: 700;
  margin-bottom: 8px;
}
.problem-card p {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.4;
  padding: 0 5px;
}

.hard-water-action {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  border-top: 1px solid #f0f8ff;
  padding-top: 30px;
}

.cta-button-blue {
  background: linear-gradient(180deg, #007bff 0%, #0056b3 100%);
  color: #fff;
  padding: 16px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 5px;
  box-shadow: 0 4px 15px rgba(0, 86, 179, 0.3);
  transition: all 0.3s ease;
  z-index: 2;
}
.cta-button-blue:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 86, 179, 0.4);
}

.wave-decoration {
  display: flex;
  align-items: center;
  color: #a0c4ff;
  font-weight: 500;
}
.small-text {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* =========================================
   10. VIDEO TESTIMONIALS SECTION (Slider Logic Included)
   ========================================= */
.trusted-section {
  padding: 60px 0;
  background-color: #f8fbff;
}

.section-header-left {
  text-align: left;
  margin-bottom: 30px;
  border-bottom: 2px solid #e1e1e1;
  padding-bottom: 15px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.video-card-simple {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  background: #000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.video-card-simple:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.simple-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  padding: 15px 15px 10px 15px;
  pointer-events: none;
}
.simple-info h5 {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.5px;
}

/* =========================================
   11. CUSTOMER REVIEWS SECTION (Slider Logic Included)
   ========================================= */
.reviews-section {
    padding: 70px 0;
    background-color: #f0f8ff;
    text-align: center;
    overflow: hidden; /* Extra horizontal scroll rokne ke liye */
}

/* 1. GRID HATA KAR FLEX (SLIDER) BANAYA */
.reviews-grid {
    display: flex;         /* Grid ki jagah Flex (Line mein lane ke liye) */
    gap: 30px;             /* Cards ke beech gap */
    overflow-x: auto;      /* Scroll allow karein */
    scroll-behavior: smooth;
    padding: 20px 10px;    /* Padding taaki shadow na kate */
    
    /* Center align agar kam cards hon */
    margin: 40px auto 0 auto; 
    max-width: 1200px;     /* Container width fix */
    
    /* Scrollbar Chupana */
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.reviews-grid::-webkit-scrollbar { 
    display: none; 
}

/* 2. CARD SIZING (Exactly 3 Cards) */
.review-card {
    /* Design (Aapka diya hua same code) */
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    border: 1px solid #f0f0f0;
    text-align: left;

    /* LAYOUT LOGIC (3 Card Fix) */
    /* Formula: (100% width - 2 gaps of 30px) / 3 items */
    min-width: calc((100% - 60px) / 3); 
    width: calc((100% - 60px) / 3);
    
    flex: 0 0 auto; /* Card ko shrink hone se rokna zaroori hai */
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}
.review-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.review-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top;
  transition: transform 0.5s;
}
.review-card:hover .review-img img {
  transform: scale(1.05);
}

.review-content {
  padding: 25px;
}
.reviewer-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 5px;
}
.stars {
  color: #ffc107;
  font-size: 0.9rem;
  margin-bottom: 15px;
}
.review-text {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  font-style: italic;
}

/* =========================================
   12. FAQ & FOOTER SECTIONS
   ========================================= */
.faq-section {
  padding: 60px 0;
  background-color: #f0f6ff;
  text-align: center;
}
.faq-container {
  background: #fff;
  max-width: 800px;
  margin: 0 auto 50px auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 86, 179, 0.08);
  overflow: hidden;
  text-align: left;
}
.faq-item {
  border-bottom: 1px solid #eee;
}
.faq-item:last-child {
  border-bottom: none;
}
.faq-item summary {
  padding: 20px 25px;
  cursor: pointer;
  font-weight: 500;
  color: #333;
  font-size: 1.05rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  transition: background 0.2s;
}
.faq-item summary:hover {
  background: #f9fcff;
}
.faq-item[open] summary {
  color: var(--primary-blue);
  font-weight: 600;
}
.faq-answer {
  padding: 0 25px 20px 25px;
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
  background: #fff;
}
/* =========================================
   SUPPORT FEATURES (Glassy Sky Blue Look)
   ========================================= */

.support-features-grid {
  display: flex;
  justify-content: center;
  gap: 30px; /* Cards ke beech gap */
  margin-bottom: 50px;
  flex-wrap: wrap;
  margin-top: 40px;
}

/* The Glassy Box */
.support-feature {
  background: rgba(255, 255, 255, 0.6); /* Semi-transparent White */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.9); /* Subtle Border */
  border-radius: 25px; /* Rounded Corners */
  padding: 25px 20px;
  width: 160px; /* Fixed Width for Uniformity */
  text-align: center;

  /* Sky Blue Shadow Effect */
  box-shadow: 0 10px 25px rgba(135, 206, 250, 0.25);

  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Hover Effect - Pop up & Glow */
.support-feature:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 15px 35px rgba(0, 174, 255, 0.35); /* Bright Sky Blue Glow */
  border-color: #fff;
}

/* Icon Container - Bubble Style */
.s-icon {
  font-size: 28px;
  margin-bottom: 15px;
  height: 60px;
  width: 60px;
  border-radius: 50%;

  /* Light Water Gradient Background for Icon */
  background: linear-gradient(135deg, #e1f5fe 0%, #b3e5fc 100%);

  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;

  /* Inner Glow */
  box-shadow: inset 0 0 10px rgba(0, 168, 255, 0.15),
    0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Icon Specific Colors */
.blue-shield {
  color: #4398f3;
}
.green-shield {
  color: #28a745;
}
.blue-tools {
  color: #039be5;
}
.emi-box span {
  background: #0288d1;
  color: #fff;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 800;
}

/* Text Styling */
.support-feature h4 {
  font-size: 15px;
  font-weight: 700;
  color: #002b5c;
  line-height: 1.4;
  margin: 0;
}

/* Badge Fix inside Icon (like '1' or Check) */
.check-badge,
.year-text {
  position: absolute;
  bottom: 0;
  right: 0;
  background: #fff;
  border-radius: 50%;
  font-size: 10px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  border: 2px solid #e1f5fe;
  font-weight: bold;
  color: #0056b3;
}

/* Mobile Fix */
@media (max-width: 768px) {
  .support-features-grid {
    gap: 15px;
  }
  .support-feature {
    width: 45%; /* 2 items per row */
    padding: 20px 10px;
  }
}
/* Contact Bar */
.contact-bar {
  display: block;
  background: #2c5282;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  border-radius: 12px;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(44, 82, 130, 0.4);
  transition: transform 0.2s;
}
.contact-bar:hover {
  transform: translateY(-3px);
  background: #23426b;
}
.contact-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-size: 1.2rem;
}
.phone-number {
  font-weight: 700;
  letter-spacing: 1px;
}

/* Footer */
.site-footer {
  background-color: #1a1a1a;
  color: #fff;
  padding-top: 60px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #333;
}
.footer-col {
  flex: 1;
  min-width: 250px;
}
.footer-logo {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #fff;
}
.footer-col p {
  color: #bbb;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
}
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background: #333;
  color: #fff;
  border-radius: 50%;
  margin-right: 10px;
  text-decoration: none;
  transition: background 0.3s;
}
.social-icons a:hover {
  background: var(--primary-blue);
}
.footer-col ul li {
  margin-bottom: 12px;
  list-style: none;
}
.footer-col ul li a {
  color: #bbb;
  text-decoration: none;
}
.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 0.85rem;
  color: #777;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* =========================================
   13. GLOBAL MOBILE RESPONSIVENESS (Max 768px)
   ========================================= */
@media (max-width: 768px) {
  /* 1. SECTION SPACING (30px Max) */
  .hero-section,
  .features-section,
  .comparison-section,
  .process-timeline-section,
  .why-choose-section,
  .smart-selection-section,
  .hard-water-section,
  .trusted-section,
  .reviews-section,
  .faq-section,
  .final-cta-section {
    padding: 30px 0 !important; /* Forces 30px padding on all mobile sections */
  }

  /* 2. HEADER & MENU */
  .logo img {
    height: 40px;
  }
  .desktop-cta-btn {
    display: none;
  }
  .hamburger {
    display: block;
    font-size: 26px;
    cursor: pointer;
    color: var(--primary-blue);
    padding: 5px;
  }

  .nav-menu {
    display: block;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    padding: 20px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.3s ease-in-out;
    z-index: 999;
  }
  .nav-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .nav-link {
    display: block;
    padding: 12px 20px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 16px;
    color: #444;
  }
  .nav-link:hover {
    background-color: #f9fcff;
    color: var(--primary-blue);
    padding-left: 25px;
  }
  .nav-link::after {
    display: none;
  }
  .mobile-cta-btn {
    display: block;
    background-color: var(--cta-yellow);
    color: #000;
    text-align: center;
    margin: 20px 20px 0 20px;
    padding: 12px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
  }

  /* 3. HERO ADJUSTMENTS */
  .hero-container {
    flex-direction: column;
    text-align: center;
  }
  .hero-text h1 {
    font-size: 42px;
  }
  .trust-markers {
    justify-content: center;
  }
  .hero-form-card {
    margin: 0 auto;
    width: 100%;
  }

  /* 4. COMPARISON */
  .comparison-grid {
    flex-direction: column;
  }
  .separator-line {
    width: 100%;
    height: 2px;
    margin: 20px 0;
    background: linear-gradient(to right, transparent, #ddd, transparent);
  }
  .comparison-item {
    flex-direction: column;
    text-align: center;
  }
  .item-image {
    margin-right: 0;
    margin-bottom: 15px;
  }
  .icon-title {
    justify-content: center;
  }

  /* 5. TIMELINE & BENEFITS */
  .timeline-box {
    flex-direction: column;
    padding: 20px;
  }
  .timeline-steps {
    flex-direction: column;
    width: 100%;
    align-items: flex-start;
    gap: 20px;
  }
  .step-arrow,
  .timeline-image {
    display: none;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  /* 6. SLIDERS LOGIC (Product, Hard Water, Videos, Reviews) */
  .slider-wrapper {
    padding: 0;
  }
  .slider-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.9);
    color: #0056b3;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 10;
    cursor: pointer;
    border: none;
    font-size: 1.2rem;
  }
  .prev-btn {
    left: 10px;
  }
  .next-btn {
    right: 10px;
  }

  /* Common Slider Container Styles */
  .smart-grid,
  .problems-grid,
  .testimonials-grid,
  .reviews-grid {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 0;
    justify-content: flex-start;
    padding-bottom: 20px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .smart-grid::-webkit-scrollbar,
  .problems-grid::-webkit-scrollbar,
  .testimonials-grid::-webkit-scrollbar,
  .reviews-grid::-webkit-scrollbar {
    display: none;
  }

  /* Items Full Width for Slider */
  .smart-card,
  .problem-card,
  .video-card-simple,
  .review-card {
    min-width: 100%;
    flex: 0 0 100%;
    scroll-snap-align: center;
    margin: 0;
    padding: 0 10px; /* Internal gap handling */
    border-radius: 20px; /* Ensure rounded look */
  }

  /* Specific overrides for Video */
  .video-card-simple {
    background: transparent;
    box-shadow: none;
  }
  .video-card-simple .video-wrapper {
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
  }

  /* Specific overrides for Reviews/Problems */
  .problem-img {
    height: 220px;
    width: 100%;
  }
  .review-img {
    height: 180px;
  }
  .review-card {
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    background-clip: padding-box;
  }

  /* 7. OTHER MOBILE FIXES */
  .hard-water-action {
    flex-direction: column;
    padding-top: 0px;
    margin-top: 25px;
  }
  .wave-decoration,
  .divider-line {
    display: none;
  }
  .section-header-left {
    text-align: center;
  }
  .cta-layout,
  .footer-top,
  .footer-bottom,
  .contact-content {
    flex-direction: column;
    text-align: center;
  }
  .footer-bottom {
    gap: 10px;
    justify-content: center;
  }
  .cta-features li {
    justify-content: center;
  }
  .contact-content {
    gap: 5px;
  }
}
/* --- NEW SECTIONS CSS (Refined & Polished) --- */

/* 1. Video Grid */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px; /* Thoda gap badhaya */
  margin-top: 40px;
}

.video-item {
  border-radius: 20px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 10px 25px rgba(0, 86, 179, 0.15); /* Blueish shadow matches theme */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 86, 179, 0.25);
}

.video-item iframe {
  width: 100%;
  height: 220px; /* Thoda height badhaya visuals ke liye */
  border: none;
  display: block;
}

/* 2. Water Theme Section */
.water-theme-section {
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #eef7ff 100%
  ); /* Softer gradient */
  position: relative;
  overflow: hidden;
}

/* SVG Wave (No Change needed, logic is fine) */
.water-wave-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.water-wave-top svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 50px;
}
.water-wave-top .shape-fill {
  fill: #fff;
} /* Match with previous section bg */

/* 3. Top Benefits Icons (Round Circles) */
.benefit-icons-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px; /* Better spacing */
  margin-bottom: 50px;
  margin-top: 30px;
  text-align: center;
}

.benefit-item {
  flex: 1;
  min-width: 160px;
  max-width: 220px;
}

.benefit-icon-circle {
  width: 80px; /* Thoda bada size */
  height: 80px;
  background: #fff;
  border-radius: 50%;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--primary-blue);
  /* Soft glowing shadow instead of hard border */
  box-shadow: 0 8px 20px rgba(0, 98, 204, 0.15);
  border: 1px solid #e3f2fd;
  transition: transform 0.3s ease;
}

.benefit-item:hover .benefit-icon-circle {
  transform: scale(1.1);
  background: #f0f8ff;
}

.benefit-item h5 {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  line-height: 1.4;
  margin: 0;
}

/* 4. Inspection Grid (Glass Cards) */
.inspection-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  max-width: 1000px;
  margin: 0 auto;
}

.inspect-card {
  background: #fff;
  border: 1px solid #f0f5fa;
  padding: 25px;
  border-radius: 20px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03); /* Very clean shadow */
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.inspect-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-blue);
  box-shadow: 0 15px 40px rgba(0, 86, 179, 0.1);
}

.inspect-icon {
  font-size: 24px;
  color: var(--primary-blue);
  background: #e3f2fd; /* Light blue circle */
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.inspect-text h4 {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 700;
  color: #002b5c; /* Darker blue for headings */
}

.inspect-text p {
  margin: 0;
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}

/* 5. Comparison Table (Premium Look) */
.comparison-wrapper {
  overflow-x: auto;
  margin-top: 30px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 15px 40px rgba(0, 86, 179, 0.08); /* Soft blue shadow */
  border: 1px solid #eee;
}

.comp-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px; /* Ensures scroll on mobile */
}

.comp-table th,
.comp-table td {
  padding: 20px 25px; /* More breathing room */
  text-align: left;
  border-bottom: 1px solid #f1f1f1;
}

.comp-table th {
  background: var(--primary-blue); /* Dark Navy Blue */
  color: white;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Ecowell Highlight Column */
.comp-table th:nth-child(3) {
  background: #016837; /* Brighter Blue */
  position: relative;
}

/* Ecowell Column Cells Highlight (Optional - Light Blue tint) */
.comp-table td:nth-child(3) {
  background-color: #fcfdff;
  font-weight: 500;
  color: #000;
}

.comp-table td {
  font-size: 15px;
  color: #444;
}

.comp-table tr:last-child td {
  border-bottom: none;
}

.comp-table tr:hover {
  background: #f8fbff;
}

/* Table Icons */
.fa-times-circle {
  color: #e74c3c;
  font-size: 18px;
  margin-right: 8px;
}
.fa-check-circle {
  color: #27ae60;
  font-size: 18px;
  margin-right: 8px;
}
.fa-star {
  color: #f1c40f;
  margin-right: 8px;
  font-size: 16px;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .video-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .benefit-icons-row {
    gap: 20px;
  }
  .benefit-item {
    min-width: 45%;
    margin-bottom: 10px;
  }

  .inspection-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .inspect-card {
    padding: 20px;
  }
}

/* =========================================
   MOBILE COMPACT TABLE (Fit to Screen)
   ========================================= */

@media (max-width: 768px) {
  /* 1. Wrapper Scroll Hataya */
  .comparison-wrapper {
    overflow-x: hidden; /* Scroll band */
    width: 100%;
    border-radius: 15px;
  }

  /* 2. Table Structure Fix */
  .comp-table {
    width: 100%;
    min-width: auto; /* Desktop wala 700px limit hataya */
    table-layout: fixed; /* Force karega ki table screen ke andar rahe */
  }

  /* 3. Cells Styling (Compact) */
  .comp-table th,
  .comp-table td {
    padding: 8px 4px; /* Padding bahot kam kar di */
    font-size: 10px; /* Font size chhota kiya */
    white-space: normal; /* Text ko wrap hone denge */
    line-height: 1.3;
    text-align: center; /* Center alignment taaki saaf dikhe */
    vertical-align: middle;
  }

  /* 4. Headings (Columns) */
  .comp-table th {
    font-size: 11px;
    padding: 10px 2px;
    letter-spacing: 0;
  }

  /* 5. Column Widths Adjust karna (Optional) */
  /* Feature Column (Thoda chhota) */
  .comp-table th:nth-child(1),
  .comp-table td:nth-child(1) {
    width: 25%;
    text-align: left;
    padding-left: 8px;
    font-weight: 700;
  }

  /* Basic & Ecowell Columns (Barabar jagah) */
  .comp-table th:nth-child(2),
  .comp-table td:nth-child(2),
  .comp-table th:nth-child(3),
  .comp-table td:nth-child(3) {
    width: 37.5%;
  }

  /* 6. Icons ko chhota karna */
  .comp-table i {
    font-size: 10px;
    display: block; /* Icon ko upar line me, text ko neeche */
    margin-bottom: 3px;
    margin-right: 0;
  }

  /* Agar text bold hai to thoda adjustment */
  .comp-table strong {
    font-weight: 600;
  }
}

/* =========================================
   SERVICE HIGHLIGHTS SECTION (Glassy Look)
   ========================================= */

.highlights-grid {
  display: grid;
  /* Desktop: 5 columns auto-fit */
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 20px;
  position: relative;
  z-index: 2;
}

.highlight-card {
  background: rgba(255, 255, 255, 0.95); /* Bright White Glass */
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  padding: 25px 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 168, 255, 0.15); /* Light Blue Glow Shadow */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.highlight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 168, 255, 0.25);
  border-color: #00a8ff;
}

/* Icon Styling - Matches the Image Color */
.h-icon {
  font-size: 32px;
  color: #fff;
  background: #002b5c;
  width: 65px;
  height: 65px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 168, 255, 0.3);
  margin-bottom: 5px;
}

.highlight-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: #0056b3; /* Sky Blue Text */
  margin: 0;
  line-height: 1.3;
}

/* Mobile Scroll Fix (Horizontal Scroll for 5 items) */
@media (max-width: 768px) {
  .highlights-grid {
    display: flex;
    overflow-x: auto;
    padding-bottom: 20px;
    gap: 15px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Hide scrollbar */
  }
  .highlights-grid::-webkit-scrollbar {
    display: none;
  }

  .highlight-card {
    min-width: 160px; /* Card width on mobile */
    scroll-snap-align: center;
  }
}

/* =========================================
   CHOOSE RIGHT SOFTENER (Image Layout + Glassy Style)
   ========================================= */

/* 1. Main Layout: Split Screen */
.choose-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

/* --- LEFT SIDE: Content --- */
.choose-content {
  flex: 1;
  min-width: 300px;
  text-align: left; /* Image ke hisab se left align */
}

.cs-title {
  font-size: 28px;
  color: #002b5c;
  font-weight: 800;
  margin-bottom: 10px;
  text-decoration: underline;
  text-decoration-color: var(--primary-blue);
  text-underline-offset: 8px;
}

.cs-subtitle {
  font-size: 18px;
  color: #0056b3;
  font-weight: 700;
  margin-bottom: 20px;
}

.cs-desc {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 25px;
  max-width: 90%;
}

.cs-question {
  font-size: 18px;
  font-weight: 800;
  color: #002b5c;
  margin-bottom: 15px;
}

.cs-btn {
  background: linear-gradient(90deg, #29b6f6, #00a8ff);
  color: white;
  padding: 12px 30px;
  border-radius: 5px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 5px 15px rgba(0, 168, 255, 0.3);
  margin-bottom: 40px;
  transition: 0.3s;
}
.cs-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 168, 255, 0.4);
}

/* Rectangular Selection Boxes (Glassy) */
.selection-boxes-row {
  display: flex;
  gap: 20px;
}

.glass-select-box {
  flex: 1;
  background: rgba(255, 255, 255, 0.6); /* Glassy BG */
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 15px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.glass-select-box:hover {
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 86, 179, 0.15);
  border-color: var(--primary-blue);
  transform: translateY(-5px);
}

.gs-icon {
  font-size: 30px;
  color: #aaa; /* Line art style grey */
  transition: 0.3s;
}
.glass-select-box:hover .gs-icon {
  color: var(--primary-blue);
}

.gs-info h5 {
  margin: 0 0 5px;
  font-size: 16px;
  color: #002b5c;
  font-weight: 700;
}
.gs-info span {
  font-size: 12px;
  color: #666;
  display: block;
}

/* --- RIGHT SIDE: Visuals (Floating Circles) --- */
.choose-visuals {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  gap: 30px;
  position: relative;
}

/* Glassy Circles */
.glass-circle-card {
  text-align: center;
  position: relative;
  transition: 0.4s ease;
}

/* Positioning to match image (One up, One down) */
.card-1 {
  margin-top: 0px;
}
.card-2 {
  margin-top: 60px;
}

.circle-bg {
  width: 220px;
  height: 220px;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(255, 255, 255, 0.9),
    rgba(230, 240, 255, 0.8)
  ); /* Bubble Gradient */
  backdrop-filter: blur(15px);
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 50px rgba(0, 86, 179, 0.15); /* Soft Blue Shadow */
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

/* Product Image inside Circle */
.circle-bg img {
  height: 235px; /* Adjust size */
  object-fit: contain;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.15));
  transition: 0.4s;
}

.glass-circle-card:hover .circle-bg img {
  transform: scale(1.1);
}
.glass-circle-card:hover .circle-bg {
  box-shadow: 0 25px 60px rgba(0, 168, 255, 0.25);
  border-color: #fff;
}

.glass-circle-card h4 {
  font-size: 18px;
  color: #002b5c;
  font-weight: 700;
}
@media (max-width: 768px) {
    
    /* 1. Slider Hatao aur Grid Banao */
    .choose-visuals {
        display: grid !important; /* Flex/Scroll hataya */
        grid-template-columns: 1fr 1fr; /* Do barabar columns (50% - 50%) */
        gap: 5px; /* Sirf 5px ka gap */
        overflow: visible !important; /* Scroll band */
        padding: 0 !important;
        width: 100%;
        justify-content: center;
    }

    /* 2. Cards ko Fit Karo */
    .glass-circle-card {
        min-width: 0 !important; /* Purana fixed width hataya */
        width: 100% !important;
        margin: 0 !important;
        padding: 15px 5px !important; /* Padding kam ki */
        scroll-snap-align: none; /* Snap hataya */
        background: rgba(255,255,255,0.6); /* Halka glass background */
        border-radius: 15px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    /* 3. Circles ko Chhota Karo (Taaki 2 fit ho jayein) */
    .circle-bg {
        width: 110px !important; /* Size chhota kiya (pehle 180px tha) */
        height: 110px !important;
        margin: 0 auto 10px auto !important;
        border-width: 1px !important;
    }

    /* 4. Image Size Adjust */
    .circle-bg img {
        height: 70px !important; /* Image ko circle ke hisab se set kiya */
        width: auto !important;
    }

    /* 5. Text Size Adjust */
    .glass-circle-card h4 {
        font-size: 13px !important; /* Font thoda chhota taaki 2 line mein na tute */
        line-height: 1.3;
        margin-top: 5px;
    }
}
/* =========================================
   MOBILE RESPONSIVENESS (SHORT & COMPACT)
   ========================================= */

@media (max-width: 900px) {
  /* 1. Layout Reset */
  .choose-layout {
    flex-direction: column;
    text-align: center;
    gap: 30px; /* Gap kam kiya */
  }

  /* 2. Text Content Compact */
  .choose-content {
    margin-bottom: 20px;
  }
  .cs-title {
    font-size: 24px;
  }
  .cs-subtitle {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .cs-desc {
    font-size: 14px;
    margin: 0 auto 20px auto;
    line-height: 1.5;
  }

  /* 3. BUTTON FIX (Mobile pe upar dikhana hai ya niche?) */
  /* Hum button ko products ke baad dikhayenge taaki flow bana rahe */
  .cs-btn {
    width: 80%; /* Full width button visual */
    margin-bottom: 10px;
  }

  /* 4. HIDE DUPLICATE SMALL BOXES (Client Req: Make it Short) */
  .selection-boxes-row {
    display: none; /* Ye mobile par nahi dikhega */
  }

  /* 5. VISUALS SLIDER (Cards ko horizontal chalayenge) */
  .choose-visuals {
    display: flex;
    flex-direction: row; /* Side by side */
    flex-wrap: nowrap; /* Stack nahi karega */
    overflow-x: auto; /* Scrollable */
    gap: 20px;
    padding: 10px 20px 30px 20px; /* Padding for shadow clipping */
    width: 100%;
    justify-content: flex-start; /* Left align start */
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Hide scrollbar */
  }

  .choose-visuals::-webkit-scrollbar {
    display: none;
  }

  /* 6. CARD ADJUSTMENTS FOR MOBILE */
  .glass-circle-card {
    min-width: 240px; /* Fixed width mobile card */
    margin-top: 0 !important; /* Remove desktop staggering */
    scroll-snap-align: center;
    background: rgba(
      255,
      255,
      255,
      0.5
    ); /* Thoda background card feel ke liye */
    padding: 20px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.6);
  }

  .circle-bg {
    width: 180px; /* Thoda chhota circle */
    height: 180px;
    margin: 0 auto 15px auto;
  }

  .circle-bg img {
    height: 130px;
  }
}

/* =========================================
   RESULTS SLIDER & DOTS STYLING
   ========================================= */

/* 1. Track & Card */
.results-track {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding: 20px 10px;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.results-track::-webkit-scrollbar {
  display: none;
}
/* Remove old styles */
.vs-badge,
.result-labels,
.label-bad,
.label-good {
    display: none;
}

/* New container for the entire bar */
.vs-label-bar {
    position: absolute;
    bottom: 15px; /* Position from the bottom */
    left: 50%;
    transform: translateX(-50%); /* Center horizontally */
    width: 90%; /* Almost full width of the card */
    background: rgba(255, 255, 255, 0.9); /* Semi-transparent white background */
    backdrop-filter: blur(5px); /* Frosted glass effect */
    padding: 10px 15px;
    border-radius: 30px; /* Fully rounded corners */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Soft shadow */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    white-space: nowrap; /* Keep text in one line */
    color: #333;
    font-size: 14px;
    font-weight: 600;
    z-index: 2;
}

/* Style for the "VS" text */
.vs-label-bar b {
    margin: 0 10px;
    font-weight: 800;
    font-size: 16px;
    color: #000;
}

/* Style for the left and right text spans */
.vs-label-bar span {
    flex: 1; /* Distribute space evenly */
    white-space: normal; /* Allow wrapping for longer text on mobile */
}
.result-card {
  min-width: 280px;
  background: rgba(255, 255, 255, 0.7); /* Glassy White */
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 86, 179, 0.1);
  transition: transform 0.3s ease;
  position: relative;
  flex: 0 0 auto;
}

.result-card:hover {
  transform: translateY(-8px);
  background: #fff;
  box-shadow: 0 15px 40px rgba(0, 86, 179, 0.2);
}

.result-image-box {
  position: relative;
  height: 250px;
  width: 100%;
}
.result-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vs-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  color: #000;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.4);
}

/* 2. Labels */
.result-labels {
  display: flex;
  justify-content: space-between;
  padding: 15px;
  background: linear-gradient(to right, #f8f9fa 50%, #e3f2fd 50%);
}
.label-bad {
  font-size: 13px;
  font-weight: 600;
  color: #777;
  width: 45%;
  text-align: left;
}
.label-good {
  font-size: 13px;
  font-weight: 700;
  color: #0056b3;
  width: 45%;
  text-align: right;
}

/* 3. PAGINATION DOTS (Grey to Blue) */
.slider-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 15px;
}
.slider-dot {
  width: 10px;
  height: 10px;
  background-color: #d1d5db; /* Inactive Grey */
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}
.slider-dot.active {
  background-color: #0056b3; /* Active Blue */
  width: 25px; /* Lamba dot */
  border-radius: 10px;
}
.slider-dot:hover {
  background-color: #9ca3af;
}

/* Buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  background: #fff;
  border-radius: 50%;
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  color: #0056b3;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.prev-btn {
  left: -15px;
}
.next-btn {
  right: -15px;
}

/* Mobile */
@media (max-width: 768px) {
  .slider-btn {
    display: none;
  } /* Arrows hide on mobile */
  .result-card {
    min-width: 85vw;
  }
}
/* Reviews Slider Specific Logic */

/* Default: Dots Hidden (Desktop) */

/* Mobile: Dots Visible & Styled */
@media (max-width: 768px) {
  #reviews-dots {
    display: flex; /* Mobile par wapas layenge */
    justify-content: center;
    margin-top: 20px;
  }
}
/* Hard Water Slider Dots Logic */

/* Default: Dots Hidden (Desktop) */
#hard-water-dots {
  display: none;
}

/* Mobile: Dots Visible & Styled */
@media (max-width: 768px) {
  #hard-water-dots {
    display: flex;
    justify-content: center;
    margin-top: -30px;
  }
}

/* Default: Dots Hidden (Desktop) */
#inspection-dots{
    display:none;
}

/* Mobile: Dots Visible & Styled */
@media (max-width: 768px) {
  #results-dots {
    display: flex;
    justify-content: center;
    margin-top: 15px;
  }
}


/* =========================================
   RESULTS COMPARISON SLIDER (Horizontal)
   ========================================= */

/* =========================================
   RESULTS SLIDER (Centered, Cropped, 3 Cards)
   ========================================= */

/* 1. Main Wrapper - Ye Center karega aur Crop karega */
.results-slider-wrapper {
    position: relative;
    width: 100%;
    max-width: 1150px; /* Isse zyada chauda nahi hoga (Center effect) */
    margin: 0 auto;    /* Left-Right auto margin se ye beech mein aa jayega */
    overflow: hidden;  /* Jo area 1150px ke bahar hai wo cut jayega (Crop) */
    padding: 0 10px;   /* Thodi saaf safai */
}

/* 2. Track Layout */
.results-track {
    display: flex;
    gap: 20px;         /* Cards ke beech 20px ka gap */
    overflow-x: auto;  /* Scroll allow karega */
    padding: 20px 5px; /* Shadow kat na jaye isliye padding */
    scroll-behavior: smooth;
    
    /* Scrollbar Chupana */
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.results-track::-webkit-scrollbar { display: none; }

/* 3. Card Sizing - Exact 3 Cards Logic */
.result-card {
    /* MATH: (100% width - 2 gaps of 20px) divided by 3 */
    /* 100% - 40px / 3 = Exact 3 cards fit honge */
    flex: 0 0 calc((100% - 40px) / 3); 
    max-width: calc((100% - 40px) / 3);
    
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 86, 179, 0.1);
    transition: transform 0.3s ease;
    margin: 0; /* Margin zero rakhein */
}

.result-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 86, 179, 0.2);
}

/* Image Container */
.result-image-box {
  position: relative;
  height: 357px; /* Tall Portrait height */
  width: 100%;
}

.result-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Image should be a split image (Left Bad / Right Good) */
}

/* VS Badge in Center */
.vs-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  color: #000;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.3); /* Transparent Ring */
  z-index: 2;
}

/* Labels at Bottom */
.result-labels {
  display: flex;
  justify-content: space-between;
  padding: 15px;
  background: linear-gradient(
    to right,
    #fdfdfd 50%,
    #f0f8ff 50%
  ); /* Split Background */
  border-top: 1px solid #eee;
}

.label-bad {
  font-size: 13px;
  font-weight: 600;
  color: #777;
  text-align: left;
  width: 45%;
}

.label-good {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-blue);
  text-align: right;
  width: 45%;
}
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  background: #fff;
  border-radius: 50%;
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  color: var(--primary-blue);
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: 0.3s;
}
.prev-btn {
  left: -20px;
}
.next-btn {
  right: -20px;
}
.slider-btn:hover {
  background: var(--primary-blue);
  color: #fff;
  transform: translateY(-50%) scale(1.1);
}

/* Mobile Fix */
@media (max-width: 768px) {
  .result-card {
    min-width: 240px; /* Thoda chhota mobile pe */
  }
  .result-image-box {
    height: 200px;
  }
}
/* Mobile Par Buttons Hide Karein (Ungli se swipe easy hai) */
@media (max-width: 768px) {
  .slider-btn {
    display: none !important;
  }
  /* Mobile padding fix */
  .results-track {
    padding-left: 20px;
    padding-right: 20px;
  }
}
/* =========================================
   PREMIUM GLASSY FOOTER
   ========================================= */

.premium-water-footer {
  position: relative;
  /* Yahan apni Water Image lagayein */
  background: url("upload/bgbanner.webp") center/cover no-repeat fixed;
  margin-top: 0;
  overflow: hidden;
}

/* Glass Overlay (The Magic Layer) */
.footer-glass-overlay {
  background: rgba(255, 255, 255, 0.85); /* 85% Opaque White */
  backdrop-filter: blur(20px); /* Heavy Blur for Glass Effect */
  -webkit-backdrop-filter: blur(20px);
  padding: 100px 0 30px 0; /* Top padding wave ke liye */
  position: relative;
  z-index: 1;
}

/* Main Layout */
.footer-main-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

/* Left Side: Brand */
.footer-brand-col {
  flex: 1;
  min-width: 250px;
  max-width: 300px;
}

.footer-logo-premium img {
  height: 60px;
  margin-bottom: 20px;
}

.brand-desc {
  color: #444;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.footer-socials a {
  display: inline-flex;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #0056b3, #00a8ff);
  color: white;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(0, 168, 255, 0.3);
}
.footer-socials a:hover {
  transform: translateY(-3px);
}

/* Right Side: Grid Links */
.footer-links-grid {
  flex: 3;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
}

.footer-link-col h4 {
  color: #002b5c; /* Dark Blue Heading */
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

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

.footer-link-col ul li {
  margin-bottom: 12px;
}

.footer-link-col ul li a {
  color: #555;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
  position: relative;
}

.footer-link-col ul li a:hover {
  color: #0056b3;
  padding-left: 5px;
}

/* Office Addresses */
.office-address {
  margin-bottom: 20px;
}
.office-address strong {
  display: block;
  color: #0056b3;
  font-size: 14px;
  margin-bottom: 5px;
}
.office-address p {
  color: #666;
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
}

/* Bottom Copyright */
.footer-copyright {
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 25px;
  color: #777;
  font-size: 13px;
}

/* Mobile Responsive */
@media (max-width: 900px) {
  .footer-main-row {
    flex-direction: column;
    gap: 40px;
  }

  .footer-brand-col {
    max-width: 100%;
    text-align: center;
  }

  .footer-links-grid {
    width: 100%;
    grid-template-columns: 1fr; /* Stack columns on mobile */
    text-align: center;
    gap: 40px;
  }

  .footer-link-col ul li a:hover {
    padding-left: 0;
  }
}

/* =========================================
   MOBILE STRIPE VIEW FOR INSPECTION SECTION
   ========================================= */
/* =========================================
   MOBILE HORIZONTAL MOVING STRIP (Correction)
   ========================================= */

@media (max-width: 768px) {
    
    /* 1. Slider/Strip Container */
    .inspection-slider {
        display: flex !important;
        flex-direction: row !important; /* Wapas Horizontal kar diya */
        overflow-x: auto !important; /* Scrollable */
        gap: 15px; /* Cards ke beech gap */
        padding: 10px 5px; /* Thoda padding taaki shadow na kate */
        scroll-behavior: smooth;
        
        /* Scrollbar chupana */
        scrollbar-width: none; 
        -ms-overflow-style: none;
    }
    
    .inspection-slider::-webkit-scrollbar { 
        display: none; 
    }

    /* 2. Cards ko Strip Item Banana */
    .inspect-card {
        min-width: 280px; /* Fixed width taaki strip bane */
        flex: 0 0 auto; /* Shrink nahi hoga */
        width: 280px;
        margin: 0;
        
        /* Card Look Wapas Laya */
        background: #fff;
        border-radius: 15px;
        border: 1px solid #f0f5fa;
        box-shadow: 0 5px 15px rgba(0, 86, 179, 0.08);
        padding: 20px;
        
        /* Layout Inside Card */
        display: flex;
        flex-direction: row; /* Icon Left, Text Right */
        align-items: center;
        text-align: left;
        gap: 15px;
    }

    /* 3. Zebra Colors Hata diye (Standard Card Look) */
    .inspect-card:nth-child(odd),
    .inspect-card:nth-child(even) {
        background-color: #fff;
    }

    /* 4. Text & Icon Adjustments for Strip */
    .inspect-icon {
        width: 50px; height: 50px;
        font-size: 22px;
        margin: 0;
        background: #e3f2fd;
        border-radius: 50%;
        display: flex; align-items: center; justify-content: center;
        flex-shrink: 0;
    }

    .inspect-text h4 {
        font-size: 16px; margin-bottom: 4px; color: #002b5c;
    }
    .inspect-text p {
        font-size: 13px; line-height: 1.4; color: #666;
    }
    
    #inspection-dots {
        display: flex !important; /* Force show */
        justify-content: center;
        align-items: center;
        gap: 8px;
        margin-top: 15px;
        padding-bottom: 10px;
    }
    .slider-btn {
        display: none !important; /* Arrows nahi chahiye mobile par */
    }
}
/* =========================================
   HAPPY GALLERY WITH DOTS
   ========================================= */

/* --- 1. TRACK LAYOUT --- */
.happy-track {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding: 10px 5px;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.happy-track::-webkit-scrollbar { display: none; }

/* --- 2. CARD STYLE --- */
.happy-card {
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 3px solid #fff;
    background: #fff;
    height: 200px;
    transition: transform 0.3s ease;
}
.happy-card img { width: 100%; height: 100%; object-fit: contain; }
.happy-card:hover { transform: translateY(-5px); }

/* --- 3. DESKTOP VIEW (3 Images) --- */
@media (min-width: 769px) {
    .happy-card {
        /* 3 Images fit hongi */
        min-width: calc((100% - 30px) / 3);
        width: calc((100% - 30px) / 3);
    }
}

/* --- 4. MOBILE VIEW (2 Images) --- */
@media (max-width: 768px) {
    .happy-track { gap: 8px; }
    .happy-card {
        /* 2 Images fit hongi */
        min-width: calc((100% - 8px) / 2);
        width: calc((100% - 8px) / 2);
        height: 160px;
    }
}

/* --- 5. DOTS STYLING (Grey to Blue) --- */
.slider-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.slider-dot {
    width: 10px; height: 10px;
    background-color: #d1d5db; /* Grey Color */
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background-color: #0056b3; /* Blue Active Color */
    width: 25px; /* Lamba dot */
    border-radius: 10px;
}
