/* SVWC - Sri Vigneshwara Water Care */
/* Custom Styles */

:root {
  --primary-color: #063578;
  --secondary-color: #24c4cc;
  --dark: #1a202c;
  --light: #f7fafc;
}

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

body {
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
  background: #fafbfc;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 700;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Section spacing */
section {
  padding: 100px 0;
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }
}

/* Gradient text for headings */
.gradient-text {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Buttons */
.btn-primary {
  background: linear-gradient(180deg, var(--secondary-color) 0%, #188c92 100%);
  color: white;
  padding: 14px 36px;
  border-radius: 50px;
  font-family: 'Inter', 'Montserrat', 'Poppins', 'Segoe UI', sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(36, 196, 204, 0.25);
  position: relative;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 50%);
  pointer-events: none;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(36, 196, 204, 0.35);
}

.btn-secondary {
  background: white;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  padding: 12px 32px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: white;
}

/* Top Info Bar */
.top-info-bar {
  background: linear-gradient(135deg, #1a1f3a 0%, #0f1629 100%);
  color: white;
  padding: 10px 0;
  font-size: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-info-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.top-info-left {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
}

.top-info-left i {
  color: var(--secondary-color);
  font-size: 16px;
}

.top-info-right {
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}

.top-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #e5e7eb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.top-info-item:hover {
  color: var(--secondary-color);
}

.top-info-item i {
  color: var(--secondary-color);
  font-size: 14px;
}

@media (max-width: 768px) {
  .top-info-bar {
    font-size: 12px;
    padding: 8px 0;
  }

  .top-info-content {
    justify-content: center;
    text-align: center;
  }

  .top-info-left,
  .top-info-right {
    font-size: 12px;
  }

  .top-info-right {
    gap: 15px;
  }

  .top-info-item span {
    display: none;
  }

  .top-info-left span {
    font-size: 11px;
  }
}

/* Navbar */
.navbar {
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  margin-top: 44px;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 1);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.12);
  margin-top: 0;
}

.navbar .logo a {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Logo Image */
.navbar .logo-image {
  height: 80px;
  width: auto;
  transition: all 0.3s ease;
}

.navbar .logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.navbar .logo-name {
  font-size: 25px;
  font-weight: 700;
  color: white;
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: -0.5px;
  transition: all 0.3s ease;
}

.navbar.scrolled .logo-name {
  color: var(--primary-color);
}

/* Desktop: Show full name, hide short name */
.navbar .logo-name-full {
  display: inline;
}

.navbar .logo-name-short {
  display: none;
}

.navbar .logo-tagline {
  font-size: 14px;
  color: white;
  font-weight: 600;
  opacity: 1;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.5px;
}

.water-care-text {
  color: var(--secondary-color);
}

.navbar.scrolled .water-care-text {
  color: var(--secondary-color);
}

.navbar.scrolled .logo-tagline {
  color: #666;
}

@media (max-width: 768px) {
  .navbar .logo-image {
    height: 60px;
  }
  
  .navbar .logo-name {
    font-size: 22px;
  }
  
  /* Mobile: Show short name, hide full name */
  .navbar .logo-name-full {
    display: none;
  }
  
  .navbar .logo-name-short {
    display: inline;
  }
  
  .navbar .logo-tagline {
    font-size: 10px;
  }
}

/* Navigation Links */
.nav-links {
  gap: 4px;
}

.nav-item {
  color: white;
  text-decoration: none;
  padding: 10px 18px;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 15px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
}

.navbar.scrolled .nav-item {
  color: var(--primary-color);
}

.nav-item:hover {
  color: var(--secondary-color);
}

.navbar.scrolled .nav-item:hover {
  color: var(--secondary-color);
}

.nav-item.active {
  color: var(--secondary-color);
}

.navbar.scrolled .nav-item.active {
  color: var(--secondary-color);
}

/* Dropdown Menu */
.nav-dropdown {
  position: relative;
}

.dropdown-toggle {
  cursor: pointer;
}

.dropdown-icon {
  font-size: 11px;
  transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-icon {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 220px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  margin-top: 8px;
  padding: 8px;
  border: 1px solid rgba(6, 53, 120, 0.08);
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 12px 16px;
  color: var(--dark);
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
}

.dropdown-item:hover {
  background: rgba(36, 196, 204, 0.1);
  color: var(--primary-color);
  padding-left: 20px;
}

/* Hamburger Button */
.hamburger-btn {
  display: none;
  background: white;
  border: 3px solid #b8b3e8;
  width: 46px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(184, 179, 232, 0.3);
  position: relative;
}

.hamburger-btn::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: rgba(184, 179, 232, 0.15);
  z-index: -1;
}

.navbar.scrolled .hamburger-btn {
  background: white;
  border-color: #b8b3e8;
  box-shadow: 0 6px 20px rgba(6, 53, 120, 0.15);
}

.hamburger-btn:hover {
  border-color: var(--secondary-color);
  transform: scale(1.08);
  box-shadow: 0 10px 30px rgba(36, 196, 204, 0.3);
}

.hamburger-btn:active {
  transform: scale(0.95);
}

.hamburger-icon {
  color: #5a4fb3;
  font-size: 22px;
}

@media (max-width: 1024px) {
  .hamburger-btn {
    display: flex;
  }
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 90%;
  max-width: 400px;
  height: 100vh;
  background: #f8f7fc;
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2000;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  border-left: 3px solid #b8b3e8;
}

.mobile-menu.active {
  right: 0;
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, backdrop-filter 0.3s ease;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Mobile Menu Header */
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid #e5e7eb;
  background: linear-gradient(135deg, rgba(36, 196, 204, 0.05) 0%, rgba(6, 53, 120, 0.05) 100%);
}

.close-menu-btn {
  background: var(--primary-color);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  color: white;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(6, 53, 120, 0.25);
}

.close-menu-btn:hover {
  background: var(--secondary-color);
  transform: rotate(90deg);
}

.close-menu-btn:active {
  transform: rotate(90deg) scale(0.9);
}

/* Mobile Navigation Links */
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  padding: 24px;
  gap: 4px;
}

.mobile-nav-item {
  padding: 16px 20px;
  color: #4a4a6a;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  border-radius: 12px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border: none;
  margin-bottom: 8px;
}

.mobile-nav-item:hover {
  color: #5a4fb3;
  background: transparent;
  padding-left: 24px;
}

.mobile-nav-item.active {
  color: var(--secondary-color);
  font-weight: 700;
}

/* Mobile Dropdown */
.mobile-dropdown {
  display: flex;
  flex-direction: column;
}

.mobile-dropdown-toggle {
  /* background: rgba(6, 53, 120, 0.05); */
  /* border: 2px solid rgba(6, 53, 120, 0.1); */
  cursor: pointer;
  width: 100%;
  text-align: left;
}

.mobile-dropdown-toggle:hover {
  color: var(--secondary-color);
  padding-left: 24px;
}

.mobile-dropdown-icon {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.mobile-dropdown.active .mobile-dropdown-icon {
  transform: rotate(180deg);
}

.mobile-dropdown-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, border 0.4s ease, margin 0.4s ease;
  margin-top: 0;
  margin-left: 0;
  border-radius: 16px;
  border: 0px solid #e8e6f5;
  background: transparent;
}

.mobile-dropdown.active .mobile-dropdown-content {
  max-height: 600px;
  padding: 16px;
  margin-top: 8px;
  margin-left: 20px;
  border: 2px solid #b8b3e8;
  background: white;
  border-radius: 20px;
}

/* Mobile Sub Dropdown */
.mobile-sub-dropdown {
  display: flex;
  flex-direction: column;
  margin-bottom: 4px;
}

.mobile-sub-item {
  padding: 14px 18px;
  color: var(--dark);
  font-weight: 600;
  font-size: 15px;
  border-radius: 10px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: white;
  border: 2px solid rgba(6, 53, 120, 0.08);
  cursor: pointer;
  width: 100%;
  text-align: left;
}

.mobile-sub-item:hover {
  background: rgba(36, 196, 204, 0.05);
  border-color: rgba(36, 196, 204, 0.15);
  padding-left: 22px;
}

.mobile-sub-icon {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.mobile-sub-dropdown.active .mobile-sub-icon {
  transform: rotate(180deg);
}

.mobile-sub-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding-left: 12px;
  margin-top: 4px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-sub-dropdown.active .mobile-sub-content {
  max-height: 300px;
}

.mobile-sub-link {
  padding: 14px 16px;
  color: #4a4a6a;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  border-radius: 10px;
  transition: all 0.3s ease;
  display: block;
  background: transparent;
  border: none;
  margin-bottom: 6px;
}

.mobile-sub-link:hover {
  background: rgba(90, 79, 179, 0.05);
  color: #5a4fb3;
  padding-left: 20px;
}

.mobile-sub-link:last-child {
  margin-bottom: 0;
}

.mobile-sub-link:hover,
.mobile-sub-link:active {
  background: transparent;
  color: var(--secondary-color);
  padding-left: 20px;
}

/* Hamburger menu color changes on scroll */
#hamburger span {
  background-color: white;
  transition: background-color 0.3s ease;
}

.navbar.scrolled #hamburger span {
  background-color: var(--primary-color);
}

/* Hero section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  padding-top: 44px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.hero > * {
  position: relative;
  z-index: 2;
}

/* Wave divider */
.wave-divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 10;
  pointer-events: none;
}

.wave-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 100px;
  filter: drop-shadow(0 -2px 3px rgba(0, 0, 0, 0.1));
}

/* Wave divider sections for images */
.wave-divider-section {
  width: 100%;
  line-height: 0;
  font-size: 0;
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
}

.wave-divider-section img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
  outline: none;
  border: none;
  line-height: 0;
}

/* Stats section */

#stats {
    padding-top: 20px;
    padding-bottom: 20px;
    border: none;
    outline: none;
    background-color: white;
}

#stats .container {
    background-color: white;
}

#whychooseus {
    padding-bottom: 0px;
}

#cta {
    margin-top: 0px;
    padding-top: 0px;
    border-top: none;
    outline: none;
}

.stat-card {
  background: transparent;
  padding: 40px 20px;
  text-align: center;
  transition: all 0.3s ease;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
}

.stat-card:last-child {
  border-right: none;
}

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

.stat-number {
  font-size: 56px;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 12px;
  letter-spacing: -1px;
  line-height: 1;
}

.stat-number .stat-symbol {
  font-size: 42px;
  color: var(--secondary-color);
  margin-left: 4px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.stat-label {
  font-size: 16px;
  color: #718096;
  font-weight: 400;
  line-height: 1.3;
}

/* Cards */
.card {
  background: white;
  border-radius: 20px;
  padding: 50px 30px 30px;
  border: 2px solid rgba(36, 196, 204, 0.3);
  box-shadow: 0 8px 25px rgba(36, 196, 204, 0.15);
  transition: all 0.3s ease;
  position: relative;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(36, 196, 204, 0.25);
  border-color: rgba(36, 196, 204, 0.5);
}

.card-icon {
  width: 80px;
  height: 80px;
  background: white;
  border: 3px solid rgba(36, 196, 204, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--secondary-color);
  font-size: 32px;
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 5px 20px rgba(36, 196, 204, 0.2);
}

.card-icon i {
  transition: transform 0.3s ease;
  font-size: 38px;
}

/* Service Cards */
.service-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(36, 196, 204, 0.15);
  border-color: rgba(36, 196, 204, 0.2);
}

.service-image-container {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: #f5f5f5;
}

.service-image-trigger {
  cursor: pointer;
}

.service-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-image-container img {
  transform: scale(1.1);
}

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(6, 53, 120, 0.85) 0%, rgba(36, 196, 204, 0.85) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover .service-overlay {
  opacity: 1;
}

.service-content {
  padding: 24px;
}

.service-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 12px;
  line-height: 1.3;
}

.service-description {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
}

/* Image Modal */
.image-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.image-modal.active {
  display: flex;
  flex-direction: column;
}

.image-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(5px);
  animation: fadeIn 0.3s ease;
}

.image-modal-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  z-index: 10000;
  animation: zoomIn 0.3s ease;
}

.image-modal-content img {
  width: 100%;
  height: 100%;
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.image-modal-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.image-modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: rotate(90deg);
}

.image-modal-caption {
  text-align: center;
  color: white;
  margin-top: 15px;
  font-size: 18px;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Gallery modal navigation arrows */
.gallery-modal-arrow {
  /* position: absolute; */
  /* bottom: 20%;
  left: 50%;
  transform: translateX(-50%); */
  display: block;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 20px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  z-index: 10001;
}

.gallery-modal-arrow.prev {
  left: 20px;
}

.gallery-modal-arrow.next {
  right: 20px;
}

.gallery-modal-arrow:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  /* transform: translateY(-50%) scale(1.1); */
}

.gallery-modal-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  .image-modal-close {
    top: -40px;
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  
  .image-modal-caption {
    font-size: 16px;
  }

  .gallery-modal-arrow {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .gallery-modal-arrow.prev {
    left: 10px;
  }

  .gallery-modal-arrow.next {
    right: 10px;
  }
}

/* Gallery slider */
.gallery-slider {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
  padding-bottom: 80px;
}

.gallery-track {
  display: flex;
  transition: transform 0.5s ease;
  gap: 20px;
}

.gallery-item {
  flex: 0 0 calc(33.333% - 14px);
  min-width: calc(33.333% - 14px);
}

.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.gallery-item img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(36, 196, 204, 0.3);
}

.gallery-label {
  text-align: center;
  margin-top: 15px;
  font-weight: 600;
  color: var(--dark);
}

.gallery-arrow {
  /* position: absolute; */
  /* bottom: 20px; */
  display: block;
  background: var(--secondary-color);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-arrow:hover {
  background: var(--primary-color);
  transform: scale(1.1);
}

.gallery-arrow.prev {
  left: 0;
}

.gallery-arrow.next {
  right: 0;
}

/* Testimonials */
.testimonials-slider {
  position: relative;
  overflow: hidden;
  padding: 20px 60px;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s ease;
  gap: 30px;
}

.testimonial-item {
  flex: 0 0 calc(33.333% - 20px);
  min-width: calc(33.333% - 20px);
}

.testimonial-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(36, 196, 204, 0.2);
}

.testimonial-stars {
  color: #fbbf24;
  font-size: 20px;
  margin-bottom: 15px;
}

.testimonial-text {
  font-style: italic;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.8;
  min-height: 100px;
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary-color);
}

.testimonial-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--secondary-color);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-arrow:hover {
  background: var(--primary-color);
  transform: translateY(-50%) scale(1.1);
}

.testimonial-arrow.prev {
  left: 0;
}

.testimonial-arrow.next {
  right: 0;
}

@media (max-width: 1024px) {
  .testimonial-item {
    flex: 0 0 calc(50% - 15px);
    min-width: calc(50% - 15px);
  }
  
  .testimonials-slider {
    padding: 20px 50px;
  }
}

@media (max-width: 768px) {
  .testimonial-item {
    flex: 0 0 100%;
    min-width: 100%;
  }
  
  .testimonials-slider {
    padding: 20px 45px;
  }
  
  .testimonial-arrow {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  
  .testimonial-text {
    min-height: auto;
  }
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #0a4a9f 0%, #063578 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(36, 196, 204, 0.1);
  border-radius: 50%;
  z-index: 0;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: rgba(36, 196, 204, 0.08);
  border-radius: 50%;
  z-index: 0;
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-phone-links {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 16px 32px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 32px;
}

.cta-phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 8px 16px;
  border-radius: 25px;
}

.cta-phone-link:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.cta-phone-link i {
  font-size: 20px;
}

.cta-divider {
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.3);
}

.cta-primary-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  color: var(--primary-color);
  padding: 18px 48px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 2px solid white;
}

.cta-primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  background: var(--secondary-color);
  color: white;
  border-color: var(--secondary-color);
}

.cta-primary-btn i {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.cta-primary-btn:hover i {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .cta-section {
    padding: 60px 0;
  }
  
  .cta-phone-links {
    flex-direction: column;
    padding: 20px 24px;
    gap: 8px;
  }
  
  .cta-divider {
    width: 80%;
    height: 1px;
  }
  
  .cta-phone-link {
    font-size: 16px;
  }
  
  .cta-primary-btn {
    padding: 16px 36px;
    font-size: 16px;
  }
}

/* Footer CTA Section */
.footer-cta-section {
  background: linear-gradient(135deg, #1a1f3a 0%, #0f1629 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.footer-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(36, 196, 204, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.footer-cta-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  position: relative;
  z-index: 1;
}

.footer-cta-text h2 {
  color: white;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

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

.footer-cta-btn {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px 20px;
  border-radius: 50px;
  background: var(--secondary-color);
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(36, 196, 204, 0.4), 0 4px 15px rgba(0, 0, 0, 0.2);
}

.footer-cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: left 0.3s ease;
}

.footer-cta-btn:hover::before {
  left: 0;
}

.footer-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(36, 196, 204, 0.6), 0 10px 30px rgba(36, 196, 204, 0.4);
}

.footer-cta-btn i {
  font-size: 18px;
  background: white;
  color: var(--secondary-color);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-cta-btn .footer-cta-label {
  font-size: 12px;
  opacity: 0.9;
  line-height: 1.2;
}

.footer-cta-btn .footer-cta-number {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}

.footer-cta-btn > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

/* Footer Wrapper */
.footer-wrapper {
  padding: 20px 20px 20px 20px;
  background: transparent;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #0a0e1a 0%, #1a1f3a 100%);
  color: #a0aec0;
  padding: 60px 0 0;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo-new {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.footer-logo-new i {
  font-size: 28px;
  color: var(--secondary-color);
}

.footer-logo-image {
  height: 50px;
  width: auto;
}

.footer-logo-new span {
  color: white;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}

.footer-description {
  color: #8892a6;
  font-size: 14px;
  line-height: 1.7;
}

.footer-heading {
  color: var(--secondary-color);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: #a0aec0;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
  display: block;
}

.footer-links a:hover {
  color: white;
  padding-left: 5px;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #a0aec0;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s ease;
}

.footer-contact-item:hover {
  color: white;
}

.footer-contact-item i {
  color: var(--secondary-color);
  font-size: 16px;
  width: 20px;
}

.footer-social-new {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-social-new a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: white;
  border-radius: 50%;
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social-new a:hover {
  background: var(--secondary-color);
  color: white;
  transform: translateY(-3px);
}

.footer-policies {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-policies a {
  color: #8892a6;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-policies a:hover {
  color: var(--secondary-color);
}

.footer-bottom-new {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
  padding: 25px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom-new p {
  color: #6b7280;
  font-size: 14px;
  margin: 0;
}

.footer-bottom-new a {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.footer-bottom-new a:hover {
  color: white;
}

@media (max-width: 768px) {
  .footer-cta-text h2 {
    font-size: 28px;
    text-align: center;
  }

  .footer-cta-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-cta-buttons {
    width: 100%;
    flex-direction: column;
    align-items: center;
  }

  .footer-cta-btn {
    justify-content: center;
  }

  .footer-bottom-new {
    flex-direction: column;
    text-align: center;
  }
}

/* Old Footer Styles - Keep for backward compatibility on other pages */
.footer-logo {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

.footer-logo span {
  color: var(--secondary-color);
}

.footer-tagline {
  color: #a0aec0;
  margin-bottom: 30px;
}

.footer-tagline span {
  display: block;
  color: var(--secondary-color);
  font-weight: 600;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(36, 196, 204, 0.1);
  border-radius: 50%;
  color: var(--secondary-color);
  margin: 0 5px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-social a:hover {
  background: var(--secondary-color);
  color: white;
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  color: #a0aec0;
}

.footer-bottom a {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 600;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* Floating action buttons */
.floating-actions {
  position: fixed;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: fit-content;
  height: fit-content;
}

.float-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 24px;
  flex-shrink: 0;
}

.float-btn:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.float-btn.phone {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
}

.float-btn.whatsapp {
  background: #25d366;
  color: white;
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(36, 196, 204, 0.3);
}

.scroll-to-top i {
  font-size: 20px;
  color: var(--secondary-color);
  position: relative;
  z-index: 2;
}

.scroll-progress-ring {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-90deg);
}

.scroll-progress-ring-circle {
  stroke-dasharray: 169.65;
  stroke-dashoffset: 169.65;
  transition: stroke-dashoffset 0.1s linear;
}

/* Contact form */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(36, 196, 204, 0.1);
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

/* Map */
.map-container {
  width: 100%;
  height: 450px;
  border-radius: 12px;
  overflow: hidden;
  border: 3.5px solid var(--secondary-color);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* About page */
.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* About Image Grid Layout */
.about-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
  height: 600px;
}

.about-img-item {
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.about-img-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(36, 196, 204, 0.2);
}

.about-img-large {
  grid-column: 1;
  grid-row: 1 / 3;
}

.about-img-small-top {
  grid-column: 2;
  grid-row: 1;
}

.about-img-small-bottom {
  grid-column: 1;
  grid-row: 2;
  display: none;
}

.about-img-rating {
  grid-column: 2;
  grid-row: 2;
  background: linear-gradient(135deg, #d1f0f3 0%, #e8f7f9 100%);
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-grid-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.about-img-item:hover .about-grid-img {
  transform: scale(1.05);
}

.about-rating-card {
  padding: 30px;
  text-align: left;
}

.about-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  background: white;
  border-radius: 50px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.about-rating-label {
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

.about-stars {
  display: flex;
  gap: 4px;
}

.about-stars i {
  color: #fbbf24;
  font-size: 16px;
}

.about-rating-text {
  color: #4b5563;
  font-size: 16px;
  line-height: 1.6;
}

.about-rating-text strong {
  color: #1a202c;
  font-weight: 700;
}

@media (max-width: 1024px) {
  .about-image-grid {
    height: 500px;
    gap: 15px;
  }

  .about-rating-card {
    padding: 20px;
  }

  .about-rating-text {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .about-image-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    height: auto;
    gap: 15px;
  }

  .about-img-large {
    grid-column: 1;
    grid-row: 1;
    height: 250px;
  }

  .about-img-small-top {
    grid-column: 1;
    grid-row: 2;
    height: 200px;
  }

  .about-img-small-bottom {
    display: none;
  }

  .about-img-rating {
    grid-column: 1;
    grid-row: 3;
    min-height: 200px;
  }

  .about-rating-card {
    padding: 25px;
  }
}

.founder-card {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.founder-card h3,
.founder-card p {
  text-align: center !important;
}

.founder-image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  box-shadow: 0 10px 30px rgba(36, 196, 204, 0.2);
  border: 5px solid var(--secondary-color);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Responsive */
@media (max-width: 1024px) {
  .gallery-item {
    flex: 0 0 calc(50% - 10px);
    min-width: calc(50% - 10px);
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }

  .hero {
    min-height: 80vh;
  }

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

  .gallery-item {
    flex: 0 0 100%;
    min-width: 100%;
  }

  .gallery-item img {
    height: 250px;
  }

  .gallery-arrow {
    width: 40px;
    height: 40px;
    font-size: 16px;
    bottom: 15px;
  }

  .gallery-slider {
    padding-bottom: 70px;
  }

  .floating-actions {
    bottom: 20px;
    right: 20px;
  }

  .float-btn {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .scroll-to-top {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }

  .scroll-to-top i {
    font-size: 18px;
  }

  .scroll-progress-ring {
    width: 50px;
    height: 50px;
  }

  .scroll-progress-ring-circle {
    r: 22;
    cx: 25;
    cy: 25;
    stroke-dasharray: 138.23;
    stroke-dashoffset: 138.23;
  }

  .wave-divider svg {
    height: 40px;
  }
}

@media (max-width: 640px) {
  .btn-primary,
  .btn-secondary {
    padding: 10px 24px;
    font-size: 14px;
  }

  .stat-card {
    padding: 30px 10px;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .stat-card:nth-child(2n) {
    border-right: none;
  }

  .stat-card:nth-last-child(-n+2) {
    border-bottom: none;
  }

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

  .stat-number .stat-symbol {
    font-size: 28px;
  }

  .stat-label {
    font-size: 13px;
  }

  .card {
    padding: 50px 20px 25px;
    /* margin-bottom: 30px; */
  }

  .cards__container .card:nth-last-child(1) {
    /* margin-bottom: 20px; */
  }

  .card-icon {
    width: 70px;
    height: 70px;
    top: -35px;
    border: 2px solid rgba(36, 196, 204, 0.4);
  }

  .card-icon i {
    font-size: 32px;
  }

  .card h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .card p {
    font-size: 14px;
  }
}

/* Utility classes */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 60px;
}

/* Headings font */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Dosis', 'Segoe UI', sans-serif;
  font-weight: 600;
}

@media (max-width: 1280px) {
  .container {
    padding: 0 40px;
  }
}

@media (max-width: 1024px) {
  .container {
    padding: 0 30px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}

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

.mt-4 {
  margin-top: 1rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}


/* Custom shape divider bottom */

.custom-shape-divider-bottom-1767577476 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom-1767577476 svg {
    position: relative;
    display: block;
    width: calc(145% + 1.3px);
    height: 160px;
    transform: rotateY(180deg);
}

.custom-shape-divider-bottom-1767577476 .shape-fill {
    fill: #FFFFFF;
}


.custom-shape-divider-bottom-1767578570 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom-1767578570 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 49px;
    transform: rotateY(180deg);
}

.custom-shape-divider-bottom-1767578570 .shape-fill {
    fill: #FFFFFF;
}

/* Check Your Water Now Section */
.check-water-section {
  background: linear-gradient(135deg, #0a1628 0%, #1a2744 100%);
  padding: 50px 0;
  position: relative;
  overflow: visible;
    margin-bottom: 5rem;
}

.check-water-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(36, 196, 204, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(6, 53, 120, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.check-water-container {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
}

.check-water-image {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.water-testing-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  position: absolute;
  border-radius: 16px;
  /* box-shadow: 
    0 20px 50px rgba(0, 0, 0, 0.3),
    0 0 30px rgba(36, 196, 204, 0.15); */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.water-testing-image:hover {
  transform: translateY(-10px);
  /* box-shadow: 
    0 25px 60px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(36, 196, 204, 0.25); */
}

.check-water-content {
  color: white;
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.check-water-title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  background: linear-gradient(135deg, #ffffff 0%, #24c4cc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.check-water-text {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
  font-family: 'Inter', sans-serif;
  max-width: 580px;
}

.importance-link {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.importance-link:hover {
  color: #1fa9b0;
  text-decoration: underline;
}

.btn-test-now {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, #24c4cc 0%, #1ba3ab 100%);
  color: white;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(36, 196, 204, 0.3);
  width: fit-content;
}

.btn-test-now:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(36, 196, 204, 0.4);
  background: linear-gradient(135deg, #2dd4dd 0%, #1fb4bd 100%);
}

.btn-arrow {
  font-size: 16px;
  height: 35px;
  width: 35px;
  border-radius: 50%; 
  transition: transform 0.3s ease;
  background: white;
  color: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-test-now:hover .btn-arrow {
  transform: translateX(5px);
}

/* Responsive Design */
@media (min-width: 1025px) {
  .check-water-image {
    order: 1;
  }

  .check-water-content {
    order: 2;
  }
}

@media (max-width: 1024px) {
  .check-water-container {
    grid-template-columns: 1fr;
    gap: 10px;
    text-align: center;
  }

  .check-water-section {
    padding: 70px 0;
    padding-bottom: 14rem;
    margin-bottom: 20rem;
  }

  .check-water-image {
    justify-content: center;
    order: 2;
  }

  .check-water-content {
    order: 1;
  }

  .water-testing-image {
    max-width: 450px;
    top: 0;
  }

  .check-water-content {
    padding: 20px;
    align-items: center;
  }

  .check-water-title {
    font-size: 26px;
  }

  .check-water-text {
    max-width: 100%;
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .check-water-section {
    padding: 30px 0;
    padding-bottom: 280px;
    margin-bottom: 12rem;
  }

  .check-water-container {
    padding: 0 20px;
    gap: 10px;
  }

  .water-testing-image {
    max-width: 380px;
    /* position: relative; */
    top: 0;
  }

  .check-water-title {
    font-size: 22px;
  }

  .check-water-text {
    font-size: 12px;
  }

  .btn-test-now {
    padding: 10px 20px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {

  .check-water-section {
    padding: 20px 0;
    padding-bottom: 14rem;
    margin-bottom: 12rem;
  }

  .water-testing-image {
    max-width: 100%;
  }

  .check-water-title {
    font-size: 20px;
  }

  .check-water-text {
    font-size: 12px;
    margin-bottom: 20px;
  }
}