

.about-section {

  padding: 85px 20px;

  background:
    radial-gradient(
      circle at top left,
      rgba(0, 174, 239, .08),
      transparent 35%
    ),

    linear-gradient(
      135deg,
      #f4fcff 0%,
      #ffffff 50%,
      #eaf9fd 100%
    );

}


.about-container {

  max-width: 1200px;

  margin: auto;

  display: grid;

  grid-template-columns:
    1.1fr .9fr;

  gap: 55px;

  align-items: center;

}


/* =========================
   LEFT CONTENT
========================= */

.about-content {

  max-width: 700px;

}


.about-badge {

  display: inline-block;

  padding: 8px 18px;

  background: #e5f8ff;

  color: #0077a8;

  border-radius: 50px;

  font-size: 15px;

  font-weight: 800;

  letter-spacing: .6px;

  margin-bottom: 18px;

}


.about-content h2 {

  margin: 0 0 22px;

  color: #063f52;

  font-size:
    clamp(30px, 4vw, 43px);

  line-height: 1.2;

  font-weight: 800;

}


.about-content p {

  color: #52666e;

  font-size: 15px;

  line-height: 1.85;

  margin-bottom: 16px;

}


.about-content p strong {

  color: #006f9f;

}


/* =========================
   HIGHLIGHTS
========================= */

.about-highlights {

  display: grid;

  grid-template-columns:
    repeat(2, 1fr);

  gap: 14px;

  margin-top: 28px;

}


.about-highlight-card {

  display: flex;

  align-items: center;

  gap: 12px;

  padding: 15px;

  background: #ffffff;

  border-radius: 14px;

  border: 1px solid #e2f1f5;

  box-shadow:
    0 6px 18px
    rgba(0, 70, 100, .06);

  transition: .3s ease;

}


.about-highlight-card:hover {

  transform:
    translateY(-4px);

  box-shadow:
    0 12px 25px
    rgba(0, 119, 182, .12);

}


.highlight-icon {

  width: 44px;

  height: 44px;

  flex-shrink: 0;

  display: flex;

  align-items: center;

  justify-content: center;

  background: #e9f8fc;

  border-radius: 12px;

  font-size: 21px;

}


.about-highlight-card strong {

  display: block;

  color: #064663;

  font-size: 15px;

  margin-bottom: 3px;

}


.about-highlight-card span {

  display: block;

  color: #718087;

  font-size: 14px;

}


/* =========================
   BUTTONS
========================= */

.about-actions {

  display: flex;

  flex-wrap: wrap;

  gap: 12px;

  margin-top: 30px;

}


.about-btn {

  display: inline-flex;

  align-items: center;

  justify-content: center;

  padding: 13px 23px;

  border-radius: 50px;

  text-decoration: none;

  font-size: 17px;

  font-weight: 700;

  transition: .3s ease;

}


.about-btn.primary {

  background:
    linear-gradient(
      90deg,
      #0077b6,
      #0096c7
    );

  color: #fff;

  box-shadow:
    0 8px 20px
    rgba(0, 119, 182, .20);

}


.about-btn.primary:hover {

  color: #fff;

  transform:
    translateY(-3px);

}


.about-btn.secondary {

  background: #063f52;

  color: #fff;

}


.about-btn.secondary:hover {

  color: #fff;

  transform:
    translateY(-3px);

}


/* =========================
   RIGHT IMAGE
========================= */

.about-visual {

  position: relative;

}


.about-image-card {

  position: relative;

  overflow: hidden;

  border-radius: 24px;

  min-height: 430px;

  box-shadow:
    0 18px 45px
    rgba(0, 70, 100, .15);

}


.about-image-card img {

  width: 100%;

  height: 430px;

  display: block;

  object-fit: cover;

  transition:
    transform .5s ease;

}


.about-image-card:hover img {

  transform:
    scale(1.06);

}


.about-image-overlay {

  position: absolute;

  left: 0;

  right: 0;

  bottom: 0;

  padding: 70px 25px 25px;

  background:
    linear-gradient(
      transparent,
      rgba(0, 35, 50, .92)
    );

  color: #fff;

}


.about-image-overlay span {

  color: #a8e9ff;

  font-size: 13px;

  font-weight: 800;

  letter-spacing: 1px;

}


.about-image-overlay h3 {

  font-size: 25px;

  line-height: 1.35;

  margin: 8px 0 0;

}


/* =========================
   SERVICE BOX
========================= */

.about-service-box {

  position: relative;

  margin:
    -70px 25px 0;

  padding: 24px;

  background:
    rgba(255,255,255,.97);

  border-radius: 18px;

  box-shadow:
    0 12px 35px
    rgba(0, 70, 100, .13);

}


.about-service-box h3 {

  margin: 0 0 17px;

  color: #064663;

  font-size: 19px;

}


.about-service-list {

  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 10px;

}


.about-service-list a {

  display: flex;

  align-items: center;

  gap: 7px;

  color: #425c66;

  font-size: 15px;

  font-weight: 600;

  text-decoration: none;

  padding: 7px 0;

}


.about-service-list a:hover {

  color: #0077b6;

}


.about-service-list span {

  color: #00966d;

  font-weight: 900;

}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 950px) {

  .about-container {

    grid-template-columns: 1fr;

    gap: 40px;

  }

  .about-content {

    max-width: 100%;

  }

}


@media (max-width: 600px) {

  .about-section {

    padding: 60px 15px;

  }

  .about-content h2 {

    font-size: 30px;

  }

  .about-highlights {

    grid-template-columns: 1fr;

  }

  .about-actions {

    flex-direction: column;

  }

  .about-btn {

    width: 100%;

  }

  .about-image-card {

    min-height: 350px;

  }

  .about-image-card img {

    height: 350px;

  }

  .about-service-box {

    margin:
      -40px 10px 0;

    padding: 20px;

  }

  .about-service-list {

    grid-template-columns: 1fr;

  }

}
.hero-wrap {
  padding: 45px 20px 60px;
  background:
    radial-gradient(
      circle at top right,
      rgba(0, 174, 239, 0.14),
      transparent 35%
    ),
    linear-gradient(
      135deg,
      #f0fbff 0%,
      #ffffff 48%,
      #e7f8fc 100%
    );
  overflow: hidden;
}


/* MAIN HERO */

.hero {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 30px;
  align-items: stretch;
}


/* CARDS */

.hero-card {
  background: rgba(255,255,255,.92);
  border-radius: 24px;
  border: 1px solid rgba(0, 119, 182, .10);
  box-shadow:
    0 15px 45px rgba(0, 70, 100, .10);
}


/* LEFT CONTENT */

.hero-main-content {
  padding: 45px;
}


.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 50px;
  background: #e5f8ff;
  color: #0077a8;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .5px;
  margin-bottom: 20px;
}


.hero-main-content h1 {
  margin: 0;
  color: #063f52;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.12;
  font-weight: 800;
}


.hero-description {
  color: #4b5f67;
  font-size: 16px;
  line-height: 1.8;
  margin: 20px 0 0;
}


.hero-description strong {
  color: #006f9f;
}


/* BUTTONS */

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}


.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 17px;
  font-weight: 700;
  transition: .3s ease;
}


.primary-btn {
  background: linear-gradient(
    90deg,
    #0077b6,
    #0096c7
  );
  color: #fff;
  box-shadow:
    0 8px 20px rgba(0,119,182,.25);
}


.primary-btn:hover {
  color: #fff;
  transform: translateY(-3px);
}


.secondary-btn {
  background: #063f52;
  color: #fff;
}


.secondary-btn:hover {
  color: #fff;
  transform: translateY(-3px);
}


.whatsapp-btn {
  background: #eafaf2;
  color: #128c5a;
  border: 1px solid #bdebd5;
}


.whatsapp-btn:hover {
  color: #128c5a;
  transform: translateY(-3px);
}


/* SERVICE TAGS */

.hero-service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 25px;
}


.hero-service-tags span {
  background: #f2faff;
  color: #17647d;
  border: 1px solid #d9f0f8;
  padding: 7px 12px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
}


/* KPI */

.kpis {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 30px;
}


.kpi-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-radius: 15px;
  background:
    linear-gradient(
      145deg,
      #ffffff,
      #edf9fc
    );
  border: 1px solid #e0f2f7;
  transition: .3s ease;
}


.kpi-card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 10px 25px rgba(0,123,255,.12);
}


.kpi-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 12px;
  background: #e4f7fd;
  font-size: 21px;
}


.kpi-content {
  display: flex;
  flex-direction: column;
  gap: 3px;
}


.kpi-content strong {
  color: #064663;
  font-size: 17px;
}


.kpi-content span {
  color: #687980;
  font-size: 13.8px;
}


/* RIGHT IMAGE */

.hero-image-card {
  overflow: hidden;
  padding: 14px;
}


.hero-image-wrapper {
  position: relative;
  height: 310px;
  overflow: hidden;
  border-radius: 18px;
}


.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .5s ease;
}


.hero-image-card:hover
.hero-image-wrapper img {
  transform: scale(1.06);
}


.image-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 45px 20px 20px;
  background:
    linear-gradient(
      transparent,
      rgba(0,35,50,.9)
    );
  color: #fff;
}


.image-overlay span {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #a9eaff;
}


.image-overlay h2 {
  margin: 7px 0 0;
  font-size: 24px;
  line-height: 1.3;
}


/* PROJECT CONTENT */

.hero-project-content {
  padding: 22px 14px 10px;
}


.hero-project-content h3 {
  color: #063f52;
  font-size: 21px;
  margin: 0 0 10px;
}


.hero-project-content p {
  color: #61737a;
  font-size: 17px;
  line-height: 1.7;
  margin: 0 0 18px;
}


/* SERVICE LIST */

.hero-service-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}


.hero-service-list div {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 15px;
  color: #3f555e;
}


.hero-service-list span {
  color: #008f68;
  font-weight: 900;
}


.view-services-btn {
  display: inline-block;
  margin-top: 20px;
  color: #0077b6;
  font-size: 17px;
  font-weight: 800;
  text-decoration: none;
}


.view-services-btn:hover {
  color: #005f8f;
}


/* TRUST STRIP */

.hero-trust-strip {
  max-width: 1200px;
  margin: 25px auto 0;
  padding: 18px;
  display: grid;
  grid-template-columns:
    repeat(4, 1fr);
  gap: 15px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow:
    0 8px 25px rgba(0,70,100,.08);
}


.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  border-right: 1px solid #e5eef1;
}


.trust-item:last-child {
  border-right: none;
}


.trust-item > span {
  font-size: 24px;
}


.trust-item div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}


.trust-item strong {
  color: #064663;
  font-size: 14px;
}


.trust-item small {
  color: #718087;
  font-size: 13.8px;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1000px) {

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-main-content {
    padding: 35px;
  }

  .hero-image-wrapper {
    height: 380px;
  }

  .hero-trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }

}


@media (max-width: 600px) {

  .hero-wrap {
    padding: 25px 12px 40px;
  }

  .hero-main-content {
    padding: 25px 18px;
  }

  .hero-main-content h1 {
    font-size: 32px;
  }

  .hero-description {
    font-size: 17px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-btn {
    width: 100%;
  }

  .kpis {
    grid-template-columns: 1fr;
  }

  .hero-service-list {
    grid-template-columns: 1fr;
  }

  .hero-image-wrapper {
    height: 280px;
  }

  .hero-trust-strip {
    grid-template-columns: 1fr;
  }

  .trust-item {
    border-right: none;
    border-bottom: 1px solid #e5eef1;
    padding-bottom: 15px;
  }

  .trust-item:last-child {
    border-bottom: none;
  }

}

    :root {
      --green: #65B32E;
      --blue: #0099CC;
      --navy: #071428;
      --muted: #e6f0f2;
      --card-bg: rgba(255, 255, 255, 0.96);
      --glass: rgba(255, 255, 255, 0.18);
      --maxw: 1200px;
      font-family: Inter, system-ui, -apple-system, 'Segoe UI', Roboto, Arial;
    }

    * {
      box-sizing: border-box
    }

    html,
    body {
      height: 100%
    }

    body {
      margin: 0;
      color: var(--navy);
      -webkit-font-smoothing: antialiased;
      background: linear-gradient(135deg, rgba(101, 179, 46, 0.08), rgba(0, 153, 204, 0.06));
    }

    .page-bg {
      background: linear-gradient(135deg, rgba(101, 179, 46, 0.15) 0%, rgba(0, 153, 204, 0.12) 45%, rgba(7, 20, 40, 0.03) 100%);
      min-height: 100vh;
      padding-bottom: 30px;
    }

    .container {
      max-width: var(--maxw);
      margin: 0 auto;
      padding: 28px
    }

    header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 0;
      background: transparent
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 14px
    }

    .logo img {
      height: 56px;
      display: block
    }

    nav {
      display: flex;
      gap: 18px;
      align-items: center
    }

    nav a {
      color: rgba(7, 20, 40, 0.85);
      text-decoration: none;
      font-weight: 700;
      padding: 8px 10px;
      border-radius: 8px
    }

    nav a:hover {
      background: rgba(255, 255, 255, 0.12)
    }

    .cta {
      background: linear-gradient(90deg, var(--green), var(--blue));
      color: white;
      padding: 10px 16px;
      border-radius: 10px;
      text-decoration: none;
      font-weight: 800;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08)
    }

    /* Hero */
    .hero-wrap {
      padding: 40px 0 10px;
      position: relative
    }

    .hero {
      display: grid;
      grid-template-columns: 1fr 460px;
      gap: 28px;
      align-items: center
    }

    .hero-card {
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.86));
      padding: 22px;
      border-radius: 14px;
      box-shadow: 0 18px 50px rgba(7, 20, 40, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.6)
    }

    .hero h1 {
      font-size: 36px;
      margin: 0 0 12px;
      color: var(--navy);
      line-height: 1.05
    }

    .hero p {
      color: #0f2b3a;
      margin: 0 0 18px
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: linear-gradient(90deg, var(--green), var(--blue));
      color: white;
      padding: 12px 16px;
      border-radius: 12px;
      border: none;
      font-weight: 800;
      cursor: pointer;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08)
    }

    .btn.secondary {
      background: transparent;
      color: var(--navy);
      border: 1px solid rgba(7, 20, 40, 0.06);
      font-weight: 700
    }

    .kpis {
      display: flex;
      gap: 12px;
      margin-top: 18px;
      flex-wrap: wrap
    }

    .kpi {
      background: linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.86));
      padding: 12px;
      border-radius: 12px;
      min-width: 110px;
      text-align: center;
      box-shadow: 0 8px 18px rgba(7, 20, 40, 0.04)
    }

    /* Services */
    section {
      position: relative;
      padding: 36px 0
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px
    }

    .service {
      background: var(--card-bg);
      padding: 20px;
      border-radius: 12px;
      box-shadow: 0 12px 30px rgba(7, 20, 40, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.5)
    }

    .service h3 {
      margin: 0 0 8px;
      color: var(--navy)
    }

    .service p {
      color: #23404a;
      margin: 0
    }

    /* Enquiry */
    .enquiry-wrap {
      display: grid;
      grid-template-columns: 1fr 420px;
      gap: 18px;
      align-items: start
    }

    .form {
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.92));
      padding: 18px;
      border-radius: 12px;
      box-shadow: 0 18px 40px rgba(7, 20, 40, 0.06)
    }

    .form input,
    .form textarea,
    .form select {
      width: 100%;
      padding: 12px;
      border-radius: 10px;
      border: 1px solid rgba(7, 20, 40, 0.06);
      margin-bottom: 10px;
      font-size: 17px;
      background: transparent
    }

    .contact-quick {
      display: flex;
      flex-direction: column;
      gap: 12px;
      align-items: center;
      justify-content: center;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.9));
      padding: 18px;
      border-radius: 12px;
      box-shadow: 0 12px 30px rgba(7, 20, 40, 0.06)
    }

    .contact-quick a {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 10px 14px;
      border-radius: 10px;
      text-decoration: none;
      font-weight: 800
    }

    .whatsapp {
      background: var(--blue);
      color: white
    }

    .call {
      background: var(--green);
      color: white
    }

    /* Gallery */
    .gallery {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px
    }

    .gallery img {
      width: 100%;
      border-radius: 12px;
      box-shadow: 0 12px 28px rgba(7, 20, 40, 0.06)
    }

    /* Footer */
    footer {
      margin-top: 20px;
      padding: 28px;
      background: linear-gradient(90deg, rgba(7, 20, 40, 0.95), rgba(7, 20, 40, 0.9));
      color: white;
      border-radius: 12px
    }

    footer img {
      height: 28px
    }

    /* Waves */
    .wave {
      display: block;
      height: 80px;
      overflow: hidden
    }

    .wave svg {
      width: 100%;
      height: 100%
    }

    /* Responsive */
    @media (max-width:980px) {
      .hero {
        grid-template-columns: 1fr
      }

      .enquiry-wrap {
        grid-template-columns: 1fr
      }

      .services-grid {
        grid-template-columns: repeat(2, 1fr)
      }

      nav {
        display: none
      }
    }

    @media (max-width:640px) {
      .services-grid {
        grid-template-columns: 1fr
      }

      .container {
        padding: 18px
      }

      .hero h1 {
        font-size: 26px
      }

      .logo img {
        height: 48px
      }
    }



/* MAIN SECTION */

.water-solutions-section {

  position: relative;

  padding:
    80px 20px 0;

  background:
    linear-gradient(
      135deg,
      #f1fbfe 0%,
      #ffffff 50%,
      #e8f8fc 100%
    );

  overflow: hidden;

}


/* MAIN SECTION */

.products-services-section {

  padding: 80px 20px;

  background:
    linear-gradient(
      135deg,
      #f4fcff 0%,
      #ffffff 50%,
      #eefaff 100%
    );

}


.products-services-container {

  max-width: 1200px;

  margin: auto;

}


/* HEADER */

.services-header {

  max-width: 850px;

  margin:
    0 auto 40px;

  text-align: center;

}


.services-badge {

  display: inline-block;

  padding:
    8px 18px;

  background:
    #e5f8fd;

  color:
    #0077a8;

  border-radius:
    50px;

  font-size:
    12px;

  font-weight:
    800;

  letter-spacing:
    .6px;

  margin-bottom:
    15px;

}


.services-header h2 {

  margin:
    0 0 18px;

  color:
    #063f52;

  font-size:
    clamp(30px, 4vw, 44px);

  line-height:
    1.2;

  font-weight:
    800;

}


.services-header p {

  color:
    #5c7078;

  font-size:
    15px;

  line-height:
    1.8;

  margin:
    0 auto;

}


.services-header strong {

  color:
    #0077a8;

}


/* INTRO BOX */

.services-intro {

  display:
    flex;

  align-items:
    center;

  gap:
    18px;

  padding:
    22px 25px;

  margin-bottom:
    30px;

  background:
    linear-gradient(
      90deg,
      #eaf9fd,
      #f8fdff
    );

  border-left:
    5px solid #0096c7;

  border-radius:
    12px;

}


.services-intro-icon {

  width:
    52px;

  height:
    52px;

  display:
    flex;

  align-items:
    center;

  justify-content:
    center;

  flex-shrink:
    0;

  background:
    #ffffff;

  border-radius:
    13px;

  font-size:
    24px;

  box-shadow:
    0 5px 15px
    rgba(0,70,100,.08);

}


.services-intro h3 {

  margin:
    0 0 5px;

  color:
    #064663;

  font-size:
    19px;

}


.services-intro p {

  margin:
    0;

  color:
    #5c7078;

  font-size:
    14px;

  line-height:
    1.7;

}


/* SERVICES GRID */

.services-grid {

  display:
    grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap:
    22px;

}


/* SERVICE CARD */

.service-card {

  position:
    relative;

  padding:
    28px 24px;

  background:
    rgba(255,255,255,.97);

  border:
    1px solid #e1eef2;

  border-radius:
    18px;

  box-shadow:
    0 8px 25px
    rgba(7,20,40,.06);

  transition:
    all .3s ease;

  overflow:
    hidden;

}


.service-card::before {

  content:
    "";

  position:
    absolute;

  top:
    0;

  left:
    0;

  width:
    100%;

  height:
    4px;

  background:
    linear-gradient(
      90deg,
      #0077b6,
      #00a6c7
    );

  transform:
    scaleX(0);

  transform-origin:
    left;

  transition:
    .3s ease;

}


.service-card:hover {

  transform:
    translateY(-7px);

  box-shadow:
    0 18px 38px
    rgba(0,119,182,.12);

  border-color:
    #c5e9f2;

}


.service-card:hover::before {

  transform:
    scaleX(1);

}


/* FEATURED */

.featured-service {

  background:
    linear-gradient(
      145deg,
      #ffffff,
      #f0fbfe
    );

}


/* ICON */

.service-icon {

  width:
    55px;

  height:
    55px;

  display:
    flex;

  align-items:
    center;

  justify-content:
    center;

  background:
    #e7f8fc;

  border-radius:
    15px;

  font-size:
    25px;

  margin-bottom:
    15px;

}


/* NUMBER */

.service-number {

  position:
    absolute;

  top:
    22px;

  right:
    22px;

  color:
    #d9edf2;

  font-size:
    28px;

  font-weight:
    800;

}


/* HEADING */

.service-card h3 {

  margin:
    0 0 12px;

  color:
    #064663;

  font-size:
    20px;

  line-height:
    1.35;

}


.service-card p {

  color:
    #61747c;

  font-size:
    14px;

  line-height:
    1.75;

  margin:
    0 0 15px;

}


.service-card p strong {

  color:
    #0077a8;

}


/* LIST */

.service-card ul {

  margin:
    0 0 18px;

  padding:
    0;

  list-style:
    none;

}


.service-card li {

  position:
    relative;

  padding-left:
    20px;

  margin-bottom:
    7px;

  color:
    #4d626a;

  font-size:
    14px;

  line-height:
    1.5;

}


.service-card li::before {

  content:
    "✓";

  position:
    absolute;

  left:
    0;

  color:
    #00966d;

  font-weight:
    900;

}


.service-card a {

  color:
    #0077b6;

  font-size:
    15px;

  font-weight:
    800;

  text-decoration:
    none;

}


.service-card a:hover {

  color:
    #005f8f;

}


/* BOTTOM CTA */

.services-bottom-cta {

  display:
    flex;

  align-items:
    center;

  justify-content:
    space-between;

  gap:
    30px;

  margin-top:
    45px;

  padding:
    30px 35px;

  background:
    linear-gradient(
      135deg,
      #063f52,
      #0077a8
    );

  border-radius:
    20px;

  color:
    #ffffff;

  box-shadow:
    0 15px 35px
    rgba(0,70,100,.18);

}


.services-bottom-cta span {

  font-size:
    11px;

  font-weight:
    800;

  letter-spacing:
    1px;

  color:
    #a7e8fa;

}


.services-bottom-cta h3 {

  margin:
    7px 0;

  font-size:
    24px;

}


.services-bottom-cta p {

  max-width:
    700px;

  margin:
    0;

  color:
    rgba(255,255,255,.82);

  font-size:
    14px;

  line-height:
    1.7;

}


/* CTA BUTTONS */

.services-bottom-actions {

  display:
    flex;

  flex-wrap:
    wrap;

  gap:
    10px;

  flex-shrink:
    0;

}


.service-cta-primary,
.service-cta-secondary {

  display:
    inline-flex;

  align-items:
    center;

  justify-content:
    center;

  padding:
    13px 20px;

  border-radius:
    50px;

  text-decoration:
    none;

  font-size:
    13px;

  font-weight:
    700;

  transition:
    .3s ease;

}


.service-cta-primary {

  background:
    #ffffff;

  color:
    #006b91;

}


.service-cta-secondary {

  background:
    rgba(255,255,255,.12);

  color:
    #ffffff;

  border:
    1px solid
    rgba(255,255,255,.35);

}


.service-cta-primary:hover,
.service-cta-secondary:hover {

  transform:
    translateY(-3px);

}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1000px) {

  .services-grid {

    grid-template-columns:
      repeat(2, 1fr);

  }

  .services-bottom-cta {

    flex-direction:
      column;

    align-items:
      flex-start;

  }

}


@media (max-width: 600px) {

  .products-services-section {

    padding:
      60px 15px;

  }

  .services-grid {

    grid-template-columns:
      1fr;

  }

  .services-header h2 {

    font-size:
      30px;

  }

  .services-intro {

    align-items:
      flex-start;

    padding:
      20px;

  }

  .services-bottom-cta {

    padding:
      25px 20px;

  }

  .services-bottom-actions {

    width:
      100%;

    flex-direction:
      column;

  }

  .service-cta-primary,
  .service-cta-secondary {

    width:
      100%;

  }

}



/* CONTAINER */

.water-solutions-container {

  max-width: 1200px;

  margin: auto;

}


/* HEADER */

.water-solutions-header {

  max-width: 850px;

  margin:
    0 auto 45px;

  text-align: center;

}


.section-badge {

  display: inline-block;

  padding:
    8px 18px;

  border-radius:
    50px;

  background:
    #e3f7fc;

  color:
    #0077a8;

  font-size:
    12px;

  font-weight:
    800;

  letter-spacing:
    .6px;

  margin-bottom:
    16px;

}


.water-solutions-header h2 {

  margin:
    0 0 18px;

  color:
    #063f52;

  font-size:
    clamp(30px, 4vw, 44px);

  line-height:
    1.2;

  font-weight:
    800;

}


.water-solutions-header p {

  margin:
    auto;

  max-width:
    760px;

  color:
    #5d7078;

  font-size:
    16px;

  line-height:
    1.8;

}


.water-solutions-header strong {

  color:
    #0077a8;

}


/* SERVICE CARDS */

.water-solution-cards {

  display:
    grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap:
    22px;

}


/* CARD */

.solution-card {

  position:
    relative;

  padding:
    28px 24px;

  background:
    rgba(255,255,255,.96);

  border:
    1px solid #e1f0f4;

  border-radius:
    18px;

  box-shadow:
    0 8px 25px
    rgba(0,70,100,.07);

  transition:
    all .3s ease;

}


.solution-card:hover {

  transform:
    translateY(-8px);

  box-shadow:
    0 18px 35px
    rgba(0,119,182,.14);

  border-color:
    #b9e7f3;

}


/* ICON */

.solution-icon {

  width:
    55px;

  height:
    55px;

  display:
    flex;

  align-items:
    center;

  justify-content:
    center;

  margin-bottom:
    18px;

  background:
    linear-gradient(
      135deg,
      #e5f8fd,
      #d8f3fa
    );

  border-radius:
    15px;

  font-size:
    25px;

}


/* CARD HEADING */

.solution-card h3 {

  margin:
    0 0 10px;

  color:
    #064663;

  font-size:
    20px;

  font-weight:
    750;

}


/* CARD TEXT */

.solution-card p {

  margin:
    0 0 16px;

  color:
    #64767d;

  font-size:
    14px;

  line-height:
    1.75;

}


/* CARD LINK */

.solution-card a {

  color:
    #0077b6;

  font-size:
    13px;

  font-weight:
    800;

  text-decoration:
    none;

}


.solution-card a:hover {

  color:
    #005f8f;

}


/* CTA */

.water-solutions-cta {

  display:
    flex;

  align-items:
    center;

  justify-content:
    space-between;

  gap:
    25px;

  margin:
    45px 0 0;

  padding:
    28px 32px;

  background:
    linear-gradient(
      135deg,
      #063f52,
      #0077a8
    );

  border-radius:
    20px;

  color:
    #ffffff;

  box-shadow:
    0 15px 35px
    rgba(0,70,100,.18);

}


.water-solutions-cta h3 {

  margin:
    0 0 7px;

  font-size:
    23px;

}


.water-solutions-cta p {

  margin:
    0;

  color:
    rgba(255,255,255,.82);

  font-size:
    14px;

  line-height:
    1.6;

}


/* CTA BUTTONS */

.solutions-cta-buttons {

  display:
    flex;

  flex-wrap:
    wrap;

  gap:
    10px;

  flex-shrink:
    0;

}


.solutions-btn {

  display:
    inline-flex;

  align-items:
    center;

  justify-content:
    center;

  padding:
    12px 20px;

  border-radius:
    50px;

  text-decoration:
    none;

  font-size:
    13px;

  font-weight:
    700;

  transition:
    .3s ease;

}


.solutions-btn.primary {

  background:
    #ffffff;

  color:
    #006b91;

}


.solutions-btn.secondary {

  background:
    rgba(255,255,255,.12);

  color:
    #ffffff;

  border:
    1px solid
    rgba(255,255,255,.35);

}


.solutions-btn:hover {

  transform:
    translateY(-3px);

}


/* =========================================
   WAVE
========================================= */

.solutions-wave {

  position:
    relative;

  width:
    100%;

  height:
    115px;

  margin-top:
    40px;

  overflow:
    hidden;

  line-height:
    0;

}


.solutions-wave svg {

  display:
    block;

  width:
    100%;

  height:
    100%;

}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 950px) {

  .water-solution-cards {

    grid-template-columns:
      repeat(2, 1fr);

  }

  .water-solutions-cta {

    flex-direction:
      column;

    align-items:
      flex-start;

  }

}


@media (max-width: 600px) {

  .water-solutions-section {

    padding:
      60px 15px 0;

  }

  .water-solution-cards {

    grid-template-columns:
      1fr;

  }

  .water-solutions-header h2 {

    font-size:
      30px;

  }

  .water-solutions-header p {

    font-size:
      14px;

  }

  .water-solutions-cta {

    padding:
      25px 20px;

  }

  .solutions-cta-buttons {

    width:
      100%;

    flex-direction:
      column;

  }

  .solutions-btn {

    width:
      100%;

  }

  .solutions-wave {

    height:
      70px;

    margin-top:
      25px;

  }

}


/* MAIN SECTION */

.amc-section {

  position: relative;

  padding: 80px 20px;

  background:
    linear-gradient(
      135deg,
      #e8f9fd 0%,
      #ffffff 48%,
      #dff6fc 100%
    );

  overflow: hidden;

}


/* CONTAINER */

.amc-container {

  max-width: 1200px;

  margin: auto;

}


/* HEADER */

.amc-header {

  max-width: 850px;

  margin:
    0 auto 45px;

  text-align: center;

}


.amc-badge {

  display: inline-block;

  padding:
    8px 18px;

  background:
    #e0f7fc;

  color:
    #0077a8;

  border-radius:
    50px;

  font-size:
    12px;

  font-weight:
    800;

  letter-spacing:
    .7px;

  margin-bottom:
    15px;

}


.amc-header h2 {

  margin:
    0 0 18px;

  color:
    #064663;

  font-size:
    clamp(30px, 4vw, 44px);

  line-height:
    1.2;

  font-weight:
    800;

}


.amc-header p {

  max-width:
    780px;

  margin:
    auto;

  color:
    #526870;

  font-size:
    15px;

  line-height:
    1.8;

}


.amc-header strong {

  color:
    #0077a8;

}


/* INTRO */

.amc-intro {

  display:
    flex;

  align-items:
    center;

  gap:
    20px;

  padding:
    23px 27px;

  margin-bottom:
    35px;

  background:
    rgba(255,255,255,.85);

  border-left:
    5px solid #0096c7;

  border-radius:
    14px;

  box-shadow:
    0 7px 20px
    rgba(0,70,100,.05);

}


.amc-intro-icon {

  width:
    55px;

  height:
    55px;

  display:
    flex;

  align-items:
    center;

  justify-content:
    center;

  flex-shrink:
    0;

  background:
    #e6f8fc;

  border-radius:
    14px;

  font-size:
    25px;

}


.amc-intro h3 {

  margin:
    0 0 6px;

  color:
    #064663;

  font-size:
    20px;

}


.amc-intro p {

  margin:
    0;

  color:
    #61747c;

  font-size:
    14px;

  line-height:
    1.7;

}


/* GRID */

.amc-grid {

  display:
    grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap:
    22px;

}


/* CARD */

.amc-card {

  position:
    relative;

  padding:
    28px 24px;

  background:
    rgba(255,255,255,.97);

  border:
    1px solid #e0edf1;

  border-radius:
    18px;

  box-shadow:
    0 8px 24px
    rgba(7,20,40,.06);

  transition:
    all .3s ease;

  overflow:
    hidden;

}


.amc-card::before {

  content:
    "";

  position:
    absolute;

  top:
    0;

  left:
    0;

  width:
    100%;

  height:
    4px;

  background:
    linear-gradient(
      90deg,
      #0077b6,
      #00a6c7
    );

  transform:
    scaleX(0);

  transform-origin:
    left;

  transition:
    .3s ease;

}


.amc-card:hover {

  transform:
    translateY(-7px);

  box-shadow:
    0 18px 38px
    rgba(0,119,182,.13);

  border-color:
    #bfe7f0;

}


.amc-card:hover::before {

  transform:
    scaleX(1);

}


/* FEATURED CARD */

.featured-amc {

  background:
    linear-gradient(
      145deg,
      #ffffff,
      #f0fbfe
    );

}


/* ICON */

.amc-icon {

  width:
    55px;

  height:
    55px;

  display:
    flex;

  align-items:
    center;

  justify-content:
    center;

  margin-bottom:
    16px;

  background:
    #e6f8fc;

  border-radius:
    15px;

  font-size:
    25px;

}


/* NUMBER */

.amc-number {

  position:
    absolute;

  top:
    20px;

  right:
    20px;

  color:
    #d8edf2;

  font-size:
    28px;

  font-weight:
    800;

}


/* CARD HEADING */

.amc-card h3 {

  margin:
    0 0 12px;

  color:
    #064663;

  font-size:
    20px;

  line-height:
    1.35;

}


.amc-card p {

  margin:
    0 0 15px;

  color:
    #60737b;

  font-size:
    14px;

  line-height:
    1.75;

}


.amc-card strong {

  color:
    #0077a8;

}


/* LIST */

.amc-card ul {

  margin:
    0 0 18px;

  padding:
    0;

  list-style:
    none;

}


.amc-card li {

  position:
    relative;

  padding-left:
    20px;

  margin-bottom:
    7px;

  color:
    #4d626a;

  font-size:
    14px;

  line-height:
    1.5;

}


.amc-card li::before {

  content:
    "✓";

  position:
    absolute;

  left:
    0;

  color:
    #00966d;

  font-weight:
    900;

}


.amc-card a {

  display:
    inline-block;

  color:
    #0077b6;

  font-size:
    13px;

  font-weight:
    800;

  text-decoration:
    none;

}


.amc-card a:hover {

  color:
    #005f8f;

}


/* BOTTOM CTA */

.amc-bottom-cta {

  display:
    flex;

  align-items:
    center;

  justify-content:
    space-between;

  gap:
    30px;

  margin-top:
    45px;

  padding:
    30px 35px;

  background:
    linear-gradient(
      135deg,
      #063f52,
      #0077a8
    );

  border-radius:
    20px;

  color:
    #ffffff;

  box-shadow:
    0 15px 35px
    rgba(0,70,100,.18);

}


.amc-bottom-cta span {

  color:
    #a8e9fa;

  font-size:
    11px;

  font-weight:
    800;

  letter-spacing:
    1px;

}


.amc-bottom-cta h3 {

  margin:
    7px 0;

  font-size:
    24px;

}


.amc-bottom-cta p {

  max-width:
    700px;

  margin:
    0;

  color:
    rgba(255,255,255,.82);

  font-size:
    14px;

  line-height:
    1.7;

}


/* BUTTONS */

.amc-actions {

  display:
    flex;

  flex-wrap:
    wrap;

  gap:
    10px;

  flex-shrink:
    0;

}


.amc-btn-primary,
.amc-btn-secondary {

  display:
    inline-flex;

  align-items:
    center;

  justify-content:
    center;

  padding:
    13px 21px;

  border-radius:
    50px;

  text-decoration:
    none;

  font-size:
    13px;

  font-weight:
    700;

  transition:
    .3s ease;

}


.amc-btn-primary {

  background:
    #ffffff;

  color:
    #006b91;

}


.amc-btn-secondary {

  background:
    rgba(255,255,255,.12);

  color:
    #ffffff;

  border:
    1px solid
    rgba(255,255,255,.35);

}


.amc-btn-primary:hover,
.amc-btn-secondary:hover {

  transform:
    translateY(-3px);

}


/* RESPONSIVE */

@media (max-width: 1000px) {

  .amc-grid {

    grid-template-columns:
      repeat(2, 1fr);

  }

  .amc-bottom-cta {

    flex-direction:
      column;

    align-items:
      flex-start;

  }

}


@media (max-width: 600px) {

  .amc-section {

    padding:
      60px 15px;

  }

  .amc-grid {

    grid-template-columns:
      1fr;

  }

  .amc-header h2 {

    font-size:
      30px;

  }

  .amc-intro {

    align-items:
      flex-start;

    padding:
      20px;

  }

  .amc-bottom-cta {

    padding:
      25px 20px;

  }

  .amc-actions {

    width:
      100%;

    flex-direction:
      column;

  }

  .amc-btn-primary,
  .amc-btn-secondary {

    width:
      100%;

  }

}


/* =========================================
   AMC BOTTOM WAVE
========================================= */

.amc-bottom-wave {

  position:
    relative;

  width:
    100%;

  height:
    120px;

  margin-top:
    40px;

  overflow:
    hidden;

  line-height:
    0;

  z-index:
    2;

}


.amc-bottom-wave svg {

  display:
    block;

  width:
    100%;

  height:
    100%;

}


/* =========================================
   RESPONSIVE WAVE
========================================= */

@media (max-width: 768px) {

  .amc-bottom-wave {

    height:
      80px;

    margin-top:
      30px;

  }

}


@media (max-width: 480px) {

  .amc-bottom-wave {

    height:
      60px;

    margin-top:
      20px;

  }

}



.enquiry-section {

  position: relative;

  padding: 90px 20px;

  background:
    linear-gradient(
      135deg,
      #eaf9fd 0%,
      #ffffff 45%,
      #e1f7fc 100%
    );

  overflow: hidden;

}


.enquiry-container {

  max-width: 1200px;

  margin: auto;

}


/* =========================================
   HEADER
========================================= */

.enquiry-header {

  max-width: 850px;

  margin:
    0 auto 45px;

  text-align: center;

}


.enquiry-badge {

  display: inline-block;

  padding:
    8px 18px;

  background:
    #dff6fc;

  color:
    #0077a8;

  border-radius:
    50px;

  font-size:
    11px;

  font-weight:
    800;

  letter-spacing:
    .8px;

  margin-bottom:
    15px;

}


.enquiry-header h2 {

  margin:
    0 0 16px;

  color:
    #064663;

  font-size:
    clamp(30px, 4vw, 44px);

  line-height:
    1.2;

  font-weight:
    800;

}


.enquiry-header p {

  max-width:
    800px;

  margin:
    auto;

  color:
    #5c7078;

  font-size:
    15px;

  line-height:
    1.8;

}


.enquiry-header strong {

  color:
    #0077a8;

}


/* =========================================
   GRID
========================================= */

.enquiry-grid {

  display:
    grid;

  grid-template-columns:
    minmax(0, 1.7fr)
    minmax(320px, .9fr);

  gap:
    28px;

  align-items:
    stretch;

}


/* =========================================
   FORM CARD
========================================= */

.enquiry-form-card {

  padding:
    32px;

  background:
    rgba(255,255,255,.96);

  border:
    1px solid #e2eef2;

  border-radius:
    22px;

  box-shadow:
    0 18px 45px
    rgba(7,20,40,.08);

}


.form-title {

  display:
    flex;

  align-items:
    center;

  gap:
    15px;

  margin-bottom:
    28px;

  padding-bottom:
    20px;

  border-bottom:
    1px solid #e5eef1;

}


.form-title-icon {

  width:
    52px;

  height:
    52px;

  display:
    flex;

  align-items:
    center;

  justify-content:
    center;

  background:
    #e5f8fc;

  border-radius:
    14px;

  font-size:
    24px;

}


.form-title h3 {

  margin:
    0 0 4px;

  color:
    #064663;

  font-size:
    23px;

}


.form-title p {

  margin:
    0;

  color:
    #71838a;

  font-size:
    13px;

}


/* =========================================
   FORM ROW
========================================= */

.form-row {

  display:
    grid;

  grid-template-columns:
    1fr 1fr;

  gap:
    16px;

}


.form-group {

  margin-bottom:
    18px;

}


.form-group label {

  display:
    block;

  margin-bottom:
    7px;

  color:
    #264b58;

  font-size:
    13px;

  font-weight:
    700;

}


.form-group label span {

  color:
    #e63946;

}


.form-group input,
.form-group select,
.form-group textarea {

  width:
    100%;

  box-sizing:
    border-box;

  padding:
    13px 15px;

  background:
    #fafdfe;

  border:
    1px solid #d8e7eb;

  border-radius:
    10px;

  color:
    #183c48;

  font-family:
    inherit;

  font-size:
    14px;

  outline:
    none;

  transition:
    all .25s ease;

}


.form-group textarea {

  resize:
    vertical;

  min-height:
    120px;

}


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {

  border-color:
    #0096c7;

  background:
    #ffffff;

  box-shadow:
    0 0 0 3px
    rgba(0,150,199,.10);

}


/* =========================================
   UPLOAD
========================================= */

.upload-box {

  margin:
    5px 0 20px;

  padding:
    16px;

  background:
    #f5fbfd;

  border:
    1px dashed #b9dce5;

  border-radius:
    12px;

}


.upload-box label {

  display:
    flex;

  align-items:
    center;

  gap:
    12px;

  cursor:
    pointer;

}


.upload-icon {

  width:
    42px;

  height:
    42px;

  display:
    flex;

  align-items:
    center;

  justify-content:
    center;

  background:
    #e1f6fb;

  border-radius:
    10px;

  font-size:
    20px;

}


.upload-box strong {

  display:
    block;

  color:
    #064663;

  font-size:
    13px;

}


.upload-box small {

  display:
    block;

  margin-top:
    3px;

  color:
    #778990;

  font-size:
    14px;

}


.upload-box input {

  display:
    block;

  width:
    100%;

  margin-top:
    12px;

  font-size:
    14px;

}


/* =========================================
   SUBMIT BUTTON
========================================= */

.enquiry-submit {

  width:
    100%;

  padding:
    15px 20px;

  border:
    none;

  border-radius:
    50px;

  background:
    linear-gradient(
      135deg,
      #0077b6,
      #00a6c7
    );

  color:
    #ffffff;

  font-size:
    15px;

  font-weight:
    800;

  cursor:
    pointer;

  box-shadow:
    0 8px 20px
    rgba(0,119,182,.22);

  transition:
    all .3s ease;

}


.enquiry-submit:hover {

  transform:
    translateY(-3px);

  box-shadow:
    0 12px 28px
    rgba(0,119,182,.3);

}


.form-note {

  margin-top:
    12px;

  text-align:
    center;

  color:
    #84959b;

  font-size:
    14px;

}


/* =========================================
   CONTACT CARD
========================================= */

.contact-card {

  padding:
    30px;

  background:
    linear-gradient(
      145deg,
      #063f52,
      #0077a8
    );

  border-radius:
    22px;

  color:
    #ffffff;

  box-shadow:
    0 18px 45px
    rgba(0,70,100,.18);

}


.contact-card-header {

  display:
    flex;

  align-items:
    center;

  gap:
    15px;

  margin-bottom:
    25px;

}


.contact-icon {

  width:
    55px;

  height:
    55px;

  display:
    flex;

  align-items:
    center;

  justify-content:
    center;

  background:
    rgba(255,255,255,.13);

  border:
    1px solid
    rgba(255,255,255,.2);

  border-radius:
    15px;

  font-size:
    24px;

}


.contact-card-header h3 {

  margin:
    0 0 5px;

  font-size:
    21px;

}


.contact-card-header p {

  margin:
    0;

  color:
    rgba(255,255,255,.72);

  font-size:
    13.5px;

  line-height:
    1.5;

}


/* =========================================
   CONTACT LIST
========================================= */

.contact-list {

  display:
    flex;

  flex-direction:
    column;

  gap:
    10px;

}


.contact-item {

  display:
    flex;

  align-items:
    center;

  gap:
    12px;

  padding:
    13px;

  background:
    rgba(255,255,255,.10);

  border:
    1px solid
    rgba(255,255,255,.12);

  border-radius:
    12px;

  color:
    #ffffff;

  text-decoration:
    none;

  transition:
    all .3s ease;

}


.contact-item:hover {

  background:
    rgba(255,255,255,.18);

  transform:
    translateX(4px);

}


.contact-item-icon {

  width:
    38px;

  height:
    38px;

  display:
    flex;

  align-items:
    center;

  justify-content:
    center;

  background:
    rgba(255,255,255,.13);

  border-radius:
    9px;

  font-size:
    17px;

}


.contact-item div:nth-child(2) {

  flex:
    1;

}


.contact-item span {

  display:
    block;

  color:
    rgba(255,255,255,.65);

  font-size:
    10px;

  margin-bottom:
    3px;

}


.contact-item strong {

  display:
    block;

  color:
    #ffffff;

  font-size:
    14.5px;

}


.contact-arrow {

  font-size:
    18px;

  color:
    rgba(255,255,255,.7);

}


/* =========================================
   HIGHLIGHTS
========================================= */

.contact-highlights {

  margin-top:
    28px;

  padding-top:
    22px;

  border-top:
    1px solid
    rgba(255,255,255,.15);

}


.contact-highlights h4 {

  margin:
    0 0 14px;

  font-size:
    15px;

}


.highlight-item {

  display:
    flex;

  align-items:
    center;

  gap:
    9px;

  margin-bottom:
    9px;

}


.highlight-item span {

  width:
    19px;

  height:
    19px;

  display:
    flex;

  align-items:
    center;

  justify-content:
    center;

  background:
    rgba(255,255,255,.14);

  border-radius:
    50%;

  color:
    #a8e9fa;

  font-size:
    14px;

}


.highlight-item p {

  margin:
    0;

  color:
    rgba(255,255,255,.78);

  font-size:
    14.5px;

}


/* =========================================
   QUICK CTA
========================================= */

.quick-contact-cta {

  margin-top:
    25px;

  padding:
    17px;

  background:
    rgba(0,0,0,.12);

  border-radius:
    14px;

}


.quick-contact-cta strong {

  display:
    block;

  margin-bottom:
    5px;

  font-size:
    14px;

}


.quick-contact-cta span {

  color:
    rgba(255,255,255,.72);

  font-size:
    15px;

}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 900px) {

  .enquiry-grid {

    grid-template-columns:
      1fr;

  }

}


@media (max-width: 600px) {

  .enquiry-section {

    padding:
      60px 15px;

  }

  .enquiry-form-card,
  .contact-card {

    padding:
      22px 18px;

    border-radius:
      17px;

  }

  .form-row {

    grid-template-columns:
      1fr;

    gap:
      0;

  }

  .enquiry-header h2 {

    font-size:
      30px;

  }

  .enquiry-header p {

    font-size:
      17px;

  }

}

/* =========================================
   MAIN SECTION
========================================= */

.gallery-section {

  padding:
    85px 20px;

  background:
    linear-gradient(
      180deg,
      #ffffff,
      #eefaff
    );

}


.gallery-container {

  max-width:
    1200px;

  margin:
    auto;

}


/* =========================================
   HEADER
========================================= */

.gallery-header {

  max-width:
    850px;

  margin:
    0 auto 45px;

  text-align:
    center;

}


.gallery-badge {

  display:
    inline-block;

  padding:
    8px 18px;

  background:
    #e2f7fc;

  color:
    #0077a8;

  border-radius:
    50px;

  font-size:
    11px;

  font-weight:
    800;

  letter-spacing:
    .8px;

  margin-bottom:
    15px;

}


.gallery-header h2 {

  margin:
    0 0 15px;

  color:
    #064663;

  font-size:
    clamp(30px, 4vw, 44px);

  line-height:
    1.2;

  font-weight:
    800;

}


.gallery-header p {

  max-width:
    800px;

  margin:
    auto;

  color:
    #62777f;

  font-size:
    15px;

  line-height:
    1.8;

}


.gallery-header strong {

  color:
    #0077a8;

}


/* =========================================
   GALLERY GRID
========================================= */

.gallery-grid {

  display:
    grid;

  grid-template-columns:
    repeat(4, 1fr);

  grid-auto-rows:
    270px;

  gap:
    18px;

}


/* =========================================
   GALLERY ITEM
========================================= */

.gallery-item {

  position:
    relative;

  overflow:
    hidden;

  min-height:
    270px;

  border-radius:
    18px;

  background:
    #dceff4;

  box-shadow:
    0 10px 28px
    rgba(7,20,40,.08);

  cursor:
    pointer;

}


.gallery-item img {

  width:
    100%;

  height:
    100%;

  object-fit:
    cover;

  display:
    block;

  transition:
    transform .6s ease;

}


.gallery-item:hover img {

  transform:
    scale(1.08);

}


/* =========================================
   LARGE FEATURED IMAGE
========================================= */

.gallery-large {

  grid-column:
    span 2;

  grid-row:
    span 2;

}


.gallery-wide {

  grid-column:
    span 2;

}


/* =========================================
   OVERLAY
========================================= */

.gallery-overlay {

  position:
    absolute;

  left:
    0;

  right:
    0;

  bottom:
    0;

  padding:
    25px 20px 20px;

  background:
    linear-gradient(
      transparent,
      rgba(3,31,43,.92)
    );

  color:
    #ffffff;

  transform:
    translateY(55px);

  transition:
    all .35s ease;

}


.gallery-item:hover
.gallery-overlay {

  transform:
    translateY(0);

}


.gallery-overlay span {

  display:
    inline-block;

  margin-bottom:
    6px;

  color:
    #a8e9fa;

  font-size:
    10px;

  font-weight:
    800;

  letter-spacing:
    .7px;

  text-transform:
    uppercase;

}


.gallery-overlay h3 {

  margin:
    0 0 5px;

  color:
    #ffffff;

  font-size:
    20px;

  line-height:
    1.3;

}


.gallery-overlay p {

  margin:
    0;

  color:
    rgba(255,255,255,.78);

  font-size:
    12px;

  line-height:
    1.6;

}


/* =========================================
   BOTTOM CTA
========================================= */

.gallery-bottom {

  display:
    flex;

  align-items:
    center;

  justify-content:
    space-between;

  gap:
    30px;

  margin-top:
    45px;

  padding:
    30px 35px;

  background:
    linear-gradient(
      135deg,
      #063f52,
      #0077a8
    );

  border-radius:
    20px;

  color:
    #ffffff;

  box-shadow:
    0 15px 35px
    rgba(0,70,100,.16);

}


.gallery-bottom span {

  color:
    #a8e9fa;

  font-size:
    10px;

  font-weight:
    800;

  letter-spacing:
    1px;

}


.gallery-bottom h3 {

  margin:
    7px 0;

  color:
    #ffffff;

  font-size:
    24px;

}


.gallery-bottom p {

  max-width:
    700px;

  margin:
    0;

  color:
    rgba(255,255,255,.78);

  font-size:
    13px;

  line-height:
    1.7;

}


/* =========================================
   BUTTONS
========================================= */

.gallery-buttons {

  display:
    flex;

  gap:
    10px;

  flex-shrink:
    0;

}


.gallery-btn-primary,
.gallery-btn-secondary {

  display:
    inline-flex;

  align-items:
    center;

  justify-content:
    center;

  padding:
    13px 20px;

  border-radius:
    50px;

  text-decoration:
    none;

  font-size:
    13px;

  font-weight:
    700;

  white-space:
    nowrap;

  transition:
    all .3s ease;

}


.gallery-btn-primary {

  background:
    #ffffff;

  color:
    #006b91;

}


.gallery-btn-secondary {

  background:
    rgba(255,255,255,.12);

  color:
    #ffffff;

  border:
    1px solid
    rgba(255,255,255,.3);

}


.gallery-btn-primary:hover,
.gallery-btn-secondary:hover {

  transform:
    translateY(-3px);

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {

  .gallery-grid {

    grid-template-columns:
      repeat(2, 1fr);

    grid-auto-rows:
      250px;

  }

  .gallery-large {

    grid-column:
      span 2;

    grid-row:
      span 2;

  }

  .gallery-wide {

    grid-column:
      span 2;

  }

  .gallery-bottom {

    flex-direction:
      column;

    align-items:
      flex-start;

  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

  .gallery-section {

    padding:
      60px 15px;

  }

  .gallery-grid {

    grid-template-columns:
      1fr;

    grid-auto-rows:
      250px;

  }

  .gallery-large,
  .gallery-wide {

    grid-column:
      span 1;

    grid-row:
      span 1;

  }

  .gallery-overlay {

    transform:
      translateY(0);

  }

  .gallery-overlay h3 {

    font-size:
      18px;

  }

  .gallery-bottom {

    padding:
      25px 20px;

  }

  .gallery-buttons {

    width:
      100%;

    flex-direction:
      column;

  }

  .gallery-btn-primary,
  .gallery-btn-secondary {

    width:
      100%;

  }

}



