 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      overflow-x: hidden;
    }

    body {
      font-family: 'Poppins', sans-serif;
      overflow-x: hidden;
      background: #366a9b;
      position: relative;
      width: 100%;
    }



    /* ========================================
   HEADER IMAGE SECTION (Mobile Only)
   ======================================== */
.header-image-container {
  position: relative;
  width: 100%;
  display: none; /* Hidden by default */
}

.header-image {
  width: 100%;
  height: auto;
  display: block;
}

.header-text-overlay {
  position: absolute;
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
  text-align: right;
  z-index: 10;
}

.phone-number {
  font-size: 28px;
  font-weight: bold;
  color: #2d3561;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.message-button {
  background: #2d3561;
  color: white;
  padding: 14px 40px;
  border-radius: 30px;
  text-decoration: none;
  display: inline-block;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(45, 53, 97, 0.3);
}

.message-button:hover {
  background: #1f2442;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45, 53, 97, 0.4);
}

/* Show only on mobile */
@media (max-width: 768px) {
  .header-image-container {
    display: block;
  }

  .header-text-overlay {
    right: 20px;
  }

  .phone-number {
    font-size: 20px;
  }

  .message-button {
    padding: 8px 15px;
    font-size: 12px;
  }
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: url('background-desktop.webp') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 100px 8%;
  overflow: hidden;
}

/* Overlay Wave on Hero */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('overlay-wave.webp') center/cover no-repeat;
  opacity: 0.9;
  z-index: 1;
}

/* Bottom Wave Decoration */
.bottom-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 3;
}

/* Left Content - Heading and Buttons */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 50%;
  color: #fff;
  transform: translateY(-60px);
}

/* Logo Image */
.logo {
  width: 200px;
  margin-bottom: 40px;
  transform: translateY(-20px);
}

/* Header Image for Mobile (hidden by default) */
.header-image {
  display: none;
}

/* Main Heading */
.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 40px;
}

/* Button Container */
.buttons {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Primary and Secondary Buttons */
.btn-primary,
.btn-secondary {
  display: inline-block;
  width: 270px;
  text-align: center;
  padding: 14px 0;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
  font-size: 1rem;
}

/* Primary Button - Dark Blue */
.btn-primary {
  background: #1b1742;
  color: #fff;
}

.btn-primary:hover {
  background: #2c2570;
}

/* Secondary Button - Yellow */
.btn-secondary {
  background: #fcb33d;
  color: #1b1742;
}

.btn-secondary:hover {
  background: #ffbf55;
}

/* "Or" Text Between Buttons */
.or {
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  margin-left: 120px;
}

/* Right Form - Contact Form */
.hero-form {
  position: relative;
  z-index: 2;
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  max-width: 350px;
  width: 100%;
  animation: float 4s ease-in-out infinite;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Floating Animation for Form */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Form Heading */
.hero-form h3 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  font-weight: 700;
  text-align: center;
}

/* Form Input Groups */
.form-group {
  width: 100%;
  margin-bottom: 15px;
}

/* Form Inputs and Textarea */
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: 0.2s ease;
}

/* Focus State for Inputs */
.form-group input:focus,
.form-group textarea:focus {
  border-color: #1b1742;
  outline: none;
}

/* Form Submit Button */
.hero-form button {
  background: #1b1742;
  color: #fff;
  padding: 12px 26px;
  border: none;
  border-radius: 40px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
  margin-top: 10px;
  width: 120px;
}

.hero-form button:hover {
  background: #2c2570;
}

/* ========================================
   MOBILE RESPONSIVE (768px and below)
   ======================================== */
@media (max-width: 768px) {
  /* Change background image for mobile and remove overlay */
  .hero {
    background: url('background-mobile.webp') center/cover no-repeat;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 0;
    min-height: 100vh;
  }

  /* Remove overlay wave on mobile */
  .hero::before {
    display: none;
  }

  /* Hide logo on mobile */
  .logo {
    display: none;
  }

  /* Hide form on mobile */
  .hero-form {
    display: none;
  }

  /* Show header image on mobile - positioned at absolute top */
  .header-image {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 2;
    object-fit: contain;
    flex-shrink: 0;
  }

  /* Adjust hero content */
  .hero-content {
    max-width: 100%;
    width: 100%;
    transform: translateY(0);
    text-align: center;
    margin-bottom: 60px;
    padding: 40px 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Adjust heading size */
  .hero-content h1 {
    font-size: 2rem;
    margin-bottom: 30px;
    margin-top: 60px;
  }

  /* Center buttons */
  .buttons {
    align-items: center;
    width: 100%;
  }

  /* Adjust button width */
  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 270px;
  }

  /* Center "or" text */
  .or {
    margin-left: 0;
    text-align: center;
  }

  /* Keep bottom wave on mobile */
  .bottom-wave {
    display: block;
  }
}

/* Extra small devices (480px and below) */
@media (max-width: 480px) {
  .hero-content {
    padding: 30px 4% 0;
    margin-bottom: 40px;
  }

  .hero-content h1 {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  .btn-primary,
  .btn-secondary {
    font-size: 0.9rem;
    padding: 12px 0;
  }
}
    /* ========================================
       OFFERS SECTION
       ======================================== */
    .offers-section {
     visibility: none;
      background: #366a9b;
      padding: 80px 5% 100px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    /* Offers Container - Flexbox for Cards */
    .offers-container {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      justify-content: center;
      margin-bottom: 50px;
    }

    /* Individual Offer Card */
    .offer img {
      width: 380px;
      max-width: 100%;
      border-radius: 20px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
      transition: transform 0.3s ease;
    }

    /* Hover Effect on Offer Cards */
    .offer img:hover {
      transform: translateY(-8px);
    }

    /* Inquiry Button Container */
    .inquiry-button {
      text-align: center;
    }

    /* Send Inquiry Button */
    .btn-inquiry {
      background: #fcb33d;
      color: #1b1742;
      font-weight: 600;
      text-decoration: none;
      padding: 16px 36px;
      border-radius: 40px;
      font-size: 1.1rem;
      transition: 0.3s ease;
      display: inline-block;
    }

    .btn-inquiry:hover {
      background: #ffbf55;
    }

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-section {
  position: relative;
  background: #366a9b;
  color: #fff;
  overflow: hidden;
  min-height: 500px;
}

/* About Container */
.about-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 2;
  padding: 100px 6% 120px;
}

/* About Sparkling Pools Content */
.about-company {
  max-width: 100%;
  margin-bottom: 40px;
  margin-right: 400px;
}

/* About Section Main Heading */
.about-company h2 {
  font-size: 2.7rem;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.05;
}

/* "About" Text in Different Color */
.about-company h2 span {
  color: #bceaff;
  display: block;
  margin: 0;
  line-height: 0.9;
  margin-bottom: -8px;
  transform: translateY(20px);
}

/* First Paragraph - Larger Font */
.about-company .first-para {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 25px;
  max-width: 1200px;
  font-weight: 400;
}

/* Other Paragraphs */
.about-company p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 800px;
}

/* Meet the Owner Section */
.owner-section {
  max-width: 640px;
  margin-right: 480px;
}

/* Owner Section Heading */
.owner-section h3 {
  font-size: 2.7rem;
  font-weight: 700;
  color: #bceaff;
  margin-top: 45px;
  margin-bottom: 15px;
  line-height: 1.1;
}

/* Owner Section Paragraph */
.owner-section p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 40px;
}

/* Owner Image - Fixed to Bottom */
.about-image {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 530px;
  z-index: 1;
  pointer-events: none;
}

.about-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: bottom;
}

/* ========================================
   MOBILE RESPONSIVE (768px and below)
   ======================================== */
@media (max-width: 768px) {
  /* Show header image container on mobile */
  .header-image-container {
    display: block;
  }

  .header-text-overlay {
    right: 20px;
  }

  .phone-number {
    font-size: 20px;
  }

  .message-button {
    padding: 10px 25px;
    font-size: 14px;
  }

  /* Change background image for mobile and remove overlay */
  .hero {
    background: url('background-mobile.webp') center/cover no-repeat;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 0;
    min-height: 100vh;
  }

  /* Remove overlay wave on mobile */
  .hero::before {
    display: none;
  }

  /* Hide logo on mobile */
  .logo {
    display: none;
  }

  /* Hide form on mobile */
  .hero-form {
    display: none;
  }

  /* Adjust hero content */
  .hero-content {
    max-width: 100%;
    width: 100%;
    transform: translateY(0);
    text-align: center;
    margin-bottom: 60px;
    padding: 40px 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Adjust heading size */
  .hero-content h1 {
    font-size: 2rem;
    margin-bottom: 30px;
    margin-top: 60px;
  }

  /* Center buttons */
  .buttons {
    align-items: center;
    width: 100%;
  }

  /* Adjust button width */
  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 270px;
  }

  /* Center "or" text */
  .or {
    margin-left: 0;
    text-align: center;
  }

  /* Keep bottom wave on mobile */
  .bottom-wave {
    display: block;
  }

  /* ========================================
     ABOUT SECTION MOBILE
     ======================================== */
  .about-section {
    min-height: auto;
  }

  /* Adjust padding for mobile */
  .about-container {
    padding: 60px 5% 60px;
    text-align: center;
  }

  /* Remove right margin and center content */
  .about-company {
    margin-right: 0;
    margin-bottom: 40px;
  }

  /* Adjust heading size for mobile */
  .about-company h2 {
    font-size: 2rem;
    margin-bottom: 20px;
  }

  /* Adjust "About" span */
  .about-company h2 span {
    transform: translateY(10px);
    margin-bottom: -5px;
  }

  /* Adjust paragraph sizes */
  .about-company .first-para {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 100%;
  }

  .about-company p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 15px;
    max-width: 100%;
  }

  /* Remove right margin and center owner section */
  .owner-section {
    margin-right: 0;
    max-width: 100%;
  }

  /* Adjust owner heading size */
  .owner-section h3 {
    font-size: 2rem;
    margin-top: 30px;
    margin-bottom: 15px;
  }

  /* Adjust owner paragraph */
  .owner-section p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 30px;
  }

  /* Hide owner image on mobile */
  .about-image {
    display: none;
  }
}

/* Extra small devices (480px and below) */
@media (max-width: 480px) {
  .hero-content {
    padding: 30px 4% 0;
    margin-bottom: 40px;
  }

  .hero-content h1 {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  .btn-primary,
  .btn-secondary {
    font-size: 0.9rem;
    padding: 12px 0;
  }

  /* About section extra small */
  .about-container {
    padding: 40px 4% 40px;
  }

  .about-company h2 {
    font-size: 1.6rem;
  }

  .owner-section h3 {
    font-size: 1.6rem;
  }

  .about-company .first-para,
  .about-company p,
  .owner-section p {
    font-size: 0.9rem;
  }
}

/* ========================================
   SERVICES HEADER SECTION
======================================== */
.services-section {
  background: #366a9b;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
}

/* Image wrapper */
.services-header {
  position: relative;
  width: 100%;
}

/* Services Header Image */
.services-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Overlay text */
.services-title {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: clamp(3rem, 9vw, 7rem); /* auto scales across screens */
  font-weight: 700;
  text-align: center;
  font-family: "Poppins", sans-serif;
  z-index: 2;
  line-height: 1.1;
  padding: 0 1rem; /* prevent text cutoff on small screens */
  word-break: break-word;
}

/* ========================================
   RESPONSIVE MEDIA QUERIES
======================================== */

/* For tablets (<= 992px) */
@media (max-width: 992px) {
  .services-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
  }
}

/* For mobile phones (<= 600px) */
@media (max-width: 600px) {
  .services-title {
    font-size: clamp(2rem, 9vw, 3.5rem);
    font-weight: 600;
    letter-spacing: 1px;
  }

  .services-image {
    object-fit: cover;
    height: auto;
  }
}

/* For very small phones (<= 400px) */
@media (max-width: 400px) {
  .services-title {
    font-size: 1.8rem;
  }
}


/* ========================================
   SERVICE SECTION ONE - Left Image Layout
   ======================================== */
.service-section-one {
  position: relative;
  background: #366a9b;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.left-section-image-one {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

.overlay-left-image-one {
  position: absolute;
  left: -10%;
  top: 50%;
  transform: translateY(-50%);
  width: 800px;
  height: auto;
  z-index: 2;
}

.service-text-one {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  max-width: 50%;
  text-align: right;
  z-index: 5;
}

.service-heading-one {
  background: #ffffff;
  border-radius: 100px;
  display: inline-block;
  padding: 20px 60px;
  padding-right: 200px;
  margin-bottom: 100px;

}

.service-heading-one h2 {
  font-size: 3rem;
  align-items: center;
  font-weight: 800;
  color: #1b1742;
  margin-right: 30px;
}

.service-text-one p {
  font-size: 2rem;
  padding-right: 150px;
  line-height: 1.5;
  color: #ffffff;
  font-weight: 400;
  max-width: 100%;
  margin-left: auto;
}

/* ========================================
   SERVICE SECTION TWO - Right Image Layout
   ======================================== */
.service-section-two {
  position: relative;
  background: #366a9b;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.right-section-image-two {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

.overlay-right-image-two {
  position: absolute;
  right: -10%;
  top: 50%;
  transform: translateY(-50%);
  width: 800px;
  height: auto;
  z-index: 2;
}

.service-text-two {
  position: absolute;
  left: -5%;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  max-width: 60%;
  text-align: left;
  z-index: 5;
}

.service-heading-two {
  background: #ffffff;
  border-radius: 100px;
  display: inline-block;
  padding: 20px 60px;
  padding-left: 200px;
  margin-bottom: 100px;
}

.service-heading-two h2 {
  font-size: 3rem;
  align-items: center;
  font-weight: 800;
  color: #1b1742;
  margin-left: 30px;
}

.service-text-two p {
  font-size: 2rem;
  padding-left: 150px;
  line-height: 1.5;
  color: #ffffff;
  font-weight: 400;
  max-width: 100%;
  margin-right: auto;
}

/* ========================================
   SERVICE SECTION THREE - Left Image Layout
   ======================================== */
.service-section-three {
  position: relative;
  background: #366a9b;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.left-section-image-three {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

.overlay-left-image-three {
  position: absolute;
  left: -10%;
  top: 50%;
  transform: translateY(-50%);
  width: 800px;
  height: auto;
  z-index: 2;
}

.service-text-three {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  max-width: 60%;
  text-align: right;
  z-index: 5;
}

.service-heading-three {
    background: #ffffff;
  border-radius: 100px;
  display: inline-block;
  padding: 20px 60px;
  padding-right: 100px;
  margin-bottom: 100px;
  
}

.service-heading-three h2 {
  font-size: 3rem;
  align-items: center;
  font-weight: 800;
  color: #1b1742;
  margin-right: 30px;
}

.service-text-three p {
  font-size: 2rem;
  padding-right: 150px;
  line-height: 1.5;
  color: #ffffff;
  font-weight: 400;
  max-width: 100%;
  margin-left: auto;
}

/* ========================================
   SERVICE SECTION FOUR - Right Image Layout
   ======================================== */
.service-section-four {
  position: relative;
  background: #366a9b;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.right-section-image-four {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

.overlay-right-image-four {
  position: absolute;
  right: -10%;
  top: 50%;
  transform: translateY(-50%);
  width: 800px;
  height: auto;
  z-index: 2;
}

.service-text-four {
  position: absolute;
  left: -5%;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  max-width: 60%;
  text-align: left;
  z-index: 5;
}

.service-heading-four {
  background: #ffffff;
  border-radius: 100px;
  display: inline-block;
  padding: 20px 60px;
  padding-left: 200px;
  margin-bottom: 100px;
}

.service-heading-four h2 {
  font-size: 3rem;
  align-items: center;
  font-weight: 800;
  color: #1b1742;
  margin-left: 30px;
}

.service-text-four p {
 font-size: 2rem;
  padding-left: 150px;
  line-height: 1.5;
  color: #ffffff;
  font-weight: 400;
  max-width: 100%;
  margin-right: auto;
}

/* ========================================
   SERVICE SECTION FIVE - Left Image Layout
   ======================================== */
.service-section-five {
  position: relative;
  background: #366a9b;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.left-section-image-five {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

.overlay-left-image-five {
  position: absolute;
  left: -10%;
  top: 50%;
  transform: translateY(-50%);
  width: 800px;
  height: auto;
  z-index: 2;
}

.service-text-five {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  max-width: 60%;
  text-align: right;
  z-index: 5;
}

.service-heading-five {
    background: #ffffff;
  border-radius: 100px;
  display: inline-block;
  padding: 20px 60px;
  padding-right: 200px;
  margin-bottom: 100px;
}

.service-heading-five h2 {
  font-size: 3rem;
  align-items: center;
  font-weight: 800;
  color: #1b1742;
  margin-right: 60px;
}

.service-text-five p {
 font-size: 2rem;
  padding-right: 150px;
  line-height: 1.5;
  color: #ffffff;
  font-weight: 400;
  max-width: 100%;
  margin-left: auto;
}

/* ========================================
   SERVICE SECTION SIX - Right Image Layout
   ======================================== */
.service-section-six {
  position: relative;
  background: #366a9b;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.right-section-image-six {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

.overlay-right-image-six {
  position: absolute;
  right: -10%;
  top: 50%;
  transform: translateY(-50%);
  width: 800px;
  height: auto;
  z-index: 2;
}

.service-text-six {
  position: absolute;
  left: -5%;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  max-width: 60%;
  text-align: left;
  z-index: 5;
}


.service-heading-six {
  background: #ffffff;
  border-radius: 100px;
  display: inline-block;
  padding: 20px 60px;
  padding-left: 200px;
  margin-bottom: 100px;
}

.service-heading-six h2 {
  font-size: 3rem;
  align-items: center;
  font-weight: 800;
  color: #1b1742;
  margin-left: 30px;
}


.service-text-six p {
  font-size: 2rem;
  padding-left: 150px;
  line-height: 1.5;
  color: #ffffff;
  font-weight: 400;
  max-width: 100%;
  margin-right: auto;
}

/* ========================================
   RESPONSIVE STYLES - TABLET
   ======================================== */
@media (max-width: 992px) {
  /* Hero Section */
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 80px 5%;
    background: url('background-mobile.webp') center/cover no-repeat;
  }

  .hero-content {
    max-width: 100%;
    margin-bottom: 50px;
    transform: translateY(-20px);
  }

  .logo {
    width: 150px;
    margin-bottom: 30px;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .buttons {
    align-items: center;
  }

  .or {
    margin-left: 0;
  }

  .hero-form {
    animation: none;
    max-width: 100%;
  }

  /* About Section */
  .about-container {
    padding: 60px 5% 80px;
  }

  .about-company {
    margin-right: 0;
  }

  .owner-section {
    max-width: 100%;
    margin-right: 0;
  }

  .about-image {
    width: 50%;
  }

  /* Service Sections - Left Image Layout */
  .service-section-one,
  .service-section-three,
  .service-section-five {
    flex-direction: column;
    padding: 60px 5%;
    min-height: auto;
  }

  .left-section-image-one,
  .left-section-image-three,
  .left-section-image-five {
    position: relative;
    width: 120%;
    max-width: 120%;
  }

  .overlay-left-image-one,
  .overlay-left-image-three,
  .overlay-left-image-five {
    width: 300px;
    left: 5%;
    top: 50%;
  }

  .service-text-one,
  .service-text-three,
  .service-text-five {
    position: relative;
    transform: none;
    text-align: center;
    margin-top: 40px;
    right: 0;
    max-width: 100%;
  }

  .service-heading-one,
  .service-heading-three,
  .service-heading-five {
    padding: 12px 36px;
    padding-right: 36px;
  }

  .service-heading-one h2 {
    font-size: 2rem;
  }

  .service-heading-three h2 {
    font-size: 1.8rem;
  }

  .service-heading-five h2 {
    font-size: 2rem;
  }

  .service-text-one p,
  .service-text-three p,
  .service-text-five p {
    font-size: 1.05rem;
    text-align: center;
    padding-right: 0;
    margin: 0 auto;
  }

  /* Service Sections - Right Image Layout */
  .service-section-two,
  .service-section-four,
  .service-section-six {
    flex-direction: column;
    padding: 60px 5%;
    min-height: auto;
  }

  .right-section-image-two,
  .right-section-image-four,
  .right-section-image-six {
    position: relative;
    width: 120%;
    max-width: 120%;
  }

  .overlay-right-image-two,
  .overlay-right-image-four,
  .overlay-right-image-six {
    width: 300px;
    right: 5%;
    top: 50%;
  }

  .service-text-two,
  .service-text-four,
  .service-text-six {
    position: relative;
    transform: none;
    text-align: center;
    margin-top: 40px;
    left: 0;
    max-width: 100%;
  }

  .service-heading-two,
  .service-heading-four,
  .service-heading-six {
    padding: 12px 36px;
    padding-left: 36px;
  }

  .service-heading-two h2 {
    font-size: 1.5rem;
  }

  .service-heading-four h2,
  .service-heading-six h2 {
    font-size: 2rem;
  }

  .service-text-two p,
  .service-text-four p,
  .service-text-six p {
    font-size: 1.05rem;
    text-align: center;
    padding-left: 0;
    margin: 0 auto;
  }
}

/* ========================================
   RESPONSIVE STYLES - MOBILE
   ======================================== */
@media (max-width: 768px) {
  /* Hero Section */
  .hero {
    padding: 60px 5%;
    min-height: 90vh;
  }

  .hero-content h1 {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .logo {
    width: 120px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 250px;
  }

  .hero-form {
    padding: 30px 20px;
  }

  /* Offers Section */
  .offers-section {
    padding: 60px 5% 80px;
  }

  .offer img {
    width: 100%;
  }

  .btn-inquiry {
    padding: 14px 30px;
    font-size: 1rem;
  }

  /* About Section */
  .about-company h2,
  .owner-section h3 {
    font-size: 2rem;
  }

  .about-company p,
  .owner-section p {
    font-size: 0.95rem;
  }

  .about-image {
    width: 55%;
  }

  /* Service Sections - Reduced height and larger images */
  .service-section-one,
  .service-section-two,
  .service-section-three,
  .service-section-four,
  .service-section-five,
  .service-section-six {
    padding: 40px 5%;
    min-height: auto;
  }

  

  .left-section-image-one,
  .left-section-image-three,
  .left-section-image-five {
    visibility: hidden;
    
  }

  .right-section-image-two,
  .right-section-image-four,
  .right-section-image-six {
    visibility: hidden;
  }

  /* Service Sections - Center aligned overlay images */
  .overlay-left-image-one,
  .overlay-left-image-three,
  .overlay-left-image-five {
    width: 350px;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .overlay-right-image-two,
  .overlay-right-image-four,
  .overlay-right-image-six {
    width: 350px;
    right: auto;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .service-heading-one h2,
  .service-heading-five h2 {
    font-size: 1.6rem;
  }

  .service-heading-two h2 {
    font-size: 1.3rem;
  }

  .service-heading-three h2 {
    font-size: 1.5rem;
  }

  .service-heading-four h2,
  .service-heading-six h2 {
    font-size: 1.6rem;
  }

  .service-text-one p,
  .service-text-two p,
  .service-text-three p,
  .service-text-four p,
  .service-text-five p,
  .service-text-six p {
    font-size: 0.95rem;
    line-height: 1.6;
  }
}

/* ========================================
   RESPONSIVE STYLES - SMALL MOBILE
   ======================================== */
@media (max-width: 480px) {
  /* Hero Section */
  .hero {
    padding: 40px 5%;
  }

  .hero-content {
    transform: translateY(0);
  }

  .logo {
    width: 100px;
    margin-bottom: 20px;
  }

  .hero-content h1 {
    font-size: 1.5rem;
    margin-bottom: 25px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 220px;
    font-size: 0.9rem;
    padding: 12px 0;
  }

  .hero-form {
    padding: 25px 15px;
  }

  .hero-form h3 {
    font-size: 1.2rem;
  }

  /* About Section */
  .about-container {
    padding: 40px 5% 60px;
  }

  .about-company h2,
  .owner-section h3 {
    font-size: 1.7rem;
  }

  .about-company .first-para,
  .about-company p,
  .owner-section p {
    font-size: 0.9rem;
  }

  .about-image {
    width: 50%;
  }

  /* Offers Section */
  .offers-section {
    padding: 40px 5% 60px;
  }

  .btn-inquiry {
    padding: 12px 24px;
    font-size: 0.95rem;
  }

  /* Service Sections */
  .service-section-one,
  .service-section-two,
  .service-section-three,
  .service-section-four,
  .service-section-five,
  .service-section-six {
    padding: 20px 5%;
    min-height: auto;
  }

  .left-section-image-one,
  .left-section-image-three,
  .left-section-image-five {
    width: 140%;
    max-width: 140%;
  }

  .right-section-image-two,
  .right-section-image-four,
  .right-section-image-six {
    width: 140%;
    max-width: 140%;
  }

/* Service Sections - Center aligned overlay images */
  .overlay-left-image-one,
  .overlay-left-image-three,
  .overlay-left-image-five {
    width: 350px;
    left: 50%;
    top: 35%;
    transform: translate(-50%, -50%);
  }

  .overlay-right-image-two,
  .overlay-right-image-four,
  .overlay-right-image-six {
    width: 350px;
    right: auto;
    left: 50%;
    top: 35%;
    transform: translate(-50%, -50%);
  }

  .service-text-one,
  .service-text-two,
  .service-text-three,
  .service-text-four,
  .service-text-five,
  .service-text-six {
    margin-top: -30px;
  }

  .service-heading-one,
  .service-heading-two,
  .service-heading-three,
  .service-heading-four,
  .service-heading-five,
  .service-heading-six {
    padding: 10px 24px;
    margin-bottom: 20px;
    text-align: center;
  }

  .service-heading-one h2,
  .service-heading-two h2,
  .service-heading-three h2,
  .service-heading-four h2,
  .service-heading-five h2,
  .service-heading-six h2 {
    margin: 0;
  }

  .service-heading-one h2,
  .service-heading-five h2 {
    font-size: 1.4rem;
  }

  .service-heading-two h2 {
    font-size: 1.1rem;
  }

  .service-heading-three h2 {
    font-size: 1.25rem;
  }

  .service-heading-four h2,
  .service-heading-six h2 {
    font-size: 1.4rem;
  }

  .service-text-one p,
  .service-text-two p,
  .service-text-three p,
  .service-text-four p,
  .service-text-five p,
  .service-text-six p {
    font-size: 0.85rem;
    line-height: 1.5;
  }
}
/* ========================================
   CLIENT REVIEWS SECTION
   ======================================== */
.reviews-section {
  position: relative;
  width: 100%;
  min-height: 720px;   /* Increased section height */
  background: #366a9b;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 0;
}

/* Top wave placed at the section's top, flipped */
.reviews-wave-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transform: scaleY(-1);
  z-index: 3;
}

/* Semi-transparent background image overlay */
.reviews-bg {
  position: absolute;
  inset: 0;
  background: url('bg-img-two.webp') center/cover no-repeat;
  opacity: 0.22; /* Adjust for image transparency */
  z-index: 2;
  pointer-events: none;
}

/* Content area sits above background */
.reviews-content {
  position: relative;
  z-index: 4;
  width: 100%;
  max-width: 1060px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 70px;
  margin-bottom: 70px;
}

/* Section heading styles */
.reviews-heading {
  font-size: 3.4rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 35px;
  letter-spacing: 1.5px;
  text-align: center;
}

/* White card for reviews in center */
.reviews-card {
  border-radius: 30px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.09);
  padding: 30px 16px;
  max-width: 980px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Reviews images container */
.reviews-images {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 0;
}

.review-img {
  width: 280px;
  max-width: 90vw;
  border-radius: 12px;
  box-shadow: 0 2px 14px rgba(44, 37, 112, 0.08);
  background: #fff;
  transition: transform 0.3s;
  margin: 7px 0;
}

.review-img:hover {
  transform: scale(1.04);
  box-shadow: 0 3px 24px rgba(44, 37, 112, 0.15);
}

/* Google page button styling */
.btn-google-page {
  margin-top: 48px;
  background-color: #2c2c72;
  color: #fff;
  text-decoration: none;
  padding: 18px 52px;
  font-size: 1.3rem;
  font-weight: 600;
  border-radius: 50px;
  box-shadow: 0 5px 20px rgba(44, 37, 112, 0.5);
  transition: background-color 0.3s ease;
  display: inline-block;
  white-space: nowrap;
  letter-spacing: 0.8px;
}
.btn-google-page:hover {
  background-color: #4343ad;
}

/* Responsive tweaks */
@media (max-width: 1200px) {
  .reviews-section { min-height: 620px; }
  .reviews-content { max-width: 99vw; }
  .reviews-card { max-width: 98vw; }
}
@media (max-width: 992px) {
  .reviews-section { min-height: 540px; }
  .reviews-heading { font-size: 2.2rem; }
  .reviews-card { padding: 24px 6px; }
  .review-img { width: 180px; }
}
@media (max-width: 700px) {
  .reviews-section { min-height: 410px; }
  .reviews-content { margin-top: 26px; margin-bottom: 24px; }
  .reviews-heading { font-size: 1.2rem; }
  .reviews-card { padding: 4vw 1vw; }
  .review-img { width: 94vw; }
  .btn-google-page { padding: 14px 7vw; font-size: 1.04rem;}
}

/* ========================================
     ENQUIRY SECTION
======================================== */

.enquiry-section {
  position: relative;
  width: 100%;
  min-height: 700px;
  background: #366a9b;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 100px 8%;
}

/* BG IMAGE overlay */
.enquiry-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('pool-bg.webp') center/cover no-repeat;
  opacity: 0.4;
  z-index: 0;
  pointer-events: none;
}

/* Top Logo */
.enquiry-logo {
  position: absolute;
  top: 40px;
  left: 8%;
  z-index: 5;
  width: 180px;
  height: auto;
  margin-top: 50px;
}

/* Left: Form Card */
.enquiry-form-card {
  position: relative;
  z-index: 3;
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  max-width: 320px;
  width: 100%;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.enquiry-form-heading {
  font-size: 1.4rem;
  margin-bottom: 20px;
  font-weight: 700;
  text-align: center;
}

.form-group {
  width: 100%;
  margin-bottom: 15px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  background: #f9fafc;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #1b1742;
  outline: none;
}

.enquiry-send-btn {
  background: #1b1742;
  color: #fff;
  padding: 12px 26px;
  border: none;
  border-radius: 40px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
  margin-top: 10px;
  width: 120px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.enquiry-send-btn:hover {
  background: #2c2570;
}

/* Right: Text Content */
.enquiry-content-right { 
  position: relative;
  z-index: 3;
  max-width: 580px;
  color: #fff; 
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.enquiry-content-right h2 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.enquiry-arrow {
  width: 120px;
  height: auto;
  transform: rotate(0deg);
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.15));
  margin-left: -30px;
}

/* Add wave image at top */
.enquiry-wave-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: url('bottom-wave.webp') top center/cover no-repeat;
  transform: scaleY(-1);
  z-index: 3;
}

/* Content container */
.enquiry-content-container {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 80px;
  margin-top: 100px;
}


/* ========================================
   RESPONSIVE STYLES - TABLET
   ======================================== */
@media (max-width: 992px) {
  .enquiry-section {
    flex-direction: column;
    justify-content: center;
    padding: 80px 6%;
    min-height: 600px;
  }

  .enquiry-logo {
    width: 150px;
    top: 30px;
    left: 6%;
    margin-top: 30px;
  }

  .enquiry-content-container {
    flex-direction: column;
    gap: 50px;
    margin-top: 70px;
  }

  .enquiry-form-card {
    max-width: 450px;
    padding: 35px;
  }

  .enquiry-content-right {
    max-width: 100%;
    align-items: center;
    text-align: center;
  }

  .enquiry-content-right h2 {
    font-size: 2.5rem;
  }

  .enquiry-arrow {
    margin-top: 10px;
    margin-left: 0;
    width: 110px;
  }

  .enquiry-wave-top {
    height: 60px;
  }
}

/* ========================================
   RESPONSIVE STYLES - MOBILE
   ======================================== */
@media (max-width: 768px) {
  .enquiry-section {
    padding: 60px 5%;
    min-height: 500px;
  }

  .enquiry-logo {
    width: 120px;
    top: 20px;
    left: 5%;
    margin-top: 20px;
  }

  .enquiry-content-container {
    gap: 40px;
    margin-top: 60px;
  }

  .enquiry-form-card {
    max-width: 100%;
    padding: 30px 25px;
    animation: none;
  }

  .enquiry-form-heading {
    font-size: 1.25rem;
  }

  .form-group input,
  .form-group textarea {
    padding: 11px 13px;
    font-size: 0.9rem;
  }

  .enquiry-send-btn {
    width: 110px;
    padding: 11px 22px;
    font-size: 0.95rem;
  }

  .enquiry-content-right h2 {
    font-size: 2rem;
    margin-bottom: 15px;
  }

  .enquiry-arrow {
    width: 100px;
    margin-left: 0;
    transform: none;
  }

  .enquiry-wave-top {
    height: 50px;
  }
}

/* ========================================
   RESPONSIVE STYLES - SMALL MOBILE
   ======================================== */
@media (max-width: 480px) {
  .enquiry-section {
    padding: 50px 5%;
    min-height: 450px;
  }

  .enquiry-logo {
    width: 100px;
    top: 15px;
    left: 5%;
    margin-top: 15px;
  }

  .enquiry-content-container {
    gap: 35px;
    margin-top: 50px;
  }

  .enquiry-form-card {
    padding: 25px 20px;
    border-radius: 15px;
  }

  .enquiry-form-heading {
    font-size: 1.15rem;
    margin-bottom: 18px;
  }

  .form-group {
    margin-bottom: 12px;
  }

  .form-group input,
  .form-group textarea {
    padding: 10px 12px;
    font-size: 0.85rem;
    border-radius: 6px;
  }

  .enquiry-send-btn {
    width: 100px;
    padding: 10px 20px;
    font-size: 0.9rem;
    margin-top: 8px;
  }

  .enquiry-content-right h2 {
    font-size: 1.5rem;
    line-height: 1.2;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
  }

  .enquiry-arrow {
    width: 90px;
    margin-top: 8px;
  }

  .enquiry-wave-top {
    height: 40px;
  }
}

/* ========================================
   FOOTER SECTION
======================================== */
.footer-section {
  width: 100%;
  background: #fff;
  padding: 40px 8%;
  font-family: 'Poppins', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  max-width: 1100px;
  width: 100%;
}

/* Left Logo */
.footer-logo img {
  width: 220px;
  height: auto;
}

/* Divider Line */
.footer-divider {
  width: 1px;
  height: 100px;
  background: #333;
  opacity: 0.6;
}

/* Right Section */
.footer-info {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.social-icons {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.social-icons img {
  width: 38px;
  height: 38px;
  border-radius: 8px;
}

/* Text Content */
.footer-text {
  color: #333;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 30px;
  }

  .footer-divider {
    display: none;
  }

  .footer-info {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .social-icons {
    flex-direction: row;
    justify-content: center;
  }
}
/* --- Existing CSS remains untouched, insert below at end of your CSS file --- */

/* === SCROLL ANIMATION === */
.scroll-animate {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(.22,.61,.36,1), transform 1.6s cubic-bezier(.22,.61,.36,1);
  will-change: opacity, transform;
}
.scroll-animate.visible {
  opacity: 1;
  transform: translateY(0);
}
