/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nuosu+SIL&display=swap');

/* CSS Variables */
:root {
  --primary-color: #005c72;
  --primary-dark: #004556;
  --primary-light: #e6f2f5;
  --accent-color: #3ebcd2;
  --accent-hover: #2ba6bc;
  --accent-cyan: #00b4d8;
  --accent-whatsapp: #25d366;
  --text-dark: #ffffff;
  --text-medium: #334155;
  --text-light: #64748b;
  --text-white: #ffffff;
  --bg-light: #f8fafc;
  --bg-card: #ffffff;
  --border-color: #e2e8f0;
  --font-headings: 'Poppins', sans-serif;
  --font-body: 'Poppins', sans-serif;
  --transition: all 0.3s ease;
  --max-width: 1440px;
  --header-height: 90px;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);

  /* Contact page specific cards */
  --contact-card-bg: #1f2b5b;
  /* Dark indigo */
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  color: var(--text-medium);
  background-color: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-headings);
  color: #ffffff;
  font-weight: 700;
  line-height: 1.3;
}

/* Contrast overrides for light background sections */
.section-header h2,
.section-header h3,
.services-section-title,
.adv-main-title,
.section-title-left,
.pcat-section-title,
.contact-info-section h2,
.info-card h3,
.form-title,
.footer-title,
.brief-card h3,
.feature-card h3,
.process-card h3,
.faq-question span,
.pcard-name,
.home-prod-card h3 {
  color: var(--text-dark);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

button,
input,
textarea {
  font-family: inherit;
  outline: none;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 61px;
  z-index: 999;
  background-color: #00000069;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  border-bottom: 1px solid rgba(255, 255, 255, 0);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  transition: all 0.35s ease;
}

header.scrolled,
header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 61px;
  z-index: 999;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: #713edb26 !important;
  border-bottom: 1px solid rgba(113, 62, 219, 0.35);
  box-shadow: 0 8px 32px rgba(59, 39, 92, 0.3);
  transition: all 0.35s ease;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}

/* Logo Styles */
.logo {
  display: flex;
  align-items: center;
  line-height: 1;
}

.header-logo-img {
  height: 111px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  margin-left: -39px;
  margin-top: -19px;
}

.footer-logo-img {
    height: 118px;
    width: auto;
    object-fit: contain;
    margin-bottom: -11px;
    align-items: flex-start;
    position: relative;
    left: -167px;
}

.logo-main {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: -0.5px;
}

.logo-sub {
  font-size: 16px;
  font-weight: 700;
  color: var(--accent-color);
  position: relative;
  display: inline-block;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-link {
  color: var(--text-white);
  font-weight: 500;
  font-size: 15px;
  padding: 8px 0;
  position: relative;
}

.nav-link:hover {
  color: var(--accent-color);
}

.nav-link.active {
  color: var(--accent-color);
  font-weight: 700;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--accent-color);
  border-radius: 2px;
}

.phone-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: var(--accent-color);
  color: var(--text-white);
  padding: 8px 18px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 4px 10px rgba(62, 188, 210, 0.3);
  transition: var(--transition);
}

.phone-badge:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(62, 188, 210, 0.4);
}

.phone-badge svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 101;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: var(--text-white);
  transition: var(--transition);
}

/* Page Banners (Inner Pages) */
.page-banner {
  height: 320px;
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  color: var(--text-white);
  padding-top: 80px;
  /* offset sticky header */
}

.page-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 45, 56, 0.8) 0%, rgba(0, 24, 30, 0.5) 100%);
}

.page-banner .container {
  position: relative;
  z-index: 2;
}

.page-banner h1 {
  font-size: 48px;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.page-banner h1::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background-color: var(--accent-color);
  border-radius: 2px;
}

.breadcrumb {
  margin-top: 25px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a {
  color: var(--accent-color);
}

.breadcrumb span {
  margin: 0 8px;
  color: rgba(255, 255, 255, 0.4);
}

/* Curved Divider SVG for Banner bottom */
.banner-curve {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
  z-index: 3;
}

.banner-curve svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 50px;
}

.banner-curve .shape-fill {
  fill: var(--bg-light);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--accent-color);
  color: var(--text-white);
  box-shadow: 0 4px 14px rgba(62, 188, 210, 0.4);
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(62, 188, 210, 0.5);
}

.btn-secondary {
  background-color: var(--text-white);
  color: var(--primary-color);
  box-shadow: var(--shadow);
}

.btn-secondary:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Footer Section */
footer {
  background-color: var(--primary-color);
  color: var(--text-white);
  padding: 60px 0 20px 0;
  position: relative;
  font-size: 14px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1fr 1.8fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}

.footer-logo .logo-main {
  font-size: 22px;
  font-weight: 800;
}

.footer-logo .logo-sub {
  font-size: 14px;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
  max-width: 320px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  transition: var(--transition);
}

.social-icon:hover {
  background-color: var(--accent-color);
  transform: translateY(-3px);
}

.footer-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text-white);
  position: relative;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
  color: var(--accent-color);
  padding-left: 5px;
}

.footer-contact-info p {
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact-info svg {
  width: 16px;
  height: 16px;
  fill: var(--accent-color);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =====================================================================
   Hero Section — Redesigned to match reference image
   ===================================================================== */
.hero-section {
  position: relative;
  min-height: 680px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  color: #ffffff;
  padding: 100px 0 200px;
  /* bottom padding leaves space for wave layers */
  overflow: visible;
  /* allow dual-wave to extend below */
}

/* Cinematic Zoom Background container with Dual Image Slideshow & Dark Shade Overlay */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

/* Cinematic Zoom & Blur Transformed Background container */
.hero-bg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  transform-origin: center center;
  opacity: 0;
  animation: bgBlurSlideFade 9s ease-in-out infinite, blurCinematicZoom 16s ease-in-out infinite alternate;
  will-change: transform, opacity, filter;
}

@keyframes bgBlurSlideFade {
  0% {
    opacity: 0;
    filter: blur(14px);
    transform: scale(1.12);
  }

  14% {
    /* 1.2s smooth blur transform dissolve in */
    opacity: 1;
    filter: blur(0px);
    transform: scale(1.02);
  }

  28% {
    opacity: 1;
    filter: blur(0px);
  }

  38% {
    /* 1.0s blur transform dissolve out */
    opacity: 0;
    filter: blur(10px);
    transform: scale(1.08);
  }

  100% {
    opacity: 0;
    filter: blur(14px);
  }
}

@keyframes blurCinematicZoom {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.08);
  }
}

/* Hero Slide Items Carousel */
.hero-slides-wrapper {
  position: relative;
  min-height: 280px;
}

.hero-slide-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 1.0s cubic-bezier(0.16, 1, 0.3, 1), transform 1.0s cubic-bezier(0.16, 1, 0.3, 1);
  transform: translateY(15px);
}

.hero-slide-item.hs-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.hero-desc {
  font-size: 16px;
  line-height: 1.6;
  color: #ffffff;
  margin-bottom: 35px;
  max-width: 640px;
}

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

.hero-slide-item.hs-active .hero-title {
  animation: heroFadeUp 1.0s ease-in-out forwards;
}

.hero-slide-item.hs-active .logo-wave-decor {
  animation: heroFadeUp 1.0s ease-in-out 0.15s forwards;
}

.hero-slide-item.hs-active .hero-desc {
  animation: heroFadeUp 1.0s ease-in-out 0.3s forwards;
}

.hero-slide-item.hs-active .hero-buttons {
  animation: heroFadeUp 1.0s ease-in-out 0.6s forwards;
}

@keyframes heroFadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-120px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-bg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  transform-origin: center center;
  opacity: 0;
  transform: scale(1.08) translateX(30px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.hero-bg-layer.active-bg-slide {
  opacity: 1 !important;
  transform: scale(1) translateX(0) !important;
}

.hero-bg-layer.slide-1 {
  background-image:
    linear-gradient(180deg, rgba(0, 15, 25, 0.68) 0%, rgba(0, 10, 20, 0.75) 100%),
    url('../images/beautiful-tropical-beach-front-hotel-resort-with-swimming-pool-paradise-destination-vacations-ge.jpg');
}

.hero-bg-layer.slide-2 {
  background-image:
    linear-gradient(180deg, rgba(0, 15, 25, 0.68) 0%, rgba(0, 10, 20, 0.75) 100%),
    url('../images/smiling-waving-girl-from-chic-spa-pool-positive-pool-vibes.jpg');
}

.hero-bg-layer.slide-3 {
  background-image:
    linear-gradient(180deg, rgba(0, 15, 25, 0.68) 0%, rgba(0, 10, 20, 0.75) 100%),
    url('../images/view-aqua-park-summer (1).jpg');
}

@keyframes bgSlideFadeWhite {
  0% {
    opacity: 0;
  }

  12% {
    /* 1.1s slow fade in from white */
    opacity: 1;
  }

  28% {
    /* display image */
    opacity: 1;
  }

  38% {
    /* 1.0s slow fade out revealing white color */
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

@keyframes cinematicZoom {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.08);
  }
}

/* Two-column layout (55% / 45%) */
.hero-container {
  display: grid;
  grid-template-columns: 55% 45%;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
  padding-bottom: 95px;
  position: relative;
}

/* ---- LEFT: text content ---- */
.hero-content {
  width: 100%;
  max-width: 680px;
  z-index: 10;
  position: relative;
}

.hero-title {
  font-size: 68px;
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  overflow: hidden;
}

.hero-section {
  position: relative;
  height: 664px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  color: #ffffff;
  padding: 110px 0 110px;
  overflow: hidden;
  background-color: #001219;
  /* Dark deep ocean base color — NO white flash */
}

/* Word Reveal Typography Animation — Slow & Smooth */
.word-reveal-span {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%) rotateX(-90deg);
  animation: wordRevealSlow 2.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  color: #ffffff;
}

@keyframes wordRevealSlow {
  0% {
    opacity: 0;
    transform: translateY(120%) rotateX(-90deg);
    filter: blur(8px);
  }

  40% {
    opacity: 0.7;
    filter: blur(2px);
  }

  100% {
    opacity: 1;
    transform: translateY(0) rotateX(0deg);
    filter: blur(0px);
  }
}

@keyframes fastTextFade {
  0% {
    opacity: 0.35;
    transform: translateY(6px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.logo-wave-decor {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 24px;
}

/* Make black line/dots in Group 7.png render as white when on dark backgrounds or header sections */
.hero-section .logo-wave-decor img,
.about-hero-banner .logo-wave-decor img,
.services-hero-banner .logo-wave-decor img,
.portfolio-hero-banner .logo-wave-decor img,
.contact-hero-banner .logo-wave-decor img,
.about-brief-section .logo-wave-decor img,
.advantages-section .logo-wave-decor img,
.about-teal-section .logo-wave-decor img,
.page-banner .logo-wave-decor img,
.dark-bg .logo-wave-decor img {
  filter: brightness(0) invert(1);
}

.hero-desc {
  font-size: 16px;
  line-height: 1.6;
  color: #ffffff;
  margin-bottom: 40px;
  max-width: 620px;
  animation: fastTextFade 1.8s ease-in-out infinite alternate;
  animation-delay: 0.2s;
}

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

/* Primary CTA – violet pill */
.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #4b2d8e 0%, #3a1f6e 100%);
    color: #ffffff;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgb(0 0 0 / 50%);
    transition: all 0.3s ease;
    border: none;
}

.btn-hero-primary:hover {
  background: linear-gradient(135deg, #5c38a8 0%, #4b2d8e 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(59, 31, 110, 0.65);
  color: #ffffff;
}

/* Secondary CTA – white pill outline */
.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  background: #005D73;
  color: #ffffff;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
  transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
  background: #004558;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  color: #ffffff;
}

/* ---- RIGHT: Curved Rectangle Image Frame Card ---- */
.hero-image-frame {
  width: 60%;
  max-width: 520px;
  justify-self: end;
  z-index: 10;
  position: relative;
}

.hero-frame-card {
  width: 100%;
  border-radius: 32px 32px 32px 32px;
  overflow: hidden;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.5),
    0 0 0 3px rgba(255, 255, 255, 0.18);
  background: #0a1628;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero-frame-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow:
    0 32px 70px rgba(0, 0, 0, 0.6),
    0 0 0 3px rgba(255, 255, 255, 0.28);
}

.hero-frame-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.hero-frame-card:hover .hero-frame-img {
  transform: scale(1.04);
}

/* ---- Stats Pill Bar (Overlapping Pool Image on the Right) ---- */
.hero-stats-bar {
  position: absolute;
  bottom: 60px;
  right: 40px;
  width: 660px;
  max-width: 100%;
  z-index: 25;
}

.hero-stats-inner {
  display: flex;
  align-items: center;
  height: 64px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  border-radius: 40px;
  padding: 0 24px;
  gap: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  pointer-events: auto;
}

.hstat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}

/* Last item: no flex-1, distinct background overlap with image card */
.hstat-item.ongoing-item {
  flex: 0 0 auto;
  padding-left: 12px;
}

.hstat-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hstat-icon img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.hstat-text {
  display: flex;
  flex-direction: column;
}

.hstat-label {
  font-size: 11.5px;
  color: #ffffff;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.2px;
  white-space: nowrap;
}

.hstat-num {
  font-size: 17px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.3px;
}

.hstat-divider {
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.35);
  margin: 0 16px;
  flex-shrink: 0;
}

/* ---- Signature Two-Layer Violet + Teal Wave Bottom ---- */
.hero-wave-bottom {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  z-index: 5;
  overflow: hidden;
  line-height: 0;
  pointer-events: none;
  filter: drop-shadow(0 -4px 12px rgba(0, 0, 0, 0.3));
}

.hero-wave-bottom svg {
  display: block;
  width: 100%;
  height: 130px;
  animation: waveUndulate 7s ease-in-out infinite;
  transform-origin: bottom center;
  will-change: transform;
}

/* Legacy classes kept for compat */
.hero-wave-divider-home {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  z-index: 5;
  overflow: hidden;
  line-height: 0;
  pointer-events: none;
}

.hero-wave-divider-home svg {
  display: block;
  width: 100%;
  animation: waveUndulate 7s ease-in-out infinite;
  transform-origin: bottom center;
  will-change: transform;
}

/* Stats Banner Styling (legacy, kept for other pages) */
.stats-banner-wrapper {
  position: absolute;
  bottom: 60px;
  left: 0;
  width: 100%;
  z-index: 25;
  display: none;
  /* hidden in favour of new hero-stats-bar */
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 15px;
}

.stat-icon-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.stat-icon-wrapper.orange {
  background-color: rgba(238, 155, 0, 0.1);
  color: #ee9b00;
}

.stat-icon-wrapper.star {
  background-color: rgba(202, 103, 2, 0.1);
  color: #ca6702;
}

.stat-icon-wrapper.chart {
  background-color: rgba(187, 62, 3, 0.1);
  color: #bb3e03;
}

.stat-text {
  display: flex;
  flex-direction: column;
}

.stat-label {
  font-size: 13px;
  text-transform: capitalize;
  color: var(--text-light);
  font-weight: 500;
}

.stat-value {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  font-family: var(--font-headings);
}

.stat-divider {
  width: 1px;
  height: 40px;
  background-color: var(--border-color);
}

/* Hero Bottom Wave Shape (legacy) */
.hero-curve {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
  z-index: 5;
}

.hero-curve svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 70px;
}

.hero-curve .shape-fill {
  fill: var(--bg-light);
}


/* Home Intro / Features Section */
.home-intro-section {
  padding: 100px 0;
  background-color: var(--bg-light);
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px auto;
}

.section-header .subtitle {
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block;
  margin-bottom: 10px;
}

.section-header h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

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

.brief-card {
  background-color: var(--bg-card);
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-top: 4px solid transparent;
}

.brief-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--accent-color);
}

.brief-card-icon {
  font-size: 40px;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.brief-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.brief-card p {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 20px;
}

.read-more {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 8px;
}

.read-more:hover {
  color: var(--accent-color);
}

/* Adaptive mobile layout adjustments for index.html */
@media screen and (max-width: 992px) {
  .hero-section {
    padding: 140px 0 220px 0;
  }

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

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

  .logo-wave-decor {
    justify-content: center;
  }

  .hero-buttons {
    justify-content: center;
  }

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

  .stats-banner {
    flex-direction: column;
    gap: 20px;
    border-radius: 20px;
    padding: 25px;
  }

  .stat-divider {
    width: 80%;
    height: 1px;
  }
}

/* About Us Section Styles */
.about-brief-section {
  padding: 90px 0;
  background-color: var(--bg-light);
}

.grid-container-2col {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: flex-start;
}

.grid-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text-col .subtitle {
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block;
  margin-bottom: 10px;
}

.about-text-col h2 {
  font-size: 38px;
  margin-bottom: 25px;
}

.about-text-col .desc-main {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.about-text-col .desc-sub {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 30px;
}

.about-img-col .img-wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--accent-color);
}

.about-img-col img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: var(--transition);
}

.about-img-col img:hover {
  transform: scale(1.03);
}

/* Performance Section / Progress Bars & Counters */
.performance-section {
  background-color: var(--primary-color);
  color: var(--text-white);
  padding: 90px 0;
}

.performance-section h2,
.performance-section h3,
.performance-section p {
  color: var(--text-white);
}

.perf-title {
  font-size: 36px;
  margin-bottom: 15px;
}

.perf-desc {
  color: rgba(255, 255, 255, 0.8) !important;
  margin-bottom: 40px;
}

/* Skill Bars */
.skill-bar-wrapper {
  margin-bottom: 25px;
}

.skill-info {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.progress-bar {
  width: 100%;
  height: 6px;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 3px;
  overflow: hidden;
}

.progress-bar .progress {
  display: block;
  height: 100%;
  background-color: var(--accent-color);
  border-radius: 3px;
  transition: width 1.5s cubic-bezier(0.1, 1, 0.1, 1);
}

/* Counters Grid inside Performance */
.counters-col {
  display: flex;
  align-items: center;
  justify-content: center;
}

.counters-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  width: 100%;
}

.counter-card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  transition: var(--transition);
}

.counter-card:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.counter-card .counter-num {
  font-size: 44px;
  font-weight: 800;
  color: var(--accent-color);
  display: block;
  margin-bottom: 5px;
  font-family: var(--font-headings);
}

.counter-card .counter-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

/* Clients Brand Section */
.clients-section {
  padding: 90px 0;
  background-color: #f1f5f9;
}

.client-logos-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.client-logo-item {
  flex: 1;
  min-width: 150px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-card);
  box-shadow: var(--shadow);
  border-radius: 10px;
  font-family: var(--font-headings);
  font-size: 18px;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
}



.client-logo-item:hover {
  color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: scale(1.05);
}

/* Call To Action Banner */
.cta-banner-section {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 90px 0;
  text-align: center;
  color: var(--text-white);
}

.cta-banner-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 45, 56, 0.85);
}

.cta-container {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.cta-subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
  line-height: 1.8;
}

.cta-title {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 35px;
  letter-spacing: -0.5px;
}

/* Adaptive mobile layout adjustments for about.html */
@media screen and (max-width: 992px) {

  .about-brief-section .grid-container,
  .performance-section .grid-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .about-img-col {
    order: -1;
  }

  .about-img-col img {
    height: 320px;
  }

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

  .counters-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 480px) {
  .about-text-col h2 {
    font-size: 28px;
  }

  .perf-title {
    font-size: 28px;
  }

  .cta-title {
    font-size: 28px;
  }

  .counters-grid {
    grid-template-columns: 1fr;
  }
}

/* Services Page Styles */
.services-intro-section {
  padding: 90px 0;
  background-color: var(--bg-light);
}

.services-intro-text .subtitle {
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block;
  margin-bottom: 10px;
}

.services-intro-text h2 {
  font-size: 38px;
  margin-bottom: 25px;
}

.intro-p {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.intro-sub-p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 30px;
}

/* Leaf Collage Styling */
.collage-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.collage-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
  height: 440px;
  margin: 0 auto;
}

.leaf-shape {
  position: absolute;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.25);
  transition: transform 0.4s ease;
}

.leaf-shape img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.leaf-shape:hover img {
  transform: scale(1.05);
}

.leaf-shape.s1 {
  width: 310px;
  height: 380px;
  border-radius: 24px;
  border: 4px solid #3ebcd2;
  top: 0;
  left: 0;
  z-index: 2;
}

.leaf-shape.s2 {
  width: 230px;
  height: 230px;
  border-radius: 20px;
  border: 4px solid #ffffff;
  bottom: 0;
  right: 0;
  z-index: 5;
}

/* Advantages Section */
.advantages-section {
  padding: 90px 0;
  background: linear-gradient(rgba(241, 245, 249, 0.9), rgba(241, 245, 249, 0.9)),
    url('https://images.unsplash.com/photo-1576013551627-0cc20b96c2a7?auto=format&fit=crop&w=1920&q=80') center center/cover;
}

.advantages-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.feature-card {
  background-color: var(--bg-card);
  padding: 30px;
  border-radius: 15px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.feature-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.feature-header h3 {
  font-size: 18px;
  color: var(--primary-color);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 18px;
}

.feature-card p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
}

.advantages-text-col h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.advantages-para {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.7;
}

.advantages-para-sub {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* We Stand For / Categories Section */
.we-stand-section {
  padding: 90px 0;
  background-color: var(--bg-light);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.category-card {
  background-color: var(--bg-card);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.cat-header {
  background-color: var(--primary-color);
  color: var(--text-white);
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cat-header h3 {
  font-size: 15px;
  color: var(--text-white);
  font-weight: 600;
  letter-spacing: -0.2px;
}

.cat-arrow {
  color: var(--accent-color);
  font-size: 22px;
  display: flex;
}

.cat-arrow:hover {
  color: var(--text-white);
}

.cat-img-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.cat-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cat-icon-floating {
  position: absolute;
  bottom: -20px;
  left: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: var(--shadow);
  border: 2px solid var(--text-white);
  z-index: 5;
}

.cat-desc {
  padding: 35px 24px 24px 24px;
  flex-grow: 1;
}

.cat-desc p {
  font-size: 13.5px;
  color: var(--text-light);
  line-height: 1.6;
}

/* Dots decoration styling */
.logo-wave-decor .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #cbd5e1;
  display: inline-block;
  margin-right: 4px;
}

.logo-wave-decor .dot.active {
  background-color: var(--accent-color);
  width: 18px;
  border-radius: 4px;
}

/* Responsive adjustments for services.html */
@media screen and (max-width: 992px) {

  .services-intro-section .grid-container,
  .advantages-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .services-intro-text,
  .advantages-text-col {
    text-align: center;
  }

  .collage-col {
    order: -1;
  }

  .categories-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 40px auto 0 auto;
  }
}

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

  .collage-wrapper {
    height: 320px;
  }

  .leaf-shape {
    width: 200px;
    height: 250px;
  }
}

/* Portfolio Page Styles */
.portfolio-section-content {
  padding: 80px 0;
  background-color: var(--bg-light);
}

.portfolio-filters-wrapper {
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
}

.portfolio-filters {
  display: inline-flex;
  background-color: var(--bg-card);
  padding: 8px;
  border-radius: 40px;
  box-shadow: var(--shadow);
  gap: 10px;
  border: 1px solid var(--border-color);
  flex-wrap: wrap;
  justify-content: center;
}

.filter-btn {
  background: #ffffff;
  border: 1.5px solid #005D73;
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  color: #005D73;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover {
  background-color: rgba(0, 93, 115, 0.08);
}

.filter-btn.active {
  background-color: #005D73 !important;
  background: #005D73 !important;
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(0, 93, 115, 0.3);
  border-color: #005D73 !important;
}

/* Portfolio Page Hero Wave Overlay */
.portfolio-hero-banner {
  position: relative;
  min-height: 480px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  color: #ffffff;
  padding-top: 100px;
  padding-bottom: 100px;
}

.portfolio-wave-overlay {
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 5;
  filter: drop-shadow(0 -5px 10px rgba(0, 0, 0, 0.15));
}

.portfolio-wave-overlay svg {
  display: block;
  width: 100%;
  height: 70px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  transition: var(--transition);
}

.portfolio-item {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.portfolio-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background-color: var(--bg-card);
  height: 280px;
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.portfolio-card:hover img {
  transform: scale(1.08);
}

/* Badge tags on portfolio cards */
.badge {
  position: absolute;
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 700;
  border-radius: 3px;
  z-index: 5;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-left {
  bottom: 12px;
  left: 12px;
  background-color: rgba(15, 23, 42, 0.7);
  color: var(--text-white);
}

.badge-right {
  top: 12px;
  right: 12px;
  background-color: var(--text-white);
  color: var(--primary-color);
  box-shadow: var(--shadow);
  border-radius: 20px;
  font-size: 9px;
  padding: 3px 8px;
}

/* Official Logo watermark top-right on portfolio cards */
.portfolio-watermark {
  position: absolute;
  top: 0;
  right: 0;
  background: #ffffff;
  padding: 8px 12px;
  border-radius: 0 0 0 12px;
  box-shadow: -2px 2px 6px rgba(0, 0, 0, 0.15);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-watermark img {
  height: 26px !important;
  width: auto !important;
  object-fit: contain;
}

/* Scroll Icon Group 7 styling */
.scroll-icon-img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  vertical-align: middle;
  transition: transform 0.3s ease;
}

.cat-arrow:hover .scroll-icon-img {
  transform: translateX(4px);
}

.scroll-indicator-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 35px;
}

.scroll-indicator-bar img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  cursor: pointer;
}

/* About Badge Pill */
.about-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #ffffff;
  color: var(--primary-color);
  padding: 6px 16px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: var(--shadow);
  border: 1.5px solid var(--accent-color);
  margin-bottom: 12px;
}

.about-badge-pill img {
  height: 18px;
  width: auto;
}

/* Hover overlay slide up info */
.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(360deg, rgba(0, 92, 114, 0.9) 0%, rgba(0, 92, 114, 0.4) 60%, rgba(0, 0, 0, 0) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: var(--transition);
  z-index: 3;
}

.portfolio-card {
  cursor: pointer;
}

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

.portfolio-overlay h4 {
  color: var(--text-white);
  font-size: 18px;
  margin-bottom: 5px;
  transform: translateY(15px);
  transition: transform 0.3s ease;
}

.portfolio-overlay p {
  color: var(--accent-color);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transform: translateY(15px);
  transition: transform 0.3s ease 0.1s;
}

.portfolio-card:hover .portfolio-overlay h4,
.portfolio-card:hover .portfolio-overlay p {
  transform: translateY(0);
}

/* ---- Portfolio Lightbox Modal (Full-Screen Blurred View) ---- */
.portfolio-lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 14, 24, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 20px;
  overflow: hidden;
}

.lightbox-bg-backdrop {
  position: absolute;
  top: -10%;
  left: -10%;
  width: 120%;
  height: 120%;
  background-size: cover;
  background-position: center;
  filter: blur(60px) brightness(0.32) saturate(1.6);
  transform: scale(1.15);
  transition: background-image 0.5s ease-in-out;
  z-index: 0;
  pointer-events: none;
}

.portfolio-lightbox-modal.lb-active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content-box {
  position: relative;
  z-index: 2;
  max-width: 92vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: scale(0.85);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-lightbox-modal.lb-active .lightbox-content-box {
  transform: scale(1);
}

.lightbox-img-wrapper {
  position: relative;
  max-width: 100%;
  max-height: 78vh;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.75), 0 0 0 2.5px rgba(255, 255, 255, 0.22);
  background: #000;
}

.lightbox-img-wrapper img {
  max-width: 100%;
  max-height: 78vh;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  transition: opacity 0.25s ease;
}

.lightbox-caption-bar {
  margin-top: 16px;
  text-align: center;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.lightbox-caption-title {
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.3px;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.lightbox-caption-sub {
  font-size: 13px;
  font-weight: 700;
  color: #3ebcd2;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 0;
}

.lightbox-counter-badge {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.15);
  padding: 4px 14px;
  border-radius: 20px;
  margin-top: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Close & Nav buttons */
.lightbox-btn {
  position: absolute;
  background: rgba(255, 255, 255, 0.15);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 100000;
}

.lightbox-btn:hover {
  background: #3ebcd2;
  color: #00121a;
  border-color: #3ebcd2;
  transform: scale(1.1);
}

.lightbox-close-btn {
  top: 24px;
  right: 32px;
  width: 48px;
  height: 48px;
  font-size: 22px;
}

.lightbox-nav-btn {
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  font-size: 24px;
}

.lightbox-nav-btn:hover {
  transform: translateY(-50%) scale(1.1);
}

.lightbox-prev-btn {
  left: 32px;
}

.lightbox-next-btn {
  right: 32px;
}

@media screen and (max-width: 768px) {
  .lightbox-close-btn {
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .lightbox-nav-btn {
    width: 42px;
    height: 42px;
    font-size: 20px;
  }

  .lightbox-prev-btn {
    left: 10px;
  }

  .lightbox-next-btn {
    right: 10px;
  }

  .lightbox-caption-title {
    font-size: 18px;
  }
}

/* Responsive adjustments for portfolio.html */
@media screen and (max-width: 1200px) {
  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 900px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 600px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }

  .portfolio-card {
    height: 250px;
  }
}

/* Contact Page Styles */
.contact-info-section {
  padding: 80px 0;
  background-color: var(--bg-light);
}

.info-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.info-card {
  background-color: var(--contact-card-bg);
  color: var(--text-white);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 92, 114, 0.25);
}

.info-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--accent-color);
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.info-card h3 {
  font-size: 22px;
  color: var(--text-white);
  margin-bottom: 15px;
}

.info-card p {
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

.info-card p a {
  color: var(--text-white);
}

.info-card p a:hover {
  color: var(--accent-color);
}

/* Contact action link (phone number, email text) */
.contact-link-action {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff !important;
  letter-spacing: 0.2px;
}

/* Row of action buttons below each card detail */
.contact-action-row {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
}

/* Base action button style */
.contact-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  letter-spacing: 0.2px;
  cursor: pointer;
  white-space: nowrap;
}

/* Call Now — teal */
.call-btn {
  background-color: #005D73;
  border: 1.5px solid #005D73;
  color: #ffffff;
}

.call-btn:hover {
  background-color: #3ebcd2;
  border-color: #3ebcd2;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 93, 115, 0.4);
}

/* WhatsApp — green */
.whatsapp-btn {
  background-color: #005D73;
  border: 1.5px solid #005D73;
  color: #ffffff;
}

.whatsapp-btn:hover {
  background-color: #3ebcd2;
  border-color: #3ebcd2;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 93, 115, 0.4);
}

.whatsapp-btn img {
  filter: brightness(0) invert(1);
}

.whatsapp-btn:hover img {
  filter: brightness(0) invert(1);
}

/* Send Email — amber */
.mail-btn {
  background-color: #005D73;
  border: 1.5px solid #005D73;
  color: #ffffff;
}

.mail-btn:hover {
  background-color: #3ebcd2;
  border-color: #3ebcd2;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 93, 115, 0.4);
}

/* View on Map — red-pink */
.map-btn {
  background-color: #005D73;
  border: 1.5px solid #005D73;
  color: #ffffff;
}

.map-btn:hover {
  background-color: #3ebcd2;
  border-color: #3ebcd2;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 93, 115, 0.4);
}

/* Form and Map Layout */
.form-map-section {
  padding: 80px 0;
  background-color: #f1f5f9;
}

.form-map-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.form-wrapper {
  background-color: var(--bg-card);
  padding: 50px 40px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.form-title {
  font-size: 28px;
  color: var(--primary-color);
  margin-bottom: 30px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.form-row-half {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.form-row-half .form-group {
  flex: 1;
  margin-bottom: 0;
}

.form-group {
  margin-bottom: 20px;
}

.form-group.full-width {
  width: 100%;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px 24px;
  border-radius: 30px;
  border: 1px solid #cbd5e1;
  font-size: 14px;
  color: #005d73;
  background-color: var(--bg-light);
  transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted, #64748b);
}

.form-group textarea {
  border-radius: 20px;
  resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 4px rgba(62, 188, 210, 0.15);
  background-color: var(--bg-card);
}

.btn-primary-alt {
  background-color: var(--primary-color);
  color: var(--text-white);
  box-shadow: 0 4px 10px rgba(0, 92, 114, 0.2);
  padding: 14px 45px;
  border-radius: 30px;
}

.btn-primary-alt:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 92, 114, 0.3);
}

.form-btn-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

/* Map Wrapper */
.map-wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 4px solid var(--border-color);
}

.map-container {
  width: 100%;
  height: 100%;
  min-height: 450px;
}

/* Responsive adjustments for contact.html */
@media screen and (max-width: 992px) {
  .info-cards-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .form-map-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .map-container {
    min-height: 350px;
  }
}

@media screen and (max-width: 576px) {
  .form-row-half {
    flex-direction: column;
    gap: 20px;
  }

  .form-wrapper {
    padding: 30px 20px;
  }
}

/* WhatsApp Quick Contact Band */
.quick-contact-band {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}

.contact-pill-box {
  display: inline-flex;
  align-items: center;
  background-color: var(--contact-card-bg);
  padding: 12px 30px;
  border-radius: 50px;
  box-shadow: var(--shadow-lg);
  justify-content: space-between;
  gap: 30px;
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
}

.pill-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pill-whatsapp-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.pill-phone {
  color: var(--text-white);
  font-weight: 700;
  font-size: 18px;
  font-family: var(--font-headings);
}

.pill-action-btn {
  background-color: var(--text-white);
  color: var(--contact-card-bg);
  padding: 8px 24px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 14px;
  transition: var(--transition);
}

.pill-action-btn:hover {
  background-color: var(--accent-color);
  color: var(--text-white);
  transform: translateY(-2px);
}

/* ==========================================================================
   Services Page Refined Styles (Matching Reference Mockup Exactly)
   ========================================================================== */

/* Purple Phone Badge Header CTA */
.purple-phone-badge,
.phone-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #2e1a53;
  color: #ffffff;
  padding: 9px 22px;
  border-radius: 30px;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 600 !important;
  font-size: 15px;
  box-shadow: 0 4px 12px rgba(46, 26, 83, 0.4);
  transition: var(--transition);
}

.purple-phone-badge:hover {
  background-color: #3b2269;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(46, 26, 83, 0.5);
  color: #ffffff;
}

.purple-phone-badge img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

/* Services Hero Banner */
.services-hero-banner,
.about-hero-banner,
.portfolio-hero-banner {
  position: relative;
  min-height: 440px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  color: #ffffff;
  padding-top: 110px;
  padding-bottom: 130px;
  overflow: hidden;
}

.hero-text-block {
  max-width: 600px;
}

.services-page-title {
  font-size: 64px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 10px;
}

.breadcrumb-custom {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-top: 15px;
}

.breadcrumb-custom a {
  color: #ffffff;
}

.breadcrumb-custom span {
  margin: 0 6px;
  color: rgba(255, 255, 255, 0.7);
}

.hero-curve-bottom {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 5;
}

.hero-curve-bottom svg {
  display: block;
  width: 100%;
  height: 60px;
}

/* About Ocean Pools India (Teal Section) */
.about-teal-section {
  position: relative;
  background: linear-gradient(135deg, #005d73 0%, #004556 100%);
  color: #ffffff;
  padding: 90px 0 120px 0;
  overflow: hidden;
}

.purple-accent-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at 100% 0%, rgba(59, 32, 99, 0.45) 0%, rgba(0, 93, 115, 0) 70%);
  pointer-events: none;
}

.grid-container-2col {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 3;
}

.teal-section-title {
  font-size: 48px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 25px;
  letter-spacing: -0.5px;
}

.teal-desc {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 35px;
}

.purple-contact-btn {
  display: inline-block;
  background-color: #005d73;
  color: #ffffff;
  padding: 13px 36px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  transition: var(--transition);
}

.purple-contact-btn:hover {
  background-color: #3b2069;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
  color: #ffffff;
}

.teal-image-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.leaf-collage-graphic {
  width: 100%;
  max-width: 540px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.3));
  transition: transform 0.4s ease;
}

.leaf-collage-graphic:hover {
  transform: scale(1.02);
}

.teal-curve-bottom {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 5;
}

.teal-curve-bottom svg {
  display: block;
  width: 100%;
  height: 60px;
}

/* Pool Features & Advantages Section */
.features-advantages-section {
  padding: 50px 0 60px 0;
  background-color: #f4f7f9;
}

/* Row 1: Design card (left, narrow) + Title/Desc block (right, wide) */
.adv-top-row {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 28px;
}

/* Row 2: 3 equal cards */
.adv-bottom-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.adv-text-block {
  text-align: right;
}

.adv-main-title {
  font-size: 40px;
  font-weight: 800;
  color: #005d73;
  line-height: 1.15;
  margin-bottom: 18px;
}

.adv-main-desc {
  font-size: 12px;
  line-height: 1.75;
  color: #475569;
  max-width: 600px;
  margin-left: auto;
}

.adv-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f0;
  transition: var(--transition);
}

.adv-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0, 93, 115, 0.12);
  border-color: #3ebcd2;
}

/* Design card in top row gets a slightly highlighted border */
.adv-card-design {
  border-color: #3ebcd2;
  background: #f0fdfa;
}

.adv-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
}

.adv-card-header h3 {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
}

.adv-icon-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid #3ebcd2;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f0fdfa;
  flex-shrink: 0;
}

.adv-icon-circle img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.adv-card-desc {
  font-size: 13.5px;
  line-height: 1.65;
  color: #64748b;
}


/* =====================================================================
   We stands for! / Service Cards — Redesigned to match reference image
   ===================================================================== */
.we-stands-for-section {
  padding: 100px 0;
  background-color: #ffffff;
}

.section-services-header {
  margin-bottom: 45px;
}

.section-services-header .services-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.services-subtitle-dots {
  display: flex;
  gap: 4px;
  align-items: center;
}

.services-subtitle-dots span {
  width: 5px;
  height: 5px;
  background: #3ebcd2;
  border-radius: 50%;
  display: inline-block;
}

.services-subtitle-line {
  display: inline-block;
  width: 32px;
  height: 2px;
  background: #0f172a;
  vertical-align: middle;
  margin-left: 4px;
}

.section-title-left {
  font-size: 38px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0;
}

/* 3-column grid for home page, overridden to 2x2 on services page */
.stand-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.stand-cards-grid.grid-2x2 {
  grid-template-columns: repeat(2, 1fr);
}

/* Card wrapper */
.stand-card {
  background: #005d73;
  /* Outer dark teal frame matching reference */
  border-radius: 24px 24px 36px 36px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 93, 115, 0.2);
  border: none;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 8px 8px 12px 8px;
}

.stand-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 42px rgba(0, 93, 115, 0.32);
}

.see-more-services-btn {
  transition: all 0.35s ease;
}

.see-more-services-btn:hover {
  background: #005d73 !important;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 24px rgba(43, 23, 74, 0.35) !important;
  color: #ffffff !important;
}

/* Teal header topbar */
.stand-card-topbar {
  background: transparent;
  color: #ffffff;
  padding: 12px 14px 10px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 50px;
}

.stand-card-topbar h3 {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  flex: 1;
  padding-right: 10px;
}

/* Arrow circle button on right of topbar */
.stand-arrow-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0;
  transition: background 0.25s ease, transform 0.25s ease;
}

.stand-arrow-btn:hover {
  background: rgba(255, 255, 255, 0.45);
  transform: scale(1.12);
}

.stand-arrow-btn img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: block;
  margin: auto;
  filter: brightness(0) invert(1);
}

/* Media area inside square box frame */
.stand-card-media {
  position: relative;
  flex: 1;
  border-radius: 18px;
  overflow: hidden;
}

/* Circular icon badge floating over top-left of image */
.stand-floating-icon {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(0, 75, 95, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 2px solid rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  z-index: 6;
  transition: transform 0.3s ease;
}

.stand-card:hover .stand-floating-icon {
  transform: scale(1.08);
}

.stand-floating-icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* Main card image inside square frame */
.stand-card-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  padding: 24px;
  display: block;
  border-radius: 42px 42px 42px 42px;
  transition: transform 0.45s ease;
}

.stand-card:hover .stand-card-img {
  transform: scale(1.04);
}

/* Bottom white description overlay box */
.stand-desc-overlay {
  position: relative;
  z-index: 4;
  background: #ffffff;
  border-radius: 16px;
  padding: 12px 18px;
  margin: -95px 14px 12px 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 93, 115, 0.1);
}

.stand-desc-overlay p {
  font-size: 12px;
  line-height: 1.6;
  color: #334155;
}

.stand-desc-overlay p {
  font-size: 12.5px;
  line-height: 1.65;
  color: #475569;
}

/* Carousel Navigation Buttons & Pagination */
.carousel-nav-btn:hover {
  background: #004859 !important;
  transform: translateY(-50%) scale(1.1) !important;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35) !important;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #cbd5e1;
  display: inline-block;
  cursor: pointer;
  transition: all 0.4s ease;
}

.carousel-dot.active {
  background-color: #3ebcd2;
  transform: scale(1.25);
}

.carousel-wave-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ffffff;
  padding: 5px 14px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.carousel-wave-badge img {
  width: 20px;
  border-radius: 4px;
}

.scroll-group-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  margin-left: 6px;
}

/* Services Page Responsive Rules */
@media screen and (max-width: 992px) {
  .grid-container-2col {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .teal-section-title {
    font-size: 38px;
  }

  .advantages-upper-row {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .adv-main-desc {
    margin: 0 auto;
  }

  .advantages-lower-row,
  .stand-cards-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .services-page-title {
    font-size: 46px;
  }
}

/* ==========================================================================
   About Us Page Refined Styles (Matching Reference Mockup Exactly)
   ========================================================================== */

/* About Hero Banner */
.about-hero-banner,
.services-hero-banner,
.portfolio-hero-banner,
.contact-hero-banner,
.page-banner {
  position: relative;
  height: 320px;
  min-height: 320px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  color: #ffffff;
  padding-top: 60px;
  padding-bottom: 40px;
}

.about-page-title {
  font-size: 64px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 10px;
}

.about-hero-curve {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 5;
}

.about-subtitle-uppercase {
  color: #3ebcd2;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block;
}

/* About Featured Image Frame */
.about-featured-frame {
  width: 100%;
  max-width: 458px;
  border-radius: 24px;
  overflow: hidden;
  transition: transform 0.4s ease;
}

.about-featured-frame:hover {
  transform: scale(1.02);
}

.about-featured-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

/* About Performance Section */
.about-performance-section {
  background: linear-gradient(135deg, #0b1d28 0%, #003644 100%);
  color: #ffffff;
  padding: 100px 0;
  position: relative;
}

.perf-title-white {
  font-size: 42px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 18px;
  line-height: 1.15;
  margin-top: -67px;
}

.perf-desc-light {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 35px;
}

.about-counters-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.counter-card-glass {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 32px 20px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.counter-card-glass:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-6px);
  border-color: #3ebcd2;
  box-shadow: 0 12px 24px rgba(62, 188, 210, 0.2);
}

.counter-card-glass .counter-num {
  font-size: 46px;
  font-weight: 800;
  color: #3ebcd2;
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-headings);
}

.counter-card-glass .counter-label {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* Clean Stat Counter Item without dark border box matching Image 2 */
.counter-item-clean {
  padding: 20px 10px;
  text-align: left;
}

.counter-item-clean .counter-num {
  font-size: 56px;
  font-weight: 800;
  color: #ffffff;
  display: block;
  margin-bottom: 6px;
  line-height: 1;
  font-family: var(--font-headings);
}

.counter-item-clean .counter-label {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  line-height: 1.4;
}

/* White Clients Section */
.clients-section-white {
  padding: 90px 0;
  background-color: #eaf6f8;
  position: relative;
  overflow: hidden;
}

.clients-section-white .client-logos-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 30px;
}

.client-logo-item,
.clients-section-white .client-logo-item {
  flex: 0 0 auto;
  display: flex !important;
  align-items: center;
  justify-content: center;
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  padding: 0;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none;
  transition: transform 0.35s ease;
  cursor: pointer;
}

.client-logo-item:hover,
.clients-section-white .client-logo-item:hover {
  transform: translateY(-4px) scale(1.05) !important;
}

.client-logo-item img,
.clients-section-white .client-logo-item img {
  height: 46px !important;
  max-height: 48px !important;
  width: auto !important;
  max-width: 140px !important;
  object-fit: contain !important;
  filter: none !important;
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
  transition: transform 0.35s ease;
}

.clients-section-white .client-logo-item:hover img {
  transform: scale(1.05);
}

/* About Page Responsive Adjustments */
@media screen and (max-width: 992px) {
  .about-page-title {
    font-size: 46px;
  }

  .perf-title-white {
    font-size: 34px;
  }

  .about-counters-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-featured-img {
    height: 300px;
  }
}

@media screen and (max-width: 576px) {
  .about-page-title {
    font-size: 36px;
  }

  .about-counters-grid {
    grid-template-columns: 1fr;
  }

  .perf-title-white {
    font-size: 28px;
    text-align: center;
  }

  .perf-desc-light {
    text-align: center;
  }
}

/* ==========================================================================
   Home Page Refined Styles (Matching Reference Mockup Exactly)
   ========================================================================== */

/* Glass Stats Banner inside Hero Section */
.stats-banner-glass {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  padding: 16px 40px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 820px;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.stats-banner-glass .stat-value {
  color: #ffffff;
  font-size: 24px;
}

.stats-banner-glass .stat-label {
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
}

.stats-banner-glass .stat-divider {
  background-color: rgba(255, 255, 255, 0.25);
}

/* Home Page Hero Wave Divider Overlay - Backward behind content */
.hero-wave-divider-home {
  position: absolute;
  bottom: -22px;
  left: 0;
  width: 100%;
  z-index: 1;
  line-height: 0;
  pointer-events: none;
}

.wave-home-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Mockup Contact Card on Home Page */
.mockup-contact-card {
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  gap: 20px;
  margin-top: 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.mockup-contact-icon-col {
  flex-shrink: 0;
}

.mockup-circle-phone-wrapper {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 2.5px solid #3ebcd2;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f0fdfa;
}

.mockup-circle-phone-wrapper img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.mockup-contact-text-col {
  flex-grow: 1;
}

.mockup-contact-text-col p {
  font-size: 12.5px;
  line-height: 1.6;
  color: #475569 !important;
  margin-bottom: 18px;
}

.mockup-contact-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #f1f5f9;
  padding-top: 14px;
}

.mockup-phone-num {
  font-family: 'Nuosu SIL', serif;
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: 0.5px;
}

.mockup-visit-btn {
  background-color: #005d73;
  color: #ffffff !important;
  padding: 8px 24px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 13px;
  box-shadow: 0 4px 10px rgba(43, 23, 74, 0.25);
  transition: var(--transition);
}

.mockup-visit-btn:hover {
  background-color: #3b2069;
  transform: translateY(-2px);
  color: #ffffff !important;
}

@media screen and (max-width: 992px) {
  .hero-container {
    flex-direction: column;
    gap: 40px;
    padding-bottom: 40px;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image-frame {
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
  }

  .hero-stats-bar {
    position: relative;
    bottom: auto;
    right: auto;
    left: auto;
    transform: none;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin-top: 30px;
    justify-content: center;
  }

  .hero-stats-inner {
    flex-direction: column;
    gap: 20px;
    border-radius: 25px;
    padding: 25px;
  }

  .hstat-divider {
    width: 100%;
    height: 1px;
    margin: 0;
  }

  .hstat-item.ongoing-item {
    padding-left: 0;
  }
}

@media screen and (max-width: 768px) {
  .mockup-contact-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .mockup-contact-footer {
    flex-direction: column;
    gap: 15px;
  }

  .stats-banner-glass {
    flex-direction: column;
    gap: 20px;
    border-radius: 20px;
    padding: 25px;
  }
}

  /* ==========================================================================
   Wave Layer Rules — All Pages (Vertically Flipped)
   ========================================================================== */

  /* Ensure all Heading Banners & Content sit forward above wave layers */
  .hero-container,
  .hero-content,
  .hero-text-block,
  .page-banner .container,
  .advantages-container,
  .grid-container-2col,
  .grid-container {
    position: relative;
    z-index: 10;
  }

  /* Signature Violet Layered Wave Divider — ALL pages */
  .signature-violet-wave,
  .hero-wave-divider-home,
  .portfolio-wave-overlay,
  .about-hero-curve,
  .hero-curve-bottom,
  .banner-curve,
  .hero-curve,
  .hero-wave-bottom {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 3;
    pointer-events: none;
    filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.3));
  }

  /* Flip all hero/banner bottom waves VERTICALLY so the curve opens upward */
  .signature-violet-wave svg,
  .hero-wave-divider-home svg,
  .hero-wave-bottom svg,
  .about-hero-curve svg,
  .portfolio-wave-overlay svg,
  .hero-curve-bottom svg,
  .banner-curve svg,
  .hero-curve svg {
    display: block;
    width: 100%;
    transform: scaleY(-1);
    transform-origin: center bottom;
    animation: waveFlipped 7s ease-in-out infinite;
    will-change: transform;
  }

  /* Wave images (PNG files) - also flip vertically */
  .hero-wave-divider-home img,
  .wave-home-img,
  .about-hero-curve img,
  .wave-bg-img {
    display: block;
    width: 100%;
    transform: scaleY(-1);
    animation: waveFlipped 7s ease-in-out infinite;
    transform-origin: center bottom;
    will-change: transform;
  }

  /* teal-curve-bottom: bottom of teal sections, does NOT flip */
  .teal-curve-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 5;
  }

  .teal-curve-bottom svg {
    display: block;
    width: 100%;
    animation: waveUndulate 6s ease-in-out infinite;
    transform-origin: bottom center;
    will-change: transform;
  }

  /* Fluid wave animation for vertically flipped waves (opens upward) */
  @keyframes waveFlipped {
    0% {
      transform: scaleY(-1) translateY(0px);
    }

    25% {
      transform: scaleY(-1) translateY(-5px) scaleX(1.01);
    }

    50% {
      transform: scaleY(-1) translateY(-10px) scaleX(1);
    }

    75% {
      transform: scaleY(-1) translateY(-4px) scaleX(1.01);
    }

    100% {
      transform: scaleY(-1) translateY(0px);
    }
  }

  /* Fluid wave animation for non-flipped elements */
  @keyframes waveUndulate {
    0% {
      transform: translateY(0px) scaleY(1);
    }

    25% {
      transform: translateY(-5px) scaleY(1.03) scaleX(1.01);
    }

    50% {
      transform: translateY(-10px) scaleY(1.06) scaleX(1);
    }

    75% {
      transform: translateY(-4px) scaleY(1.03) scaleX(1.01);
    }

    100% {
      transform: translateY(0px) scaleY(1);
    }
  }

  /* =====================================================================
   Dual-Layer Image Wave — Home Page Hero Bottom Transition
   Layer 1: Violet background wave (homebannerbackground.png)
   Layer 2: Banner image clipped into wave (homebanner.png)
   ===================================================================== */

  /* Container that holds both wave layers — sits at the very bottom of the hero */
  .hero-dual-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 220px;
    /* tall enough to show both wave images */
    pointer-events: none;
    z-index: 5;
    overflow: visible;
  }

  /* Layer 1: Violet background wave — sits behind the banner image wave */
  .hero-wave-violet {
    position: absolute;
    bottom: -30px;
    /* slightly lower so its bottom edge peeks below banner wave */
    left: 0;
    width: 100%;
    z-index: 1;
    animation: violetWaveDrift 8s ease-in-out infinite alternate;
  }

  .hero-wave-violet img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  /* Subtle horizontal drift on the violet layer for ocean feel */
  @keyframes violetWaveDrift {
    0% {
      transform: translateX(0px) scaleX(1);
    }

    50% {
      transform: translateX(-8px) scaleX(1.01);
    }

    100% {
      transform: translateX(4px) scaleX(1);
    }
  }

  /* Layer 2: Banner image clipped into wave shape — sits in front of violet wave */
  .hero-wave-banner {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2;
  }

  .hero-wave-banner img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
  }



  /* Floating Back-to-Top Arrow Button Near Footer (Violet Circle + White Icon) */
  .back-to-top-btn {
    position: absolute !important;
    top: -32px !important;
    right: 40px !important;
    bottom: auto !important;
    left: auto !important;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #6a008a !important;
    color: #ffffff !important;
    border: none !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    z-index: 999 !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 8px 24px rgba(106, 0, 138, 0.4) !important;
  }

  .back-to-top-btn i::before {
    content: "\f176" !important;
  }

  .back-to-top-btn.visible {
    opacity: 1 !important;
    visibility: visible !important;
  }

  .back-to-top-btn:hover {
    background: #500069 !important;
    transform: translateY(-4px) scale(1.08) !important;
    box-shadow: 0 12px 32px rgba(80, 0, 105, 0.5) !important;
    color: #ffffff !important;
  }

  /* ==========================================================================
   Universal Left-to-Right Scroll Reveal Animation — All Pages & Cards
   ========================================================================== */

  .reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
  }

  .reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
  }

  /* Staggered card entrance delays */
  .reveal-left:nth-child(2) {
    transition-delay: 0.15s;
  }

  .reveal-left:nth-child(3) {
    transition-delay: 0.3s;
  }

  .reveal-left:nth-child(4) {
    transition-delay: 0.45s;
  }

  .reveal-left:nth-child(5) {
    transition-delay: 0.6s;
  }

  .reveal-left:nth-child(6) {
    transition-delay: 0.75s;
  }

  /* ── Hero Text Banner Slider ──────────────────────────────────────────────── */
  .hero-slides-wrapper {
    position: relative;
    min-height: 260px;
    /* tall enough for the longest slide content */
    overflow: visible;
  }

  /* ALL slides are ALWAYS absolute — this is the key fix.
   Position never toggles, so only one slide is visible at a time. */
  .hero-slide-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /* Fully hidden by default */
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px);
    pointer-events: none;
    /* 1s smooth crossfade */
    transition:
      opacity 1s ease-in-out,
      transform 1s ease-in-out;
  }

  /* Active slide: visible, no offset */
  .hero-slide-item.hs-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  /* Home Page "What We Offer" Section Layout & Cards */
  .advantages-container {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 50px;
    align-items: center;
  }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .feature-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 24px 22px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.10);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    /* Always visible — never let GSAP control opacity/transform here */
    opacity: 1 !important;
    will-change: transform;
  }

  .feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(62, 188, 210, 0.22);
    border-color: #3ebcd2;
  }

  .feature-card .feature-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
  }

  .feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
  }

  .feature-card p {
    font-size: 13px;
    line-height: 1.65;
    color: #475569;
    margin: 0;
  }

  .feature-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #e0f7fa;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1.5px solid #b2ebf2;
  }

  .feature-icon img {
    width: 22px;
    height: 22px;
    object-fit: contain;
  }

  /* Services Page Pool Features & Advantages Section (Design + 3 Cards) */
  .features-advantages-section {
    padding: 60px 0 70px 0;
    background-color: #f4f7f9;
  }

  .adv-top-row {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 32px;
  }

  .adv-bottom-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
  }

  .adv-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 28px 24px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  }

  .adv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 93, 115, 0.12);
    border-color: #3ebcd2;
  }

  .adv-card-design {
    border-color: #3ebcd2;
    background: #f0fdfa;
  }

  .adv-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
  }

  .adv-card-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
  }

  .adv-icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #3ebcd2;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0fdfa;
    flex-shrink: 0;
  }

  .adv-icon-circle img {
    width: 24px;
    height: 24px;
    object-fit: contain;
  }

  .adv-card-desc {
    font-size: 14px;
    line-height: 1.65;
    color: #64748b;
  }

  .adv-text-block {
    text-align: right;
  }

  .adv-main-title {
    font-size: 40px;
    font-weight: 800;
    color: #005d73;
    line-height: 1.15;
    margin-bottom: 18px;
  }

  .adv-main-desc {
    font-size: 14.5px;
    line-height: 1.75;
    color: #475569;
    max-width: 620px;
    margin-left: auto;
  }

  /* Signature Works / Portfolio Grid & Cards */
  .portfolio-section-content {
    padding: 90px 0;
    background-color: #ffffff;
  }

  .portfolio-filters-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
  }

  .portfolio-filters {
    display: inline-flex;
    gap: 8px;
    background: #ffffff;
    padding: 6px;
    border-radius: 30px;
    border: 1.5px solid #e2e8f0;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
  }

  .filter-btn {
    padding: 9px 24px;
    border-radius: 24px;
    background: transparent;
    color: #3b275c;
    font-weight: 700;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
  }

  .filter-btn.active {
    background: #005d73 !important;
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(43, 23, 74, 0.35) !important;
  }

  .filter-btn:hover:not(.active) {
    background: #f1f5f9;
    color: #005d73;
  }

  .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

  .portfolio-item {
    width: 100%;
    display: block;
    opacity: 1;
    transition: opacity 0.35s ease, transform 0.35s ease;
  }

  .portfolio-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    background: #f8fafc;
    height: 220px;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
  }

  .portfolio-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
  }

  .portfolio-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 93, 115, 0.18);
  }

  .portfolio-card:hover img {
    transform: scale(1.06);
  }

  /* Badge Left - REAL IMAGE */
  .badge-left,
  .badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(15, 23, 42, 0.85);
    color: #ffffff;
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    padding: 5px 12px;
    border-radius: 12px;
    z-index: 4;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.15);
  }

  /* Portfolio Logo Badge Top Right */
  .portfolio-logo-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.95);
    padding: 4px 10px;
    border-radius: 20px;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.8);
  }

  .portfolio-logo-badge img {
    height: 15px;
    width: auto;
    object-fit: contain;
  }

  /* Portfolio Overlay */
  .portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 93, 115, 0) 35%, rgba(0, 45, 60, 0.88) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 16px;
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 3;
    pointer-events: none;
  }

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

  .portfolio-overlay h4 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 2px;
  }

  .portfolio-overlay p {
    color: #3ebcd2;
    font-size: 12px;
    font-weight: 600;
  }

  /* =====================================================================
   Products Page Styles (Ocean Pools India Luxury Design System)
   ===================================================================== */
  .products-hero-banner {
    background-position: center 30% !important;
  }

  /* Products Feature Highlights Strip */
  .products-features-strip {
    padding: 50px 0 30px 0;
    background-color: #ffffff;
    border-bottom: 1px solid #eef2f6;
  }

  .prod-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

  .prod-feature-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 24px 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: all 0.35s ease;
  }

  .prod-feature-card:hover {
    background: #ffffff;
    transform: translateY(-5px);
    border-color: #3ebcd2;
    box-shadow: 0 12px 25px rgba(0, 93, 115, 0.08);
  }

  .prod-feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: linear-gradient(135deg, #005d73 0%, #004859 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 6px 14px rgba(0, 93, 115, 0.2);
  }

  .prod-feature-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: brightness(0) invert(1);
  }

  .prod-feature-text h4 {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
    line-height: 1.3;
  }

  .prod-feature-text p {
    font-size: 12.5px;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
  }

  /* Catalog Main Section */
  .catalog-section {
    padding: 70px 0 90px 0;
    background-color: #f4f7f9;
  }

  /* Category Filter Pills Bar (Portfolio Style) */
  .product-category-pills-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 35px;
    overflow-x: auto;
    padding: 6px 4px 14px 4px;
    -webkit-overflow-scrolling: touch;
  }

  .product-category-pills {
    display: inline-flex;
    gap: 10px;
    background: #ffffff;
    padding: 8px 12px;
    border-radius: 40px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid #e2e8f0;
    flex-wrap: wrap;
    justify-content: center;
  }

  .prod-filter-pill {
    background: transparent;
    border: none;
    padding: 9px 20px;
    font-size: 13.5px;
    font-weight: 700;
    color: #475569;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-family: inherit;
  }

  .prod-filter-pill:hover {
    color: #005d73;
    background: #f1f5f9;
  }

  .prod-filter-pill.active {
    background: #005d73;
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(0, 93, 115, 0.3);
  }

  /* Advanced Catalog Filter Console */
  .catalog-filter-panel {
    background: #ffffff;
    padding: 28px 32px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    margin-bottom: 35px;
    border: 1px solid #e2e8f0;
  }

  .filter-grid-layout {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1.2fr 1.2fr;
    gap: 20px;
    align-items: flex-end;
  }

  .filter-group-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .filter-group-col label {
    font-size: 12px;
    font-weight: 700;
    color: #1e293b;
    text-transform: uppercase;
    letter-spacing: 0.6px;
  }

  .search-input-wrapper {
    position: relative;
  }

  .search-input-wrapper input {
    width: 100%;
    padding: 12px 38px 12px 42px;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    font-size: 14px;
    color: #334155;
    transition: all 0.3s ease;
    background: #f8fafc;
    font-family: inherit;
  }

  .search-input-wrapper input:focus {
    border-color: #005d73;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(0, 93, 115, 0.15);
    outline: none;
  }

  .search-input-wrapper .search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 14px;
  }

  .search-input-wrapper .clear-search-btn {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    font-size: 14px;
    display: none;
    padding: 4px;
  }

  .search-input-wrapper .clear-search-btn:hover {
    color: #0f172a;
  }

  .select-filter-custom {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    font-size: 14px;
    color: #334155;
    background: #f8fafc url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e") no-repeat right 14px center;
    background-size: 14px;
    appearance: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
  }

  .select-filter-custom:focus {
    border-color: #005d73;
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(0, 93, 115, 0.15);
    outline: none;
  }

  /* Secondary Filter Row: Price Slider & Reset Button */
  .filter-secondary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 22px;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
    flex-wrap: wrap;
    gap: 20px;
  }

  .price-slider-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 320px;
    flex: 1;
    max-width: 500px;
  }

  .price-slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .price-slider-header label {
    font-size: 12px;
    font-weight: 700;
    color: #1e293b;
    text-transform: uppercase;
    letter-spacing: 0.6px;
  }

  .price-values-lbl {
    font-size: 13px;
    font-weight: 700;
    color: #005d73;
  }

  .slider-track-inputs {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .slider-track-inputs input[type="range"] {
    flex: 1;
    height: 6px;
    background: #cbd5e1;
    border-radius: 3px;
    appearance: none;
    outline: none;
  }

  .slider-track-inputs input[type="range"]::-webkit-slider-thumb {
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #005d73;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.15s ease, background-color 0.15s ease;
  }

  .slider-track-inputs input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.25);
    background: #3ebcd2;
  }

  .reset-filters-btn {
    background: #f1f5f9;
    color: #475569;
    border: 1px solid #cbd5e1;
    padding: 10px 22px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
  }

  .reset-filters-btn:hover {
    background: #e2e8f0;
    color: #0f172a;
    border-color: #94a3b8;
  }

  /* Results Count and Active Tags Bar */
  .results-count-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
  }

  .results-count-bar p {
    font-size: 14.5px;
    font-weight: 700;
    color: #334155;
    margin: 0;
  }

  .active-filter-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
  }

  .filter-tag {
    background: #e0f2fe;
    color: #0369a1;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }

  .filter-tag button {
    background: transparent;
    border: none;
    color: #0369a1;
    cursor: pointer;
    font-size: 12px;
    padding: 0;
  }

  /* Products Grid */
  .products-grid-catalog {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-bottom: 50px;
  }

  /* Product Card (Matching Ocean Pools India Design Language) */
  .product-card {
    background: #ffffff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 93, 115, 0.08);
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
  }

  .product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 35px rgba(0, 93, 115, 0.12);
    border-color: rgba(62, 188, 210, 0.4);
  }

  .product-card-media {
    position: relative;
    height: 230px;
    background: #f1f5f9;
    overflow: hidden;
  }

  .product-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .product-card:hover .product-card-img {
    transform: scale(1.08);
  }

  .product-watermark-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(0, 36, 45, 0.85);
    backdrop-filter: blur(6px);
    padding: 5px 10px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.15);
  }

  .product-watermark-badge img {
    height: 12px;
    width: auto;
  }

  .product-watermark-badge span {
    font-size: 10px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
  }

  .product-stock-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 5px;
  }

  .product-stock-badge.in-stock {
    background: #ecfdf5;
    color: #059669;
    border: 1px solid #a7f3d0;
  }

  .product-stock-badge.out-of-stock {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
  }

  .product-card-quickview {
    position: absolute;
    bottom: -45px;
    left: 0;
    right: 0;
    background: rgba(0, 45, 56, 0.92);
    backdrop-filter: blur(4px);
    color: #ffffff;
    border: none;
    padding: 10px 0;
    font-size: 12.5px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: bottom 0.35s ease;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }

  .product-card:hover .product-card-quickview {
    bottom: 0;
  }

  .product-card-content {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  .product-card-category {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    color: #3ebcd2;
    letter-spacing: 1px;
    margin-bottom: 6px;
  }

  .product-card-title {
    font-size: 17px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.35;
    margin-bottom: 8px;
    height: 46px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s ease;
  }

  .product-card:hover .product-card-title {
    color: #005d73;
  }

  .product-card-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
  }

  .stars-row {
    color: #f59e0b;
    font-size: 12px;
    display: flex;
    gap: 2px;
  }

  .rating-num {
    font-size: 12px;
    font-weight: 700;
    color: #64748b;
  }

  .product-card-specs {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 12px;
  }

  .spec-chip {
    background: #f1f5f9;
    color: #475569;
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
  }

  .product-card-desc {
    font-size: 12.5px;
    color: #64748b;
    line-height: 1.55;
    margin-bottom: 18px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .product-card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    border-top: 1px solid #f1f5f9;
    padding-top: 16px;
    gap: 8px;
  }

  .product-card-price-block {
    display: flex;
    flex-direction: column;
  }

  .product-card-price-label {
    font-size: 10.5px;
    color: #94a3b8;
    font-weight: 700;
    text-transform: uppercase;
  }

  .product-card-price {
    font-size: 20px;
    font-weight: 800;
    color: #005d73;
  }

  .product-card-actions {
    display: flex;
    gap: 6px;
  }

  .product-btn {
    border: none;
    padding: 8px 12px;
    border-radius: 10px;
    font-size: 11.5px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    font-family: inherit;
  }

  .product-btn.wa-btn {
    background: #25d366;
    color: #ffffff;
  }

  .product-btn.wa-btn:hover {
    background: #1eb956;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
  }

  .product-btn.wa-btn img {
    width: 14px;
    height: 14px;
    object-fit: contain;
  }

  .product-btn.quote-btn {
    background: #005d73;
    color: #ffffff;
  }

  .product-btn.quote-btn:hover {
    background: #3ebcd2;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(43, 23, 74, 0.25);
  }

  /* Pagination container */
  .pagination-container-row {
    text-align: center;
    margin-top: 25px;
  }

  .pagination-btn-accent {
    background: linear-gradient(135deg, #005d73 0%, #004859 100%);
    color: #ffffff;
    border: none;
    padding: 14px 40px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(0, 93, 115, 0.25);
    transition: all 0.3s ease;
    font-family: inherit;
  }

  .pagination-btn-accent:hover {
    background: #3ebcd2;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(62, 188, 210, 0.4);
  }

  /* Quick View Modal Styling */
  .quickview-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 20, 28, 0.75);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
  }

  .quickview-modal-backdrop.active {
    opacity: 1;
    visibility: visible;
  }

  .quickview-modal-box {
    background: #ffffff;
    border-radius: 24px;
    max-width: 820px;
    width: 100%;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    transform: scale(0.92);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    display: grid;
    grid-template-columns: 1fr 1.2fr;
  }

  .quickview-modal-backdrop.active .quickview-modal-box {
    transform: scale(1);
  }

  .quickview-close-btn {
    position: absolute;
    top: 18px;
    right: 18px;
    background: #f1f5f9;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 16px;
    color: #475569;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 10;
  }

  .quickview-close-btn:hover {
    background: #dc2626;
    color: #ffffff;
  }

  .quickview-media-col {
    background: #f8fafc;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .quickview-media-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .quickview-content-col {
    padding: 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .quickview-category-badge {
    font-size: 12px;
    font-weight: 800;
    color: #3ebcd2;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
  }

  .quickview-title {
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
    margin-bottom: 12px;
  }

  .quickview-rating-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
  }

  .quickview-price-row {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 16px;
  }

  .quickview-price {
    font-size: 28px;
    font-weight: 800;
    color: #005d73;
  }

  .quickview-desc {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .quickview-specs-list {
    background: #f8fafc;
    border-radius: 12px;
    padding: 14px 18px;
    margin-bottom: 24px;
  }

  .quickview-specs-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .quickview-specs-list li {
    font-size: 12.5px;
    color: #334155;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .quickview-specs-list li i {
    color: #3ebcd2;
    font-size: 11px;
  }

  .quickview-actions-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
  }

  .quickview-wa-btn {
    background: #25d366;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .quickview-wa-btn:hover {
    background: #1eb956;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.3);
  }

  .quickview-wa-btn img {
    width: 18px;
    height: 18px;
    object-fit: contain;
  }

  .quickview-quote-btn {
    background: #005d73;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
  }

  /* ==========================================================
   SERVICES PAGE — Reference Wave & Overlapping Shapes Section
   ========================================================== */
  .services-teal-wave-section {
    background: linear-gradient(135deg, #005d73 0%, #004d61 100%);
    padding: 60px 0 100px 0;
    color: #ffffff;
    position: relative;
    overflow: hidden;
  }

  .services-purple-shape-layer {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    max-width: 750px;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.95;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
  }

  .service-purple-shape-img {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: cover;
    object-position: top right;
  }

  .services-grid-2col {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
  }

  .services-text-col {
    max-width: 620px;
  }

  .services-section-title {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
  }

  .services-desc {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 35px;
  }

  .services-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #005d73;
    color: #ffffff;
    padding: 14px 40px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
  }

  .services-contact-btn:hover {
    background-color: #3ebcd2;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(62, 188, 210, 0.4);
  }

  .services-image-col {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .services-shape-frame-wrapper {
    position: relative;
    width: 100%;
    max-width: 480px;
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.35));
    transition: transform 0.4s ease;
  }

  .services-shape-frame-wrapper:hover {
    transform: scale(1.02);
  }

  .services-leaf-shape-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
  }

  .services-curve-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 2;
  }

  .services-curve-bottom svg {
    position: relative;
    display: block;
    width: 100%;
    height: 65px;
  }

  @media (max-width: 992px) {
    .services-grid-2col {
      grid-template-columns: 1fr;
      text-align: center;
      gap: 40px;
    }

    .services-text-col {
      max-width: 100%;
      margin: 0 auto;
    }

    .services-purple-shape-layer {
      width: 80%;
      opacity: 0.6;
    }

    .services-shape-frame-wrapper {
      max-width: 380px;
      margin: 0 auto;
    }
  }

  /* ==========================================================
   PRODUCTS PAGE — Shopcart-Style Reference UI System
   ========================================================== */

  /* Promo Hero Banner (Reference Image 1) */
  .shopcart-promo-banner {
    background: #fdf6ec;
    border: 1px solid #faeedd;
    border-radius: 28px;
    padding: 45px 55px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 35px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(220, 180, 140, 0.12);
  }

  .promo-banner-text {
    max-width: 580px;
    z-index: 2;
  }

  .promo-banner-title {
    font-size: 38px;
    font-weight: 800;
    color: #0b3b32;
    line-height: 1.18;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
  }

  .promo-banner-subtitle {
    font-size: 15px;
    color: #52605b;
    line-height: 1.65;
    margin-bottom: 24px;
  }

  .promo-banner-btn {
    display: inline-flex;
    align-items: center;
    background: #0b3b32;
    color: #ffffff;
    padding: 13px 34px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 18px rgba(11, 59, 50, 0.25);
  }

  .promo-banner-btn:hover {
    background: #005d73;
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(0, 93, 115, 0.35);
    color: #ffffff;
  }

  .promo-banner-media {
    flex-shrink: 0;
    max-width: 320px;
    z-index: 2;
  }

  .promo-banner-img {
    width: 100%;
    height: auto;
    max-height: 220px;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
  }

  /* Shopcart Filter Pills Bar */
  .shopcart-filter-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 25px;
  }

  .filter-pills-left {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    flex: 1;
  }

  .filter-pills-right {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .filter-dropdown-pill-wrapper {
    position: relative;
  }

  .filter-pill-dropdown-btn {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    color: #334155;
    padding: 9px 18px;
    border-radius: 30px;
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    font-family: inherit;
    white-space: nowrap;
  }

  .filter-pill-dropdown-btn:hover,
  .filter-pill-dropdown-btn.active {
    border-color: #0b3b32;
    color: #0b3b32;
    background: #f8fafc;
  }

  .pill-chevron {
    font-size: 11px;
    transition: transform 0.25s ease;
    color: #64748b;
  }

  .filter-pill-dropdown-btn.open .pill-chevron {
    transform: rotate(180deg);
  }

  .pill-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
    border: 1px solid #e2e8f0;
    min-width: 210px;
    padding: 8px 0;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    max-height: 320px;
    overflow-y: auto;
  }

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

  .pill-option {
    padding: 10px 18px;
    font-size: 13.5px;
    font-weight: 500;
    color: #334155;
    cursor: pointer;
    transition: background 0.15s ease;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .pill-option:hover {
    background: #f1f5f9;
    color: #0b3b32;
  }

  .pill-option.active {
    background: #f0fdf4;
    color: #059669;
    font-weight: 700;
  }

  .price-popup-menu {
    min-width: 280px;
    padding: 18px;
  }

  .price-popup-content {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .price-slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13.5px;
    font-weight: 600;
    color: #1e293b;
  }

  .price-slider-badge {
    background: #005d73;
    color: #ffffff;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
  }

  .sort-popup-menu {
    right: 0;
    left: auto;
  }

  .reset-pill-btn {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    color: #334155;
    padding: 9px 18px;
    border-radius: 30px;
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: all 0.2s ease;
    font-family: inherit;
  }

  .reset-pill-btn:hover {
    background: #fee2e2;
    border-color: #ef4444;
    color: #dc2626;
  }

  /* Search Pill */
  .search-pill-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
  }

  .search-pill-icon {
    position: absolute;
    left: 14px;
    font-size: 13px;
    color: #64748b;
    pointer-events: none;
  }

  .search-pill-input {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    color: #1e293b;
    padding: 9px 36px 9px 36px;
    border-radius: 30px;
    font-size: 13.5px;
    outline: none;
    transition: all 0.2s ease;
    font-family: inherit;
    width: 200px;
  }

  .search-pill-input:focus {
    border-color: #005d73;
    width: 250px;
    box-shadow: 0 0 0 3px rgba(0, 93, 115, 0.12);
  }

  .clear-search-btn {
    position: absolute;
    right: 12px;
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    font-size: 12px;
    display: none;
  }

  .clear-search-btn.active {
    display: block;
  }

  /* Shopcart Horizontal Category Strip */
  .shopcart-category-strip-wrapper {
    margin-bottom: 30px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: thin;
  }

  .shopcart-category-strip {
    display: flex;
    gap: 10px;
    white-space: nowrap;
  }

  .category-chip-btn {
    background: #f1f5f9;
    border: 1px solid transparent;
    color: #475569;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
    flex-shrink: 0;
  }

  .category-chip-btn:hover {
    background: #e2e8f0;
    color: #0f172a;
  }

  .category-chip-btn.active {
    background: #0b3b32;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(11, 59, 50, 0.2);
  }

  /* Catalog Heading & Results Bar */
  .shopcart-catalog-heading-bar {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 24px;
    border-bottom: 1px solid #edf2f7;
    padding-bottom: 12px;
    flex-wrap: wrap;
    gap: 12px;
  }

  .shopcart-main-heading {
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.3px;
    margin: 0;
  }

  .results-count-text {
    font-size: 13.5px;
    font-weight: 600;
    color: #64748b;
    margin: 0;
  }

  .active-filter-tags-summary {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
  }

  .filter-tag-chip {
    background: #e0f2fe;
    color: #0369a1;
    font-size: 11.5px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }

  .filter-tag-chip i {
    cursor: pointer;
  }

  /* Products Grid (4 columns from Reference Image) */
  .shopcart-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

  /* Shopcart Product Card */
  .shopcart-product-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
  }

  .shopcart-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
  }

  /* Top Media Box */
  .shopcart-card-media {
    background: #f6f6f6;
    border-radius: 18px;
    height: 220px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 14px;
  }

  .shopcart-card-img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    transition: transform 0.4s ease;
  }

  .shopcart-product-card:hover .shopcart-card-img {
    transform: scale(1.08);
  }

  /* Heart Wishlist Button */
  .wishlist-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #ffffff;
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.2s ease;
    z-index: 5;
  }

  .wishlist-btn:hover {
    transform: scale(1.15);
    color: #ef4444;
  }

  .wishlist-btn.active {
    color: #ef4444;
  }

  .wishlist-btn.active i {
    font-weight: 900;
  }

  /* Quick View Hover Pill */
  .card-quickview-btn {
    position: absolute;
    bottom: 12px;
    background: rgba(15, 23, 42, 0.85);
    color: #ffffff;
    border: none;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11.5px;
    font-weight: 700;
    cursor: pointer;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.25s ease;
    backdrop-filter: blur(4px);
    font-family: inherit;
  }

  .shopcart-product-card:hover .card-quickview-btn {
    opacity: 1;
    transform: translateY(0);
  }

  .card-quickview-btn:hover {
    background: #005d73;
  }

  /* Stock tag */
  .shopcart-stock-dot {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #dcfce7;
    color: #166534;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 12px;
  }

  .shopcart-stock-dot.out-of-stock {
    background: #fee2e2;
    color: #991b1b;
  }

  /* Card Body */
  .shopcart-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  .shopcart-title-price-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 4px;
  }

  .shopcart-card-title {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.3;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1;
    cursor: pointer;
  }

  .shopcart-card-title:hover {
    color: #005d73;
  }

  .shopcart-card-price {
    font-size: 16px;
    font-weight: 800;
    color: #0f172a;
    white-space: nowrap;
  }

  .shopcart-card-price sup {
    font-size: 11px;
    font-weight: 700;
  }

  .shopcart-card-subtitle {
    font-size: 12px;
    color: #64748b;
    line-height: 1.4;
    margin-bottom: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .shopcart-rating-row {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 14px;
  }

  .shopcart-stars-green {
    color: #059669;
    font-size: 12px;
    display: flex;
    gap: 2px;
  }

  .shopcart-reviews-count {
    font-size: 11.5px;
    color: #64748b;
    font-weight: 600;
  }

  .shopcart-card-btn {
    background: transparent;
    border: 1.5px solid #0b3b32;
    color: #0b3b32;
    padding: 9px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: all 0.25s ease;
    margin-top: auto;
    font-family: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }

  .shopcart-card-btn:hover {
    background: #0b3b32;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(11, 59, 50, 0.25);
  }

  .shopcart-card-btn.active {
    background: #0b3b32;
    color: #ffffff;
  }

  /* ==========================================================
   QUICK VIEW MODAL — Matching Reference Image 2
   ========================================================== */
  .shopcart-modal-box {
    background: #ffffff;
    border-radius: 28px;
    max-width: 880px;
    width: 100%;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
    position: relative;
    transform: scale(0.92);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    display: grid;
    grid-template-columns: 1fr 1.15fr;
  }

  .quickview-modal-backdrop.active .shopcart-modal-box {
    transform: scale(1);
  }

  .shopcart-modal-gallery {
    padding: 30px;
    background: #fafafa;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
  }

  .shopcart-modal-main-img-box {
    background: #ffffff;
    border-radius: 20px;
    width: 100%;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
  }

  .shopcart-modal-main-img-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }

  .shopcart-modal-thumbs {
    display: flex;
    gap: 10px;
    width: 100%;
    justify-content: center;
  }

  .thumb-box {
    width: 55px;
    height: 55px;
    border-radius: 12px;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    padding: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .thumb-box.active,
  .thumb-box:hover {
    border-color: #0b3b32;
    box-shadow: 0 2px 8px rgba(11, 59, 50, 0.2);
  }

  .thumb-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    border-radius: 8px;
  }

  .shopcart-modal-info {
    padding: 35px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .shopcart-modal-breadcrumb {
    font-size: 11.5px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 6px;
  }

  .shopcart-modal-title {
    font-size: 26px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
    margin-bottom: 6px;
  }

  .shopcart-modal-tagline {
    font-size: 13.5px;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 12px;
  }

  .shopcart-modal-rating-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
  }

  .stars-row-green {
    color: #059669;
    font-size: 13px;
    display: flex;
    gap: 3px;
  }

  .rating-reviews-count {
    font-size: 12.5px;
    color: #64748b;
    font-weight: 600;
  }

  .shopcart-modal-divider {
    border: none;
    height: 1px;
    background: #edf2f7;
    margin: 12px 0 16px 0;
  }

  .shopcart-modal-price-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 4px;
  }

  .shopcart-modal-price {
    font-size: 26px;
    font-weight: 800;
    color: #0f172a;
  }

  .shopcart-modal-price-sub {
    font-size: 14px;
    color: #64748b;
    font-weight: 600;
  }

  .shopcart-modal-installment-note {
    font-size: 12px;
    color: #94a3b8;
    margin-bottom: 16px;
  }

  .shopcart-modal-spec-block {
    margin-bottom: 18px;
  }

  .spec-label {
    font-size: 12px;
    font-weight: 700;
    color: #334155;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .modal-specs-pills {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }

  .modal-specs-pills li {
    font-size: 12px;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .modal-specs-pills li i {
    color: #059669;
    font-size: 11px;
  }

  .shopcart-modal-qty-stock-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
  }

  .qty-counter-box {
    display: inline-flex;
    align-items: center;
    background: #f1f5f9;
    border-radius: 30px;
    padding: 4px 10px;
  }

  .qty-btn {
    background: none;
    border: none;
    width: 28px;
    height: 28px;
    font-size: 16px;
    font-weight: 700;
    color: #334155;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .qty-val {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    min-width: 24px;
    text-align: center;
  }

  .stock-warning-text {
    font-size: 12.5px;
    color: #64748b;
  }

  .shopcart-modal-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
  }

  .modal-btn-solid-teal {
    background: #0b3b32;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.25s ease;
    flex: 1;
    justify-content: center;
  }

  .modal-btn-solid-teal:hover {
    background: #005d73;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 93, 115, 0.3);
  }

  .modal-btn-outline {
    background: transparent;
    border: 1.5px solid #cbd5e1;
    color: #334155;
    padding: 12px 22px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.25s ease;
  }

  .modal-btn-outline:hover {
    border-color: #0b3b32;
    color: #0b3b32;
    background: #f8fafc;
  }

  .shopcart-modal-perks {
    border-top: 1px solid #edf2f7;
    padding-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .perk-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 12px;
    color: #64748b;
  }

  .perk-item i {
    color: #0b3b32;
    font-size: 14px;
    margin-top: 2px;
  }

  .perk-item strong {
    display: block;
    color: #1e293b;
    font-size: 12.5px;
  }

  /* ==========================================================
   RESPONSIVE STYLES FOR SHOPCART UI
   ========================================================== */
  @media (max-width: 1200px) {
    .shopcart-products-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
  }

  @media (max-width: 992px) {
    .shopcart-products-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 18px;
    }

    .shopcart-promo-banner {
      flex-direction: column;
      text-align: center;
      padding: 35px 25px;
    }

    .promo-banner-media {
      max-width: 240px;
    }

    .shopcart-modal-box {
      grid-template-columns: 1fr;
      max-height: 90vh;
      overflow-y: auto;
    }

    .shopcart-modal-gallery {
      padding: 20px;
    }

    .shopcart-modal-main-img-box {
      height: 220px;
    }

    .shopcart-modal-info {
      padding: 24px;
    }
  }

  @media (max-width: 640px) {
    .shopcart-products-grid {
      grid-template-columns: 1fr;
    }

    .shopcart-filter-bar {
      flex-direction: column;
      align-items: stretch;
    }

    .filter-pills-left,
    .filter-pills-right {
      width: 100%;
      justify-content: space-between;
    }

    .search-pill-wrapper {
      width: 100%;
    }

    .search-pill-input {
      width: 100%;
    }

    .search-pill-input:focus {
      width: 100%;
    }

    .promo-banner-title {
      font-size: 26px;
    }
  }

  /* ============================================================
   PRODUCTS CATALOG PAGE — Clean Card Layout (pcat)
   ============================================================ */

  /* ---- Page wrapper ---- */
  .pcat-section {
    padding: 60px 0 100px;
    background: #f6f8fa;
    min-height: 60vh;
  }

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

  /* ---- Sticky Filter Bar ---- */
  .pcat-sticky-bar {
    position: sticky;
    top: 61px;
    z-index: 90;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    padding: 20px 28px;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: box-shadow 0.3s ease;
  }

  .pcat-sticky-bar.pcat-sticky-stuck {
    border-radius: 0 0 18px 18px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.14);
  }

  /* ---- Search ---- */
  .pcat-search-wrap {
    position: relative;
    width: 100%;
  }

  .pcat-search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: #94a3b8;
    pointer-events: none;
  }

  .pcat-search-input {
    width: 100%;
    height: 50px;
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    font-size: 14.5px;
    font-family: 'Poppins', sans-serif;
    color: #0f172a;
    padding: 0 48px 0 46px;
    transition: all 0.25s ease;
  }

  .pcat-search-input:focus {
    border-color: #005d73;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(0, 93, 115, 0.1);
  }

  .pcat-search-input::placeholder {
    color: #94a3b8;
  }

  .pcat-search-clear {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: #e2e8f0;
    border: none;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 11px;
    color: #64748b;
    transition: all 0.2s ease;
  }

  .pcat-search-clear:hover {
    background: #cbd5e1;
    color: #1e293b;
  }

  /* ---- Filters Row ---- */
  .pcat-filters-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
  }

  /* ---- Select Dropdowns ---- */
  .pcat-select-wrap {
    position: relative;
    flex: 1;
    min-width: 170px;
    max-width: 260px;
  }

  .pcat-sel-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 13px;
    color: #005d73;
    pointer-events: none;
    z-index: 2;
  }

  .pcat-sel-arrow {
    position: absolute;
    right: 13px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 11px;
    color: #94a3b8;
    pointer-events: none;
    z-index: 2;
  }

  .pcat-select {
    width: 100%;
    height: 44px;
    appearance: none;
    -webkit-appearance: none;
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    font-size: 13.5px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: #334155;
    padding: 0 36px 0 38px;
    cursor: pointer;
    transition: all 0.25s ease;
  }

  .pcat-select:focus {
    border-color: #005d73;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(0, 93, 115, 0.1);
    outline: none;
  }

  .pcat-select:hover {
    border-color: #94a3b8;
  }

  /* ---- Reset Button ---- */
  .pcat-reset-btn {
    height: 44px;
    padding: 0 20px;
    background: #fff3f3;
    border: 1.5px solid #fecaca;
    border-radius: 10px;
    font-size: 13.5px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #dc2626;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: all 0.2s ease;
    flex-shrink: 0;
  }

  .pcat-reset-btn:hover {
    background: #dc2626;
    border-color: #dc2626;
    color: #fff;
  }

  /* ---- Results Bar ---- */
  .pcat-results-bar {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
    padding: 0 2px;
  }

  .pcat-results-count {
    font-size: 14px;
    font-weight: 700;
    color: #475569;
    margin-right: 4px;
  }

  /* ---- Active Filter Tags ---- */
  .pcat-active-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
  }

  .pcat-tag {
    background: #e0f2fe;
    color: #0369a1;
    border-radius: 20px;
    padding: 4px 10px 4px 14px;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }

  .pcat-tag-remove {
    background: none;
    border: none;
    cursor: pointer;
    color: #0369a1;
    padding: 0;
    font-size: 11px;
    line-height: 1;
    display: flex;
    align-items: center;
    transition: color 0.15s;
  }

  .pcat-tag-remove:hover {
    color: #ef4444;
  }

  /* ---- Empty State ---- */
  .pcat-empty {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    margin-top: 10px;
  }

  .pcat-empty i {
    font-size: 52px;
    color: #cbd5e1;
    margin-bottom: 20px;
  }

  .pcat-empty h3 {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
  }

  .pcat-empty p {
    font-size: 14.5px;
    color: #64748b;
    max-width: 420px;
    line-height: 1.6;
    margin-bottom: 24px;
  }

  .pcat-empty-reset {
    background: #005d73;
    color: #ffffff;
    border: none;
    padding: 12px 32px;
    border-radius: 30px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
  }

  .pcat-empty-reset:hover {
    background: #004556;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0, 69, 86, 0.3);
  }

  /* ---- Category Section ---- */
  .pcat-category-section {
    margin-bottom: 50px;
  }

  .pcat-cat-heading {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
    padding-bottom: 16px;
    border-bottom: 2px solid #e2e8f0;
    position: relative;
  }

  .pcat-cat-heading::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 80px;
    height: 2px;
    background: #005d73;
    border-radius: 2px;
  }

  .pcat-cat-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, #005d73, #00b4d8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: 0 6px 16px rgba(0, 93, 115, 0.25);
  }

  .pcat-cat-heading-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .pcat-cat-title {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
    line-height: 1.2;
  }

  .pcat-cat-count {
    font-size: 12.5px;
    font-weight: 600;
    color: #64748b;
  }

  /* ---- Product Grid ---- */
  .pcat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  /* ---- Product Card ---- */
  .pcat-card {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.45s ease, transform 0.45s ease;
  }

  .pcat-card.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .pcat-card-inner {
    background: #ffffff;
    border-radius: 18px;
    padding: 22px 22px 20px;
    border: 1px solid #edf2f7;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
  }

  .pcat-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #005d73, #00b4d8);
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .pcat-card:hover .pcat-card-inner {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0, 93, 115, 0.12);
    border-color: #c7e8f0;
  }

  .pcat-card:hover .pcat-card-inner::before {
    opacity: 1;
  }

  /* Card Top Row */
  .pcat-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
  }

  .pcat-card-category {
    font-size: 10.5px;
    font-weight: 700;
    color: #005d73;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    line-height: 1.3;
    flex: 1;
  }

  .pcat-card-stock {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 10.5px;
    font-weight: 700;
    border-radius: 20px;
    padding: 3px 9px;
    flex-shrink: 0;
    white-space: nowrap;
  }

  .pcat-card-stock.in-stock {
    background: #dcfce7;
    color: #166534;
  }

  .pcat-card-stock.out-of-stock {
    background: #fee2e2;
    color: #991b1b;
  }

  /* Card Name */
  .pcat-card-name {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.4;
    margin: 0;
    flex: 1;
  }

  /* Price Row */
  .pcat-card-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
  }

  .pcat-card-price {
    font-size: 18px;
    font-weight: 800;
    color: #005d73;
    display: flex;
    align-items: baseline;
    gap: 2px;
  }

  .pcat-price-currency {
    font-size: 13px;
    font-weight: 700;
  }

  .pcat-card-badge {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #78350f;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
  }

  /* Card Action Buttons */
  .pcat-card-actions {
    display: flex;
    gap: 8px;
    margin-top: auto;
    padding-top: 4px;
  }

  .pcat-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 9px 12px;
    border-radius: 10px;
    font-size: 12.5px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s ease;
    border: none;
    text-align: center;
    white-space: nowrap;
  }

  .pcat-btn-primary {
    background: #005d73;
    color: #ffffff;
  }

  .pcat-btn-primary:hover {
    background: #004556;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 69, 86, 0.3);
    color: #ffffff;
  }

  .pcat-btn-whatsapp {
    background: #f0fdf4;
    color: #15803d;
    border: 1.5px solid #bbf7d0;
  }

  .pcat-btn-whatsapp:hover {
    background: #22c55e;
    color: #ffffff;
    border-color: #22c55e;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(34, 197, 94, 0.3);
  }

  .pcat-wa-icon {
    width: 14px;
    height: 14px;
    object-fit: contain;
    flex-shrink: 0;
  }

  /* ---- Fade-up animation ---- */
  @keyframes pcatFadeUp {
    from {
      opacity: 0;
      transform: translateY(22px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .fade-up-item {
    opacity: 0;
    transform: translateY(22px);
  }

  .fade-up-item.visible {
    animation: pcatFadeUp 0.45s ease forwards;
  }

  /* ============================================================
   PRODUCTS CTA TEAL SECTION (reuse from earlier)
   ============================================================ */
  .products-cta-teal-section {
    background: linear-gradient(135deg, #005d73 0%, #004859 100%);
    padding: 70px 0;
    color: #ffffff;
    position: relative;
  }

  .prod-cta-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }

  .prod-cta-content h2 {
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 12px;
  }

  .prod-cta-content p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 620px;
    line-height: 1.65;
    margin: 0;
  }

  .prod-cta-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
    flex-wrap: wrap;
  }

  /* ============================================================
   RESPONSIVE — Products Catalog
   ============================================================ */
  @media (max-width: 1200px) {
    .pcat-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  @media (max-width: 992px) {
    .pcat-container {
      padding: 0 28px;
    }

    .pcat-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }

    .pcat-filters-row {
      flex-wrap: wrap;
    }

    .pcat-select-wrap {
      min-width: 140px;
      flex: 1 1 140px;
    }

    .prod-cta-grid {
      flex-direction: column;
      text-align: center;
    }

    .prod-cta-buttons {
      justify-content: center;
    }

    .pcat-cat-title {
      font-size: 18px;
    }
  }

  @media (max-width: 640px) {
    .pcat-container {
      padding: 0 18px;
    }

    .pcat-section {
      padding: 40px 0 70px;
    }

    .pcat-sticky-bar {
      padding: 16px 18px;
      border-radius: 14px;
    }

    .pcat-grid {
      grid-template-columns: 1fr;
      gap: 14px;
    }

    .pcat-filters-row {
      gap: 10px;
    }

    .pcat-select-wrap {
      min-width: 100%;
      max-width: 100%;
    }

    .pcat-reset-btn {
      width: 100%;
      justify-content: center;
    }

    .pcat-card-actions {
      flex-direction: column;
    }

    .pcat-btn {
      width: 100%;
    }

    .pcat-cat-title {
      font-size: 16px;
    }

    .pcat-cat-icon-wrap {
      width: 40px;
      height: 40px;
      font-size: 15px;
    }

    .pcat-card-name {
      font-size: 14.5px;
    }

    .prod-cta-content h2 {
      font-size: 26px;
    }
  }

  /* ============================================================
   UNIFIED PAGE HERO BANNER (About, Services, Portfolio, Products, Contact)
   ============================================================ */
  .page-hero-banner {
    position: relative !important;
    width: 100% !important;
    min-height: 340px !important;
    display: flex !important;
    align-items: center !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    padding: 130px 0 50px !important;
    margin-top: 0 !important;
  }

  .hero-text-block {
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-text-block h1,
  .hero-text-block h2,
  .hero-text-block h3,
  .hero-text-block h4,
  .hero-text-block h5,
  .hero-text-block h6,
  .portfolio-hero-banner h1,
  .services-hero-banner h1,
  .about-hero-banner h1,
  .contact-hero-banner h1,
  .services-page-title,
  .about-page-title,
  .portfolio-page-title,
  .contact-page-title {
    font-family: var(--font-headings) !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
    font-size: 64px !important;
    letter-spacing: -1px !important;
    margin-bottom: 10px !important;
  }

  .portfolio-hero-banner .hero-text-block h1,
  .portfolio-hero-banner .hero-text-block h2,
  .portfolio-hero-banner .hero-text-block h3,
  .portfolio-hero-banner .hero-text-block h4,
  .portfolio-hero-banner .hero-text-block h5,
  .portfolio-hero-banner .hero-text-block h6,
  .contact-hero-banner .hero-text-block h1,
  .contact-hero-banner .hero-text-block h2,
  .contact-hero-banner .hero-text-block h3,
  .contact-hero-banner .hero-text-block h4,
  .contact-hero-banner .hero-text-block h5,
  .contact-hero-banner .hero-text-block h6,
  .portfolio-page-title,
  .contact-page-title {
    font-family: var(--font-headings) !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
    font-size: 64px !important;
  }

  .hero-text-block .logo-wave-decor,
  .logo-wave-decor {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin-top: 6px !important;
    margin-bottom: 14px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .hero-text-block .logo-wave-decor img,
  .logo-wave-decor img {
    height: 14px !important;
    object-fit: contain !important;
    display: block !important;
  }

  .breadcrumb-custom {
    font-size: 15px !important;
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500 !important;
    font-family: 'Poppins', sans-serif !important;
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    margin-top: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    backdrop-filter: none !important;
  }

  .breadcrumb-custom a {
    color: #ffffff !important;
    text-decoration: none !important;
  }

  .breadcrumb-custom span {
    margin: 0 4px !important;
    opacity: 0.6 !important;
    color: #ffffff !important;
  }

  @media screen and (max-width: 992px) {
    .home-prod-minimal-grid {
      grid-template-columns: repeat(2, 1fr) !important;
    }
  }

  @media screen and (max-width: 600px) {
    .home-prod-minimal-grid {
      grid-template-columns: 1fr !important;
    }
  }

  @media screen and (max-width: 768px) {

    .hero-text-block h1,
    .services-page-title,
    .about-page-title,
    .portfolio-page-title,
    .contact-page-title {
      font-size: 38px !important;
    }
  }

/* Custom Updates */
button, .btn, .btn-primary, .hero-buttons a, .see-more-services-btn, .pcat-promo-btn, .pcat-empty-btn, .pcat-load-more-btn, .contact-action-btn, .btn-primary-alt, .services-contact-btn {
  background-color: #032f39 !important;
}



@media (max-width: 768px) {
  .services-highlights-list {
    text-align: left !important;
    align-items: flex-start !important;
  }
  .highlight-item {
    justify-content: flex-start !important;
    text-align: left !important;
  }
}

/* GLOBAL BUTTON OVERRIDE TO #032f39 */
button:not(.filter-btn):not(.hamburger):not(.faq-question):not(.pcat-search-clear-btn):not(.pcat-reset-btn), .btn, .btn-primary, .hero-buttons a, .see-more-services-btn, .pcat-promo-btn, .pcat-empty-btn, .pcat-load-more-btn, .contact-action-btn, .btn-primary-alt, .services-contact-btn, .cta-btn-primary, .cta-btn-whatsapp, input[type="submit"], .whatsapp-btn, .call-btn, .mail-btn, .map-btn, .purple-contact-btn, .btn-hero-secondary {
  background-color: #032f39 !important;
  background: #032f39 !important;
  border-color: #032f39 !important;
  color: #ffffff !important;
}

/* Non-active filter buttons: white background + #032f39 text/border */
.filter-btn:not(.active) {
  background: #ffffff !important;
  background-color: #ffffff !important;
  color: #032f39 !important;
  border: 1.5px solid #032f39 !important;
}

/* Active filter button: #032f39 background + white text */
.filter-btn.active {
  background: #032f39 !important;
  background-color: #032f39 !important;
  color: #ffffff !important;
  border-color: #032f39 !important;
}

/* CTA Call / WhatsApp buttons - ensure white text & icon */
.cta-btn-primary,
.cta-btn-primary i,
.call-btn,
.call-btn svg {
  color: #ffffff !important;
  fill: #ffffff !important;
}

/* Social Media Logo Colors applied to the circle background */
.social-icon {
  background-color: rgba(255, 255, 255, 0.1);
  border: none !important;
}

.social-icon i {
  color: #ffffff !important;
  background: none !important;
  -webkit-text-fill-color: initial !important;
}

.social-icon:hover {
  opacity: 0.9;
}

.social-icon[aria-label="Instagram"] {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%) !important;
}
.social-icon[aria-label="Facebook"] {
  background-color: #1877f2 !important;
}
.social-icon[aria-label="LinkedIn"] {
  background-color: #0077b5 !important;
}
.social-icon[aria-label="YouTube"] {
  background-color: #ff0000 !important;
}
.social-icon[aria-label="Twitter"] {
  background-color: #000000 !important;
}
.social-icon[aria-label="WhatsApp"] {
  background-color: #25D366 !important;
}