*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --teal: #0295a3;
  --teal-light: #037a85;
  --teal-dark: #026a73;
  --teal-pale: #e8f8fa;
  --dark: #0e2e50;
  --dark2: #08263f;
  --mid: #3a3a3a;
  --gray: #6b6b6b;
  --light: #f7fcfd;
  --white: #ffffff;
  --border: #cfe8eb;
  --font-head: "Montserrat", sans-serif;
  --font-body: "DM Sans", sans-serif;
}

html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  color: black;
  background: var(--white);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-pale);
  padding: 6px 14px;
  border-radius: 2px;
  margin-bottom: 16px;
}
.section-center {
  text-align: center;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(to bottom, var(--teal), var(--teal-light));
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 3px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.15s;
}
.btn-primary:hover {
  background: linear-gradient(to bottom, var(--teal-light), var(--teal-dark));
  transform: translateY(-1px);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 12px 26px;
  border-radius: 3px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-outline:hover {
  background: var(--teal);
  color: #fff;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: black;
}
.section-title span {
  color: var(--teal);
}
.section-sub {
  font-size: 17px;
  color: var(--gray);
  line-height: 1.7;
  max-width: 600px;
  margin-top: 16px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(2, 149, 163, 0.25);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo img {
  height: 55px;
  width: auto;
  object-fit: contain;
}
.logo span {
  color: var(--teal);
}
nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
nav a {
  color: black;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color 0.2s;
  position: relative;
}
.nav-dropdown {
  position: relative;
}
.nav-dropdown > a::after {
  content: " ▾";
  font-size: 10px;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  margin-top: 12px;
  left: 0;
  background: var(--dark2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  min-width: 220px;
  padding: 8px 0;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}
.nav-dropdown:hover .dropdown-menu {
  display: block;
}
.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}
.dropdown-menu a:hover {
  color: var(--teal);
  background: rgba(2, 149, 163, 0.08);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

.hero {
  min-height: 110vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 80% 60% at 60% 50%,
      rgba(2, 149, 163, 0.15) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 40% 40% at 10% 80%,
      rgba(2, 149, 163, 0.08) 0%,
      transparent 60%
    );
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.hero-eyebrow-line {
  width: 40px;
  height: 2px;
  background: var(--teal);
}
.hero-eyebrow-text {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
}
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 24px;
}
.hero h1 span {
  color: var(--teal);
  display: block;
}
.hero-desc {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
  margin-bottom: 20px;
  max-width: 480px;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}
.hero-stats {
  display: flex;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 20px;
}
.hero-stat {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px;
  flex: 1;
}
.hero-stat-num {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
}
.hero-stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
  letter-spacing: 0.04em;
}
.hero-visual {
  position: relative;
}
.hero-card-main {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.hero-card-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
}
.hero-products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
.hero-product-chip {
  background: rgba(2, 149, 163, 0.12);
  border: 1px solid rgba(2, 149, 163, 0.25);
  border-radius: 4px;
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-product-chip .dot {
  width: 6px;
  height: 6px;
  background: var(--teal);
  border-radius: 50%;
  flex-shrink: 0;
}
.hero-badge {
  background: rgba(2, 149, 163, 0.15);
  border: 1px solid rgba(2, 149, 163, 0.3);
  border-radius: 4px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-badge-icon {
  font-size: 24px;
  color: var(--teal);
}
.hero-badge-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}
.hero-badge-text strong {
  color: #fff;
  display: block;
  font-size: 14px;
}
.hero-floating {
  position: absolute;
  top: -20px;
  right: -20px;
  background: linear-gradient(to bottom, var(--teal), var(--teal-light));
  color: #fff;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 2px;
  transform: rotate(3deg);
}

.marquee-wrap {
  background: linear-gradient(to right, var(--teal), var(--teal-light));
  padding: 14px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 20s linear infinite;
  white-space: nowrap;
}
.marquee-track span {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  padding: 0 32px;
}
.marquee-track span.sep {
  color: rgba(255, 255, 255, 0.4);
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.about-strip {
  padding: 100px 0;
  background: var(--light);
}
.about-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-block {
  position: relative;
}
.about-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #1c1c1c 0%, #2a2a2a 100%);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-img-placeholder .fallback {
  color: rgba(255, 255, 255, 0.3);
  font-size: 14px;
  text-align: center;
  padding: 20px;
}
.about-year-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(to bottom, var(--teal), var(--teal-light));
  color: #fff;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  box-shadow: 0 8px 24px rgba(2, 149, 163, 0.4);
}
.about-year-badge .num {
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}
.about-year-badge .lbl {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  opacity: 0.85;
}
.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.about-feature-icon {
  width: 44px;
  height: 44px;
  background: var(--teal-pale);
  color: var(--teal);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.about-feature-text h4 {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: black;
  margin-bottom: 4px;
}
.about-feature-text p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}

.why-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
}
.why-section .section-title {
  color: #fff;
}
.why-section .section-title span {
  color: var(--teal);
}
.why-section .section-sub {
  color: rgba(255, 255, 255, 0.5);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 60px;
}
.why-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 40px 32px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.why-card:hover {
  background: rgba(2, 149, 163, 0.06);
  border-color: rgba(2, 149, 163, 0.2);
}
.why-card:hover::before {
  transform: scaleX(1);
}
.why-icon {
  font-size: 36px;
  margin-bottom: 20px;
  color: var(--teal);
}
.why-card h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.why-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
}
.why-card ul {
  list-style: none;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.why-card ul li {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  display: flex;
  align-items: center;
  gap: 8px;
}
.why-card ul li::before {
  content: "";
  width: 4px;
  height: 4px;
  background: var(--teal);
  border-radius: 50%;
  flex-shrink: 0;
}

.products-section {
  padding: 100px 0;
}
.products-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  flex-wrap: wrap;
  gap: 20px;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.3s;
  cursor: pointer;
}
.product-card:hover {
  border-color: var(--teal);
  box-shadow: 0 12px 40px rgba(2, 149, 163, 0.15);
  transform: translateY(-4px);
}

/* --- THE NEW UNIVERSAL IMAGE FIX --- */
.product-card-img {
  position: relative;
  height: 280px;
  background: var(--white); /* Pure white background */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px; /* Adds breathing room around the edges */
}
/* Apply 'contain' globally to prevent cropping */
.product-card-img img,
.card-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s;
}
.product-card:hover .product-card-img img,
.product-card:hover .card-image {
  transform: scale(1.05);
}
.product-card-img .product-emoji {
  font-size: 52px;
  opacity: 0.4;
  color: var(--teal);
}
/* ----------------------------------- */

.product-card-body {
  padding: 24px;
}
.product-card-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
}
.product-card h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: black;
  margin-bottom: 10px;
}
.product-card p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.65;
}
.product-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  text-decoration: none;
  margin-top: 16px;
  transition: gap 0.2s;
}
.product-card-link:hover {
  gap: 10px;
}

.testimonials-section {
  padding: 80px 0;
  background: var(--light);
}

/* Elfsight widget wrapper */
.testimonials-section .elfsight-app-b9fde0d9-fa0b-47ca-992c-dd19ea051664 {
  margin-top: 40px;
  width: 100%;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 32px;
  position: relative;
}
.testimonial-card::before {
  content: "\201C";
  font-family: var(--font-head);
  font-size: 80px;
  line-height: 1;
  color: var(--teal);
  opacity: 0.15;
  position: absolute;
  top: 16px;
  right: 24px;
}
.testimonial-stars {
  color: var(--teal);
  font-size: 14px;
  margin-bottom: 16px;
}
.testimonial-text {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 24px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(to bottom, var(--teal), var(--teal-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 800;
  color: #fff;
}
.testimonial-info h4 {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: black;
}
.testimonial-info span {
  font-size: 12px;
  color: var(--gray);
}

.cta-banner {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 80% at 50% 50%,
    rgba(2, 149, 163, 0.2) 0%,
    transparent 70%
  );
}
.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.cta-inner h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 16px;
}
.cta-inner p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 40px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-hero {
  padding: 160px 0 80px;
  background: var(--dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 80% at 50% 40%,
    rgba(2, 149, 163, 0.12) 0%,
    transparent 65%
  );
}
.page-hero-content {
  position: relative;
  z-index: 1;
}
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 16px;
}
.page-hero h1 span {
  color: var(--teal);
}
.page-hero p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.55);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-top: 24px;
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
  text-decoration: none;
}
.breadcrumb a:hover {
  color: var(--teal);
}
.breadcrumb span {
  color: rgba(255, 255, 255, 0.2);
  font-size: 12px;
}
.breadcrumb .current {
  color: var(--teal);
  font-size: 13px;
}

.about-full {
  padding: 100px 0;
}
.about-full-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-img-tall {
  aspect-ratio: 3/4;
  background: var(--light);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}
.about-img-tall img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}
.about-tab {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 12px 20px;
  color: var(--gray);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all 0.2s;
}
.about-tab.active {
  color: var(--teal);
  border-bottom-color: var(--teal);
}
.about-tab-content {
  display: none;
}
.about-tab-content.active {
  display: block;
}
.about-tab-content h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: black;
  margin-bottom: 16px;
}
.about-tab-content p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.8;
}

.stats-strip {
  background: linear-gradient(to bottom, var(--teal), var(--teal-light));
  padding: 20px 0;
}
.stats-grid {
  display: flex;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.2);
}
.stat-item {
  background: linear-gradient(to bottom, var(--teal), var(--teal-light));
  padding: 16px;
  text-align: center;
  flex: 1;
}
.stat-num {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 8px;
  letter-spacing: 0.04em;
}

.swachh-section {
  padding: 80px 0;
  background: var(--dark);
}
.swachh-inner {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: center;
}
.swachh-inner h2 {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}
.swachh-inner h2 span {
  color: var(--teal);
}
.swachh-inner p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
  margin-bottom: 24px;
}
.swachh-badge {
  background: rgba(2, 149, 163, 0.15);
  border: 1px solid rgba(2, 149, 163, 0.3);
  border-radius: 6px;
  padding: 28px;
  text-align: center;
}
.swachh-badge .icon {
  font-size: 48px;
  margin-bottom: 12px;
  color: var(--teal);
}
.swachh-badge p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}
.swachh-badge strong {
  color: var(--teal);
  display: block;
  font-family: var(--font-head);
  font-size: 16px;
  margin-top: 4px;
}

.team-section {
  padding: 80px 0;
  background: var(--light);
}
.team-grid {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 32px;
  flex: 0 0 260px;
  text-align: center;
}
.team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(to bottom, var(--teal), var(--teal-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  overflow: hidden;
}
.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-avatar .initials {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 800;
  color: #fff;
}
.team-card h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: black;
}
.team-card .role {
  font-size: 13px;
  color: var(--teal);
  margin-top: 4px;
  font-weight: 500;
}
.team-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 12px;
  color: var(--gray);
  text-decoration: none;
}
.team-linkedin:hover {
  color: var(--teal);
}

.all-products-section {
  padding: 80px 0;
}
.products-full-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-detail {
  padding: 80px 0;
}
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.product-detail-img {
  aspect-ratio: 4/3;
  background: var(--light);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.product-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-detail-content h1 {
  font-family: var(--font-head);
  font-size: 35px;
  font-weight: 800;
  color: black;
  margin-bottom: 12px;
}
.product-detail-content .desc {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 28px;
}
.product-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}
.spec-item {
  background: var(--light);
  border-radius: 4px;
  padding: 16px;
}
.spec-item .spec-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 4px;
}
.spec-item .spec-val {
  font-size: 14px;
  color: black;
  font-weight: 500;
}
.product-apps h4 {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: black;
  margin-bottom: 12px;
}
.app-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.app-tag {
  background: var(--teal-pale);
  color: var(--teal);
  font-size: 12px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 3px;
}

.contact-section {
  padding: 80px 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contact-info h2 {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 800;
  color: black;
  margin-bottom: 16px;
}
.contact-info p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 36px;
}
.contact-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-item {
  display: flex;
  gap: 16px;
}
.contact-item-icon {
  width: 48px;
  height: 48px;
  background: var(--teal-pale);
  color: var(--teal);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.contact-item-body h4 {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: black;
  margin-bottom: 4px;
}
.contact-item-body p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}
.contact-item-body a {
  color: var(--teal);
  text-decoration: none;
}
.contact-form-card {
  background: var(--light);
  border-radius: 8px;
  padding: 40px;
}
.contact-form-card h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: black;
  margin-bottom: 28px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--mid);
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 14px;
  color: black;
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--teal);
}
.form-group textarea {
  height: 120px;
  resize: vertical;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.map-section {
  background: var(--light);
  padding: 60px 0;
}
.map-placeholder {
  height: 360px;
  background: linear-gradient(135deg, #e8e0d4 0%, #d4ccc0 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.map-placeholder .map-pin {
  font-size: 48px;
  color: var(--teal);
}
.map-info {
  text-align: center;
}
.map-info p {
  font-size: 14px;
  color: var(--gray);
  margin-top: 12px;
}
.map-info strong {
  color: black;
}

footer {
  background: var(--dark2);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-brand .logo {
  font-size: 28px;
  margin-bottom: 16px;
  display: inline-block;
}
.footer-brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  max-width: 280px;
}
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.social-btn {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s;
}
.social-btn:hover {
  background: var(--teal);
  color: #fff;
}
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links li a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links li a:hover {
  color: var(--teal);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-contact-item {
  display: flex;
  gap: 10px;
}
.footer-contact-item .icon {
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--teal);
}
.footer-contact-item p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.55;
}
.footer-contact-item a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
}
.footer-contact-item a:hover {
  color: var(--teal);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
}
.footer-bottom a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
}
.footer-bottom a:hover {
  color: var(--teal);
}

.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s;
  font-size: 24px;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  color: #ffffff;
}

/* JavaScript Image Slider & Overlay Elements */
.card-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.card-image.active {
  opacity: 1;
}
.img-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  cursor: pointer;
  z-index: 10;
}
.img-nav.prev {
  left: 10px;
}
.img-nav.next {
  right: 10px;
}
.detail-image-container {
  position: relative;
  width: 100%;
  height: 100%;
}
.detail-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.detail-image.active {
  opacity: 1;
}
.detail-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  cursor: pointer;
  z-index: 20;
}
.detail-nav.prev {
  left: 10px;
}
.detail-nav.next {
  right: 10px;
}

/* Responsive Media Queries */
@media (max-width: 900px) {
  .hero-content,
  .about-strip-inner,
  .about-full-grid,
  .contact-grid,
  .product-detail-grid,
  .swachh-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .products-full-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-stats {
    display: none;
  }
  nav {
    display: none;
  }
  nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--dark2);
    padding: 20px;
    gap: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
  .nav-dropdown .dropdown-menu {
    position: static;
    background: none;
    border: none;
    box-shadow: none;
    padding: 8px 0 0 16px;
    display: block;
  }
  .hamburger {
    display: flex;
  }
}

@media (max-width: 600px) {
  .products-grid,
  .products-full-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .hero-products-grid {
    grid-template-columns: 1fr;
  }
}

/* ── FAQ Section ─────────────────────────────────────────── */
.faq-section {
  padding: 80px 0;
  background: var(--light);
}

.faq-grid {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.faq-item:hover {
  box-shadow: 0 4px 16px rgba(2, 149, 163, 0.1);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  text-align: left;
  transition: color 0.2s;
}

.faq-question:hover {
  color: var(--teal);
}

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--teal-pale);
  color: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  transition: transform 0.3s, background 0.2s;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
}

.faq-answer p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.7;
  padding-bottom: 20px;
}

/* open state */
.faq-item.open .faq-answer {
  max-height: 300px;
  padding-top: 0;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--teal);
  color: var(--white);
}

.faq-item.open .faq-question {
  color: var(--teal);
}

@media (max-width: 600px) {
  .faq-question {
    font-size: 0.92rem;
    padding: 16px 18px;
  }
  .faq-answer {
    padding: 0 18px;
  }
}

/* ── Blog Section ─────────────────────────────────────────── */
.blog-section {
  padding: 80px 0;
  background: var(--light);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 20px;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
  display: flex;
  flex-direction: column;
}



.blog-card-img {
  position: relative;
  height: 280px;
  background: #f0f4f5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.blog-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.blog-card-link:hover .blog-card {
  box-shadow: 0 8px 32px rgba(2, 149, 163, 0.12);
  transform: translateY(-4px);
}

.blog-card-img-placeholder {
  font-size: 56px;
  color: rgba(255,255,255,0.25);
}

.blog-category-tag {
  position: absolute;
  bottom: 14px;
  left: 16px;
  background: var(--white);
  color: var(--teal);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}

.blog-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-meta {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: var(--gray);
  margin-bottom: 12px;
}

.blog-meta i {
  margin-right: 4px;
  color: var(--teal);
}

.blog-card-title {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.45;
  margin-bottom: 12px;
}

.blog-card-excerpt {
  font-size: 13.5px;
  color: var(--gray);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  text-decoration: none;
  transition: gap 0.2s;
}

.blog-read-more:hover {
  gap: 10px;
}

@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 580px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* Single blog card — don't stretch full width */
.blog-grid-single {
  grid-template-columns: 380px;
}
@media (max-width: 580px) {
  .blog-grid-single {
    grid-template-columns: 1fr;
  }
}

/* ── Blog Post Detail Page ───────────────────────────────── */
.blog-post-section {
  padding: 60px 0 80px;
  background: var(--white);
}

.blog-post-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}

/* Article content */
.blog-post-content {
  min-width: 0;
}

.blog-lead {
  font-size: 1.1rem;
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 2px solid var(--teal-pale);
  font-weight: 400;
}

.blog-post-content h2 {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--dark);
  margin: 36px 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--teal-pale);
}

.blog-post-content h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--teal-dark);
  margin: 24px 0 8px;
}

.blog-post-content p {
  font-size: 0.97rem;
  color: var(--mid);
  line-height: 1.85;
  margin-bottom: 16px;
}

.blog-post-content ul {
  margin: 12px 0 20px 20px;
}

.blog-post-content ul li {
  font-size: 0.97rem;
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: 6px;
  position: relative;
}

.blog-post-content ul li::marker {
  color: var(--teal);
}

.blog-post-content strong {
  color: var(--dark);
  font-weight: 600;
}

/* In-article CTA box */
.blog-post-cta {
  background: var(--teal-pale);
  border-left: 4px solid var(--teal);
  border-radius: 0 8px 8px 0;
  padding: 28px 32px;
  margin-top: 40px;
}

.blog-post-cta h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 8px;
}

.blog-post-cta p {
  color: var(--gray);
  margin-bottom: 16px;
}

/* Sidebar */
.blog-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar-card {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
}

.sidebar-card h4 {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--teal-pale);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.sidebar-post-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sidebar-post-list li a {
  font-size: 0.88rem;
  color: var(--mid);
  text-decoration: none;
  line-height: 1.5;
  display: block;
  transition: color 0.2s;
  padding-left: 12px;
  border-left: 2px solid var(--border);
}

.sidebar-post-list li a:hover {
  color: var(--teal);
  border-left-color: var(--teal);
}

.sidebar-cta {
  background: var(--dark);
  border-color: var(--dark);
  text-align: center;
}

.sidebar-cta h4 {
  color: var(--white);
  border-bottom-color: rgba(255,255,255,0.1);
}

.sidebar-cta p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

.sidebar-cta-icon {
  font-size: 2rem;
  color: var(--teal);
  margin-bottom: 12px;
}

@media (max-width: 900px) {
  .blog-post-layout {
    grid-template-columns: 1fr;
  }
  .blog-sidebar {
    position: static;
  }
}

/* ── Blog Post — Featured Image ──────────────────────────── */
.blog-featured-img {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 32px;
  max-height: 380px;
}
.blog-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Blog Post — Types Grid ──────────────────────────────── */
.blog-types-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0 28px;
}
.blog-type-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px;
}
.blog-type-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  background: var(--teal);
  color: var(--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.blog-type-item h3 {
  font-size: 0.9rem !important;
  font-weight: 700 !important;
  color: var(--dark) !important;
  margin: 0 0 4px !important;
  border: none !important;
  padding: 0 !important;
}
.blog-type-item p {
  font-size: 0.83rem !important;
  color: var(--gray) !important;
  margin: 0 !important;
  line-height: 1.5 !important;
}

/* ── Blog Post — Benefits List ───────────────────────────── */
.blog-benefits-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 20px 0 28px;
}
.blog-benefit-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 20px;
  background: var(--light);
  border-left: 3px solid var(--teal);
  border-radius: 0 8px 8px 0;
}
.blog-benefit-icon {
  flex-shrink: 0;
  font-size: 1.1rem;
  color: var(--teal);
  margin-top: 2px;
  width: 22px;
  text-align: center;
}
.blog-benefit-item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--dark);
  margin-bottom: 4px;
}
.blog-benefit-item p {
  font-size: 0.88rem !important;
  color: var(--gray) !important;
  margin: 0 !important;
  line-height: 1.6 !important;
}

/* ── Blog Post — In-article FAQ ──────────────────────────── */
.blog-faq {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ── Blog post inline links ──────────────────────────────── */
.blog-post-content a:not(.btn-primary):not(.blog-read-more) {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.blog-post-content a:not(.btn-primary):not(.blog-read-more):hover {
  color: var(--teal-dark);
}

@media (max-width: 640px) {
  .blog-types-grid {
    grid-template-columns: 1fr;
  }
}
