﻿* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

  font-family: 'Poppins', Helvetica, Arial, sans-serif;


}

/* TOP STRIP BACKGROUND */
.top-strip {
  background: #f3f6f9;
  width: 100%;
  padding: 10px 0;
}

/* CENTER CONTENT SAME AS NAVBAR */
.top-strip-inner {
  width: 1180px;
  /* ðŸ‘ˆ SAME WIDTH AS BLUE NAV */
  margin: 0 auto;
  /* ðŸ‘ˆ CENTER */
  display: flex;
  align-items: center;
  /* ðŸ‘ˆ VERTICAL ALIGN FIX */
  justify-content: space-between;
}

/* TEXT */
.top-strip p {
  font-size: 14px;
  color: #444;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 14px;
}

.social-icons img {
  width: 16px;
  height: 16px;
  cursor: pointer;
  display: block;
}

/* Optional hover effect */
.social-icons img:hover {
  transform: translateY(-2px);
  transition: 0.2s ease;
}


/* INFO BAR */
.info-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  background: #fff;
}



.info-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  max-width: 260px;
}

.info-item i {
  font-size: 22px;
  color: #1877f2;
  margin-top: 4px;
}

.info-item span {
  font-size: 13px;
  color: #777;
}

.info-item strong {
  font-size: 14px;
  color: #000;
}

.language {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.aqua-navbar {
  background: #1478f2;
  /* exact blue feel */
  padding: 22px 0;
  width: 1120px;

}

.nav-inner {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 1180px;
}

/* MENU */
.nav-menu {
  list-style: none;
  display: flex;
  gap: 36px;
}

.nav-menu li {
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  position: relative;
}

/* ACTIVE ITEM */
.nav-menu li.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: #fff;
}

/* RIGHT SIDE */
.nav-right {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #fff;
  font-size: 18px;
}

/* BUTTON */
.consult-btn {
  background: #fff;
  color: #222;
  border: none;
  padding: 14px 22px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

/* DUPLICATE BLOCK: .aqua-navbar already defined above; this block overrides earlier values */
/* BLUE BAR CENTERED */
.aqua-navbar {
  background: #1478f2;
  width: 1180px;
  /* ðŸ‘ˆ same visual width as image */
  margin: 0 auto;
  /* ðŸ‘ˆ center horizontally */
  padding: 22px 0;
  border-radius: 20px;
  /* subtle edge like image */


}

/* DUPLICATE BLOCK: .nav-inner already defined above; this block overrides earlier values */
/* CONTENT INSIDE */
.nav-inner {
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 769px) {
  .aqua-navbar {
    width: min(1180px, calc(100% - 40px));
    border-radius: 20px;
    position: relative;
    z-index: 999;
    transition: width 0.35s ease, border-radius 0.35s ease, padding 0.35s ease;
  }

  .aqua-navbar .nav-inner {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 28px;
    transition: max-width 0.35s ease, padding 0.35s ease;
  }

  .aqua-navbar.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    border-radius: 0;
    padding: 16px 0;
    z-index: 1200;
  }

  .aqua-navbar.sticky .nav-inner {
    max-width: 100%;
    padding: 0 34px;
  }
}

.top-info {
  background: #fff;
  padding: 22px 0;
}

.info-container {
  width: 1180px;
  margin: auto;
  display: flex;
  align-items: center;
  /* ðŸ”¥ KEY LINE */
  justify-content: space-between;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  /* ðŸ”¥ */
  gap: 10px;
}

.logo img {
  height: 100px;
}

.logo span {
  font-weight: 700;
  color: #1877f2;
  font-size: 20px;
}

/* DUPLICATE BLOCK: .info-item already defined above; this block overrides earlier values */
/* INFO ITEMS */
.info-item {
  display: flex;
  align-items: center;
  /* ðŸ”¥ */
  gap: 12px;
  max-width: 260px;
}

.info-item i {
  font-size: 22px;
  color: #1877f2;
}

.info-item small {
  display: block;
  color: #777;
  font-size: 13px;
  line-height: 1.2;
}

.info-item strong {
  font-size: 14px;
  color: #000;
  line-height: 1.3;
}

/* DUPLICATE BLOCK: .language already defined above; this block repeats earlier declaration */
/* LANGUAGE */
.language {
  display: flex;
  align-items: center;
  /* ðŸ”¥ */
  gap: 6px;
  cursor: pointer;
}


.hero {
  background: #98D7FF;
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-container {
  width: 1180px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LEFT TEXT */
.hero-text {
  max-width: 520px;
  color: black;
}

.hero-text h1 {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 28px;
}

/* BADGES */
.hero-badges {
  display: flex;
  gap: 16px;
  margin-bottom: 34px;
}

.badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.15);
  padding: 12px 16px;
  border-radius: 10px;
}

.badge img {
  width: 24px;
}

.badge span {
  font-size: 14px;
  line-height: 1.2;
}

.badge small {
  font-size: 11px;
  opacity: 0.8;
}

/* BUTTONS */
.hero-buttons {
  display: flex;
  gap: 16px;
}

.btn-primary {
  background: #1478f2;
  color: #fff;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
}

/* DUPLICATE BLOCK: .btn-outline already defined just above; this block overrides earlier values */
.btn-outline {
  padding: 12px 28px;

  color: #2563eb;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background-color: #2563eb;
  /* blue bg */
  color: #ffffff;
  /* white text */
}

.btn-outline {
  background: #fff;
  color: #1478f2;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
}

/* RIGHT IMAGE */
.hero-image img {
  max-height: 520px;
}

/* SLIDER DOTS */
.hero-dots {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 40px;
}

.hero-dots span {
  width: 48px;
  height: 4px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 999px;
}

.hero-dots span.active {
  background: #1478f2;
}


.hero-badges {
  display: flex;
  gap: 20px;
}

.badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #9fd8ff;
  border-radius: 12px;
  padding: 14px 20px;
  min-width: 160px;
}

.badge img {
  width: 28px;
  height: 28px;
  filter: invert(16%) sepia(14%) saturate(463%) hue-rotate(179deg);
}

.badge-text {
  line-height: 1.2;
}

.badge-text strong {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
}

.badge-text small {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #334155;
}

.stats-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #1e88e5, #0b1e8a 55%, #4f2ccf);
  color: #fff;
}

.stats-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.stats-container h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 10px;
}

.stats-container .subtitle {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 60px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat-card {
  background: #ffffff;
  color: #0f172a;
  border-radius: 20px;
  padding: 40px 20px;
  transition: 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.icon-box {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: #e0f2fe;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-box img {
  width: 32px;
  height: 32px;
}

.stat-card h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
}

.stat-card span {
  font-size: 14px;
  color: #475569;
}

@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .stats-section {
    padding: 60px 16px;
  }

  .stats-container h2 {
    font-size: 26px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }
}

.products-section {
  padding: 80px 20px;
  text-align: center;
}

.products-section h2 {
  font-size: 32px;
  font-weight: 700;
}

.subtitle {
  max-width: 600px;
  margin: 10px auto 40px;
  color: white;
}

.subtitle-black {
  color: #000;
  /* black */
}


.product-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
}

.tab {
  padding: 10px 22px;
  border-radius: 30px;
  border: 1px solid #e5e7eb;
  background: #fff;
  cursor: pointer;
  font-weight: 500;
}

.tab.active {
  background: #0d6efd;
  color: #fff;
  border-color: #0d6efd;
}

.product-slider-wrapper {
  position: relative;
  max-width: 1200px;
  margin: auto;
}

.product-slider {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px;
}

.product-slider::-webkit-scrollbar {
  height: 6px;
}

.product-slider::-webkit-scrollbar-thumb {
  background: #0d6efd;
  border-radius: 10px;
}

.product-card {
  min-width: 280px;
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  text-align: left;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.product-card img {
  width: 100%;
  height: 260px;
  object-fit: contain;
}

.product-card h3 {
  margin: 15px 0 5px;
}

.rating {
  font-size: 14px;
  margin-bottom: 8px;
}

.desc {
  font-size: 14px;
  color: #555;
}

.product-card ul {
  font-size: 13px;
  padding-left: 16px;
  margin: 10px 0;
}

.price {
  font-weight: 600;
  margin: 10px 0;
}

.buy-btn {
  background: #0d6efd;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  cursor: pointer;
}

a.buy-btn {
  display: inline-block;
  text-decoration: none;
  text-align: center;
}

/* TAGS */
.tag {
  display: inline-block;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 20px;
  color: #fff;
  margin-bottom: 10px;
}

.tag.residential {
  background: #1e40af;
}

.tag.commercial {
  background: #1e40af;
}

.tag.industrial {
  background: #1e40af;
}

/* NAV BUTTONS */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #0d6efd;
  color: #fff;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
}

.nav-btn.left {
  left: -20px;
}

.nav-btn.right {
  right: -20px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-btn {
    display: none;
  }
}

@media (max-width: 768px) {
  .home-page .products-section .nav-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    z-index: 3;
  }

  .home-page .products-section .nav-btn.left {
    left: 6px;
  }

  .home-page .products-section .nav-btn.right {
    right: 6px;
  }
}

.about-section {
  padding: 80px 0;
  background: #fff;
  font-family: 'Segoe UI', sans-serif;
}

.about-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* LEFT CONTENT */
.about-tag {
  color: #1e73ff;
  font-weight: 600;
  margin-bottom: 12px;
  display: inline-block;
}

.about-title {
  font-size: 42px;
  font-weight: 700;
  color: #000;
  line-height: 1.2;
  margin-bottom: 20px;
}

.about-text {
  color: #555;
  line-height: 1.7;
  margin-bottom: 18px;
  font-size: 15.5px;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.about-list li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 14px;
  font-size: 15px;
  color: #000;
}

.about-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  background: #1e73ff;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 14px;
  line-height: 22px;
}

.about-btn {
  display: inline-block;
  background: #1e73ff;
  color: #fff;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.about-btn:hover {
  background: #0d5fe0;
}

/* RIGHT MEDIA */
.about-media {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
}

.play-btn::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 22px;
  border-left: 18px solid #1e73ff;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}

/* CAPTION */
.media-caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #fff;
}

.media-caption h4 {
  font-size: 22px;
  margin-bottom: 4px;
}

.media-caption p {
  font-size: 14px;
  opacity: 0.9;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-container {
    grid-template-columns: 1fr;
  }
}


.about-media {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
}

/* VIDEO */
.about-media iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: none;
  transition: transform 0.6s ease;
}

/* ZOOM EFFECT */
.about-media:hover iframe {
  transform: scale(1.08);
}

/* OPTIONAL DARK OVERLAY ON HOVER */
.play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
  pointer-events: none;
  transition: background 0.4s ease;
}

.about-media:hover .play-overlay {
  background: rgba(0, 0, 0, 0.25);
}

/* CAPTION */
.media-caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #fff;
  z-index: 2;
}

.media-caption h4 {
  font-size: 22px;
  margin-bottom: 4px;
}

.media-caption p {
  font-size: 14px;
  opacity: 0.9;
}


.tsm-section {
  padding: 80px 20px;
  text-align: center;
}

.tsm-title {
  font-size: 34px;
  font-weight: 700;
}

.tsm-subtitle {
  color: #555;
  margin: 10px 0 60px;
}

.tsm-slider-wrapper {
  position: relative;
  max-width: 1200px;
  margin: auto;
}

.tsm-slider {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px;
}

.tsm-slider::-webkit-scrollbar {
  display: none;
}

/* CARD */
.tsm-card {
  min-width: 300px;
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  text-align: left;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative;
}

.tsm-card img {
  width: 100%;
  height: 260px;
  object-fit: contain;
  margin: 20px 0;
}

.tsm-card h3 {
  font-size: 20px;
  margin-bottom: 6px;
}

.tsm-price {
  color: #0d6efd;
  font-weight: 600;
  margin-bottom: 10px;
}

.tsm-card ul {
  font-size: 14px;
  color: #555;
  padding-left: 16px;
  margin-bottom: 14px;
}

/* TAGS */
.tsm-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 20px;
  color: #fff;
}


.tsm-rating {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 12px;
}

/* FEATURES */
.tsm-features {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 13px;
}

/* BUTTON */
.tsm-buy {
  background: #0d6efd;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
}

a.tsm-buy {
  display: inline-block;
  text-decoration: none;
  text-align: center;
}

/* NAV */
.tsm-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: #0d6efd;
  color: #fff;
  cursor: pointer;
}

.tsm-prev {
  left: -20px;
}

.tsm-next {
  right: -20px;
}

/* DOTS */
.tsm-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.tsm-dots span {
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
}

.tsm-dots span.active {
  background: #0d6efd;
}


.tsm-slider-wrapper {
  position: relative;
  max-width: 1200px;
  margin: auto;
}

/* NEW container */
.tsm-slider-container {
  overflow: hidden;
  /* ðŸ”¥ THIS FIXES OVERLAP */
}

/* slider itself */
.tsm-slider {
  display: flex;
  gap: 30px;
  padding: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
}

.tsm-slider::-webkit-scrollbar {
  display: none;
}

/* arrows */
.tsm-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #0d6efd;
  color: #fff;
  border: none;
  cursor: pointer;
  z-index: 10;
  /* stays above */
}

.tsm-prev {
  left: -24px;
}

.tsm-next {
  right: -24px;
}

.product-features-box {
  display: flex;
  gap: 14px;
  margin: 16px 0 20px;
}

.feature-box {
  flex: 1;
  background: #eaf7fb;
  border-radius: 6px;
  padding: 12px 8px;
  text-align: center;
}

.feature-box img {
  width: 18px;
  height: 18px;
  margin-bottom: 6px;
}

.feature-box span {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: #333;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: #ffffff;
}

/* SECTION */
.tech-section {
  padding: 80px 100px;
}

/* HEADER */
.tech-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
}

.tech-header .tag {
  color: #0b63ff;
  font-weight: 600;
  font-size: 20px;
}

.tech-header h2 {
  font-size: 42px;
  margin-top: 10px;
}

.tech-header h2 span {
  color: #0b63ff;
}

.tech-header .right {
  display: flex;
  max-width: 420px;
  gap: 20px;
}

.tech-header .line {
  width: 4px;
  background: #0b63ff;
}

.tech-header p {
  color: #555;
  line-height: 1.6;
}

/* MAIN CARD */
.tech-card {
  background: linear-gradient(135deg, #0b2c8f, #061a66);
  border-radius: 24px;
  padding: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* SIDE BOXES */
.side {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 28%;
}

.info-box {
  background: #ffffff;
  border-radius: 22px;
  padding: 30px;
}

.info-box h4 {
  font-size: 20px;
  margin-bottom: 10px;
}

.info-box p {
  color: #666;
  line-height: 1.5;
}

/* COLOR HEADINGS */
.blue {
  color: #00b2ff;
}

.green {
  color: #00a889;
}

.purple {
  color: #a855f7;
}

.orange {
  color: #ff7a45;
}

/* CENTER STACK */
.center-stack {
  width: 32%;
  display: flex;
  justify-content: center;
}

.capsule {
  width: 240px;
  background: linear-gradient(180deg, #3b4edc, #2a2f9e);
  border-radius: 120px;
  padding: 30px 20px;
  text-align: center;
  color: #fff;
}

.capsule img {
  width: 90px;
  margin-bottom: 10px;
}

.capsule h3 {
  margin-bottom: 20px;
  font-weight: 500;
}

.pill {
  display: block;
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 13px;
  margin: 12px 0;
}

.pill.light {
  background: #36c0c9;
}

.pill.dark {
  background: #0b4fd6;
}

.pill small {
  display: block;
  font-size: 11px;
  opacity: 0.8;
}

.center-stack {
  display: flex;
  justify-content: center;
}

.capsule {
  width: 260px;
  height: 520px;
  background: linear-gradient(180deg, #4b5be5, #2b2f99);
  border-radius: 140px;
  padding: 35px 25px;
  text-align: center;
  color: #fff;

  /* ðŸ”¥ KEY DIFFERENCE */
  border: 1.5px solid rgba(255, 255, 255, 0.6);
}

.capsule img {
  width: 70px;
  margin-bottom: 10px;
}

.capsule h3 {
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 22px;
}

/* NORMAL PILLS */
.pill {
  display: block;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 13px;
  margin: 14px auto;
  width: 85%;
  text-align: center;
}

.pill.light {
  background: #36c0c9;
}

/* RO MEMBRANE CARD */
.pill-card {
  background: #0b4fd6;
  border-radius: 22px;
  padding: 18px 10px;
  margin: 18px auto;
  width: 85%;
}

.pill-card strong {
  display: block;
  font-size: 13px;
  letter-spacing: 1px;
}

.pill-card small {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  opacity: 0.8;
}

/* BOTTOM INACTIVE BAR */
.pill.inactive {
  background: rgba(0, 0, 0, 0.35);
  height: 36px;
}

/* CONTAINER */
.purity-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px 0;
  background: #fff;
}

/* ITEM */
.purity-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* VALUE */
.purity-value {
  font-size: 26px;
  font-weight: 700;
  color: #000;
}

.purity-value.highlight {
  color: #0b63ff;
}

/* LABEL */
.purity-label span {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #777;
  letter-spacing: 0.8px;
  line-height: 1.2;
}

/* DIVIDER */
.purity-divider {
  width: 1px;
  height: 32px;
  background: #cfcfcf;
  margin: 0 4px;
}

/* SECTION */
.network-section {
  position: relative;
  padding: 110px 20px;
  background: #ffffff;
  overflow: hidden;
}

/* WORLD MAP BACKGROUND */
.network-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/world\ map.png") center/cover no-repeat;
  opacity: 0.07;
  /* ðŸ”¥ VERY IMPORTANT */
  filter: blur(1.5px);
  /* ðŸ”¥ soft look */
  z-index: 0;
}

/* KEEP CONTENT ABOVE MAP */
.network-container {
  position: relative;
  z-index: 2;
}

/* CONTAINER */
.network-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

/* TAG */
.network-tag {
  color: #0b63ff;
  font-size: 20px;
  font-weight: 600;
}

/* TITLE */
.network-title {
  font-size: 36px;
  font-weight: 700;
  margin: 16px 0 50px;
}

/* STATS CARD */
.network-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffff;
  border: 1px solid #dcdcdc;
  border-radius: 20px;
  padding: 35px 40px;
  max-width: 1000px;
  margin: 0 auto 60px;
}

/* STAT */
.network-stat h3 {
  color: #0b63ff;
  font-size: 28px;
  font-weight: 700;
}

.network-stat p {
  margin-top: 8px;
  color: #666;
  font-size: 14px;
  font-weight: 600;
}

/* DIVIDER */
.network-divider {
  width: 1px;
  height: 45px;
  background: #cfcfcf;
}

/* CTA */
.network-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.network-cta p {
  font-size: 18px;
  color: #111;
}

.network-cta p span {
  color: #0b63ff;
  font-weight: 600;
}

/* BUTTON */
.network-btn {
  padding: 12px 22px;
  background: #0b63ff;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 600;
  transition: 0.3s;
}

.network-btn:hover {
  background: #084dcc;
}


.partners-section {
  background: #f3f6f9;
  padding: 50px 0;
}

.partners-container {
  width: 1180px;
  margin: auto;
  text-align: center;
}

.partners-container h2 {
  font-size: 26px;
  font-weight: 600;
  color: #000;
  margin-bottom: 6px;
}

.partners-container p {
  font-size: 14px;
  color: #666;
  margin-bottom: 30px;
}

/* SLIDER */
.partners-slider {
  overflow: hidden;
  width: 100%;
}

.partners-track {
  display: flex;
  width: calc(200px * 12);
  animation: scroll 25s linear infinite;
}

.partner {
  width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner img {
  max-width: 140px;

  opacity: 0.8;
  transition: 0.3s;
}

.partner img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* AUTO SLIDE */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .partners-container {
    width: 95%;
  }
}


.testimonials {
  padding: 80px 0;
  background: #fff;
}

.testimonials-container {
  width: 1180px;
  margin: auto;
  text-align: center;
  position: relative;
}

.testimonials h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 6px;
}

.subtitle {
  font-size: 14px;
  color: #666;
  margin-bottom: 40px;
}

/* ARROWS */
.testimonial-arrows {
  position: absolute;
  top: 90px;
  right: 0;
}

.testimonial-arrows button {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: #1e73ff;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  margin-left: 8px;
}

/* SLIDER */
.testimonial-slider {
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-card {
  min-width: 360px;
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  margin: 0 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  text-align: left;
}

.quote {
  font-size: 40px;
  color: #1e73ff;
}

.testimonial-card p {
  font-size: 14px;
  color: #444;
  margin-bottom: 20px;
}

/* USER */
.user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.user img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

.user h4 {
  font-size: 14px;
  margin: 0;
}

.user span {
  font-size: 12px;
  color: #777;
}

.stars {
  color: #ffc107;
  font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .testimonials-container {
    width: 95%;
  }
}

.blog-section {
  padding: 90px 0;
  background: #fff;
}

.blog-container {
  width: 1180px;
  margin: auto;
}

/* HEADER */
.blog-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.blog-tag {
  color: #1e73ff;
  font-size: 13px;
  font-weight: 500;
}

.blog-header h2 {
  font-size: 32px;
  font-weight: 600;
  margin-top: 6px;
}

.blog-header h2 span {
  color: #1e73ff;
}

.blog-actions {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 14px;
}

/* ARROWS */
.arrows button {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: #1e73ff;
  color: #fff;
  cursor: pointer;
  margin-left: 6px;
}

/* SLIDER */
.blog-slider {
  overflow: hidden;
}

.blog-track {
  display: flex;
  transition: transform 0.5s ease;
}

.blog-card {
  min-width: 360px;
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
  margin-right: 30px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.blog-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.blog-content {
  padding: 22px;
}

.blog-content small {
  color: #777;
  font-size: 12px;
}

.blog-content h4 {
  font-size: 16px;
  margin: 10px 0;
}

.blog-content p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

.blog-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}

.blog-footer a {
  color: #1e73ff;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
}

/* IMAGE ZOOM ON HOVER */
.blog-card img {
  transition: transform 0.5s ease;
}

.blog-card:hover img {
  transform: scale(1.08);
}


.blog-img {
  border-radius: 18px;
  /* SAME curve on all sides */
  overflow: hidden;
  /* REQUIRED */
}

.blog-img img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* zoom stays inside curve */
.blog-card:hover .blog-img img {
  transform: scale(1.08);
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .blog-container {
    width: 95%;
  }
}

.footer {
  background: #155bd5;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

/* MAIN GRID */
.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 2fr;
  gap: 40px;
}

/* LOGO */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo img {
  width: 45px;
}

.footer-about p {
  margin: 15px 0;
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.9;
}

/* HEADINGS */
.footer h4 {
  font-size: 16px;
  margin-bottom: 15px;
}

/* LINKS */
.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  opacity: 0.85;
}

.footer ul li a:hover {
  opacity: 1;
}

/* SOCIAL */
.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.social-icons a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  color: #fff;
}

/* CONTACT */
.footer-contact p {
  font-size: 14px;
  margin-bottom: 10px;
  opacity: 0.9;
}

.footer-contact i {
  margin-right: 8px;
}

/* PRODUCTS + LOCATIONS */
.footer-products,
.footer-locations {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-products p,
.footer-locations p {
  font-size: 13px;
  opacity: 0.85;
  line-height: 1.6;
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  padding: 15px;
  font-size: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  opacity: 0.8;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}

.footer-badges {
  display: flex;
  gap: 10px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.footer-badges img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  background: #fff;
  padding: 4px;
  border-radius: 50%;
}

@media (max-width: 1200px) {

  .top-strip-inner,
  .info-container,
  .hero-container,
  .partners-container,
  .testimonials-container,
  .blog-container,
  .footer-container {
    width: 95%;
  }

  .aqua-navbar {
    width: 95%;
  }

  .nav-inner {
    width: 100%;
  }
}

@media (max-width: 992px) {

  /* NAVBAR */
  .nav-menu {
    gap: 22px;
    font-size: 14px;
  }

  /* HERO */
  .hero-container {
    flex-direction: column;
    text-align: center;
    gap: 50px;
  }

  .hero-text h1 {
    font-size: 48px;
  }

  .hero-badges {
    justify-content: center;
    flex-wrap: wrap;
  }

  /* STATS */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* TECH SECTION */
  .tech-section {
    padding: 60px 30px;
  }

  .tech-header {
    flex-direction: column;
    gap: 20px;
  }

  .tech-card {
    flex-direction: column;
    gap: 40px;
    padding: 40px;
  }

  .side,
  .center-stack {
    width: 100%;
    align-items: center;
  }

  /* FOOTER */
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {

  .hero-text h1 {
    font-size: 30px;
  }

  .stats-container h2,
  .network-title,
  .about-title {
    font-size: 26px;
  }

  .badge {
    min-width: auto;
    width: 100%;
  }

  .product-card,
  .tsm-card,
  .blog-card {
    min-width: 90%;
  }

  .footer-products p,
  .footer-locations p {
    font-size: 12px;
  }
}

/* ================= TABLET ================= */
@media (max-width: 991px) {
  .info-container {
    justify-content: center;
    text-align: center;
  }

  .info-item {
    justify-content: center;
    text-align: left;
  }

  .nav-inner {
    gap: 15px;
    justify-content: center;
  }

  .nav-menu {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ================= MOBILE ================= */
@media (max-width: 576px) {

  /* Top strip */
  .top-strip-inner {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  /* Info section */
  .info-container {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }

  .info-item {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  /* Navbar */
  .nav-inner {
    flex-direction: column;
    gap: 15px;
  }

  .nav-menu {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .nav-right {
    flex-direction: column;
    gap: 10px;
  }

  .consult-btn {
    width: 100%;
    text-align: center;
  }
}

/* ================= TABLET (<= 1024px) ================= */
@media (max-width: 1024px) {
  .hero-container {
    width: 100%;
    padding: 0 24px;
    gap: 40px;
  }

  .hero-text h1 {
    font-size: 52px;
  }

  .hero-image img {
    max-height: 420px;
  }
}

/* ================= SMALL TABLET (<= 900px) ================= */
@media (max-width: 900px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-badges {
    justify-content: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image img {
    max-height: 380px;
  }
}

/* ================= MOBILE (<= 600px) ================= */
@media (max-width: 600px) {
  .hero {
    padding: 70px 0 50px;
  }

  .hero-text h1 {
    font-size: 36px;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 15px;
  }

  .hero-badges {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .badge {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 14px;
  }

  .hero-buttons a {
    width: 100%;
    text-align: center;
  }

  .hero-image img {
    width: 100%;
    max-height: 300px;
  }

  .hero-dots span {
    width: 32px;
  }
}

/* ================= EXTRA SMALL (<= 400px) ================= */
@media (max-width: 400px) {
  .hero-text h1 {
    font-size: 30px;
  }
}

/* ================= TABLET (<= 1024px) ================= */
@media (max-width: 1024px) {
  .products-section {
    padding: 70px 16px;
  }

  .products-section h2 {
    font-size: 28px;
  }

  .product-slider {
    gap: 20px;
    padding: 16px;
  }

  .product-card {
    min-width: 260px;
  }

  .product-card img {
    height: 230px;
  }
}

/* ================= SMALL TABLET (<= 900px) ================= */
@media (max-width: 900px) {
  .product-tabs {
    flex-wrap: wrap;
    gap: 12px;
  }

  .tab {
    padding: 10px 18px;
    font-size: 14px;
  }

  .product-card {
    min-width: 240px;
  }

  .product-card img {
    height: 210px;
  }
}

/* ================= MOBILE (<= 600px) ================= */
@media (max-width: 600px) {
  .products-section {
    padding: 60px 12px;
  }

  .products-section h2 {
    font-size: 24px;
  }

  .subtitle {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .product-slider {
    gap: 16px;
    padding: 12px;
  }

  .product-card {
    min-width: 85%;
    padding: 18px;
  }

  .product-card img {
    height: 200px;
  }

  .product-card h3 {
    font-size: 16px;
  }

  .desc,
  .product-card ul {
    font-size: 13px;
  }

  .buy-btn {
    width: 100%;
    text-align: center;
  }
}

/* ================= EXTRA SMALL (<= 400px) ================= */
@media (max-width: 400px) {
  .product-card {
    min-width: 92%;
  }

  .product-card img {
    height: 180px;
  }
}

/* Tablet: pull buttons inside container */
@media (max-width: 1024px) {
  .nav-btn.left {
    left: 0;
  }

  .nav-btn.right {
    right: 0;
  }
}

/* Mobile: hide buttons (use swipe) */
@media (max-width: 768px) {
  .nav-btn {
    display: none;
  }
}

/* ================= TABLET (<= 1024px) ================= */
@media (max-width: 1024px) {
  .testimonials-container {
    width: 100%;
    padding: 0 24px;
  }

  .testimonials h2 {
    font-size: 30px;
  }
}

/* ================= SMALL TABLET (<= 900px) ================= */
@media (max-width: 900px) {
  .testimonials {
    padding: 70px 0;
  }

  .testimonials h2 {
    font-size: 28px;
  }

  .subtitle {
    margin-bottom: 32px;
  }
}

/* ================= MOBILE (<= 600px) ================= */
@media (max-width: 600px) {
  .testimonials {
    padding: 60px 0;
  }

  .testimonials h2 {
    font-size: 24px;
    line-height: 1.2;
  }

  .subtitle {
    font-size: 13px;
    margin-bottom: 26px;
  }
}

/* ================= EXTRA SMALL (<= 400px) ================= */
@media (max-width: 400px) {
  .testimonials h2 {
    font-size: 22px;
  }
}

/* BASE: keep whatever you already have for PC */
/* Do NOT change desktop styles */

/* MOBILE ONLY */
@media (max-width: 768px) {
  .testimonial-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 12px;
    /* spacing from edges */
    pointer-events: none;
    /* allow clicks only on buttons */
  }

  .testimonial-nav .nav-btn {
    pointer-events: auto;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #0d6efd;
    color: #fff;
    border: none;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.nav {
  background: #1e73e8;
  padding: 20px 0;
}

.nav-menu {
  position: relative;
  display: flex;
  gap: 32px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  padding: 6px 0;
  position: relative;
}

/* underline bar */
.nav-indicator {
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease;
}

/* HOVER EFFECT */
.nav-menu li:nth-child(1):hover~.nav-indicator {
  width: 42px;
  transform: translateX(0);
}

.nav-menu li:nth-child(2):hover~.nav-indicator {
  width: 46px;
  transform: translateX(74px);
}

.nav-menu li:nth-child(3):hover~.nav-indicator {
  width: 66px;
  transform: translateX(148px);
}

.nav-menu li:nth-child(4):hover~.nav-indicator {
  width: 62px;
  transform: translateX(240px);
}

.nav-menu li:nth-child(5):hover~.nav-indicator {
  width: 118px;
  transform: translateX(328px);
}

.nav-menu li:nth-child(6):hover~.nav-indicator {
  width: 64px;
  transform: translateX(480px);
}

/* ACTIVE PAGE (default position) */
.nav-menu a.active~.nav-indicator {
  width: 42px;
  transform: translateX(0);
}


/* ================= MOBILE ONLY ================= */

/* MOBILE HEADER & NAV */
@media (max-width: 768px) {

  /* HIDE DESKTOP ELEMENTS */
  .top-strip,
  .top-info,
  .consult-btn,
  .nav-right,
  .nav-indicator {
    display: none !important;
  }

  /* HEADER LAYOUT */
  .aqua-navbar {
    background: #fff;
    border-bottom: 2px solid #1e73e8;
    padding: 10px 0;
    width: 100%;
  }

  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 20px;
    flex-direction: row !important;
    /* Force row */
  }

  /* LOGO ON MOBILE */
  .nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    order: 1;
    /* Left side */
  }

  .nav-logo img {
    height: 40px;
  }

  /* HAMBURGER ICON */
  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    order: 2;
    /* Right side */
    z-index: 9999;
    /* Lower than menu so it hides behind it */
  }

  .hamburger span {
    width: 28px;
    height: 3px;
    background: #1e73e8;
    border-radius: 2px;
  }

  /* MOBILE MENU DRAWER */
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    /* Hidden by default */
    width: 280px;
    height: 100vh;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: flex-start !important;
    /* Force top alignment to fix white space */
    padding: 0 20px;
    /* Remove top padding to fix white space usage */
    gap: 0;
    transition: right 0.3s ease;
    z-index: 10000;
    /* High z-index */
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
  }

  .nav-menu.active {
    right: 0;
    /* Slide in */
  }

  .nav-menu li {
    list-style: none;
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
    padding: 14px 0;
  }

  .nav-menu li:last-child {
    border-bottom: none;
  }

  .nav-menu li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* padding removed here as user applied it to li */
    font-size: 16px;
    color: #333;
    font-weight: 500;
    text-decoration: none;
  }

  .nav-menu li a.active {
    color: #1e73e8;
  }

  /* CLOSE BUTTON */
  .nav-close {
    position: static;
    display: flex !important;
    justify-content: flex-end;
    padding: 20px 0 10px 0;
    /* Top spacing here */
    border: none;
    width: 100%;
    background: transparent;
  }

  #closeMenu {
    background: none;
    border: none;
    font-size: 32px;
    color: #333;
    cursor: pointer;
    line-height: 1;
    padding: 5px;
  }

  /* SUBMENU (Accordion Style) */
  .submenu {
    position: static;
    /* Flow naturally */
    display: none;
    /* Hidden by default */
    background: #f9f9f9;
    box-shadow: none;
    width: 100%;
    padding: 0;
    min-width: unset;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .has-submenu.active .submenu {
    display: block;
    /* Show when parent is active */
  }

  .submenu li a {
    padding: 12px 20px 12px 30px;
    /* Indent */
    font-size: 14px;
    color: #555;
    border-bottom: 1px solid #eee;
  }

  .submenu li {
    padding: 0;
    /* Reset padding for submenu items if needed */
    border-bottom: none;
  }

  /* SUBMENU TOGGLE INDICATOR */
  .has-submenu>a::after {
    content: '+';
    font-size: 18px;
    color: #1e73e8;
    font-weight: 600;
  }

  .has-submenu.active>a::after {
    content: 'âˆ’';
    /* Minus sign */
  }

  /* STATS GRID - One Column */
  .stats-grid {
    grid-template-columns: 1fr;
  }
}


/* =========================
   DESKTOP NAVBAR (PC)
   ========================= */
@media (min-width: 768px) {

  /* main nav menu */
  .nav-menu {
    position: static;
    height: auto;
    width: auto;
    flex-direction: row;
    align-items: center;
    background: transparent;
    box-shadow: none;
    padding: 0;
    overflow: visible;
    right: auto;
    transition: none;
  }

  /* hide close button on desktop */
  .nav-close {
    display: none !important;
  }

  /* menu items */
  .nav-menu>li {
    position: relative;
    border: none;
    margin: 0 18px;
  }

  .nav-menu>li>a {
    padding: 10px 0;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
  }

  .nav-menu>li>a.active {
    color: #fff;
  }

  /* ===== SUBMENU (DROPDOWN) ===== */
  .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: #ffffff;
    border-radius: 6px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    padding: 10px 0;

    display: none;
    /* hidden by default */
    z-index: 999;
  }

  .submenu li {
    border: none;
  }

  .submenu li a {
    padding: 10px 18px;
    color: #333;
    font-size: 14px;
    white-space: nowrap;
  }

  .submenu li a:hover {
    background: #f2f6ff;
    color: #1e73e8;
  }

  /* show submenu on hover */
  .has-submenu:hover .submenu {
    display: block;
  }

  /* remove + / âˆ’ icons on desktop */
  .has-submenu>a::after {
    content: "";
  }

  /* nav indicator visible on desktop */
  .nav-indicator {
    display: block;
  }
}

@media (min-width: 1024px) {
  .has-submenu>a {
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .has-submenu>a::after {
    content: "â–¾";
    font-size: 14px;
    transition: transform 0.3s ease;
  }

  .has-submenu:hover>a::after {
    transform: rotate(180deg);
  }
}

/* MOBILE HEADER */
@media (max-width: 768px) {

  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* logo left, bars right */
    padding: 12px 16px;
  }

  .nav-logo img {
    height: 36px;
    width: auto;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }

  .hamburger span {
    width: 26px;
    height: 3px;
    background: #1e73e8;
    border-radius: 2px;
  }
}

/* Hide logo on desktop */
@media (min-width: 768px) {
  .nav-logo {
    display: none;
    flex: 0 0 auto;
  }

  .nav-logo-mobile {
    display: none;
  }

  .aqua-navbar.sticky .nav-inner {
    justify-content: center;
    gap: 20px;
  }

  .aqua-navbar.sticky .nav-logo {
    display: flex;
    align-items: center;
    order: 0;
    margin: 0;
  }

  .aqua-navbar.sticky .nav-logo img {
    display: block;
    width: auto;
    height: 48px;
  }

  .aqua-navbar.sticky .nav-menu {
    margin: 0;
  }
}

/* Show logo on mobile */
@media (max-width: 768px) {
  .nav-logo {
    display: none !important;
  }

  .nav-logo-mobile {
    display: flex;
    align-items: center;
    order: 1;
    margin-right: auto;
  }

  .nav-logo-mobile img {
    display: block;
    width: auto;
    height: 40px;
  }

  .hamburger {
    order: 2;
    margin-left: 16px;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    top: 0 !important;
    padding-top: 0 !important;
    margin-top: 0 !important;
  }
}

/* About Page */





/* =========================
   AQUA HERO SECTION (REFACTORED)
   ========================= */

.aqua-hero {
  position: relative;
  min-height: 100vh;
  /* Dark Blue Gradient + Image Background */
  background:
    linear-gradient(90deg, #001e80 0%, #0046b0 45%, rgba(0, 95, 214, 0.45) 100%),
    url("../images/bg-about.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 100px 0;
  color: #fff;
  overflow: hidden;
}

.aqua-hero-inner {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  width: 100%;
}

/* LEFT CONTENT */
.aqua-hero-badge {
  display: inline-block;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  color: #fbbf24;
  /* Yellowish text for Est. 2020 */
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.aqua-hero-content h1 {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 30px;
}

.aqua-hero-content h1 span {
  color: #7dd3fc;
  /* Light Sky Blue */
}

.hero-line-text {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
}

.blue-line {
  width: 4px;
  background: #3b82f6;
  /* Blue Accent Line */
  border-radius: 2px;
}

.hero-line-text p {
  max-width: 480px;
  font-size: 17px;
  line-height: 1.6;
  opacity: 0.95;
}

.aqua-hero-btn {
  display: inline-block;
  background: #fff;
  color: #0046b0;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 15px;
  transition: transform 0.2s ease;
}

.aqua-hero-btn:hover {
  transform: translateY(-2px);
}

/* RIGHT GLASS CARD */
.hero-glass-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 50px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  max-width: 580px;
  margin-left: auto;
  position: relative;
  overflow: hidden;
}

/* Subtle shine effect */
.hero-glass-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 60%);
  pointer-events: none;
}

.glass-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.glass-item {
  text-align: center;
}

.glass-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 28px;
  color: #7dd3fc;
}

.glass-text h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

.glass-text small {
  font-size: 13px;
  opacity: 0.8;
  display: block;
  line-height: 1.4;
}

.glass-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 0 auto 24px;
  width: 90%;
}

.glass-quote {
  text-align: center;
  font-style: italic;
  font-size: 14px;
  opacity: 0.8;
  letter-spacing: 0.5px;
}

/* RESPONSIVE HERO */
@media (max-width: 1024px) {
  .aqua-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-line-text {
    justify-content: center;
    text-align: left;
    /* Keep text left aligned inside the block, but block centered? */
    /* Actually let's just left align everything for mobile usually looks better or center */
    display: block;
  }

  .blue-line {
    display: none;
  }

  .aqua-hero-content h1 {
    font-size: 48px;
  }

  .hero-glass-card {
    margin: 40px auto 0;
  }
}

@media (max-width: 600px) {
  .aqua-hero-content h1 {
    font-size: 36px;
  }

  .glass-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-glass-card {
    padding: 30px;
  }
}

.box {
  position: relative;
  width: 1551px;
  height: 640px;
  overflow: hidden;
}

/* =========================
   GROUP (GLASS CONTAINER)
   ========================= */
.box .group {
  position: absolute;
  top: 0;
  left: 0;
  width: 1557px;
  height: 640px;
}

/* =========================
   BACKGROUND IMAGE LAYER
   ========================= */
.box .rectangle {
  position: absolute;
  top: 0;
  left: 111px;
  width: 1440px;
  height: 640px;

  background-image: url("/assets/images/bg-about.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* =========================
   SOFT GLOW / COLOR WASH
   ========================= */
.box .ellipse {
  position: absolute;
  top: 20px;
  left: 0;
  width: 800px;
  height: 600px;

  background-color: #052af6;
  border-radius: 400px / 300px;
  filter: blur(80px);
  opacity: 0.35;
}

/* =========================
   GLASS CARD (IMPORTANT)
   ========================= */
.box .div {
  position: absolute;
  top: 140px;
  left: 760px;

  width: 640px;
  height: 300px;

  background: rgba(255, 255, 255, 0.14);

  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);

  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.4);

  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.35),
    inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

/* glass shine */
.box .div::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.35),
      rgba(255, 255, 255, 0.08),
      transparent);
  pointer-events: none;
}

/* =========================
   IMAGES INSIDE GLASS
   ========================= */
.box img {
  position: absolute;
  z-index: 2;
}

.box .health-insurance {
  top: 40px;
  left: 40px;
  width: 36px;
}

.box .temperature-control {
  top: 40px;
  right: 40px;
  width: 36px;
}

/* =========================
   TEXT STYLES
   ========================= */
.box .text-wrapper-2 {
  position: absolute;
  top: 85px;
  left: 40px;
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
}

.box .text-wrapper-3 {
  position: absolute;
  top: 85px;
  right: 40px;
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
}

.box .text-wrapper-4 {
  position: absolute;
  top: 115px;
  left: 40px;
  font-size: 14px;
  opacity: 0.9;
  color: #ffffff;
}

.box .text-wrapper-5 {
  position: absolute;
  top: 115px;
  right: 40px;
  font-size: 14px;
  opacity: 0.9;
  color: #ffffff;
}

/* =========================
   DIVIDER LINE
   ========================= */
.box .line-2 {
  position: absolute;
  top: 175px;
  left: 40px;
  width: calc(100% - 80px);
  opacity: 0.4;
}

/* =========================
   QUOTE
   ========================= */
.box .redefining-the {
  position: absolute;
  top: 210px;
  left: 40px;
  right: 40px;
  font-size: 15px;
  font-style: italic;
  text-align: center;
  opacity: 0.9;
  color: #ffffff;
}

/* ==================== ABOUT PAGE STYLES ==================== */

/* SECTION TAGS */
.section-tag {
  display: inline-block;
  color: #1478f2;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.center-tag {
  display: block;
  text-align: center;
}

.center-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 50px;
}

/* --- INTRO SECTION --- */
.about-intro-section {
  padding: 80px 0;
  background: #fff;
}

.about-intro-container {
  max-width: 1180px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
  padding: 0 20px;
}

.about-intro-text h2 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #0f172a;
}

.about-intro-text p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 15px;
}

/* COMMITMENT CARD (Right Side) */
.commitment-card {
  background: #021d49;
  /* Deep Navy */
  color: #fff;
  padding: 40px;
  border-radius: 20px;
  position: relative;
}

.commitment-card h3 {
  font-size: 24px;
  margin-bottom: 24px;
}

.commitment-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.commitment-card ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 15px;
}

.commitment-card ul li i {
  color: #1478f2;
  /* Bright blue check */
  font-size: 16px;
}

.commitment-footer {
  font-size: 14px;
  opacity: 0.8;
  line-height: 1.6;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

/* --- STATS BAR --- */
.about-stats-bar {
  max-width: 1180px;
  margin: 0 auto 80px;
  padding: 0 20px;
}

.stats-bar-container {
  background: #fff;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  padding: 40px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stat-item {
  text-align: center;
}

.stat-icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 24px;
}

.stat-icon-circle.blue-light {
  background: #e0f2fe;
  color: #1478f2;
}

.stat-item h3 {
  font-size: 28px;
  font-weight: 700;
  color: #1478f2;
  margin-bottom: 4px;
}

.stat-item p {
  color: #64748b;
  font-size: 14px;
  font-weight: 500;
}

/* --- VISION & MISSION --- */
.vision-mission-section {
  padding: 0 20px 80px;
}

.vision-mission-container {
  max-width: 1180px;
  margin: auto;
  background: #021d49;
  border-radius: 30px;
  padding: 60px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  color: #fff;
}

.vm-box {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.separator-right {
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  padding-right: 60px;
}

.vm-icon img {
  width: 50px;
  height: 50px;
  filter: brightness(0) invert(1);
  /* Make icons white */
}

.vm-content h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #60a5fa;
  /* Lighter blue title */
}

.vm-content p {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.9;
}

/* --- OUR STRENGTH --- */
.strength-section {
  padding: 80px 0;
  background: #fff;
}

.strength-container {
  max-width: 1180px;
  margin: auto;
  padding: 0 20px;
}

.strength-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 30px;
}

.strength-card {
  border-radius: 20px;
  padding: 50px;
  position: relative;
}

.white-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.blue-card {
  background: #1478f2;
  color: #fff;
}

.card-icon-box {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 24px;
}

.card-icon-box.blue-bg {
  background: #1478f2;
  color: #fff;
}

.card-icon-box.white-bg {
  background: #fff;
  color: #1478f2;
}

.strength-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}

.strength-card p {
  line-height: 1.6;
  font-size: 15px;
  margin-bottom: 30px;
}

.white-card p {
  color: #64748b;
}

.blue-card p {
  color: rgba(255, 255, 255, 0.9);
}

.strength-stats {
  display: flex;
  gap: 40px;
  margin-top: auto;
}

.strength-stats strong {
  display: block;
  font-size: 28px;
  color: #0f172a;
  margin-bottom: 4px;
}

.strength-stats small {
  font-size: 13px;
  color: #64748b;
  text-transform: uppercase;
}

/* --- CORE VALUES --- */
.core-values-section {
  padding: 0 20px 100px;
  background: #f9fafb;
  /* Light gray bg for contrast */
  padding-top: 80px;
}

.core-values-container {
  max-width: 1180px;
  margin: auto;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.value-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px 24px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
}

.value-icon {
  font-size: 32px;
  color: #1478f2;
  margin-bottom: 20px;
}

.value-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #0f172a;
}

.value-card p {
  font-size: 13px;
  color: #64748b;
  line-height: 1.5;
}

/* RESPONSIVE */
@media (max-width: 1024px) {

  .about-intro-container,
  .vision-mission-container,
  .strength-grid,
  .stats-bar-container {
    padding: 30px;
  }

  .vision-mission-container {
    gap: 40px;
  }
}

@media (max-width: 900px) {
  .about-intro-container {
    grid-template-columns: 1fr;
  }

  .vision-mission-container {
    grid-template-columns: 1fr;
  }

  .separator-right {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-right: 0;
    padding-bottom: 40px;
    margin-bottom: 40px;
  }

  .stats-bar-container {
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
  }

  .stat-item {
    width: 45%;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .strength-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .stat-item {
    width: 100%;
  }

  .about-intro-text h2 {
    font-size: 32px;
  }
}

.domestic-hero {
  background: radial-gradient(
      circle at top left,
      #8fb6d9 0%,
      #1f4fa3 40%,
      #081c4a 100%
  );
  padding: 100px 0;
  color: #fff;
  overflow: hidden;
}

.domestic-hero-inner {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
}

/* LEFT */
.series-badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 14px;
  background: rgba(255,255,255,0.15);
  margin-bottom: 28px;
}

.domestic-content h1 {
  font-size: 64px;
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 28px;
}

.domestic-content .subtitle {
  max-width: 520px;
  font-size: 18px;
  line-height: 1.7;
  opacity: 0.95;
  color:white;
  margin-bottom: 40px;
}

/* TRUST ROW */
.trust-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
}

.avatars {
  display: flex;
}

.avatars img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #0b2a63;
  margin-left: -10px;
}

.avatars img:first-child {
  margin-left: 0;
}

.trust-row span {
  font-size: 16px;
}

/* BREADCRUMB */
.breadcrumb {
  font-size: 14px;
  opacity: 0.85;
}

.breadcrumb span {
  margin: 0 6px;
}

/* RIGHT IMAGE WRAPPER */
.domestic-image {
  position: relative;
  width: 100%;
  height: 520px;
}

/* COMMON IMAGE STYLE */
.product-img {
  position: absolute;
  max-width: 320px;
  height: auto;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.35));
  transition: transform 0.4s ease;
}

/* FRONT IMAGE (BLUE ONE) */
.img-front {
  left: -120px;
  max-width: 380px;
  top: 110px;
  height: auto;
  
  z-index: 2;
}

/* BACK IMAGE (RED ONE) */
.img-back {
  right: 0;
  top: 80px;
  max-width: 520px;
  z-index: 1;
}

/* HOVER EFFECT (OPTIONAL BUT NICE) */
.domestic-image:hover .img-front {
  transform: translateY(-6px);
}

.domestic-image:hover .img-back {
  transform: translateY(-4px);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .domestic-image {
    height: auto;
    display: flex;
    justify-content: center;
    gap: 20px;
  }

  .product-img {
    position: static;
    max-width: 240px;
  }
}


.domestic-products {
  padding: 100px 0;
  background: #ffffff;
}

.domestic-products .container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
}

/* HEADER */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 40px;
  font-weight: 700;
}

.section-header h4 {
  font-size: 18px;
  font-weight: 600;
  margin-top: 8px;
}

.section-header p {
  font-size: 15px;
  color: #666;
  margin-top: 6px;
}

/* GRID */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1320px;
  margin: 0 auto;
}

/* CARD */
.product-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px 24px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

.product-card img {
  width: 100%;
  max-width: 220px;
  height: 180px;
  object-fit: contain;
  margin: 0 auto 24px;
  display: block;
}

/* TEXT */
.product-card h3 {
  font-size: 20px;
  font-weight: 600;
}

.spec {
  display: block;
  font-size: 13px;
  color: #2f6fed;
  margin: 6px 0 14px;
}

/* PRICE */
.price-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  margin-bottom: 20px;
}

.price {
  font-size: 20px;
  font-weight: 700;
}

.old-price {
  text-decoration: line-through;
  color: #999;
  font-size: 14px;
}

.discount {
  color: #ff3b3b;
  font-size: 13px;
  font-weight: 600;
}

/* BUTTON */
.view-btn {
  background: #1677ff;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.view-btn:hover {
  background: #0d5bd7;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}



.lifestyle-full {
  padding: 80px 0 100px;
  background: #ffffff;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
}

/* FEATURES */
.feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  text-align: center;
  margin-bottom: 70px;
}

.feature-box {
  max-width: 280px;
  margin: auto;
  background-color: white;
}

.feature-box img {
  width: 36px;
  height: auto;
  margin-bottom: 16px;
}

.feature-box h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.feature-box p {
  font-size: 14px;
  line-height: 1.7;
  color: #666;
}

/* IMAGE BLOCK */
.image-block {
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.18);
}

.image-block img {
  width: 100%;
  height: auto;
  display: block;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .feature-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.lifestyle-full{
  padding: 120px 0 60px;
  background: #ffffff;
  text-align: center;
}

/* BADGE */
.intro-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid #cfe2ff;
  background: #f5f9ff;
  color: #1677ff;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 28px;
}

.intro-badge img {
  width: 16px;
  height: auto;
}

/* TITLE */
.intro-title {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 26px;
  color: #000;
}

.intro-title span {
  color: #1677ff;
}

/* DESCRIPTION */
.intro-desc {
  max-width: 820px;
  margin: auto;
  font-size: 16px;
  line-height: 1.8;
  color: #666;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .intro-title {
    font-size: 34px;
  }

  .lifestyle-intro {
    padding: 90px 0 40px;
  }
}


.engineered-section {
  padding: 120px 0;
  background: #ffffff;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
}

/* HEADER */
.engineered-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 80px;
}

.engineered-header h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 16px;
}

.engineered-header h2 span {
  color: #1677ff;
}

.engineered-header p {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
}

/* GRID */
.engineered-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* CARD */
.engineered-card {
  background: #fff;
  border-radius: 26px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.engineered-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 40px 100px rgba(0,0,0,0.12);
}

/* IMAGE */
.card-image {
  height: 220px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* CONTENT */
.card-content {
  padding: 26px 26px 32px;
}

.card-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.card-content p {
  font-size: 14px;
  line-height: 1.7;
  color: #666;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .engineered-grid {
    grid-template-columns: 1fr;
  }

  .engineered-header h2 {
    font-size: 32px;
  }
}


.comparison-section {
  padding: 120px 0;
  background: #ffffff;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 24px;
}

/* HEADER */
.comparison-header {
  text-align: center;
  margin-bottom: 50px;
}

.comparison-header h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 14px;
}

.comparison-header h2 span {
  color: #1677ff;
}

.comparison-header p {
  font-size: 16px;
  color: #666;
  max-width: 720px;
  margin: auto;
  line-height: 1.7;
}

/* TABS */
.comparison-tabs {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  margin-bottom: 50px;
}

.tab {
  padding: 16px 36px;
  border-radius: 18px;
  font-size: 18px;
  font-weight: 600;
  border: 2px solid #0b1e7a;
  color: #0b1e7a;
  background: #ffffff;
}

.tab.active {
  background: #0b1e7a;
  color: #ffffff;
}

/* LIST */
.comparison-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* ROW */
.comparison-row {
  display: grid;
  grid-template-columns: 1fr 150px 150px;
  align-items: center;
  padding: 20px 26px;
  border-radius: 16px;
  border: 1px solid #e6e6e6;
}

.feature-text {
  font-size: 16px;
  font-weight: 500;
}

/* ICON */
.icon {
  width: 32px;
  height: auto;
  justify-self: center;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .comparison-row {
    grid-template-columns: 1fr 60px 60px;
  }

  .tab {
    font-size: 16px;
    padding: 14px 26px;
  }

  .comparison-header h2 {
    font-size: 32px;
  }
}

/* ROW â€“ ROUND PILL EFFECT */
.comparison-row {
  display: grid;
  grid-template-columns: 1fr 200px 170px;
  align-items: flex-end;

  padding: 18px 28px;
  border-radius: 999px;              /* ðŸ”¥ FULL ROUND */
  background: #ffffff;
  border: 1px solid #e6e6e6;

  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

/* TEXT */
.feature-text {
  font-size: 20px;
  font-weight: 600;
}

/* ICON WRAPPER â€“ PERFECT CIRCLE */
.icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  justify-self: center;
}

/* ICON SIZE */
.icon-wrap img {
  width: 30px;
  height: auto;
}

/* BLUE CHECK (FILLED) */
.icon-wrap.check {
  background: #0b1e7a;               /* dark blue */
}

/* WHITE CHECK ICON */
.icon-wrap.check img {
  filter: brightness(0) invert(1);   /* makes icon white */
}

/* BLUE OUTLINE CROSS */
.icon-wrap.cross {
  border: 2px solid #0b1e7a;
  background: transparent;
}

/* BLUE CROSS ICON */
.icon-wrap.cross img {
  filter: none; /* keep original blue stroke */
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .comparison-row {
    grid-template-columns: 1fr 60px 60px;
    padding: 14px 20px;
  }

  .icon-wrap {
    width: 36px;
    height: 36px;
  }
}


/* ================= TABLET ================= */

@media (max-width: 992px) {

  .domestic-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 60px;
  }

  .domestic-content .subtitle {
    margin: 0 auto 40px;
  }

  .trust-row {
    justify-content: center;
  }

  .breadcrumb {
    text-align: center;
  }

  .domestic-image {
    height: auto;
    margin-top: 30px;
  }

  .product-img {
    position: relative;
    max-width: 240px;
  }

  .img-front,
  .img-back {
    top: 0;
  }

 
}

/* ================= MOBILE (LIKE YOUR SCREENSHOT) ================= */

@media (max-width: 768px) {

  .domestic-hero {
    padding: 80px 20px;
  }

  .domestic-content h1 {
    font-size: 38px;
    line-height: 1.2;
  }

  .domestic-content .subtitle {
    font-size: 16px;
    line-height: 1.6;
  }

  .series-badge {
    font-size: 13px;
    padding: 6px 16px;
  }

  .avatars img {
    width: 34px;
    height: 34px;
  }

  .domestic-image {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 0;
    margin-top: 40px;
  }

  .product-img {
    position: relative;
    max-width: 170px;
  }

  /* Premium slight overlap */
  .img-front {
    transform: translateX(15px);
    z-index: 2;
  }

  .img-back {
    transform: translateX(-15px);
    z-index: 1;
  }
}

@media (max-width: 768px) {

  .domestic-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: auto;
    margin-top: 40px;
  }

  .product-img {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    max-width: 160px;
  }

  /* Slight premium overlap */
  .img-front {
    transform: translateX(20px);
    z-index: 2;
  }

  .img-back {
    transform: translateX(-20px);
    z-index: 1;
  }

}
@media (max-width: 768px) {

  .domestic-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: auto !important;
    margin-top: 30px;
  }

  .product-img {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    max-width: 160px;
  }

  .img-front {
    transform: translateX(15px);
    z-index: 2;
  }

  .img-back {
    transform: translateX(-15px);
    z-index: 1;
  }

}

/* ===============================
   DOMESTIC PRODUCT HERO IMAGES
================================ */

.domestic-product-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

/* Common Image Style */
.domestic-product-img {
  max-width: 280px;
  height: auto;
  position: absolute;
  transition: all 0.4s ease;
}

/* Front Product */
.front-product {
  z-index: 2;
  left: -150px;
  bottom: 0;
  top: 160px;
  height:300px ;
  max-width: 700px;
}

/* Back Product */
.back-product {
  z-index: 1;
  right: -100px;
  bottom: 0;
  top: 80px;
  height: 400px;
  max-width: 800px;
  transform: scale(1.05);
}

/* ===============================
   RESPONSIVE DESIGN
================================ */

@media (max-width: 992px) {

  .domestic-product-wrapper {
    min-height: 420px;
  }

  .domestic-product-img {
    max-width: 220px;
  }

  .front-product {
    left: 20px;
  }
}

@media (max-width: 768px) {

  .domestic-product-wrapper {
    position: relative;
    flex-direction: column;
    min-height: auto;
    margin-top: 40px;
  }

  .domestic-product-img {
    position: relative;
    max-width: 240px;
  }

  .front-product,
  .back-product {
    left: 0;
    right: 0;
    bottom: 0;
    transform: none;
  }

  .back-product {
    margin-top: 20px;
  }
}


/* ===============================
   COMMERCIAL HERO PRODUCT IMAGES
================================ */

.commercial-product-wrapper {
  position: relative;
  width: 100%;
  height: 520px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

/* Common Image Style */
.commercial-product-img {
  position: absolute;
  height: auto;
  transition: 0.4s ease;
}

/* BACK BIG IMAGE */
.commercial-back {
  width: 600px;
  right: -100px;
  top: 20px;
  bottom: 0;
  z-index: 1;
}

/* FRONT SMALL IMAGE */
.commercial-front {
  width: 350px;
  right: 150px;   /* ðŸ”¥ Controls closeness */
  bottom: 0;
  z-index: 2;
}

.waterchiller-back {
  width: 500px;
  right: -100px;
  top: 20px;
  bottom: 0;
  z-index: 1;
}

.wateratm-back {
  width: 400px;
  right: 60px;
  top: 20px;
  bottom: 0;
  z-index: 1;
}


/* ===============================
   WATER SOFTENER HERO IMAGES
================================ */

.watersoft-product-wrapper {
  position: relative;
  width: 100%;
  height: 520px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}


/* Common Style */
.watersoft-img {
  position: absolute;
  height: auto;
  transition: 0.4s ease;
}

/* Big Back Image */
.watersoft-back {
  width: 400px;
  right: 0;
  top: 50px;
  bottom: 0;
  z-index: 1;
}

/* Small Front Image (Close Overlap) */
.watersoft-front {
  width: 350px;
  top: 140px;
  right: 130px;  /* ðŸ”¥ Controls closeness */
  bottom: 0;
  z-index: 2;
}
/* =========================
   PRODUCT DETAIL PAGE
========================= */

.pd-page{
  background:#fff;
  padding: 18px 0 70px;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.pd-wrap{
  width: min(1100px, 92%);
  margin: 0 auto;
}

.pd-breadcrumb{
  font-size: 12px;
  color: #8a94a6;
  margin: 8px 0 18px;
}

/* Top layout */
.pd-top{
  display:grid;
  grid-template-columns: 440px 1fr;
  gap: 28px;
  align-items: start;
}

/* Gallery */
.pd-gallery {
    border: 1px solid #e7edf6;
    border-radius: 10px;
    padding: 14px;
    background: #fff;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    flex-direction: row-reverse; /* This puts thumbnails on LEFT */
}

.pd-main-img {
    border: 1px solid #eef3fb;
    border-radius: 10px;
    padding: 14px;
    background: #fff;
    flex: 1;
}

.pd-main-img img {
    width: 100%;
    height: 310px;
    object-fit: contain;
    display: block;
}

.pd-thumbs {
    margin-top: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 340px;
    overflow-y: auto;
    padding-right: 5px;
    width: 80px; /* Fixed width for sidebar */
}

/* Scrollbar styling */
.pd-thumbs::-webkit-scrollbar {
    width: 4px;
}

.pd-thumbs::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.pd-thumbs::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

.pd-thumbs::-webkit-scrollbar-thumb:hover {
    background: #a1a1a1;
}

.pd-thumb {
    width: 70px; /* Slightly larger */
    height: 70px;
    border-radius: 10px;
    border: 1px solid #e7edf6;
    background: #fff;
    padding: 8px; /* More padding */
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.pd-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.pd-thumb.is-active,
.pd-thumb:hover {
    border-color: #1e77ff;
    box-shadow: 0 6px 18px rgba(30, 119, 255, 0.18);
}

/* Hover effect for main image */
.pd-main-img img {
    transition: opacity 0.3s ease;
}

/* Details */
.pd-details{
  padding-top: 6px;
}

.pd-title{
  margin:0 0 10px;
  font-size: 18px;
  font-weight: 800;
  color:#0b1220;
  line-height: 1.25;
}

.pd-rating-row{
  display:flex;
  align-items:center;
  gap: 10px;
  margin-bottom: 12px;
}

.pd-badge{
  font-size: 12px;
  font-weight: 800;
  color:#fff;
  background:#12b76a;
  padding: 4px 8px;
  border-radius: 6px;
}

.pd-rating-text{
  font-size: 12px;
  color:#667085;
}

.pd-price-row{
  display:flex;
  align-items: baseline;
  gap: 10px;
  margin: 8px 0 2px;
}

.pd-price{
  font-size: 22px;
  font-weight: 900;
  color:#0b1220;
}

.pd-mrp{
  font-size: 12px;
  color:#667085;
}

.pd-off{
  font-size: 12px;
  color:#e01b24;
  font-weight: 700;
}

.pd-tax{
  font-size: 12px;
  color:#8a94a6;
  margin-bottom: 14px;
}

.pd-section{
  margin-top: 14px;
}

.pd-section-title{
  font-size: 11px;
  letter-spacing: .08em;
  font-weight: 900;
  color:#475467;
  margin-bottom: 8px;
}

.pd-features{
  margin:0;
  padding-left: 18px;
  color:#475467;
  font-size: 12.5px;
  line-height: 1.7;
}

.pd-offers{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.pd-offer{
  border: 1px solid #d7e6ff;
  background: #f6fbff;
  border-radius: 10px;
  padding: 10px 12px;
}

.pd-offer-title{
  font-size: 12px;
  font-weight: 900;
  color:#1e77ff;
  margin-bottom: 4px;
}

.pd-offer-text{
  font-size: 12px;
  color:#475467;
  line-height: 1.5;
}

/* Delivery */
.pd-delivery{
  margin-top: 16px;
  border: 1px solid #e7edf6;
  border-radius: 10px;
  padding: 12px;
  background:#fff;
}

.pd-delivery-title{
  font-size: 11px;
  letter-spacing: .08em;
  font-weight: 900;
  color:#475467;
  margin-bottom: 10px;
}

.pd-delivery-box{
  display:flex;
  gap: 10px;
}

.pd-pin{
  flex:1;
  height: 36px;
  border-radius: 8px;
  border: 1px solid #e7edf6;
  padding: 0 12px;
  outline: none;
}

.pd-pin:focus{
  border-color:#1e77ff;
  box-shadow: 0 0 0 3px rgba(30,119,255,.12);
}

.pd-check{
  height: 36px;
  padding: 0 16px;
  border-radius: 8px;
  border: 1px solid #1e77ff;
  background:#fff;
  color:#1e77ff;
  font-weight: 800;
  cursor:pointer;
}

.pd-delivery-note{
  margin-top: 10px;
  font-size: 12px;
  color:#12b76a;
  display:flex;
  align-items:center;
  gap: 8px;
}

.pd-dot{
  width:8px;
  height:8px;
  border-radius:50%;
  background:#12b76a;
  display:inline-block;
}

/* Buttons */
.pd-actions{
  margin-top: 14px;
  display:flex;
  gap: 12px;
}

.pd-btn{
  height: 42px;
  border-radius: 10px;
  font-weight: 900;
  cursor:pointer;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.pd-btn:hover,
.pd-btn:focus,
.pd-btn:active,
.pd-btn:visited{
  text-decoration: none;
}

.pd-btn-outline{
  flex:1;
  background:#fff;
  border: 1px solid #1e77ff;
  color:#1e77ff;
}

.pd-btn-fill{
  flex:1;
  border: 1px solid #1e77ff;
  background:#1e77ff;
  color:#fff;
}

/* Specifications */
.spec-box{
  margin-top: 24px;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
}

.spec-head{
  font-size: 30px;
  font-weight: 700;
  padding: 22px 26px;
  border-bottom: 1px solid #ededed;
  color: #111;
}

.spec-table{
  width: 100%;
}

.spec-row{
  display: grid;
  grid-template-columns: 260px 1fr 260px 1fr; /* label/value label/value */
  padding: 0;
  border-bottom: 1px solid #ededed;
}

.spec-row:last-child{
  border-bottom: none;
}

.spec-k,
.spec-v{
  padding: 22px 26px;
  font-size: 14px;
  display: flex;
  align-items: center;
}

.spec-k{
  font-weight: 500;
  color: #333;
}

.spec-v{
  font-weight: 600;
  color: #111;
}

/* vertical dividers like reference */
.spec-k:nth-child(1),
.spec-v:nth-child(2){
  border-right: 1px solid #ededed;
}
.spec-k:nth-child(3){
  border-left: none;
  border-right: 1px solid #ededed;
}

/* toggle row (extra specs hidden until open) */
.spec-row.is-extra{
  display: none;
}

.spec-box.open .spec-row.is-extra{
  display: grid;
}

/* view more / less button */
.spec-toggle{
  width: 100%;
  height: 70px;
  background: #fff;
  border: 0;
  cursor: pointer;
  font-weight: 700;
  font-size: 17px;
  color: #1677ff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.spec-toggle .less{ display:none; }
.spec-box.open .spec-toggle .more{ display:none; }
.spec-box.open .spec-toggle .less{ display:inline; }

.spec-toggle .arrow{
  font-size: 18px;
  transform: translateY(1px);
  transition: transform .2s ease;
}

.spec-box.open .spec-toggle .arrow{
  transform: rotate(180deg);
}

/* responsive */
@media(max-width: 980px){
  .spec-head{ font-size: 26px; }
  .spec-row{
    grid-template-columns: 1fr 1fr; /* stack pairs */
  }
  .spec-k:nth-child(1),
  .spec-v:nth-child(2),
  .spec-k:nth-child(3){
    border-right: none;
  }
}

/* Product Overview */
.pd-overview {
    margin-top: 26px;
}

.pd-overview-title {
    font-size: 19px;
    font-weight: 900;
    color: #0b1220;
    margin-bottom: 12px;
}

.pd-tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 16px;
}

.pd-tab {
    border: 1px solid #eef3fb;
    background: #f6fbff; /* Light blue background like the image */
    border-radius: 10px;
    padding: 18px 10px; /* More padding */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px; /* More gap between icon and text */
    font-size: 11px;
    font-weight: 900;
    color: #1e77ff;
    cursor: pointer;
    transition: all 0.2s ease;
    height: 100%; /* Make all tabs same height */
}

.pd-tab:hover {
    border-color: #1e77ff;
    box-shadow: 0 6px 16px rgba(30, 119, 255, 0.15);
    transform: translateY(-2px);
}

.pd-tab-ic {
    width: 48px; 
    height: 48px;
     /* border-radius: 50%; Circular like the image */
    display: flex;
    align-items: center;
    justify-content: center;
     /* background: #fff; White circle for icon */
    /* border: 1px solid #d7e6ff; */
}

.pd-tab-ic img {
    width: 50px; /* Larger icons */
    height: 50px;
    object-fit: contain;
    display: block;
}
/* ===== PRODUCT DETAIL BANNERS ===== */
/* =========================
   PRODUCT BANNER CLEAN FIX
   ========================= */

.pd-banner{
  position: relative;
  width: 100%;
  height: 500px;              /* Increased height for full image */
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 40px;
}

/* IMAGE */
.pd-banner img{
  width: 100%;
  height: 100%;
  object-fit: contain;        /* SHOW FULL IMAGE (no crop) */
  object-position: center;
  display: block;
  background: #ffffff;        /* prevents dark side shading */
}

/* REMOVE ANY DARK OVERLAY */
.pd-banner::after{
  display: none !important;
}

/* TEXT */
.pd-banner-content{
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  max-width: 420px;
  z-index: 2;
}

.pd-banner-mint .pd-banner-content{
  left: 70px;
  right: auto;
}

/* Typography */
.pd-banner-content h3{
  font-size: 24px;
  font-weight: 900;
  color: #1e66d0;
  margin-bottom: 12px;
}

.pd-banner-content p{
  font-size: 19px;
  line-height: 1.6;
  color: #1f2937;
}

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
    .pd-top {
        grid-template-columns: 1fr; /* Stack gallery and details */
        gap: 20px;
    }
    
    .pd-gallery {
        flex-direction: column; /* Stack thumbnails below main image */
    }
    
    .pd-thumbs {
        flex-direction: row; /* Horizontal thumbnails on mobile */
        width: 100%;
        justify-content: center;
        order: 2; /* Move thumbnails below main image */
    }
    
    .pd-main-img {
        width: 100%;
        order: 1;
    }
    
    .pd-tabs {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablet */
        gap: 12px;
    }
  

/* =========================================
   MOBILE FIX: Banner text ON image (clean)
   Put this at VERY END of style.css
   ========================================= */
@media (max-width: 768px){

  /* force banner to behave like desktop */
  .pd-banner{
    position: relative !important;
    height: 280px !important;
    min-height: 280px !important;
    border-radius: 16px !important;
    overflow: hidden !important;
  }

  /* make BOTH media and content overlay inside banner */
  .pd-banner > .pd-banner-media,
  .pd-banner > .pd-banner-content{
    position: absolute !important;
    inset: 0 !important;
  }

  .pd-banner-media{
    z-index: 1 !important;
  }

  .pd-banner-media img{
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
  }

  /* content layer */
  .pd-banner-content{
    z-index: 2 !important;
    padding: 16px 14px !important;
    max-width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    text-align: left !important;

    /* IMPORTANT: kill any desktop transforms/left/right */
    transform: none !important;
    left: 0 !important;
    right: 0 !important;
    top: 0 !important;
    bottom: 0 !important;
  }

  /* soft readable panel behind text (NOT full dark overlay) 
  .pd-banner-content::before{
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(
      90deg,
      rgba(255,255,255,.82) 0%,
      rgba(255,255,255,.60) 55%,
      rgba(255,255,255,.10) 100%
    ) !important;
    z-index: -1 !important;
  }*/

  .pd-banner-content h3{
    margin: 0 0 8px !important;
    font-size: 18px !important;
    line-height: 1.2 !important;
    font-weight: 900 !important;
    color: #1677ff !important;
    max-width: 90% !important;
  }

  .pd-banner-content p{
    margin: 0 !important;
    font-size: 13px !important;
    line-height: 1.55 !important;
    color: #0f172a !important;
    max-width: 92% !important;

    /* stop ugly overflow on small screens */
    display: -webkit-box !important;
    -webkit-line-clamp: 4 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }
}

/* smaller phones */
@media (max-width: 480px){
  .pd-banner{
    height: 310px !important;
    min-height: 310px !important;
  }
}
}
/* =========================
   NEWS/RELEASES PAGE
   ========================= */
.nr-wrap{
  width: min(1120px, 92%);
  margin: 0 auto;
}

/* HERO */
.nr-hero{
  position: relative;
  padding: 74px 0 62px;
  overflow: hidden;
  border-radius: 0 0 0 0; /* keep normal */
}

/* Put your hero background image here */
.nr-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background: url("../images/news1.jpg") center/cover no-repeat;
  z-index:0;
}

/* Color overlay like screenshot (purple/blue tint) */
.nr-hero::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(90deg,
    rgba(112, 0, 160, .45) 0%,
    rgba(0, 80, 255, .30) 55%,
    rgba(0, 160, 255, .22) 100%
  );
  z-index:1;
}

.nr-hero-content{
  position: relative;
  z-index: 2;
  max-width: 520px;
  color:#fff;
}

.nr-kicker{
  font-size: 12px;
  opacity: .9;
  margin-bottom: 10px;
}

.nr-hero-title{
  margin:0 0 14px;
  font-size: 46px;
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.nr-hero-sub{
  margin:0 0 18px;
  max-width: 460px;
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(255,255,255,.86);
}

.nr-hero-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 16px;
  border-radius: 999px;
  background:#fff;
  color:#1a66ff;
  font-weight: 800;
  font-size: 12px;
  text-decoration:none;
  border: 1px solid rgba(255,255,255,.55);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.nr-hero-btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(0,0,0,.16);
}

/* LATEST NEWS GRID */
.nr-latest{
  padding: 34px 0 44px;
  background:#fff;
}

.nr-section-title{
  margin:0 0 16px;
  font-size: 18px;
  font-weight: 900;
  color:#0b1220;
}

.nr-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.nr-card{
  background: transparent;
}
/*
.nr-card-media{
  display:block;
  border-radius: 14px;
  overflow:hidden;
  background:#f3f4f6;
  box-shadow: 0 12px 26px rgba(16,24,40,.08);
  transition: transform .18s ease, box-shadow .18s ease;
}*/
.nr-card-media{
  border-radius: 18px; /* smoother corners like reference */
  box-shadow: none;    /* reference looks clean, not heavy shadow */
  background: transparent;
}
.nr-card-media img{
  height: 220px;       /* key change (150 -> 220) */
  transform: none;     /* remove forced scale default */
  object-position: center;
}

/* âœ… hover effect */
.nr-card:hover .nr-card-media{
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(16,24,40,.14);
}
.nr-card:hover .nr-card-media img{
  transform: scale(1.08);
}

.nr-card-meta{
  margin: 10px 0 8px;
  font-size: 11px;
  color:#6b7280;
}
.nr-dot{ margin: 0 6px; opacity:.7; }

.nr-card-title{
  margin:0 0 8px;
  font-size: 12.5px;
  font-weight: 900;
  color:#0b1220;
}

.nr-card-text{
  margin:0 0 10px;
  font-size: 11px;
  line-height: 1.6;
  color:#6b7280;
}

.nr-card-footer{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
}

.nr-author{
  display:flex;
  align-items:center;
  gap: 8px;
}

.nr-author-badge{
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background:#eaf2ff;
  color:#1a66ff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 10px;
  font-weight: 900;
}

.nr-author-name{
  font-size: 10.5px;
  color:#6b7280;
}

.nr-readmore{
  font-size: 10px;
  font-weight: 900;
  color:#1a66ff;
  text-decoration: none;
}
.nr-readmore:hover{
  text-decoration: underline;
}

/* NEWSROOM SECTION */
.nr-newsroom{
  background:#dde0ff; /* lavender like screenshot */
  padding: 44px 0 54px;
}

.nr-newsroom-grid{
  display:grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 32px;
  align-items: start;
}

.nr-newsroom-title{
  margin:0 0 10px;
  font-size: 22px;
  font-weight: 900;
  color:#0b1220;
  line-height: 1.1;
}

.nr-newsroom-sub{
  margin:0 0 18px;
  font-size: 11.5px;
  line-height: 1.6;
  color:#4b5563;
  max-width: 300px;
}

.nr-line{
  width: 220px;
  height: 2px;
  background: rgba(11,18,32,.25);
  border-radius: 999px;
}

.nr-item{
  padding: 10px 0;
}

.nr-date{
  font-size: 10.5px;
  color:#111827;
  opacity: .85;
  margin-bottom: 5px;
}

.nr-headline{
  font-size: 11.5px;
  color:#0b1220;
  font-weight: 800;
}

/* Floating buttons (optional) */
.nr-float{
  position: fixed;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  display:flex;
  flex-direction: column;
  gap: 10px;
  z-index: 999;
}

.nr-float-btn{
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  font-weight: 900;
  color:#fff;
  box-shadow: 0 16px 40px rgba(16,24,40,.20);
  transition: transform .18s ease, box-shadow .18s ease;
}
.nr-float-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 22px 54px rgba(16,24,40,.26);
}
.nr-float-top{ background:#1a66ff; }
.nr-float-wa{ background:#22c55e; }

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 980px){
  .nr-grid{ grid-template-columns: repeat(2, 1fr); }
  .nr-hero-title{ font-size: 40px; }
}

@media (max-width: 640px){
  .nr-hero{ padding: 62px 0 52px; }
  .nr-hero-content{ max-width: 100%; }
  .nr-hero-title{ font-size: 34px; }
  .nr-grid{ grid-template-columns: 1fr; }
  .nr-card-media img{ height: 170px; }

  .nr-newsroom-grid{
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .nr-line{ width: 180px; }
  .nr-float{ right: 10px; }
}
/* ===== MOBILE FIX: Latest News should be full-width + centered ===== */
@media (max-width: 640px){

  /* container uses full width nicely */
  .nr-wrap{
    width: min(1120px, 94%);
  }

  /* make grid a single full-width column */
  .nr-grid{
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  /* force each card to take full width */
  .nr-card{
    width: 100%;
    margin: 0 auto;
  }

  /* image wrapper should be full width */
  .nr-card-media{
    width: 100%;
    display: block;
    border-radius: 16px;
    overflow: hidden;
  }

  /* image should fill properly + not look weird */
  .nr-card-media img{
    width: 100%;
    height: 210px;              /* good mobile height */
    object-fit: cover;
    object-position: center;
    display: block;
  }

  /* reduce text spacing so it feels like mobile feed */
  .nr-card-meta{ font-size: 12px; }
  .nr-card-title{ font-size: 14px; line-height: 1.35; }
  .nr-card-text{ font-size: 12.5px; }
  .nr-readmore{ font-size: 11px; }
}
/* ================= ============ DETAIL PAGE (matches screenshot) ============ */

.ab-page{
  background:#ffffff;
  padding: 60px 0 100px;
}

.ab-wrap{
  width: min(1000px, 92%);
  margin: 0 auto;
}

/* HEADER */
.ab-head{
  text-align:center;
  margin-bottom: 40px;
}

.ab-title{
  margin: 0 0 12px;
  font-size: 39px;
  font-weight: 800;
  color:#0b1220;
  line-height: 1.3;
}

.ab-date{
  font-size: 14px;
  color:#94a3b8;
}

/* PARAGRAPHS */
.ab-para{
  margin: 20px 0;
  font-size: 16px;
  line-height: 1.9;
  color:#475569;
}

/* QUOTE BOX */
.ab-quote{
  background:#f4f7fb;
  border-left: 5px solid #1a66ff;
  border-radius: 18px;
  padding: 22px 24px;
  margin: 30px 0 30px;
}

.ab-quote p{
  margin:0;
  font-size: 20px;
  line-height: 1.8;
  color:#334155;
}

.ab-link{
  color:#1a66ff;
  font-weight: 700;
  text-decoration:none;
}
.ab-link:hover{ text-decoration: underline; }

/* BENEFITS LIST */
.ab-list{
  margin-top: 35px;
  display:flex;
  flex-direction:column;
  gap: 26px;
}

.ab-item{
  display:flex;
  gap:19px;
  align-items:flex-start;
}

.ab-num{
  width:34px;
  height:34px;
  border-radius:999px;
  background:#1a66ff;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
  font-weight:700;
  flex:0 0 34px;
  margin-top:4px;
}

.ab-txt h3{
  margin:0 0 6px;
  font-size:22px;
  font-weight:700;
  color:#0b1220;
}

.ab-txt p{
  margin:0;
  font-size:20px;
  line-height:1.8;
  color:#64748b;
  max-width:780px;
}
/* Benefit Item Container */
.ab-item{
  padding: 18px 20px;
  margin-bottom: 20px;              /* space between 1â€“6 */
  border-radius: 20px;
  transition: background .25s ease, box-shadow .25s ease;
}

/* remove extra space after last item */
.ab-item:last-child{
  margin-bottom: 0;
}

/* hover effect like screenshot */
.ab-item:hover{
  background: #f3f4f8;              /* light grey background */
  box-shadow: 0 4px 18px rgba(0,0,0,0.05);
}


/* CTA SECTION */
.ab-cta{
  margin:60px auto 0;
  width:min(700px,100%);
  background:#062c57;
  border-radius:32px;
  padding:40px 30px;
  text-align:center;
  box-shadow:0 30px 70px rgba(6,44,87,.25);
}

.ab-cta h2{
  margin:0 0 12px;
  color:#fff;
  font-size:22px;
  font-weight:700;
}

.ab-cta p{
  margin:0 0 22px;
  color:rgba(255,255,255,.9);
  font-size:14px;
  line-height:1.8;
}

.ab-cta-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 20px;
  border-radius:12px;
  background:#ffffff;
  color:#1a66ff;
  font-weight:700;
  font-size:14px;
  text-decoration:none;
  transition:all .2s ease;
}

/* ðŸ”¥ BLUE HOVER EFFECT */
.ab-cta-btn:hover{
  background:#1a66ff;
  color:#ffffff;
  transform:translateY(-2px);
  box-shadow:0 10px 25px rgba(26,102,255,.35);
}

/* ================= MOBILE ================= */

@media (max-width:768px){

  .ab-page{
    padding:40px 0 80px;
  }

  .ab-title{
    font-size:24px;
  }

  .ab-para{
    font-size:15px;
  }

  .ab-quote p{
    font-size:15px;
  }

  .ab-txt h3{
    font-size:16px;
  }

  .ab-txt p{
    font-size:14px;
  }

  .ab-cta{
    padding:30px 20px;
    border-radius:24px;
  }

  .ab-cta h2{
    font-size:18px;
  }

}
/* ===============================
   PRODUCT SPECIFICATION SECTION
================================= */

.spec-section {
  background: #f8fafc;
  padding: 80px 0;
}

.spec-container {
  width: min(1180px, calc(100% - 56px));
  margin: 0 auto;
}

.spec-title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 40px;
  color: #0b1220;
  letter-spacing: -0.02em;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 40px;
}

.spec-item {
  display: flex;
  justify-content: space-between;
  padding: 18px 22px;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.spec-item:hover {
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  transform: translateY(-2px);
}

.spec-label {
  font-weight: 600;
  color: #374151;
}

.spec-value {
  color: #0b1220;
  font-weight: 500;
  text-align: right;
}

/* Responsive */
@media (max-width: 768px) {
  .spec-grid {
    grid-template-columns: 1fr;
  }

  .spec-item {
    flex-direction: column;
    gap: 6px;
  }

  .spec-value {
    text-align: left;
  }
}
/* ===============================
   PRODUCT GALLERY IMPROVEMENTS
================================= */

.pd-thumb {
  cursor: pointer;
}

.pd-thumb.active {
  outline: 2px solid rgba(22,119,255,.55);
  border-radius: 12px;
}

.pd-main-img img {
  object-fit: contain;
  background: #ffffff;
}
/* ===============================
   PRODUCT DESCRIPTION SECTION
================================= */

.desc-section {
  background: #ffffff;
  padding: 70px 0 20px;
}

.desc-container {
  width: min(1180px, calc(100% - 56px));
  margin: 0 auto;
}

.desc-title {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 22px;
  color: #0b1220;
  letter-spacing: -0.02em;
}

.desc-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 26px 26px;
}

.desc-list {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 12px;
  color: #1f2937;
  line-height: 1.7;
  font-size: 16px;
}

.desc-para {
  margin: 0;
  color: #1f2937;
  line-height: 1.8;
  font-size: 16px;
}

/* PRODUCT MAIN PAGE */
.product-main-page {
  background: #f2f2f2;
}

.product-main-page .hero-section {
  position: relative;
  background: url("../images/productbg.png") center/cover no-repeat;
  min-height: 500px;
  overflow: hidden;
}

.product-main-page .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 18, 23, 0.72) 0%, rgba(22, 149, 165, 0.56) 100%);
}

.product-main-page .hero-content {
  position: relative;
  z-index: 1;
  min-height: 500px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
  max-width: 1180px;
}

.product-main-page .hero-text {
  color: #fff;
  max-width: 520px;
}

.product-main-page .hero-small {
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.4px;
  margin-bottom: 8px;
}

.product-main-page .hero-text h1 {
  margin: 0;
  font-size: 68px;
  font-weight: 700;
  line-height: 0.96;
}

.product-main-page .hero-text h3 {
  margin: 10px 0 14px;
  font-size: 33px;
  font-weight: 700;
  line-height: 1.08;
}

.product-main-page .hero-text p {
  margin: 0;
  font-size: 19px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
  max-width: 520px;
}

.product-main-page .hero-product {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 8px;
}

.product-main-page .hero-main-unit {
  width: 275px;
  max-width: 42%;
  object-fit: contain;
}

.product-main-page .hero-side-unit {
  width: 330px;
  max-width: 48%;
  object-fit: contain;
}

.product-main-page .ro-section,
.product-main-page .industrial-section,
.product-main-page .commercial-section,
.product-main-page .ionizer-section,
.product-main-page .chiller-section,
.product-main-page .atm-section,
.product-main-page .softener-section {
  padding: 16px 0;
}

.product-main-page .ro-box,
.product-main-page .industrial-box,
.product-main-page .commercial-box,
.product-main-page .ionizer-box,
.product-main-page .chiller-box,
.product-main-page .atm-box,
.product-main-page .softener-box {
  max-width: 1180px;
  margin: 0 auto;
  border-radius: 32px;
  padding: 28px 34px;
  display: grid;
  grid-template-columns: 1fr 42%;
  gap: 26px;
  align-items: center;
}

.product-main-page .ro-box,
.product-main-page .commercial-box,
.product-main-page .chiller-box,
.product-main-page .softener-box {
  background: linear-gradient(135deg, #1f4e8f 0%, #173f78 55%, #123666 100%);
}

.product-main-page .industrial-box,
.product-main-page .ionizer-box,
.product-main-page .atm-box {
  background: #edf4ff;
  border: 1.5px solid #4f8fdd;
}

.product-main-page .ro-left h2,
.product-main-page .commercial-left h2,
.product-main-page .chiller-left h2,
.product-main-page .softener-left h2 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 49px;
  font-weight: 700;
}

.product-main-page .industrial-left h2,
.product-main-page .ionizer-left h2,
.product-main-page .atm-left h2 {
  margin: 0 0 10px;
  color: #0d5db4;
  font-size: 49px;
  font-weight: 700;
}

.product-main-page .ro-left p,
.product-main-page .commercial-left p,
.product-main-page .chiller-left p,
.product-main-page .softener-left p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 1.45;
  max-width: 640px;
}

.product-main-page .industrial-left p,
.product-main-page .ionizer-left p,
.product-main-page .atm-left p {
  margin: 0 0 18px;
  color: #39495f;
  font-size: 18px;
  line-height: 1.45;
  max-width: 640px;
}

.product-main-page .ro-buttons,
.product-main-page .industrial-buttons,
.product-main-page .commercial-buttons,
.product-main-page .ionizer-buttons,
.product-main-page .chiller-buttons,
.product-main-page .atm-buttons,
.product-main-page .softener-buttons {
  display: flex;
  gap: 10px;
  align-items: center;
}

.product-main-page .btn-light,
.product-main-page .btn-outline-blue,
.product-main-page .btn-outline-white,
.product-main-page .btn-dark,
.product-main-page .btn-black {
  height: 38px;
  padding: 0 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.product-main-page .btn-light,
.product-main-page .btn-outline-blue,
.product-main-page .btn-outline-white {
  border: 1px solid #74a9ea;
  background: #f7f9ff;
  color: #155fb7;
}

.product-main-page .btn-dark,
.product-main-page .btn-black {
  background: #000000;
  color: #ffffff;
  border: 1px solid #000000;
}

.product-main-page .ro-right img,
.product-main-page .industrial-right img,
.product-main-page .commercial-right img,
.product-main-page .ionizer-right img,
.product-main-page .chiller-right img,
.product-main-page .atm-right img,
.product-main-page .softener-right img {
  width: 100%;
  max-height: 290px;
  object-fit: contain;
  display: block;
}

.product-main-page .stats-section {
  margin-top: 20px;
  background:
    radial-gradient(circle at 84% 82%, rgba(118, 52, 236, 0.55) 0%, rgba(118, 52, 236, 0.08) 28%, rgba(118, 52, 236, 0) 48%),
    radial-gradient(circle at 6% 78%, rgba(60, 156, 255, 0.45) 0%, rgba(60, 156, 255, 0.08) 30%, rgba(60, 156, 255, 0) 50%),
    linear-gradient(90deg, #122ea7 0%, #10289f 56%, #0f2e98 100%);
  padding: 54px 0 52px;
}

.product-main-page .stats-container {
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}

.product-main-page .stats-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.product-main-page .stats-container h2 {
  margin: 0;
  color: #fff;
  font-size: 46px;
  font-weight: 700;
}

.product-main-page .stats-container .subtitle {
  margin: 6px 0 22px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 17px;
  font-weight: 500;
  text-align: center;
  display: block;
  width: 100%;
}

.product-main-page .stats-subtitle {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
  width: auto !important;
  max-width: 100%;
}

.product-main-page .stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.product-main-page .stat-card {
  background: #f4f8ff;
  border-radius: 16px;
  padding: 18px 12px 14px;
}

.product-main-page .icon-box {
  width: 52px;
  height: 52px;
  background: #dcedff;
  border-radius: 12px;
  margin: 0 auto 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-main-page .icon-box img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.product-main-page .stat-icon {
  font-size: 28px;
  color: #0f1d93;
}

.product-main-page .stat-card h3 {
  margin: 0;
  color: #111827;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.1;
}

.product-main-page .stat-card span {
  color: #4b5563;
  font-size: 14px;
  line-height: 1.35;
}

.pm-float-cta {
  position: fixed;
  right: 0;
  top: 37%;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.pm-book-demo {
  background: #27c24c;
  color: #ffffff;
  text-decoration: none;
  padding: 12px 10px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 6px 0 0 6px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.pm-wa {
  width: 38px;
  height: 38px;
  background: #25d366;
  color: #fff;
  border-radius: 6px 0 0 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  text-decoration: none;
}

@media (max-width: 1200px) {
  .product-main-page .hero-content,
  .product-main-page .ro-box,
  .product-main-page .industrial-box,
  .product-main-page .commercial-box,
  .product-main-page .ionizer-box,
  .product-main-page .chiller-box,
  .product-main-page .atm-box,
  .product-main-page .softener-box,
  .product-main-page .stats-container {
    width: min(1180px, calc(100% - 42px));
  }
}

@media (max-width: 900px) {
  .product-main-page .hero-content {
    min-height: auto;
    padding: 36px 0;
    grid-template-columns: 1fr;
  }

  .product-main-page .hero-text h1 {
    font-size: 50px;
  }

  .product-main-page .hero-text h3 {
    font-size: 28px;
  }

  .product-main-page .hero-text p {
    font-size: 17px;
  }

  .product-main-page .hero-product {
    justify-content: center;
  }

  .product-main-page .hero-main-unit {
    max-width: 42%;
  }

  .product-main-page .hero-side-unit {
    max-width: 48%;
  }

  .product-main-page .ro-box,
  .product-main-page .industrial-box,
  .product-main-page .commercial-box,
  .product-main-page .ionizer-box,
  .product-main-page .chiller-box,
  .product-main-page .atm-box,
  .product-main-page .softener-box {
    grid-template-columns: 1fr;
  }

  .product-main-page .ro-left h2,
  .product-main-page .industrial-left h2,
  .product-main-page .commercial-left h2,
  .product-main-page .ionizer-left h2,
  .product-main-page .chiller-left h2,
  .product-main-page .atm-left h2,
  .product-main-page .softener-left h2 {
    font-size: 36px;
  }

  .product-main-page .ro-left p,
  .product-main-page .industrial-left p,
  .product-main-page .commercial-left p,
  .product-main-page .ionizer-left p,
  .product-main-page .chiller-left p,
  .product-main-page .atm-left p,
  .product-main-page .softener-left p {
    font-size: 16px;
  }

  .product-main-page .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .product-main-page .hero-text h1 {
    font-size: 42px;
  }

  .product-main-page .hero-text h3 {
    font-size: 23px;
  }

  .product-main-page .hero-small {
    font-size: 15px;
  }

  .product-main-page .hero-main-unit,
  .product-main-page .hero-side-unit {
    max-width: 47%;
  }

  .product-main-page .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* Navbar dropdown fix for current navbar.html structure (.has-dropdown/.dropdown) */
.aqua-navbar .dropdown {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 769px) {
  .aqua-navbar .has-dropdown {
    position: relative;
  }

  .aqua-navbar .has-dropdown > .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
    padding: 10px 0;
    z-index: 1200;
  }

  .aqua-navbar .has-dropdown > .dropdown li {
    padding: 0;
    border: 0;
  }

  .aqua-navbar .has-dropdown > .dropdown a {
    display: block;
    padding: 10px 18px;
    color: #1f2937;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
  }

  .aqua-navbar .has-dropdown > .dropdown a:hover {
    background: #f3f7ff;
    color: #1e73e8;
  }

  .aqua-navbar .has-dropdown:hover > .dropdown {
    display: block;
  }
}

@media (max-width: 768px) {
  .aqua-navbar .has-dropdown > .dropdown {
    position: static;
    width: 100%;
    background: #f9f9f9;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
  }

  .aqua-navbar .has-dropdown > .dropdown li {
    padding: 0;
  }

  .aqua-navbar .has-dropdown > .dropdown a {
    display: block;
    padding: 12px 20px 12px 30px;
    color: #555;
    font-size: 14px;
    text-decoration: none;
    border-bottom: 1px solid #eee;
  }

  .aqua-navbar .has-dropdown.active > .dropdown {
    display: block;
  }
}

/* CLERO SERIES VARIANTS */
.clero-variants-row {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.clero-mini {
  display: grid;
  grid-template-columns: 56% 44%;
  gap: 12px;
  border: 1px solid #e8edf5;
  border-radius: 8px;
  background: #fcfdff;
  overflow: hidden;
}

.clero-mini .pd-main-img {
  border: 0;
  border-radius: 0;
  padding: 8px;
  min-height: auto;
  background: #f7f9fc;
}

.clero-mini .pd-main-img img {
  width: 100%;
  height: 250px;
  object-fit: contain;
  display: block;
}

.clero-mini-body {
  padding: 14px 14px 12px 2px;
}

.clero-mini-body .pd-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.clero-mini-body .pd-section-title {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
}

.clero-mini-body .pd-features {
  font-size: 13px;
  gap: 6px;
  margin-bottom: 8px;
  color: #44526b;
}

.clero-mini-price {
  margin: 0;
  color: #0f3a76;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.1;
}

.clero-mini .pd-actions {
  margin-top: 10px;
}

.clero-mini .pd-btn {
  height: 38px;
  font-size: 14px;
  padding: 0 14px;
}

@media (max-width: 900px) {
  .clero-mini {
    grid-template-columns: 1fr;
  }

  .clero-mini .pd-main-img img {
    height: 230px;
  }

  .clero-mini-body {
    padding: 10px 12px 12px;
  }
}

/* REPPO/RETTO IONIZER DETAIL LAYOUT */
.ion-model-title {
  margin: 0 0 14px;
  text-align: center;
  font-size: 30px;
  line-height: 1.05;
  color: #0b2f60;
  font-weight: 700;
}

.ion-spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 26px;
}

.ion-spec-table th,
.ion-spec-table td {
  border-bottom: 1px solid #d7dee8;
  padding: 14px 10px;
  text-align: center;
  font-size: 15px;
  color: #111827;
}

.ion-spec-table th {
  background: #c7d0d9;
  color: #111827;
  font-weight: 700;
}

.ion-spec-table td {
  font-weight: 600;
}

.ion-bottom {
  text-align: center;
}

.ion-bottom h2 {
  margin: 0;
  color: #0b2f60;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.1;
}

.ion-bottom p {
  margin: 8px 0 16px;
  color: #111827;
  font-size: 16px;
  font-weight: 500;
}

.ion-scale {
  display: grid;
  grid-template-columns: repeat(15, 1fr);
  gap: 0;
  border-radius: 12px;
  overflow: hidden;
  margin: 0 auto 16px;
}

.ion-scale span {
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  padding: 6px 0;
}

.ion-scale span:nth-child(1) { background:#ef3b5d; }
.ion-scale span:nth-child(2) { background:#ee6f3a; }
.ion-scale span:nth-child(3) { background:#ef9f2a; }
.ion-scale span:nth-child(4) { background:#dfca37; }
.ion-scale span:nth-child(5) { background:#afcd43; }
.ion-scale span:nth-child(6) { background:#82bf45; }
.ion-scale span:nth-child(7) { background:#62b653; }
.ion-scale span:nth-child(8) { background:#43ae5f; }
.ion-scale span:nth-child(9) { background:#2aa98a; }
.ion-scale span:nth-child(10){ background:#2a9cc2; }
.ion-scale span:nth-child(11){ background:#2b7dc2; }
.ion-scale span:nth-child(12){ background:#3558a8; }
.ion-scale span:nth-child(13){ background:#4b4b9d; }
.ion-scale span:nth-child(14){ background:#5d3f95; }
.ion-scale span:nth-child(15){ background:#56388e; }

.ion-bottom h3 {
  margin: 0;
  color: #0b2f60;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.05;
}

.ion-ph {
  margin-top: 10px;
  font-size: 18px;
  color: #111827;
}

@media (max-width: 1200px) {
  .ion-model-title { font-size: 26px; }
  .ion-spec-table th, .ion-spec-table td { font-size: 14px; }
  .ion-bottom h2 { font-size: 22px; }
  .ion-bottom p { font-size: 15px; }
  .ion-scale span { font-size: 13px; }
  .ion-bottom h3 { font-size: 34px; }
  .ion-ph { font-size: 16px; }
}

@media (max-width: 768px) {
  .ion-model-title { font-size: 22px; }
  .ion-spec-table th, .ion-spec-table td {
    font-size: 13px;
    padding: 10px 6px;
  }
  .ion-bottom h2 { font-size: 20px; }
  .ion-bottom p { font-size: 14px; }
  .ion-scale span { font-size: 12px; padding: 5px 0; }
  .ion-bottom h3 { font-size: 28px; }
  .ion-ph { font-size: 15px; }
}

/* ATM HERO */
.atm-hero {
  background: linear-gradient(rgba(255,255,255,0.68), rgba(255,255,255,0.75)),
              url("../images/water.png") center/cover no-repeat;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.atm-hero-inner h1 {
  margin: 0;
  color: #1d232f;
  font-size: 84px;
  font-weight: 700;
  text-align: center;
  letter-spacing: -0.02em;
}

@media (max-width: 900px) {
  .atm-hero {
    min-height: 180px;
  }

  .atm-hero-inner h1 {
    font-size: 42px;
  }
}

/* SOFTENER DETAIL BLOCKS */
.sf-title {
  margin: 0 0 8px;
  color: #0b2f60;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
}

.sf-subtitle {
  margin: 10px 0 8px;
  color: #0b2f60;
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
}

.sf-list {
  margin: 0 0 8px;
  padding-left: 20px;
  color: #3f4c63;
  font-size: 16px;
  line-height: 1.85;
}

.sf-list li {
  margin-bottom: 4px;
}

.sf-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 8px;
}

.sf-table th,
.sf-table td {
  padding: 11px 12px;
  border-bottom: 1px solid #d7dee8;
  text-align: left;
  vertical-align: top;
  font-size: 15px;
  color: #111827;
}

.sf-table th {
  background: #c7d0d9;
  font-weight: 700;
}

.sf-table td {
  font-weight: 500;
}

@media (max-width: 900px) {
  .sf-title {
    font-size: 24px;
  }

  .sf-subtitle {
    font-size: 18px;
  }

  .sf-list {
    font-size: 15px;
  }

  .sf-table th,
  .sf-table td {
    font-size: 14px;
    padding: 9px 10px;
  }
}
/*career page*/
.career-hero {
  position: relative;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

/* Background Image */
.career-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Blue Overlay */
.career-overlay {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(
    90deg,
    rgba(28,60,140,0.85),
    rgba(37,166,199,0.75)
  ); */
  z-index: 1;
}

/* Content */
.career-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 20px;
  color: #fff;
}

/* Title */
.career-title {
  font-size: 55px;
  font-weight: 1000;
  margin-bottom: 20px;
}

/* Subtitle */
.career-subtitle {
  font-size: 22px;
  line-height: 1.7;
  margin-bottom: 40px;
}

/* Button */
.career-btn {
  display: inline-block;
  padding: 14px 35px;
  background: #fff;
  color: #1c3c8c;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
}

.career-btn:hover {
  background: #f2f2f2;
}

@media (max-width: 768px) {

  .career-title {
    font-size: 36px;
  }

  .career-subtitle {
    font-size: 18px;
  }

  .career-hero {
    height: 60vh;

  }
}

.why-section {
  background: #f3f4f6;
  padding: 100px 20px;
  text-align: center;
}

.why-container {
  max-width: 1200px;
  margin: auto;
}

.why-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.why-subtitle {
  font-size: 18px;
  color: #555;
  margin-bottom: 60px;
}

/* Cards Row */
.why-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* Card */
.why-card {
  position: relative;
  background: #fff;
  padding: 70px 25px 40px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: 0.3s ease;
  border: 2px solid #e0e0e0;
}

.why-card:hover {
  transform: translateY(-5px);
}

/* Icon Circle */
.why-icon {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 90px;
  background: #dfe8f5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-icon img {
  width: 45px;
}

/* Card Title */
.why-card h3 {
  margin-top: 30px;
  font-size: 22px;
  font-weight: 700;
}

/* Card Text */
.why-card p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}
@media (max-width: 992px) {
  .why-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .why-cards {
    grid-template-columns: 1fr;
  }

  .why-title {
    font-size: 30px;
  }
}

.philosophy-section {
  background: #122a8f;
  padding: 100px 20px;
  color: #fff;
}

.philosophy-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Tag */
.philosophy-tag {
  color: #f5b000;
  font-weight: 600;
  margin-bottom: 20px;
}

/* Title */
.philosophy-title {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 25px;
}

/* Paragraph */
.philosophy-text {
  font-size: 20px;
  line-height: 1.8;
  color: #d5dcff;
  margin-bottom: 40px;
}

/* Feature Box */
.philosophy-box {
  display: flex;
  gap: 20px;
  background: #e9edf5;
  color: #111;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 20px;
  align-items: center;
}

.box-icon {
  background: #1e3fb3;
  padding: 15px;
  border-radius: 12px;
}

.box-icon img {
  width: 50px;
}

/* Right Image */
.philosophy-right {
  position: relative;
}

.philosophy-img {
  width: 190%;        /* Never exceed container */
  /* max-width: 100%;     */
  height: auto;       /* Maintain ratio */
  border-radius: 16px;
  border: 2px solid #2e5bff;
  display: block;
}


/* Yellow Badge */
.quality-badge {
  position: absolute;
  bottom: -30px;
  right: -5px;
  background: #f5a300;
  padding: 25px 30px;
  border-radius: 16px;
  color: #fff;
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.quality-badge .zero {
  display: block;
  font-size: 36px;
  font-weight: 800;
}
@media (max-width: 992px) {
  .philosophy-container {
    grid-template-columns: 1fr;
  }

  .quality-badge {
    position: relative;
    bottom: 0;
    right: 0;
    margin-top: 20px;
  }
}
.philosophy-img {
    width: 100%;
    margin-top: 30px;
  }

.jobs-section {
  background: #f4f5f7;
  padding: 100px 20px;
  font-weight: 700;
}

.jobs-container {
  max-width: 1200px;
  margin: auto;
}

/* Header */
.jobs-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
}

.jobs-title {
  font-size: 40px;
  font-weight: 700;
}

.jobs-subtitle {
  color: #666;
  margin-top: 8px;
}

.jobs-filter {
  display: flex;
  align-items: center;
  gap: 10px;
}

.jobs-filter select {
  padding: 10px 20px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 14px;
}

/* Grid */
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */
.job-card {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  border: 1px solid #e5e5e5;
  box-shadow: 0 8px 25px rgba(0,0,0,0.03);
  transition: 0.3s ease;
}

.job-card:hover {
  transform: translateY(-5px);
}

/* Badge */
.badge {
  display: inline-block;
  padding: 8px 18px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 20px;
  margin-bottom: 20px;

}

.badge.technical {
  background: #e6f0ff;
  color: #2e5bff;
}

.badge.sales {
  background: #f5ede4;
  color: #ff7a00;
  
}

/* Title */
.job-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

/* Description */
.job-desc {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Location */
.job-location {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

/* Footer */
.job-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
 
}

.job-type {
  font-weight: 600;
  color: #444;
}

.apply-btn {
  background: #2e7be6;
  color: #fff;
  padding: 10px 22px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.apply-btn:hover {
  background: #1f5dc3;
}
@media (max-width: 992px) {
  .jobs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  .jobs-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .jobs-grid {
    grid-template-columns: 1fr;
  }
}


@media (max-width: 768px) {
  .stats-container .subtitle {
    margin-left: 0;          /* remove left shift */
    text-align: center;      /* center text */
    padding: 0 15px;         /* small side spacing */
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

  font-family: 'Poppins', Helvetica, Arial, sans-serif;


}

/* TOP STRIP BACKGROUND */
.top-strip {
  background: #f3f6f9;
  width: 100%;
  padding: 10px 0;
}

/* CENTER CONTENT SAME AS NAVBAR */
.top-strip-inner {
  width: 1180px;
  /* ðŸ‘ˆ SAME WIDTH AS BLUE NAV */
  margin: 0 auto;
  /* ðŸ‘ˆ CENTER */
  display: flex;
  align-items: center;
  /* ðŸ‘ˆ VERTICAL ALIGN FIX */
  justify-content: space-between;
  font-weight: 600;
  
}



/* TEXT */
.top-strip p {
  font-size: 14px;
  color: #1478F2;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 14px;
}

.social-icons img {
  width: 16px;
  height: 16px;
  cursor: pointer;
  display: block;
}

/* Optional hover effect */
.social-icons img:hover {
  transform: translateY(-2px);
  transition: 0.2s ease;
}


/* INFO BAR */
.info-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  background: #fff;
}



.info-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  max-width: 260px;
}

.info-item i {
  font-size: 22px;
  color: #1877f2;
  margin-top: 4px;
}

.info-item span {
  font-size: 13px;
  color: #777;
}

.info-item strong {
  font-size: 14px;
  color: #000;
}

.language {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.aqua-navbar {
  background: #1478f2;
  /* exact blue feel */
  padding: 22px 0;
  width: 1120px;

}

.nav-inner {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 1180px;
}

/* MENU */
.nav-menu {
  list-style: none;
  display: flex;
  gap: 36px;
}

.nav-menu li {
  color: #fff;
  font-weight: 600;
  font-size: 20px;
  cursor: pointer;
  position: relative;
}

/* ACTIVE ITEM */
.nav-menu li.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: #fff;
}

/* RIGHT SIDE */
.nav-right {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #fff;
  font-size: 18px;
}

/* BUTTON */
.consult-btn {
  background: #fff;
  color: #222;
  border: none;
  padding: 14px 22px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

/* BLUE BAR CENTERED */
.aqua-navbar {
  background: #1478f2;
  width: 1180px;
  /* ðŸ‘ˆ same visual width as image */
  margin: 0 auto;
  /* ðŸ‘ˆ center horizontally */
  padding: 22px 0;
  border-radius: 20px;
  /* subtle edge like image */
  transition: all 0.3s ease-in-out;
  z-index: 1000;
}

.aqua-navbar.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  border-radius: 0;
  padding: 15px 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* CONTENT INSIDE */
.nav-inner {
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-info {
  background: #fff;
  padding: 22px 0;
}

.info-container {
  width: 1180px;
  margin: auto;
  display: flex;
  align-items: center;
  /* ðŸ”¥ KEY LINE */
  justify-content: space-between;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  /* ðŸ”¥ */
  gap: 10px;
}

.logo img {
  height: 100px;
}

.logo span {
  font-weight: 700;
  color: #1877f2;
  font-size: 20px;
}

/* INFO ITEMS */
.info-item {
  display: flex;
  align-items: center;
  /* ðŸ”¥ */
  gap: 12px;
  max-width: 260px;
}

.info-item i {
  font-size: 22px;
  color: #1877f2;
}

.info-item small {
  display: block;
  color: black;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 600;
}

.info-item strong {
  font-size: 14px;
  color: #000;
  line-height: 1.3;
}

/* LANGUAGE */
.language {
  display: flex;
  align-items: center;
  /* ðŸ”¥ */
  gap: 6px;
  cursor: pointer;
}


.hero {
  background: #001f3f;
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
  color: white;
}

.hero-container {
  width: 1180px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 100px;
}

/* LEFT TEXT */
.hero-text {
  max-width: 520px;
  color: white;
}

.hero-text h1 {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 28px;
}

/* BADGES */
.hero-badges {
  display: flex;
  gap: 16px;
  margin-bottom: 34px;
}

.badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.15);
  padding: 12px 16px;
  border-radius: 10px;
  color: white;
}

.badge img {
  width: 24px;
}

.badge span {
  font-size: 14px;
  line-height: 1.2;
}

.badge small {
  font-size: 11px;
  opacity: 0.8;
}

/* BUTTONS */
.hero-buttons {
  display: flex;
  gap: 16px;
}

.btn-primary {
  background: #1478f2;
  color: #fff;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
}

.btn-outline {
  padding: 12px 28px;

  color: #2563eb;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background-color: #2563eb;
  /* blue bg */
  color: #ffffff;
  /* white text */
}

.btn-outline {
  background: #fff;
  color: #1478f2;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
}

/* RIGHT IMAGE */
.hero-image img {
  max-height: 520px;
}

/* SLIDER DOTS */
/*.hero-dots {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 40px;
}*/

.hero-dots span {
  width: 48px;
  height: 4px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 999px;
}

.hero-dots span.active {
  background: #1478f2;
}


.hero-badges {
  display: flex;
  gap: 20px;
}

.badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 14px 20px;
  min-width: 160px;
  color: white;
}

.badge img {
  width: 28px;
  height: 28px;
  filter: invert(16%) sepia(14%) saturate(463%) hue-rotate(179deg);
}

.badge-text {
  line-height: 1.2;
}

.badge-text strong {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.badge-text small {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #ccc;
}

.stats-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #1e88e5, #0b1e8a 55%, #4f2ccf);
  color: #fff;
}

.stats-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.stats-container h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 10px;
}

.stats-container .subtitle {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 60px;
  margin-left: 25%;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat-card {
  background: #ffffff;
  color: #0f172a;
  border-radius: 20px;
  padding: 40px 20px;
  transition: 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.icon-box {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: #e0f2fe;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-box img {
  width: 60px;
  height: 60px;
}

.stat-card h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
}

.stat-card span {
  font-size: 14px;
  color: #475569;
}

@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .stats-section {
    padding: 60px 16px;
  }

  .stats-container h2 {
    font-size: 26px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }
}

.products-section {
  padding: 80px 20px;
  text-align: center;
}

.products-section h2 {
  font-size: 32px;
  font-weight: 700;
}

.subtitle {
  max-width: 600px;
  margin: 10px auto 40px;
  color: white;
}

.subtitle-black {
  color: #000;
  /* black */
}


.product-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
}

.tab {
  padding: 10px 22px;
  border-radius: 30px;
  border: 1px solid #e5e7eb;
  background: #fff;
  cursor: pointer;
  font-weight: 500;
}

.tab.active {
  background: #0d6efd;
  color: #fff;
  border-color: #0d6efd;
}

.product-slider-wrapper {
  position: relative;
  max-width: 1200px;
  margin: auto;
}

.product-slider {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px;
}

.product-slider::-webkit-scrollbar {
  height: 6px;
}

.product-slider::-webkit-scrollbar-thumb {
  background: #0d6efd;
  border-radius: 10px;
}

.product-card {
  min-width: 280px;
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  text-align: left;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.product-card img {
  width: 100%;
  height: 260px;
  object-fit: contain;
}

.product-card h3 {
  margin: 15px 0 5px;
}

.rating {
  font-size: 14px;
  margin-bottom: 8px;
}

.desc {
  font-size: 14px;
  color: #555;
}

.product-card ul {
  font-size: 13px;
  padding-left: 16px;
  margin: 10px 0;
}

.price {
  font-weight: 600;
  margin: 10px 0;
}

.buy-btn {
  background: #0d6efd;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  cursor: pointer;
}

/* TAGS */
.tag {
  display: inline-block;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 20px;
  color: #fff;
  margin-bottom: 10px;
}

.tag.residential {
  background: #1e40af;
}

.tag.commercial {
  background: #1e40af;
}

.tag.industrial {
  background: #1e40af;
}

/* NAV BUTTONS */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #0d6efd;
  color: #fff;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
}

.nav-btn.left {
  left: -20px;
}

.nav-btn.right {
  right: -20px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-btn {
    display: none;
  }
}

.about-section {
  padding: 80px 0;
  background: #fff;
  font-family: 'Segoe UI', sans-serif;
}

.about-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* LEFT CONTENT */
.about-tag {
  color: #1e73ff;
  font-weight: 600;
  margin-bottom: 12px;
  display: inline-block;
}

.about-title {
  font-size: 42px;
  font-weight: 700;
  color: #000;
  line-height: 1.2;
  margin-bottom: 20px;
}

.about-text {
  color: #555;
  line-height: 1.7;
  margin-bottom: 18px;
  font-size: 15.5px;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.about-list li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 14px;
  font-size: 15px;
  color: #000;
}

.about-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  background: #1e73ff;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 14px;
  line-height: 22px;
}

.about-btn {
  display: inline-block;
  background: #1e73ff;
  color: #fff;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.about-btn:hover {
  background: #0d5fe0;
}

/* RIGHT MEDIA */
.about-media {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
}

.play-btn::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 22px;
  border-left: 18px solid #1e73ff;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}

/* CAPTION */
.media-caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #fff;
}

.media-caption h4 {
  font-size: 22px;
  margin-bottom: 4px;
}

.media-caption p {
  font-size: 14px;
  opacity: 0.9;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-container {
    grid-template-columns: 1fr;
  }
}


.about-media {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
}

/* VIDEO */
.about-media iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: none;
  transition: transform 0.6s ease;
}

/* ZOOM EFFECT */
.about-media:hover iframe {
  transform: scale(1.08);
}

/* OPTIONAL DARK OVERLAY ON HOVER */
.play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
  pointer-events: none;
  transition: background 0.4s ease;
}

.about-media:hover .play-overlay {
  background: rgba(0, 0, 0, 0.25);
}

/* CAPTION */
.media-caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #fff;
  z-index: 2;
}

.media-caption h4 {
  font-size: 22px;
  margin-bottom: 4px;
}

.media-caption p {
  font-size: 14px;
  opacity: 0.9;
}


.tsm-section {
  padding: 80px 20px;
  text-align: center;
}

.tsm-title {
  font-size: 34px;
  font-weight: 700;
}

.tsm-subtitle {
  color: #555;
  margin: 10px 0 60px;
}

.tsm-slider-wrapper {
  position: relative;
  max-width: 1200px;
  margin: auto;
}

.tsm-slider {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px;
}

.tsm-slider::-webkit-scrollbar {
  display: none;
}

/* CARD */
.tsm-card {
  min-width: 300px;
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  text-align: left;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative;
}

.tsm-card img {
  width: 100%;
  height: 260px;
  object-fit: contain;
  margin: 20px 0;
}

.tsm-card h3 {
  font-size: 20px;
  margin-bottom: 6px;
}

.tsm-price {
  color: #0d6efd;
  font-weight: 600;
  margin-bottom: 10px;
}

.tsm-card ul {
  font-size: 14px;
  color: #555;
  padding-left: 16px;
  margin-bottom: 14px;
}

/* TAGS */
.tsm-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 20px;
  color: #fff;
}


.tsm-rating {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 12px;
}

/* FEATURES */
.tsm-features {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 13px;
}

/* BUTTON */
.tsm-buy {
  background: #0d6efd;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
}

/* NAV */
.tsm-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: #0d6efd;
  color: #fff;
  cursor: pointer;
}

.tsm-prev {
  left: -20px;
}

.tsm-next {
  right: -20px;
}

/* DOTS */
.tsm-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.tsm-dots span {
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
}

.tsm-dots span.active {
  background: #0d6efd;
}


.tsm-slider-wrapper {
  position: relative;
  max-width: 1200px;
  margin: auto;
}

/* NEW container */
.tsm-slider-container {
  overflow: hidden;
  /* ðŸ”¥ THIS FIXES OVERLAP */
}

/* slider itself */
.tsm-slider {
  display: flex;
  gap: 30px;
  padding: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
}

.tsm-slider::-webkit-scrollbar {
  display: none;
}

/* arrows */
.tsm-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #0d6efd;
  color: #fff;
  border: none;
  cursor: pointer;
  z-index: 10;
  /* stays above */
}

.tsm-prev {
  left: -24px;
}

.tsm-next {
  right: -24px;
}

.product-features-box {
  display: flex;
  gap: 14px;
  margin: 16px 0 20px;
}

.feature-box {
  flex: 1;
  background: #eaf7fb;
  border-radius: 6px;
  padding: 12px 8px;
  text-align: center;
}

.feature-box img {
  width: 18px;
  height: 18px;
  margin-bottom: 6px;
}

.feature-box span {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: #333;
}


/* SECTION */
.tech-section {
  padding: 80px 100px;
}

/* HEADER */
.tech-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
}

.tech-header .tag {
  color: #0b63ff;
  font-weight: 600;
  font-size: 20px;
}

.tech-header h2 {
  font-size: 42px;
  margin-top: 10px;
}

.tech-header h2 span {
  color: #0b63ff;
}

.tech-header .right {
  display: flex;
  max-width: 420px;
  gap: 8px;
  margin-left: 0;
}

.tech-header .line {
  width: 4px;
  background: #0b63ff;
}

.tech-header p {
  color: #555;
  line-height: 1.6;
}

/* MAIN CARD */
.tech-card {
  background: linear-gradient(135deg, #0b2c8f, #061a66);
  border-radius: 24px;
  padding: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* SIDE BOXES */
.side {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 28%;
}

.info-box {
  background: #ffffff;
  border-radius: 22px;
  padding: 30px;
}

.info-box h4 {
  font-size: 20px;
  margin-bottom: 10px;
}

.info-box p {
  color: #666;
  line-height: 1.5;
}

/* COLOR HEADINGS */
.blue {
  color: #00b2ff;
}

.green {
  color: #00a889;
}

.purple {
  color: #a855f7;
}

.orange {
  color: #ff7a45;
}

/* CENTER STACK */
.center-stack {
  width: 32%;
  display: flex;
  justify-content: center;
}

.capsule {
  width: 240px;
  background: linear-gradient(180deg, #3b4edc, #2a2f9e);
  border-radius: 120px;
  padding: 30px 20px;
  text-align: center;
  color: #fff;
}

.capsule img {
  width: 90px;
  margin-bottom: 10px;
}

.capsule h3 {
  margin-bottom: 20px;
  font-weight: 500;
}

.pill {
  display: block;
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 13px;
  margin: 12px 0;
}

.pill.light {
  background: #36c0c9;
}

.pill.dark {
  background: #0b4fd6;
}

.pill small {
  display: block;
  font-size: 11px;
  opacity: 0.8;
}

.center-stack {
  display: flex;
  justify-content: center;
}

.capsule {
  width: 260px;
  height: 520px;
  background: linear-gradient(180deg, #4b5be5, #2b2f99);
  border-radius: 140px;
  padding: 35px 25px;
  text-align: center;
  color: #fff;

  /* ðŸ”¥ KEY DIFFERENCE */
  border: 1.5px solid rgba(255, 255, 255, 0.6);
}

.capsule img {
  width: 70px;
  margin-bottom: 10px;
}

.capsule h3 {
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 22px;
}

/* NORMAL PILLS */
.pill {
  display: block;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 13px;
  margin: 14px auto;
  width: 85%;
  text-align: center;
}

.pill.light {
  background: #36c0c9;
}

/* RO MEMBRANE CARD */
.pill-card {
  background: #0b4fd6;
  border-radius: 22px;
  padding: 18px 10px;
  margin: 18px auto;
  width: 85%;
}

.pill-card strong {
  display: block;
  font-size: 13px;
  letter-spacing: 1px;
}

.pill-card small {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  opacity: 0.8;
}

/* BOTTOM INACTIVE BAR */
.pill.inactive {
  background: rgba(0, 0, 0, 0.35);
  height: 36px;
}

/* CONTAINER */
.purity-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px 0;
  background: #fff;
}

/* ITEM */
.purity-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* VALUE */
.purity-value {
  font-size: 26px;
  font-weight: 700;
  color: #000;
}

.purity-value.highlight {
  color: #0b63ff;
}

/* LABEL */
.purity-label span {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #777;
  letter-spacing: 0.8px;
  line-height: 1.2;
}

/* DIVIDER */
.purity-divider {
  width: 1px;
  height: 32px;
  background: #cfcfcf;
  margin: 0 4px;
}

/* SECTION */
.network-section {
  position: relative;
  padding: 110px 20px;
  background: #ffffff;
  overflow: hidden;
}

/* WORLD MAP BACKGROUND */
.network-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/world\ map.png") center/cover no-repeat;
  opacity: 0.07;
  /* ðŸ”¥ VERY IMPORTANT */
  filter: blur(1.5px);
  /* ðŸ”¥ soft look */
  z-index: 0;
}

/* KEEP CONTENT ABOVE MAP */
.network-container {
  position: relative;
  z-index: 2;
}

/* CONTAINER */
.network-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

/* TAG */
.network-tag {
  color: #0b63ff;
  font-size: 20px;
  font-weight: 600;
}

/* TITLE */
.network-title {
  font-size: 36px;
  font-weight: 700;
  margin: 16px 0 50px;
}

/* STATS CARD */
.network-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffff;
  border: 1px solid #dcdcdc;
  border-radius: 20px;
  padding: 35px 40px;
  max-width: 1000px;
  margin: 0 auto 60px;
}

/* STAT */
.network-stat h3 {
  color: #0b63ff;
  font-size: 28px;
  font-weight: 700;
}

.network-stat p {
  margin-top: 8px;
  color: #666;
  font-size: 14px;
  font-weight: 600;
}

/* DIVIDER */
.network-divider {
  width: 1px;
  height: 45px;
  background: #cfcfcf;
}

/* CTA */
.network-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.network-cta p {
  font-size: 18px;
  color: #111;
}

.network-cta p span {
  color: #0b63ff;
  font-weight: 600;
}

/* BUTTON */
.network-btn {
  padding: 12px 22px;
  background: #0b63ff;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 600;
  transition: 0.3s;
}

.network-btn:hover {
  background: #084dcc;
}


.partners-section {
  background: #f3f6f9;
  padding: 50px 0;
}

.partners-container {
  width: 1180px;
  margin: auto;
  text-align: center;
}

.partners-container h2 {
  font-size: 26px;
  font-weight: 600;
  color: #000;
  margin-bottom: 6px;
}

.partners-container p {
  font-size: 14px;
  color: #666;
  margin-bottom: 30px;
}

/* SLIDER */
.partners-slider {
  overflow: hidden;
  width: 100%;
}

.partners-track {
  display: flex;
  width: calc(200px * 12);
  animation: scroll 25s linear infinite;
}

.partner {
  width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner img {
  max-width: 140px;

  opacity: 0.8;
  transition: 0.3s;
}

.partner img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* AUTO SLIDE */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .partners-container {
    width: 95%;
  }
}


.testimonials {
  padding: 80px 0;
  background: #fff;
}

.testimonials-container {
  width: 1180px;
  margin: auto;
  text-align: center;
  position: relative;
}

.testimonials h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 6px;
}

.subtitle {
  font-size: 14px;
  color: white;
  margin-bottom: 40px;
}

/* ARROWS */
.testimonial-arrows {
  position: absolute;
  top: 90px;
  right: 0;
}

.testimonial-arrows button {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: #1e73ff;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  margin-left: 8px;
}

/* SLIDER */
.testimonial-slider {
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-card {
  min-width: 360px;
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  margin: 0 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  text-align: left;
}

.quote {
  font-size: 40px;
  color: #1e73ff;
}

.testimonial-card p {
  font-size: 14px;
  color: #444;
  margin-bottom: 20px;
}

/* USER */
.user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.user img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

.user h4 {
  font-size: 14px;
  margin: 0;
}

.user span {
  font-size: 12px;
  color: #777;
}

.stars {
  color: #ffc107;
  font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .testimonials-container {
    width: 95%;
  }
}

.blog-section {
  padding: 90px 0;
  background: #fff;
}

.blog-container {
  width: 1180px;
  margin: auto;
}

/* HEADER */
.blog-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.blog-tag {
  color: #1e73ff;
  font-size: 13px;
  font-weight: 500;
}

.blog-header h2 {
  font-size: 32px;
  font-weight: 600;
  margin-top: 6px;
}

.blog-header h2 span {
  color: #1e73ff;
}

.blog-actions {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 14px;
}

/* ARROWS */
.arrows button {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: #1e73ff;
  color: #fff;
  cursor: pointer;
  margin-left: 6px;
}

/* SLIDER */
.blog-slider {
  overflow: hidden;
}

.blog-track {
  display: flex;
  transition: transform 0.5s ease;
}

.blog-card {
  min-width: 360px;
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
  margin-right: 30px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.blog-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.blog-content {
  padding: 22px;
}

.blog-content small {
  color: #777;
  font-size: 12px;
}

.blog-content h4 {
  font-size: 16px;
  margin: 10px 0;
}

.blog-content p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

.blog-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}

.blog-footer a {
  color: #1e73ff;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
}

/* IMAGE ZOOM ON HOVER */
.blog-card img {
  transition: transform 0.5s ease;
}

.blog-card:hover img {
  transform: scale(1.08);
}


.blog-img {
  border-radius: 18px;
  /* SAME curve on all sides */
  overflow: hidden;
  /* REQUIRED */
}

.blog-img img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* zoom stays inside curve */
.blog-card:hover .blog-img img {
  transform: scale(1.08);
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .blog-container {
    width: 95%;
  }
}

.footer {
  background: #155bd5;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

/* MAIN GRID */
.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 2fr;
  gap: 40px;
}

/* LOGO */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo img {
  width: 45px;
}

.footer-about p {
  margin: 15px 0;
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.9;
}

/* HEADINGS */
.footer h4 {
  font-size: 16px;
  margin-bottom: 15px;
}

/* LINKS */
.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  opacity: 0.85;
}

.footer ul li a:hover {
  opacity: 1;
}

/* SOCIAL */
.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.social-icons a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  color: #fff;
}

/* CONTACT */
.footer-contact p {
  font-size: 14px;
  margin-bottom: 10px;
  opacity: 0.9;
}

.footer-contact i {
  margin-right: 8px;
}

/* PRODUCTS + LOCATIONS */
.footer-products,
.footer-locations {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-products p,
.footer-locations p {
  font-size: 13px;
  opacity: 0.85;
  line-height: 1.6;
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  padding: 15px;
  font-size: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  opacity: 0.8;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}

.footer-badges {
  display: flex;
  gap: 10px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.footer-badges img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  background: #fff;
  padding: 4px;
  border-radius: 50%;
}

@media (max-width: 1200px) {

  .top-strip-inner,
  .info-container,
  .hero-container,
  .partners-container,
  .testimonials-container,
  .blog-container,
  .footer-container {
    width: 95%;
  }

  .aqua-navbar {
    width: 95%;
  }

  .nav-inner {
    width: 100%;
  }
}

@media (max-width: 992px) {

  /* NAVBAR */
  .nav-menu {
    gap: 22px;
    font-size: 14px;
  }

  /* HERO */
  .hero-container {
    flex-direction: column;
    text-align: center;
    gap: 50px;
  }

  .hero-text h1 {
    font-size: 48px;
  }

  .hero-badges {
    justify-content: center;
    flex-wrap: wrap;
  }

  /* STATS */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* TECH SECTION */
  .tech-section {
    padding: 60px 30px;
  }

  .tech-header {
    flex-direction: column;
    gap: 20px;
  }

  .tech-card {
    flex-direction: column;
    gap: 40px;
    padding: 40px;
  }

  .side,
  .center-stack {
    width: 100%;
    align-items: center;
  }

  /* FOOTER */
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {

  .hero-text h1 {
    font-size: 30px;
  }

  .stats-container h2,
  .network-title,
  .about-title {
    font-size: 26px;
  }

  .badge {
    min-width: auto;
    width: 100%;
  }

  .product-card,
  .tsm-card,
  .blog-card {
    min-width: 90%;
  }

  .footer-products p,
  .footer-locations p {
    font-size: 12px;
  }
}

/* ================= TABLET ================= */
@media (max-width: 991px) {
  .info-container {
    justify-content: center;
    text-align: center;
  }

  .info-item {
    justify-content: center;
    text-align: left;
  }

  .nav-inner {
    gap: 15px;
    justify-content: center;
  }

  .nav-menu {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ================= MOBILE ================= */
@media (max-width: 576px) {

  /* Top strip */
  .top-strip-inner {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  /* Info section */
  .info-container {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }

  .info-item {
    width: 100%;
    justify-content: center;
    text-align: center;
    font-weight: 600;
  }

  /* Navbar */
  .nav-inner {
    flex-direction: column;
    gap: 15px;
  }

  .nav-menu {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .nav-right {
    flex-direction: column;
    gap: 10px;
  }

  .consult-btn {
    width: 100%;
    text-align: center;
  }
}

/* ================= TABLET (<= 1024px) ================= */
@media (max-width: 1024px) {
  .hero-container {
    width: 100%;
    padding: 0 24px;
    gap: 40px;
  }

  .hero-text h1 {
    font-size: 52px;
  }

  .hero-image img {
    max-height: 420px;
  }
}

/* ================= SMALL TABLET (<= 900px) ================= */
@media (max-width: 900px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-badges {
    justify-content: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image img {
    max-height: 380px;
  }
}

/* ================= MOBILE (<= 600px) ================= */
@media (max-width: 600px) {
  .hero {
    padding: 70px 0 50px;
  }

  .hero-text h1 {
    font-size: 36px;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 15px;
  }

  .hero-badges {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .badge {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 14px;
  }

  .hero-buttons a {
    width: 100%;
    text-align: center;
  }

  .hero-image img {
    width: 100%;
    max-height: 300px;
  }

  .hero-dots span {
    width: 32px;
  }
}

/* ================= EXTRA SMALL (<= 400px) ================= */
@media (max-width: 400px) {
  .hero-text h1 {
    font-size: 30px;
  }
}

/* ================= TABLET (<= 1024px) ================= */
@media (max-width: 1024px) {
  .products-section {
    padding: 70px 16px;
  }

  .products-section h2 {
    font-size: 28px;
  }

  .product-slider {
    gap: 20px;
    padding: 16px;
  }

  .product-card {
    min-width: 260px;
  }

  .product-card img {
    height: 230px;
  }
}

/* ================= SMALL TABLET (<= 900px) ================= */
@media (max-width: 900px) {
  .product-tabs {
    flex-wrap: wrap;
    gap: 12px;
  }

  .tab {
    padding: 10px 18px;
    font-size: 14px;
  }

  .product-card {
    min-width: 240px;
  }

  .product-card img {
    height: 210px;
  }
}

/* ================= MOBILE (<= 600px) ================= */
@media (max-width: 600px) {
  .products-section {
    padding: 60px 12px;
  }

  .products-section h2 {
    font-size: 24px;
  }

  .subtitle {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .product-slider {
    gap: 16px;
    padding: 12px;
  }

  .product-card {
    min-width: 85%;
    padding: 18px;
  }

  .product-card img {
    height: 200px;
  }

  .product-card h3 {
    font-size: 16px;
  }

  .desc,
  .product-card ul {
    font-size: 13px;
  }

  .buy-btn {
    width: 100%;
    text-align: center;
  }
}

/* ================= EXTRA SMALL (<= 400px) ================= */
@media (max-width: 400px) {
  .product-card {
    min-width: 92%;
  }

  .product-card img {
    height: 180px;
  }
}

/* Tablet: pull buttons inside container */
@media (max-width: 1024px) {
  .nav-btn.left {
    left: 0;
  }

  .nav-btn.right {
    right: 0;
  }
}

/* Mobile: hide buttons (use swipe) */
@media (max-width: 768px) {
  .nav-btn {
    display: none;
  }
}

/* ================= TABLET (<= 1024px) ================= */
@media (max-width: 1024px) {
  .testimonials-container {
    width: 100%;
    padding: 0 24px;
  }

  .testimonials h2 {
    font-size: 30px;
  }
}

/* ================= SMALL TABLET (<= 900px) ================= */
@media (max-width: 900px) {
  .testimonials {
    padding: 70px 0;
  }

  .testimonials h2 {
    font-size: 28px;
  }

  .subtitle {
    margin-bottom: 32px;
  }
}

/* ================= MOBILE (<= 600px) ================= */
@media (max-width: 600px) {
  .testimonials {
    padding: 60px 0;
  }

  .testimonials h2 {
    font-size: 24px;
    line-height: 1.2;
  }

  .subtitle {
    font-size: 13px;
    margin-bottom: 26px;
  }
}

/* ================= EXTRA SMALL (<= 400px) ================= */
@media (max-width: 400px) {
  .testimonials h2 {
    font-size: 22px;
  }
}

/* BASE: keep whatever you already have for PC */
/* Do NOT change desktop styles */

/* MOBILE ONLY */
@media (max-width: 768px) {
  .testimonial-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 12px;
    /* spacing from edges */
    pointer-events: none;
    /* allow clicks only on buttons */
  }

  .testimonial-nav .nav-btn {
    pointer-events: auto;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #0d6efd;
    color: #fff;
    border: none;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.nav {
  background: #1e73e8;
  padding: 20px 0;
}

.nav-menu {
  position: relative;
  display: flex;
  gap: 32px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  padding: 6px 0;
  position: relative;
}

/* underline bar */
.nav-indicator {
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease;
}

/* HOVER EFFECT */
.nav-menu li:nth-child(1):hover~.nav-indicator {
  width: 42px;
  transform: translateX(0);
}

.nav-menu li:nth-child(2):hover~.nav-indicator {
  width: 46px;
  transform: translateX(74px);
}

.nav-menu li:nth-child(3):hover~.nav-indicator {
  width: 66px;
  transform: translateX(148px);
}

.nav-menu li:nth-child(4):hover~.nav-indicator {
  width: 62px;
  transform: translateX(240px);
}

.nav-menu li:nth-child(5):hover~.nav-indicator {
  width: 118px;
  transform: translateX(328px);
}

.nav-menu li:nth-child(6):hover~.nav-indicator {
  width: 64px;
  transform: translateX(480px);
}

/* ACTIVE PAGE (default position) */
.nav-menu a.active~.nav-indicator {
  width: 42px;
  transform: translateX(0);
}


/* ================= MOBILE ONLY ================= */

/* MOBILE HEADER & NAV */
@media (max-width: 768px) {

  /* HIDE DESKTOP ELEMENTS */
  .top-strip,
  .top-info,
  .consult-btn,
  .nav-right,
  .nav-indicator {
    display: none !important;
  }

  /* HEADER LAYOUT */
  .aqua-navbar {
    background: #fff;
    border-bottom: 2px solid #1e73e8;
    padding: 10px 0;
    width: 100%;
  }



  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 20px;
    flex-direction: row !important;
    /* Force row */
  }

  /* LOGO ON MOBILE */
  .nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    order: 1;
    /* Left side */
  }

  .nav-logo img {
    height: 40px;
  }

  /* HAMBURGER ICON */
  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    order: 2;
    /* Right side */
    z-index: 9999;
    /* Lower than menu so it hides behind it */
  }

  .hamburger span {
    width: 28px;
    height: 3px;
    background: #1e73e8;
    border-radius: 2px;
  }

  /* MOBILE MENU DRAWER */
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    /* Hidden by default */
    width: 280px;
    height: 100vh;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: flex-start !important;
    /* Force top alignment to fix white space */
    padding: 0 20px;
    /* Remove top padding to fix white space usage */
    gap: 0;
    transition: right 0.3s ease;
    z-index: 10000;
    /* High z-index */
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
  }

  .nav-menu.active {
    right: 0;
    /* Slide in */
  }

  .nav-menu li {
    list-style: none;
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
    padding: 14px 0;
  }

  .nav-menu li:last-child {
    border-bottom: none;
  }

  .nav-menu li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* padding removed here as user applied it to li */
    font-size: 16px;
    color: #333;
    font-weight: 500;
    text-decoration: none;
  }

  .nav-menu li a.active {
    color: #1e73e8;
  }

  /* CLOSE BUTTON */
  .nav-close {
    position: static;
    display: flex !important;
    justify-content: flex-end;
    padding: 20px 0 10px 0;
    /* Top spacing here */
    border: none;
    width: 100%;
    background: transparent;
  }

  #closeMenu {
    background: none;
    border: none;
    font-size: 32px;
    color: #333;
    cursor: pointer;
    line-height: 1;
    padding: 5px;
  }

  /* SUBMENU (Accordion Style) */
  .submenu {
    position: static;
    /* Flow naturally */
    display: none;
    /* Hidden by default */
    background: #f9f9f9;
    box-shadow: none;
    width: 100%;
    padding: 0;
    min-width: unset;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .has-submenu.active .submenu {
    display: block;
    /* Show when parent is active */
  }

  .submenu li a {
    padding: 12px 20px 12px 30px;
    /* Indent */
    font-size: 14px;
    color: #555;
    border-bottom: 1px solid #eee;
  }

  .submenu li {
    padding: 0;
    /* Reset padding for submenu items if needed */
    border-bottom: none;
  }

  /* SUBMENU TOGGLE INDICATOR */
  .has-submenu>a::after {
    content: '+';
    font-size: 18px;
    color: #1e73e8;
    font-weight: 600;
  }

  .has-submenu.active>a::after {
    content: 'âˆ’';
    /* Minus sign */
  }

  /* STATS GRID - One Column */
  .stats-grid {
    grid-template-columns: 1fr;
  }
}


/* =========================
   DESKTOP NAVBAR (PC)
   ========================= */
@media (min-width: 768px) {

  /* main nav menu */
  .nav-menu {
    position: static;
    height: auto;
    width: auto;
    flex-direction: row;
    align-items: center;
    background: transparent;
    box-shadow: none;
    padding: 0;
    overflow: visible;
    right: auto;
    transition: none;
  }

  /* hide close button on desktop */
  .nav-close {
    display: none !important;
  }

  /* menu items */
  .nav-menu>li {
    position: relative;
    border: none;
    margin: 0 18px;
  }

  .nav-menu>li>a {
    padding: 10px 0;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
  }

  .nav-menu>li>a.active {
    color: #fff;
  }

  /* ===== SUBMENU (DROPDOWN) ===== */
  .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: #ffffff;
    border-radius: 6px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    padding: 10px 0;

    display: none;
    /* hidden by default */
    z-index: 999;
  }

  .submenu li {
    border: none;
  }

  .submenu li a {
    padding: 10px 18px;
    color: #333;
    font-size: 14px;
    white-space: nowrap;
  }

  .submenu li a:hover {
    background: #f2f6ff;
    color: #1e73e8;
  }

  /* show submenu on hover */
  .has-submenu:hover .submenu {
    display: block;
  }

  /* remove + / âˆ’ icons on desktop */
  .has-submenu>a::after {
    content: "";
  }

  /* nav indicator visible on desktop */
  .nav-indicator {
    display: block;
  }
}

@media (min-width: 1024px) {
  .has-submenu>a {
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .has-submenu>a::after {
    content: "â–¾";
    font-size: 14px;
    transition: transform 0.3s ease;
  }

  .has-submenu:hover>a::after {
    transform: rotate(180deg);
  }
}

/* MOBILE HEADER */
@media (max-width: 768px) {

  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* logo left, bars right */
    padding: 12px 16px;
  }

  .nav-logo img {
    height: 36px;
    width: auto;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }

  .hamburger span {
    width: 26px;
    height: 3px;
    background: #1e73e8;
    border-radius: 2px;
  }
}

/* Hide logo on desktop */
@media (min-width: 768px) {
  .nav-logo {
    display: none;
  }
}

/* Show logo on mobile */
@media (max-width: 768px) {
  .nav-logo {
    display: block;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    top: 0 !important;
    padding-top: 0 !important;
    margin-top: 0 !important;
  }
}

/* About Page */





/* =========================
   AQUA HERO SECTION (REFACTORED)
   ========================= */

.aqua-hero {
  position: relative;
  min-height: 100vh;
  /* Dark Blue Gradient + Image Background */
  background:
    linear-gradient(90deg, #001e80 0%, #0046b0 45%, rgba(0, 95, 214, 0.45) 100%),
    url("../images/bg-about.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 100px 0;
  color: #fff;
  overflow: hidden;
}

.aqua-hero-inner {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  width: 100%;
}

/* LEFT CONTENT */
.aqua-hero-badge {
  display: inline-block;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  color: #fbbf24;
  /* Yellowish text for Est. 2020 */
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.aqua-hero-content h1 {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 30px;
}

.aqua-hero-content h1 span {
  color: #7dd3fc;
  /* Light Sky Blue */
}

.hero-line-text {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
}

.blue-line {
  width: 4px;
  background: #3b82f6;
  /* Blue Accent Line */
  border-radius: 2px;
}

.hero-line-text p {
  max-width: 480px;
  font-size: 17px;
  line-height: 1.6;
  opacity: 0.95;
}

.aqua-hero-btn {
  display: inline-block;
  background: #fff;
  color: #0046b0;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 15px;
  transition: transform 0.2s ease;
}

.aqua-hero-btn:hover {
  transform: translateY(-2px);
}

/* RIGHT GLASS CARD */
.hero-glass-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 50px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  max-width: 580px;
  margin-left: auto;
  position: relative;
  overflow: hidden;
}

/* Subtle shine effect */
.hero-glass-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 60%);
  pointer-events: none;
}

.glass-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.glass-item {
  text-align: center;
}

.glass-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 28px;
  color: #7dd3fc;
}

.glass-text h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

.glass-text small {
  font-size: 13px;
  opacity: 0.8;
  display: block;
  line-height: 1.4;
}

.glass-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 0 auto 24px;
  width: 90%;
}

.glass-quote {
  text-align: center;
  font-style: italic;
  font-size: 14px;
  opacity: 0.8;
  letter-spacing: 0.5px;
}

/* RESPONSIVE HERO */
@media (max-width: 1024px) {
  .aqua-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-line-text {
    justify-content: center;
    text-align: left;
    /* Keep text left aligned inside the block, but block centered? */
    /* Actually let's just left align everything for mobile usually looks better or center */
    display: block;
  }

  .blue-line {
    display: none;
  }

  .aqua-hero-content h1 {
    font-size: 48px;
  }

  .hero-glass-card {
    margin: 40px auto 0;
  }
}

@media (max-width: 600px) {
  .aqua-hero-content h1 {
    font-size: 36px;
  }

  .glass-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-glass-card {
    padding: 30px;
  }
}

.box {
  position: relative;
  width: 1551px;
  height: 640px;
  overflow: hidden;
}

/* =========================
   GROUP (GLASS CONTAINER)
   ========================= */
.box .group {
  position: absolute;
  top: 0;
  left: 0;
  width: 1557px;
  height: 640px;
}

/* =========================
   BACKGROUND IMAGE LAYER
   ========================= */
.box .rectangle {
  position: absolute;
  top: 0;
  left: 111px;
  width: 1440px;
  height: 640px;

  background-image: url("/assets/images/bg-about.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* =========================
   SOFT GLOW / COLOR WASH
   ========================= */
.box .ellipse {
  position: absolute;
  top: 20px;
  left: 0;
  width: 800px;
  height: 600px;

  background-color: #052af6;
  border-radius: 400px / 300px;
  filter: blur(80px);
  opacity: 0.35;
}

/* =========================
   GLASS CARD (IMPORTANT)
   ========================= */
.box .div {
  position: absolute;
  top: 140px;
  left: 760px;

  width: 640px;
  height: 300px;

  background: rgba(255, 255, 255, 0.14);

  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);

  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.4);

  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.35),
    inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

/* glass shine */
.box .div::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.35),
      rgba(255, 255, 255, 0.08),
      transparent);
  pointer-events: none;
}

/* =========================
   IMAGES INSIDE GLASS
   ========================= */
.box img {
  position: absolute;
  z-index: 2;
}

.box .health-insurance {
  top: 40px;
  left: 40px;
  width: 36px;
}

.box .temperature-control {
  top: 40px;
  right: 40px;
  width: 36px;
}

/* =========================
   TEXT STYLES
   ========================= */
.box .text-wrapper-2 {
  position: absolute;
  top: 85px;
  left: 40px;
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
}

.box .text-wrapper-3 {
  position: absolute;
  top: 85px;
  right: 40px;
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
}

.box .text-wrapper-4 {
  position: absolute;
  top: 115px;
  left: 40px;
  font-size: 14px;
  opacity: 0.9;
  color: #ffffff;
}

.box .text-wrapper-5 {
  position: absolute;
  top: 115px;
  right: 40px;
  font-size: 14px;
  opacity: 0.9;
  color: #ffffff;
}

/* =========================
   DIVIDER LINE
   ========================= */
.box .line-2 {
  position: absolute;
  top: 175px;
  left: 40px;
  width: calc(100% - 80px);
  opacity: 0.4;
}

/* =========================
   QUOTE
   ========================= */
.box .redefining-the {
  position: absolute;
  top: 210px;
  left: 40px;
  right: 40px;
  font-size: 15px;
  font-style: italic;
  text-align: center;
  opacity: 0.9;
  color: #ffffff;
}

/* ==================== ABOUT PAGE STYLES ==================== */

/* SECTION TAGS */
.section-tag {
  display: inline-block;
  color: #1478f2;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.center-tag {
  display: block;
  text-align: center;
}

.center-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 50px;
}

/* --- INTRO SECTION --- */
.about-intro-section {
  padding: 80px 0;
  background: #fff;
}

.about-intro-container {
  max-width: 1180px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
  padding: 0 20px;
}

.about-intro-text h2 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #0f172a;
}

.about-intro-text p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 15px;
}

/* COMMITMENT CARD (Right Side) */
.commitment-card {
  background: #021d49;
  /* Deep Navy */
  color: #fff;
  padding: 40px;
  border-radius: 20px;
  position: relative;
}

.commitment-card h3 {
  font-size: 24px;
  margin-bottom: 24px;
}

.commitment-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.commitment-card ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 15px;
}

.commitment-card ul li i {
  color: #1478f2;
  /* Bright blue check */
  font-size: 16px;
}

.commitment-footer {
  font-size: 14px;
  opacity: 0.8;
  line-height: 1.6;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

/* --- STATS BAR --- */
.about-stats-bar {
  max-width: 1180px;
  margin: 0 auto 80px;
  padding: 0 20px;
}

.stats-bar-container {
  background: #fff;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  padding: 40px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stat-item {
  text-align: center;
}

.stat-icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 24px;
}

.stat-icon-circle.blue-light {
  background: #e0f2fe;
  color: #1478f2;
}

.stat-item h3 {
  font-size: 28px;
  font-weight: 700;
  color: #1478f2;
  margin-bottom: 4px;
}

.stat-item p {
  color: #64748b;
  font-size: 14px;
  font-weight: 500;
}

/* --- VISION & MISSION --- */
.vision-mission-section {
  padding: 0 20px 80px;
}

.vision-mission-container {
  max-width: 1180px;
  margin: auto;
  background: #021d49;
  border-radius: 30px;
  padding: 60px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  color: #fff;
}

.vm-box {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.separator-right {
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  padding-right: 60px;
}

.vm-icon img {
  width: 50px;
  height: 50px;
  filter: brightness(0) invert(1);
  /* Make icons white */
}

.vm-content h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #60a5fa;
  /* Lighter blue title */
}

.vm-content p {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.9;
}

/* --- OUR STRENGTH --- */
.strength-section {
  padding: 80px 0;
  background: #fff;
}

.strength-container {
  max-width: 1180px;
  margin: auto;
  padding: 0 20px;
}

.strength-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 30px;
}

.strength-card {
  border-radius: 20px;
  padding: 50px;
  position: relative;
}

.white-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.blue-card {
  background: #1478f2;
  color: #fff;
}

.card-icon-box {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 24px;
}

.card-icon-box.blue-bg {
  background: #1478f2;
  color: #fff;
}

.card-icon-box.white-bg {
  background: #fff;
  color: #1478f2;
}

.strength-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}

.strength-card p {
  line-height: 1.6;
  font-size: 15px;
  margin-bottom: 30px;
}

.white-card p {
  color: #64748b;
}

.blue-card p {
  color: rgba(255, 255, 255, 0.9);
}

.strength-stats {
  display: flex;
  gap: 40px;
  margin-top: auto;
}

.strength-stats strong {
  display: block;
  font-size: 28px;
  color: #0f172a;
  margin-bottom: 4px;
}

.strength-stats small {
  font-size: 13px;
  color: #64748b;
  text-transform: uppercase;
}

/* --- CORE VALUES --- */
.core-values-section {
  padding: 0 20px 100px;
  background: #f9fafb;
  /* Light gray bg for contrast */
  padding-top: 80px;
}

.core-values-container {
  max-width: 1180px;
  margin: auto;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.value-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px 24px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
}

.value-icon {
  font-size: 32px;
  color: #1478f2;
  margin-bottom: 20px;
}

.value-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #0f172a;
}

.value-card p {
  font-size: 13px;
  color: #64748b;
  line-height: 1.5;
}

/* RESPONSIVE */
@media (max-width: 1024px) {

  .about-intro-container,
  .vision-mission-container,
  .strength-grid,
  .stats-bar-container {
    padding: 30px;
  }

  .vision-mission-container {
    gap: 40px;
  }
}

@media (max-width: 900px) {
  .about-intro-container {
    grid-template-columns: 1fr;
  }

  .vision-mission-container {
    grid-template-columns: 1fr;
  }

  .separator-right {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-right: 0;
    padding-bottom: 40px;
    margin-bottom: 40px;
  }

  .stats-bar-container {
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
  }

  .stat-item {
    width: 45%;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .strength-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .stat-item {
    width: 100%;
  }

  .about-intro-text h2 {
    font-size: 32px;
  }
}

.language-selector {
  position: relative;
  width: 140px;
  font-family: Arial, sans-serif;
}

.language {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 8px 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #fff;
}

.language img {
  width: 20px;
}

.language i {
  margin-left: auto;
  font-size: 12px;
}

/* Dropdown */
.language-dropdown {
  list-style: none;
  position: absolute;
  top: 110%;
  left: 0;
  width: 100%;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  display: none;
  z-index: 1000;
}

.language-dropdown li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  cursor: pointer;
}

.language-dropdown li:hover {
  background: #f3f4f6;
}

.language-dropdown img {
  width: 20px;
}

.hero-banner {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;

  background: url("assets/images/contact-hero.jpg") center right / cover no-repeat;
  color: #fff;
}

/* LEFT BLUE OVERLAY (key part) */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(12, 78, 200, 0.98) 0%,
      rgba(12, 78, 200, 0.95) 30%,
      rgba(12, 78, 200, 0.75) 45%,
      rgba(12, 78, 200, 0.45) 60%,
      rgba(12, 78, 200, 0.2) 72%,
      rgba(12, 78, 200, 0) 82%);
}

/* CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 0 48px;
}

.hero-content h1 {
  font-size: 56px;
  line-height: 1.1;
  margin-bottom: 22px;
}

.hero-title-bold {
  font-weight: 800;
}

.hero-title-light {
  font-weight: 400;
  opacity: 0.95;
}

.hero-content p {
  font-size: 20px;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 26px;
  opacity: 0.95;
}

/* DIVIDER LINE */
.hero-divider {
  width: 260px;
  height: 1px;
  background: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
}

/* BREADCRUMB */
.hero-breadcrumb {
  font-size: 17px;
  opacity: 0.9;
}

.hero-breadcrumb span {
  margin: 0 6px;
}

@media (max-width: 768px) {
  .hero-banner {
    min-height: auto;
    padding: 60px 0;
    background-position: center;
  }

  .hero-overlay {
    background: linear-gradient(180deg,
        rgba(12, 78, 200, 0.95) 0%,
        rgba(12, 78, 200, 0.9) 55%,
        rgba(12, 78, 200, 0.75) 100%);
  }

  .hero-content {
    padding: 0 20px;
  }

  .hero-content h1 {
    font-size: 38px;
  }
}

/* Parent */
.has-dropdown {
  position: relative;
}

/* Arrow */
.has-dropdown>a {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Dropdown box */
.dropdown {
  position: absolute;
  top: 120%;
  left: 0;
  min-width: 220px;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  list-style: none;
  padding: 8px 0;

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  z-index: 1000;
}

/* Dropdown items */
.dropdown li a {
  display: block;
  padding: 10px 16px;
  color: #333;
  font-size: 16px;
  text-decoration: none;
}

.dropdown li a:hover {
  background: #f3f4f6;
  color: #0b4fd8;
}

/* Show on hover */
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Mobile open state */
.has-dropdown.open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}



.hero {
  position: relative;
  overflow: hidden;
  height: 100vh;
}

.hero-slides {
  display: flex;
  width: 200%;
  /* important for looping */
  /*animation: heroSlide 12s linear infinite;*/
}

.hero-container {
  width: 100%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Animation */
@keyframes heroSlide {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(0);
  }
}

.hero-slides {
  display: flex;
  width: max-content;
  /*animation: heroSlide 18s linear infinite*/
}

@keyframes heroSlide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.contact-section {
  padding: 70px 8%;
  background:
    url("assets/images/world-map.png") center / cover no-repeat,
    #f8fafc;
  font-family: "Segoe UI", sans-serif;
}

/* TOP INFO */
.contact-top {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 40px;
}

.contact-box {
  display: flex;
  align-items: center;
  gap: 14px;
}

.icon-circle {
  width: 44px;
  height: 44px;
  background: #e0edff;
  color: #2563eb;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.contact-box span {
  font-size: 12px;
  color: #6b7280;
  font-weight: 600;
}

.contact-box p {
  font-size: 15px;
  font-weight: 600;
  color: #0f172a;
}

/* TITLE */
.contact-title {
  font-size: 34px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 25px;
  margin-top: 15px;
}

/* TABS */
.contact-tabs {
  display: flex;
  gap: 16px;
  margin-bottom: 45px;
}

.contact-tabs button {
  padding: 10px 24px;
  border-radius: 30px;
  border: none;
  background: white;
  font-weight: 500;
  cursor: pointer;
}

.contact-tabs .active {
  background: #2563eb;
  color: #fff;
}

/* MAIN CONTENT */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

/* IMAGE */
.contact-image img {
  width: 90%;
  border-radius: 14px;
  height: 660px;
}

/* FORM BASE */
.contact-form {
  font-weight: 800;

}

/* LABELS â€“ VERY BOLD */
.contact-form label {
  font-weight: 1500;
  color: #0f172a;
}

/* INPUT / SELECT / TEXTAREA TEXT */
.contact-form input,
.contact-form select,
.contact-form textarea {
  font-weight: 1000;
  color: #0f172a;
}

/* PLACEHOLDER â€“ STILL READABLE */
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  font-weight: 700;
  color: #94a3b8;
}

/* BUTTON â€“ STRONG CTA */
.contact-form .submit-btn {
  font-weight: 700;
  letter-spacing: 0.4px;
}



.row {
  display: flex;
  gap: 20px;
}

.field {
  flex: 1;
  margin-bottom: 18px;
}

.field label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
  font-weight: 500;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  font-size: 14px;
}

textarea {
  resize: none;
  height: 110px;
}

/* BUTTON */
.submit-btn {
  width: 100%;
  padding: 14px;
  background: #2563eb;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-content {
    grid-template-columns: 1fr;
  }

  .row {
    flex-direction: column;
  }

  .contact-top {
    flex-direction: column;
  }
}

/* ICON BOX */
.info-icon {
  width: 48px;
  height: 48px;
  background: #e8f1ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ICON STYLE */
.info-icon i {
  font-size: 20px;
  color: #2563eb;
  /* BLUE ICON */
  font-weight: 700;
  /* BOLD LOOK */
}

/* MAIN TEXT â€“ BOLD */
.info-text p {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}

/* LABEL TEXT */
.info-text span {
  font-size: 12px;
  font-weight: 700;
  color: #64748b;
}

.contact-horizontal {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding: 20px 7%;
  background: #ffffff;
  font-family: "Segoe UI", sans-serif;
}

/* ITEM */
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  max-width: 33%;
}

/* ICON */
.contact-icon {
  width: 48px;
  height: 48px;
  background: #e8f1ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon i {
  font-size: 25px;
  color: #2563eb;
  /* BLUE */
  font-weight: 700;
  /* BOLD ICON */
}

/* TEXT */
.contact-text span {
  display: block;
  font-size: 12px;
  font-weight: 800;
  color: #64748b;
  margin-bottom: 2px;
}

.contact-text p {
  font-size: 15px;
  font-weight: 850;
  color: #0f172a;
  margin: 0;
  line-height: 1.4;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-horizontal {
    flex-direction: column;
    gap: 20px;
  }

  .contact-item {
    max-width: 100%;
  }
}

/* SECTION WRAPPER */
.contact-header {
  font-weight: 700;
  /* Make everything bold */
}

/* HEADING */
.contact-header h2 {
  font-weight: 800;
  /* Extra bold like your image */
  letter-spacing: -0.3px;
}

/* TABS */
.contact-tabs button {
  font-weight: 700;
  /* Bold tab text */
}

/* ACTIVE TAB */
.contact-tabs .active {
  font-weight: 800;
  /* Extra bold active tab */
}

/* MAKE FORM BIGGER */
.contact-form {
  max-width: 720px;
  /* BIGGER FORM WIDTH */
  padding: 48px;
  /* More breathing space */
}

/* INPUT / SELECT / TEXTAREA â€“ TALLER */
.contact-form input,
.contact-form select {
  height: 52px;
  /* Taller inputs */
  font-size: 16px;
}

.contact-form textarea {
  min-height: 160px;
  /* Bigger message box */
  font-size: 16px;
}

/* LABELS â€“ MORE PROMINENT */
.contact-form label {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 8px;
}

/* ROW GAP */
.contact-form .row {
  gap: 24px;
  /* More space between columns */
}

/* FIELD SPACING */
.contact-form .field {
  margin-bottom: 26px;
}

/* BUTTON â€“ BIG CTA */
.contact-form .submit-btn {
  height: 56px;
  font-size: 17px;
  font-weight: 800;
  border-radius: 10px;
}

#contactForm {
  display: grid;
}

.tab-image {
  transition: opacity 0.3s ease;
}

.map-section {
  width: 100%;
  height: 450px;
  /* ðŸ‘ˆ adjust height */
  /* margin-top: 30px; */
  margin-bottom: 15px;
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 12px;
  /* optional */
}

/* Tabs container */
.contact-tabs {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

/* Tab buttons */
.contact-tabs button {
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 700;
  white-space: nowrap;
}

/* ---------- MOBILE FIX ---------- */
@media (max-width: 768px) {
  .contact-tabs {
    flex-wrap: wrap;
    /* ðŸ‘ˆ allow wrapping */
    justify-content: center;
    /* center on mobile */
  }

  .contact-tabs button {
    flex: 1 1 calc(50% - 12px);
    /* 2 tabs per row */
    text-align: center;
    white-space: normal;
    /* allow text wrap */
  }
}

/* ---------- EXTRA SMALL DEVICES ---------- */
@media (max-width: 420px) {
  .contact-tabs button {
    flex: 1 1 100%;
    /* 1 tab per row */
  }
}



.hero-banner {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 70vh;
}

@media (max-width: 768px) {
  .hero-banner {
    min-height: 40vh;
    background-position: center top;
  }
}

.hero-banner {
  position: relative;
  min-height: 80vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  /* vertical center */
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 60, 140, 0.75);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  /* above overlay */
  max-width: 650px;
  margin-left: 6%;
  /* pushes content to left */
  color: #fff;
}

@media (max-width: 768px) {
  .hero-banner {
    min-height: 65vh;
  }

  .hero-content {
    margin-left: 0;
    max-width: 100%;
    padding: 0 20px;
    text-align: center;
  }
}

.leadership-hero {
  position: relative;
  background: linear-gradient(135deg, #2b3c78, #1c2f66);
  padding: 120px 60px;
  color: #fff;
  overflow: hidden;
}

.leadership-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
}

/* Tag */
.leadership-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  color: #ffcc00;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 20px;
}

/* Heading */
.leadership-heading .small-title {
  font-size: 70px;
  font-weight: 700;
  color: #9fd4ff;
}

.leadership-heading .big-title {
  font-size: 80px;
  font-weight: 800;
  color: #ffffff;
}

/* Background Outline Text */
.bg-outline-text {
  position: absolute;
  top: 50%;
  /* right: -50px; */
  left: 100px;
  transform: translateY(-50%);
  font-size: 300px;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.1);
  white-space: nowrap;
  z-index: 1;
  pointer-events: none;
}

/* Description */
.leadership-description {
  max-width: 600px;
  margin-top: 30px;
  font-size: 20px;
  line-height: 1.6;
  color: #d6e4ff;
}

@media (max-width: 768px) {
  .leadership-heading .small-title {
    font-size: 40px;
  }

  .leadership-heading .big-title {
    font-size: 45px;
  }

  .bg-outline-text {
    font-size: 80px;
    right: -20px;
    margin-right: 20px;

  }

  .leadership-hero {
    padding: 80px 20px;
  }
}

.leader-profile {
  background: #243b67;
  padding: 120px 100px;
  border-radius: 50px;
  margin: 60px auto;
  width: 94%;
  color: #ffffff;
}

/* Image */
.leader-image img {
  width: 200%;
  height: 600px;
  object-fit: cover;
  border-radius: 30px;
}

/* Content */
.leader-content {
  max-width: 700px;
  margin-left: 20%;
  text-align: left;
}

/* Top line */
.leader-line {
  width: 80px;
  height: 4px;
  background: #3e78d8;
  margin-right: auto;
  margin-bottom: 20px;
}

/* Name */
.leader-name {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 5px;
}

/* Role */
.leader-role {
  font-size: 22px;
  color: #3e78d8;
  margin-bottom: 25px;
}

/* Quote */
.leader-quote {
  font-size: 20px;
  line-height: 1.7;
  margin-bottom: 25px;
  color: #e6ecff;
}

/* Description */
.leader-description {
  font-size: 17px;
  line-height: 1.8;
  color: #cdd8f7;
  margin-bottom: 20px;

}

/* LinkedIn Box */
.linkedin-box {
  display: flex;
  align-items: center;
  gap: 15px;
  border: 1px solid #244499;
  padding: 15px 20px;
  border-radius: 15px;
  width: fit-content;
  margin-right: 300px;
  margin-top: 35px;
}

.linkedin-icon {
  width: 40px;
}

.qr-code {
  width: 60px;
}

/* Tags */
.leader-tags span {
  display: inline-block;
  background: #e4e6ea;
  color: #243b67;
  padding: 10px 22px;
  border-radius: 25px;
  margin: 10px;
  font-weight: 800;
  margin-top: 50px;
}

@media (max-width: 992px) {

  .leader-profile {
    padding: 80px 30px;
  }

  .leader-image img {
    height: 450px;
  }

  .leader-content {
    text-align: center;
    margin: 40px auto 0;
  }

  .leader-line {
    margin: 0 auto 20px;
  }

  .leader-tags {
    text-align: center;
    margin-top: 30px;
  }

  .linkedin-box {
    margin: auto;

  }
}

.linkedin-icon-box {
  background: #ffffff;
  /* white background */
  padding: 10px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.linkedin-icon {
  width: 30px;
  height: 30px;
}


.leader-light {
  background: #eef1f5;
  padding: 100px 80px;
  border-radius: 40px;
  margin: 60px auto;
  width: 96%;
}

/* Title */
.leader-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #111;
}

/* Role */
.leader-role {
  font-size: 24px;
  color: #4c6fb4;
  margin-bottom: 30px;
  font-weight: 600;
}

/* Paragraph */
.leader-text p {
  font-size: 18px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 20px;
}

/* Image */
.leader-image img {
  width: 500px;
  height: 600px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Buttons */
.leader-buttons {
  margin-top: 90px;
}

.btn-dark {
  display: inline-block;
  background: #1f3763;
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  margin-right: 15px;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-dark:hover {
  background: #16294a;
}

@media (max-width: 992px) {

  .leader-light {
    padding: 60px 30px;
  }

  .leader-title {
    font-size: 30px;
  }

  .leader-role {
    font-size: 20px;
  }

  .leader-text {
    text-align: center;
  }

  .leader-buttons {
    text-align: center;
  }

  .leader-image {
    margin-top: 40px;
  }


}

@media (max-width: 992px) {

  .leader-image img {
    width: 100%;
    /* full responsive */
    height: auto;
    /* remove fixed height */
    max-width: 400px;
    /* optional limit */
    margin: 0 auto;
    /* center image */
    display: block;
  }

}



.ops-section {
  display: flex;
  justify-content: center;
  /* ðŸ‘ˆ centers horizontally */
}


/* TITLE */
.ops-title {
  font-size: 44px;
  font-weight: 700;
  color: #111;
  margin-bottom: 25px;
}

.ops-title span {
  color: #4c6fb4;
}

/* TEXT */
.ops-text {
  font-size: 18px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 45px;
  max-width: 520px;
}

/* FEATURE ROW */
.ops-feature {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 30px;
}

/* ICON BOX */
.ops-icon {
  width: 60px;
  height: 60px;
  background: #dce6f3;
  border-radius: 15px;
  flex-shrink: 0;
}

/* FEATURE TEXT */
.ops-feature h6 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 6px;
  color: #111;
}

.ops-feature p {
  margin: 0;
  color: #555;
}

/* IMAGE CARD */
.ops-image-card {
  background: #ffffff;
  padding: 18px;
  border-radius: 30px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.ops-image-card img {
  width: 100%;
  border-radius: 22px;
  display: block;
}

.ops-image-card:hover {
  transform: translateY(-6px);
  transition: 0.4s ease;
}

@media (max-width: 992px) {

  .ops-section {
    padding: 70px 20px;
  }

  .ops-title {
    font-size: 32px;
  }

  .ops-image-card {
    margin-top: 40px;
  }

}

.ops-icon {
  width: 60px;
  height: 60px;
  background: #dce6f3;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ops-icon i {
  font-size: 40px;
  color: #4c6fb4;
}

.precision-section {
  width: 100%;
  background: linear-gradient(120deg, #173b8c 0%, #1e63a7 50%, #22a6c7 100%);
  padding: 140px 20px;
  text-align: center;
  color: #ffffff;
}

.precision-container {
  max-width: 1000px;
  margin: 0 auto;
}

.precision-title {
  font-size: 72px;
  font-weight: 800;
  margin-bottom: 35px;
}

.precision-text {
  font-size: 24px;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto;
  opacity: 0.95;
}

@media (max-width: 992px) {

  .precision-title {
    font-size: 40px;
  }

  .precision-text {
    font-size: 18px;
  }

  .precision-section {
    padding: 90px 20px;
  }

}


.demo-section {
  padding: 80px 20px;
  background: #f0f2f7;
}

.demo-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  background: #dfe3ee;
  border-radius: 40px;
  padding: 60px;
}

.demo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Image */
.demo-image img {
  width: 100%;
  border-radius: 30px;
  display: block;
}

/* Form */
.demo-title {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 10px;
}

.demo-subtext {
  color: #666;
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
}

.form-group label span {
  color: red;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #ccc;
  background: #fff;
  font-size: 16px;
}

.form-submit {
  margin-top: 25px;
}

.btn-submit {
  width: 50%;
  padding: 15px;
  border: none;
  border-radius: 30px;
  background: linear-gradient(135deg, #1c3c8c, #22a6c7);
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Hover Effect */
.btn-submit:hover {
  background: linear-gradient(135deg, #162f6f, #1b8fb0);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}


@media (max-width: 992px) {

  .demo-grid {
    grid-template-columns: 1fr;
  }

  .demo-wrapper {
    padding: 40px 20px;
  }

  .demo-title {
    font-size: 30px;
  }

}

.trust-section {
  position: relative;
  width: 100%;
  padding: 140px 20px;
  text-align: center;
  color: #ffffff;


}

.trust-container {
  max-width: 900px;
  margin: 0 auto;
}

.trust-title {
  font-size: 64px;
  font-weight: 800;
  margin-bottom: 35px;
}

.trust-text {
  font-size: 22px;
  line-height: 1.8;
  opacity: 0.95;
}

@media (max-width: 992px) {

  .trust-title {
    font-size: 38px;
  }

  .trust-text {
    font-size: 18px;
  }

  .trust-section {
    padding: 90px 20px;
  }

}

.certification-section {
  padding: 100px 20px;
  background: #f5f6fa;
}

.certification-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Card */
.cert-card {
  background: #e9ebf1;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Icon Area */
.cert-icon {
  text-align: center;
  padding: 40px 20px 20px;
}

.cert-icon img {
  width: 70px;
}

/* Divider */
.cert-divider {
  height: 4px;
  background: #1f5fbf;
  width: 100%;
}

/* Content */
.cert-content {
  padding: 30px 35px;
}

.cert-badge {
  display: inline-block;
  background: #c9a52e;
  color: #fff;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  margin-bottom: 20px;
}

.cert-content h3 {
  font-size: 28px;
  color: #1656a5;
  margin-bottom: 15px;
  font-weight: 800;
}

.cert-content p {
  color: #555;
  line-height: 1.8;
  font-size: 16px;
}

/* Footer Strip */
.cert-footer {
  background: #dfe2ea;
  padding: 15px 30px;
  border-radius: 0 0 20px 20px;
  font-weight: 600;
  color: #777;
}

@media (max-width: 992px) {
  .certification-container {
    grid-template-columns: 1fr;
  }
}


.domestic-hero {
  background: radial-gradient(circle at top left,
      #8fb6d9 0%,
      #1f4fa3 40%,
      #081c4a 100%);
  padding: 100px 0;
  color: #fff;
  overflow: hidden;
}

.domestic-hero-inner {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
}

/* LEFT */
.series-badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.15);
  margin-bottom: 28px;
}

.domestic-content h1 {
  font-size: 64px;
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 28px;
}

.domestic-content .subtitle {
  max-width: 520px;
  font-size: 18px;
  line-height: 1.7;
  opacity: 0.95;
  color: white;
  margin-bottom: 40px;
}

/* TRUST ROW */
.trust-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
}

.avatars {
  display: flex;
}

.avatars img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #0b2a63;
  margin-left: -10px;
}

.avatars img:first-child {
  margin-left: 0;
}

.trust-row span {
  font-size: 16px;
}

/* BREADCRUMB */
.breadcrumb {
  font-size: 14px;
  opacity: 0.85;
}

.breadcrumb span {
  margin: 0 6px;
}

/* RIGHT IMAGE WRAPPER */
.domestic-image {
  position: relative;
  width: 100%;
  height: 520px;
}

/* COMMON IMAGE STYLE */
.product-img {
  position: absolute;
  max-width: 320px;
  height: auto;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.35));
  transition: transform 0.4s ease;
}

/* FRONT IMAGE (BLUE ONE) */
.img-front {
  left: -120px;
  max-width: 380px;
  top: 110px;
  height: auto;

  z-index: 2;
}

/* BACK IMAGE (RED ONE) */
.img-back {
  right: 0;
  top: 80px;
  max-width: 520px;
  z-index: 1;
}

/* HOVER EFFECT (OPTIONAL BUT NICE) */
.domestic-image:hover .img-front {
  transform: translateY(-6px);
}

.domestic-image:hover .img-back {
  transform: translateY(-4px);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .domestic-image {
    height: auto;
    display: flex;
    justify-content: center;
    gap: 20px;
  }

  .product-img {
    position: static;
    max-width: 240px;
  }
}


.domestic-products {
  padding: 100px 0;
  background: #ffffff;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
}

/* HEADER */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 40px;
  font-weight: 700;
}

.section-header h4 {
  font-size: 18px;
  font-weight: 600;
  margin-top: 8px;
}

.section-header p {
  font-size: 15px;
  color: #666;
  margin-top: 6px;
}

/* GRID */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
  max-width: 1320px;
  margin: 0 auto;
}

/* CARD */
.product-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.product-card img {
  max-width: 180px;
  height: auto;
  margin-bottom: 24px;
}

/* TEXT */
.product-card h3 {
  font-size: 20px;
  font-weight: 600;
}

.spec {
  display: block;
  font-size: 13px;
  color: #2f6fed;
  margin: 6px 0 14px;
}

/* PRICE */
.price-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.price {
  font-size: 20px;
  font-weight: 700;
}

.old-price {
  text-decoration: line-through;
  color: #999;
  font-size: 14px;
}

.discount {
  color: #ff3b3b;
  font-size: 13px;
  font-weight: 600;
}

/* BUTTON */
.view-btn {
  background: #1677ff;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.view-btn:hover {
  background: #0d5bd7;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}



.lifestyle-full {
  padding: 80px 0 100px;
  background: #ffffff;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
}

/* FEATURES */
.feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  text-align: center;
  margin-bottom: 70px;
}

.feature-box {
  max-width: 280px;
  margin: auto;
  background-color: white;
}

.feature-box img {
  width: 36px;
  height: auto;
  margin-bottom: 16px;
}

.feature-box h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.feature-box p {
  font-size: 14px;
  line-height: 1.7;
  color: #666;
}

/* IMAGE BLOCK */
.image-block {
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
}

.image-block img {
  width: 100%;
  height: auto;
  display: block;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .feature-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.lifestyle-full {
  padding: 120px 0 60px;
  background: #ffffff;
  text-align: center;
}

/* BADGE */
.intro-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid #cfe2ff;
  background: #f5f9ff;
  color: #1677ff;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 28px;
}

.intro-badge img {
  width: 16px;
  height: auto;
}

/* TITLE */
.intro-title {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 26px;
  color: #000;
}

.intro-title span {
  color: #1677ff;
}

/* DESCRIPTION */
.intro-desc {
  max-width: 820px;
  margin: auto;
  font-size: 16px;
  line-height: 1.8;
  color: #666;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .intro-title {
    font-size: 34px;
  }

  .lifestyle-intro {
    padding: 90px 0 40px;
  }
}


.engineered-section {
  padding: 120px 0;
  background: #ffffff;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
}

/* HEADER */
.engineered-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 80px;
}

.engineered-header h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 16px;
}

.engineered-header h2 span {
  color: #1677ff;
}

.engineered-header p {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
}

/* GRID */
.engineered-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* CARD */
.engineered-card {
  background: #fff;
  border-radius: 26px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.engineered-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.12);
}

/* IMAGE */
.card-image {
  height: 220px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* CONTENT */
.card-content {
  padding: 26px 26px 32px;
}

.card-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.card-content p {
  font-size: 14px;
  line-height: 1.7;
  color: #666;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .engineered-grid {
    grid-template-columns: 1fr;
  }

  .engineered-header h2 {
    font-size: 32px;
  }
}


.comparison-section {
  padding: 120px 0;
  background: #ffffff;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 24px;
}

/* HEADER */
.comparison-header {
  text-align: center;
  margin-bottom: 50px;
}

.comparison-header h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 14px;
}

.comparison-header h2 span {
  color: #1677ff;
}

.comparison-header p {
  font-size: 16px;
  color: #666;
  max-width: 720px;
  margin: auto;
  line-height: 1.7;
}

/* TABS */
.comparison-tabs {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  margin-bottom: 50px;
}

.tab {
  padding: 16px 36px;
  border-radius: 18px;
  font-size: 18px;
  font-weight: 600;
  border: 2px solid #0b1e7a;
  color: #0b1e7a;
  background: #ffffff;
}

.tab.active {
  background: #0b1e7a;
  color: #ffffff;
}

/* LIST */
.comparison-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* ROW */
.comparison-row {
  display: grid;
  grid-template-columns: 1fr 150px 150px;
  align-items: center;
  padding: 20px 26px;
  border-radius: 16px;
  border: 1px solid #e6e6e6;
}

.feature-text {
  font-size: 16px;
  font-weight: 500;
}

/* ICON */
.icon {
  width: 32px;
  height: auto;
  justify-self: center;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .comparison-row {
    grid-template-columns: 1fr 60px 60px;
  }

  .tab {
    font-size: 16px;
    padding: 14px 26px;
  }

  .comparison-header h2 {
    font-size: 32px;
  }
}

/* ROW â€“ ROUND PILL EFFECT */
.comparison-row {
  display: grid;
  grid-template-columns: 1fr 200px 170px;
  align-items: flex-end;

  padding: 18px 28px;
  border-radius: 999px;
  /* ðŸ”¥ FULL ROUND */
  background: #ffffff;
  border: 1px solid #e6e6e6;

  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

/* TEXT */
.feature-text {
  font-size: 20px;
  font-weight: 600;
}

/* ICON WRAPPER â€“ PERFECT CIRCLE */
.icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  justify-self: center;
}

/* ICON SIZE */
.icon-wrap img {
  width: 30px;
  height: auto;
}

/* BLUE CHECK (FILLED) */
.icon-wrap.check {
  background: #0b1e7a;
  /* dark blue */
}

/* WHITE CHECK ICON */
.icon-wrap.check img {
  filter: brightness(0) invert(1);
  /* makes icon white */
}

/* BLUE OUTLINE CROSS */
.icon-wrap.cross {
  border: 2px solid #0b1e7a;
  background: transparent;
}

/* BLUE CROSS ICON */
.icon-wrap.cross img {
  filter: none;
  /* keep original blue stroke */
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .comparison-row {
    grid-template-columns: 1fr 60px 60px;
    padding: 14px 20px;
  }

  .icon-wrap {
    width: 36px;
    height: 36px;
  }
}


/* ================= TABLET ================= */

@media (max-width: 992px) {

  .domestic-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 60px;
  }

  .domestic-content .subtitle {
    margin: 0 auto 40px;
  }

  .trust-row {
    justify-content: center;
  }

  .breadcrumb {
    text-align: center;
  }

  .domestic-image {
    height: auto;
    margin-top: 30px;
  }

  .product-img {
    position: relative;
    max-width: 240px;
  }

  .img-front,
  .img-back {
    top: 0;
  }


}

/* ================= MOBILE (LIKE YOUR SCREENSHOT) ================= */

@media (max-width: 768px) {

  .domestic-hero {
    padding: 80px 20px;
  }

  .domestic-content h1 {
    font-size: 38px;
    line-height: 1.2;
  }

  .domestic-content .subtitle {
    font-size: 16px;
    line-height: 1.6;
  }

  .series-badge {
    font-size: 13px;
    padding: 6px 16px;
  }

  .avatars img {
    width: 34px;
    height: 34px;
  }

  .domestic-image {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 0;
    margin-top: 40px;
  }

  .product-img {
    position: relative;
    max-width: 170px;
  }

  /* Premium slight overlap */
  .img-front {
    transform: translateX(15px);
    z-index: 2;
  }

  .img-back {
    transform: translateX(-15px);
    z-index: 1;
  }
}

@media (max-width: 768px) {

  .domestic-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: auto;
    margin-top: 40px;
  }

  .product-img {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    max-width: 160px;
  }

  /* Slight premium overlap */
  .img-front {
    transform: translateX(20px);
    z-index: 2;
  }

  .img-back {
    transform: translateX(-20px);
    z-index: 1;
  }

}

@media (max-width: 768px) {

  .domestic-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: auto !important;
    margin-top: 30px;
  }

  .product-img {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    max-width: 160px;
  }

  .img-front {
    transform: translateX(15px);
    z-index: 2;
  }

  .img-back {
    transform: translateX(-15px);
    z-index: 1;
  }

}

/* ===============================
   DOMESTIC PRODUCT HERO IMAGES
================================ */

.domestic-product-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

/* Common Image Style */
.domestic-product-img {
  max-width: 280px;
  height: auto;
  position: absolute;
  transition: all 0.4s ease;
}

/* Front Product */
.front-product {
  z-index: 2;
  left: -150px;
  bottom: 0;
  top: 160px;
  height: 300px;
  max-width: 700px;
}

/* Back Product */
.back-product {
  z-index: 1;
  right: -100px;
  bottom: 0;
  top: 80px;
  height: 400px;
  max-width: 800px;
  transform: scale(1.05);
}

/* ===============================
   RESPONSIVE DESIGN
================================ */

@media (max-width: 992px) {

  .domestic-product-wrapper {
    min-height: 420px;
  }

  .domestic-product-img {
    max-width: 220px;
  }

  .front-product {
    left: 20px;
  }
}

@media (max-width: 768px) {

  .domestic-product-wrapper {
    position: relative;
    flex-direction: column;
    min-height: auto;
    margin-top: 40px;
  }

  .domestic-product-img {
    position: relative;
    max-width: 240px;
  }

  .front-product,
  .back-product {
    left: 0;
    right: 0;
    bottom: 0;
    transform: none;
  }

  .back-product {
    margin-top: 20px;
  }
}


/* ===============================
   COMMERCIAL HERO PRODUCT IMAGES
================================ */

.commercial-product-wrapper {
  position: relative;
  width: 100%;
  height: 520px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

/* Common Image Style */
.commercial-product-img {
  position: absolute;
  height: auto;
  transition: 0.4s ease;
}

/* BACK BIG IMAGE */
.commercial-back {
  width: 600px;
  right: -100px;
  top: 20px;
  bottom: 0;
  z-index: 1;
}

/* FRONT SMALL IMAGE */
.commercial-front {
  width: 350px;
  right: 150px;
  /* ðŸ”¥ Controls closeness */
  bottom: 0;
  z-index: 2;
}

.waterchiller-back {
  width: 500px;
  right: -100px;
  top: 20px;
  bottom: 0;
  z-index: 1;
}

.wateratm-back {
  width: 400px;
  right: 60px;
  top: 20px;
  bottom: 0;
  z-index: 1;
}


/* ===============================
   WATER SOFTENER HERO IMAGES
================================ */

.watersoft-product-wrapper {
  position: relative;
  width: 100%;
  height: 520px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}


/* Common Style */
.watersoft-img {
  position: absolute;
  height: auto;
  transition: 0.4s ease;
}

/* Big Back Image */
.watersoft-back {
  width: 400px;
  right: 0;
  top: 50px;
  bottom: 0;
  z-index: 1;
}

/* Small Front Image (Close Overlap) */
.watersoft-front {
  width: 350px;
  top: 140px;
  right: 130px;
  /* ðŸ”¥ Controls closeness */
  bottom: 0;
  z-index: 2;
}




/* new Css */


/* =========================
   PRODUCT DETAIL PAGE
========================= */

.pd-page {
  background: #fff;
  padding: 18px 0 70px;

}

.pd-wrap {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.pd-breadcrumb {
  font-size: 12px;
  color: #8a94a6;
  margin: 8px 0 18px;
}

/* Top layout */
.pd-top {
  display: grid;
  grid-template-columns: 440px 1fr;
  gap: 28px;
  align-items: start;
}

/* Gallery */
.pd-gallery {
  border: 1px solid #e7edf6;
  border-radius: 10px;
  padding: 14px;
  background: #fff;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  flex-direction: row-reverse;
  /* This puts thumbnails on LEFT */
}

.pd-main-img {
  border: 1px solid #eef3fb;
  border-radius: 10px;
  padding: 14px;
  background: #fff;
  flex: 1;
}

.pd-main-img img {
  width: 100%;
  height: 310px;
  object-fit: contain;
  display: block;
}

.pd-thumbs {
  margin-top: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 340px;
  overflow-y: auto;
  padding-right: 5px;
  width: 80px;
  /* Fixed width for sidebar */
}

/* Scrollbar styling */
.pd-thumbs::-webkit-scrollbar {
  width: 4px;
}

.pd-thumbs::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.pd-thumbs::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 4px;
}

.pd-thumbs::-webkit-scrollbar-thumb:hover {
  background: #a1a1a1;
}

.pd-thumb {
  width: 70px;
  /* Slightly larger */
  height: 70px;
  border-radius: 10px;
  border: 1px solid #e7edf6;
  background: #fff;
  padding: 8px;
  /* More padding */
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.pd-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.pd-thumb.is-active,
.pd-thumb:hover {
  border-color: #1e77ff;
  box-shadow: 0 6px 18px rgba(30, 119, 255, 0.18);
}

/* Hover effect for main image */
.pd-main-img img {
  transition: opacity 0.3s ease;
}

/* Details */
.pd-details {
  padding-top: 6px;
}

.pd-title {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 800;
  color: #0b1220;
  line-height: 1.25;
}

.pd-rating-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.pd-badge {
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  background: #12b76a;
  padding: 4px 8px;
  border-radius: 6px;
}

.pd-rating-text {
  font-size: 12px;
  color: #667085;
}

.pd-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 8px 0 2px;
}

.pd-price {
  font-size: 22px;
  font-weight: 900;
  color: #0b1220;
}

.pd-mrp {
  font-size: 12px;
  color: #667085;
}

.pd-off {
  font-size: 12px;
  color: #e01b24;
  font-weight: 700;
}

.pd-tax {
  font-size: 12px;
  color: #8a94a6;
  margin-bottom: 14px;
}

.pd-section {
  margin-top: 14px;
}

.pd-section-title {
  font-size: 11px;
  letter-spacing: .08em;
  font-weight: 900;
  color: #475467;
  margin-bottom: 8px;
}

.pd-features {
  margin: 0;
  padding-left: 18px;
  color: #475467;
  font-size: 12.5px;
  line-height: 1.7;
}

.pd-offers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.pd-offer {
  border: 1px solid #d7e6ff;
  background: #f6fbff;
  border-radius: 10px;
  padding: 10px 12px;
}

.pd-offer-title {
  font-size: 12px;
  font-weight: 900;
  color: #1e77ff;
  margin-bottom: 4px;
}

.pd-offer-text {
  font-size: 12px;
  color: #475467;
  line-height: 1.5;
}

/* Delivery */
.pd-delivery {
  margin-top: 16px;
  border: 1px solid #e7edf6;
  border-radius: 10px;
  padding: 12px;
  background: #fff;
}

.pd-delivery-title {
  font-size: 11px;
  letter-spacing: .08em;
  font-weight: 900;
  color: #475467;
  margin-bottom: 10px;
}

.pd-delivery-box {
  display: flex;
  gap: 10px;
}

.pd-pin {
  flex: 1;
  height: 36px;
  border-radius: 8px;
  border: 1px solid #e7edf6;
  padding: 0 12px;
  outline: none;
}

.pd-pin:focus {
  border-color: #1e77ff;
  box-shadow: 0 0 0 3px rgba(30, 119, 255, .12);
}

.pd-check {
  height: 36px;
  padding: 0 16px;
  border-radius: 8px;
  border: 1px solid #1e77ff;
  background: #fff;
  color: #1e77ff;
  font-weight: 800;
  cursor: pointer;
}

.pd-delivery-note {
  margin-top: 10px;
  font-size: 12px;
  color: #12b76a;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pd-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #12b76a;
  display: inline-block;
}

/* Buttons */
.pd-actions {
  margin-top: 14px;
  display: flex;
  gap: 12px;
}

.pd-btn {
  height: 42px;
  border-radius: 10px;
  font-weight: 900;
  cursor: pointer;
  padding: 0 18px;
}

.pd-btn-outline {
  flex: 1;
  background: #fff;
  border: 1px solid #1e77ff;
  color: #1e77ff;
}

.pd-btn-fill {
  flex: 1;
  border: 1px solid #1e77ff;
  background: #1e77ff;
  color: #fff;
}

/* Specifications */
.spec-box {
  margin-top: 24px;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
}

.spec-head {
  font-size: 30px;
  font-weight: 700;
  padding: 22px 26px;
  border-bottom: 1px solid #ededed;
  color: #111;
}

.spec-table {
  width: 100%;
}

.spec-row {
  display: grid;
  grid-template-columns: 260px 1fr 260px 1fr;
  /* label/value label/value */
  padding: 0;
  border-bottom: 1px solid #ededed;
}

.spec-row:last-child {
  border-bottom: none;
}

.spec-k,
.spec-v {
  padding: 22px 26px;
  font-size: 14px;
  display: flex;
  align-items: center;
}

.spec-k {
  font-weight: 500;
  color: #333;
}

.spec-v {
  font-weight: 600;
  color: #111;
}

/* vertical dividers like reference */
.spec-k:nth-child(1),
.spec-v:nth-child(2) {
  border-right: 1px solid #ededed;
}

.spec-k:nth-child(3) {
  border-left: none;
  border-right: 1px solid #ededed;
}

/* toggle row (extra specs hidden until open) */
.spec-row.is-extra {
  display: none;
}

.spec-box.open .spec-row.is-extra {
  display: grid;
}

/* view more / less button */
.spec-toggle {
  width: 100%;
  height: 70px;
  background: #fff;
  border: 0;
  cursor: pointer;
  font-weight: 700;
  font-size: 17px;
  color: #1677ff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.spec-toggle .less {
  display: none;
}

.spec-box.open .spec-toggle .more {
  display: none;
}

.spec-box.open .spec-toggle .less {
  display: inline;
}

.spec-toggle .arrow {
  font-size: 18px;
  transform: translateY(1px);
  transition: transform .2s ease;
}

.spec-box.open .spec-toggle .arrow {
  transform: rotate(180deg);
}

/* responsive */
@media(max-width: 980px) {
  .spec-head {
    font-size: 26px;
  }

  .spec-row {
    grid-template-columns: 1fr 1fr;
    /* stack pairs */
  }

  .spec-k:nth-child(1),
  .spec-v:nth-child(2),
  .spec-k:nth-child(3) {
    border-right: none;
  }
}

/* Product Overview */
.pd-overview {
  margin-top: 26px;
}

.pd-overview-title {
  font-size: 19px;
  font-weight: 900;
  color: #0b1220;
  margin-bottom: 12px;
}

.pd-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 16px;
}

.pd-tab {
  border: 1px solid #eef3fb;
  background: #f6fbff;
  /* Light blue background like the image */
  border-radius: 10px;
  padding: 18px 10px;
  /* More padding */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  /* More gap between icon and text */
  font-size: 11px;
  font-weight: 900;
  color: #1e77ff;
  cursor: pointer;
  transition: all 0.2s ease;
  height: 100%;
  /* Make all tabs same height */
}

.pd-tab:hover {
  border-color: #1e77ff;
  box-shadow: 0 6px 16px rgba(30, 119, 255, 0.15);
  transform: translateY(-2px);
}

.pd-tab-ic {
  width: 48px;
  height: 48px;
  /* border-radius: 50%; Circular like the image */
  display: flex;
  align-items: center;
  justify-content: center;
  /* background: #fff; White circle for icon */
    /* border: 1px solid #d7e6ff; */
}

.pd-tab-ic img {
  width: 50px;
  /* Larger icons */
  height: 50px;
  object-fit: contain;
  display: block;
}

/* ===== PRODUCT DETAIL BANNERS ===== */
/* =========================
   PRODUCT BANNER CLEAN FIX
   ========================= */

.pd-banner {
  position: relative;
  width: 100%;
  height: 500px;
  /* Increased height for full image */
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 40px;
}

/* IMAGE */
.pd-banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* SHOW FULL IMAGE (no crop) */
  object-position: center;
  display: block;
  background: #ffffff;
  /* prevents dark side shading */
}

/* REMOVE ANY DARK OVERLAY */
.pd-banner::after {
  display: none !important;
}

/* TEXT */
.pd-banner-content {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  max-width: 420px;
  z-index: 2;
}

.pd-banner-mint .pd-banner-content {
  left: 70px;
  right: auto;
}

/* Typography */
.pd-banner-content h3 {
  font-size: 24px;
  font-weight: 900;
  color: #1e66d0;
  margin-bottom: 12px;
}

.pd-banner-content p {
  font-size: 19px;
  line-height: 1.6;
  color: #1f2937;
}

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
  .pd-top {
    grid-template-columns: 1fr;
    /* Stack gallery and details */
    gap: 20px;
  }

  .pd-gallery {
    flex-direction: column;
    /* Stack thumbnails below main image */
  }

  .pd-thumbs {
    flex-direction: row;
    /* Horizontal thumbnails on mobile */
    width: 100%;
    justify-content: center;
    order: 2;
    /* Move thumbnails below main image */
  }

  .pd-main-img {
    width: 100%;
    order: 1;
  }

  .pd-tabs {
    grid-template-columns: repeat(2, 1fr);
    /* 2 columns on tablet */
    gap: 12px;
  }


  /* =========================================
   MOBILE FIX: Banner text ON image (clean)
   Put this at VERY END of style.css
   ========================================= */
  @media (max-width: 768px) {

    /* force banner to behave like desktop */
    .pd-banner {
      position: relative !important;
      height: 280px !important;
      min-height: 280px !important;
      border-radius: 16px !important;
      overflow: hidden !important;
    }

    /* make BOTH media and content overlay inside banner */
    .pd-banner>.pd-banner-media,
    .pd-banner>.pd-banner-content {
      position: absolute !important;
      inset: 0 !important;
    }

    .pd-banner-media {
      z-index: 1 !important;
    }

    .pd-banner-media img {
      width: 100% !important;
      height: 100% !important;
      object-fit: cover !important;
      object-position: center !important;
      display: block !important;
    }

    /* content layer */
    .pd-banner-content {
      z-index: 2 !important;
      padding: 16px 14px !important;
      max-width: 100% !important;
      display: flex !important;
      flex-direction: column !important;
      justify-content: flex-start !important;
      text-align: left !important;

      /* IMPORTANT: kill any desktop transforms/left/right */
      transform: none !important;
      left: 0 !important;
      right: 0 !important;
      top: 0 !important;
      bottom: 0 !important;
    }

    /* soft readable panel behind text (NOT full dark overlay) 
  .pd-banner-content::before{
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(
      90deg,
      rgba(255,255,255,.82) 0%,
      rgba(255,255,255,.60) 55%,
      rgba(255,255,255,.10) 100%
    ) !important;
    z-index: -1 !important;
  }*/

    .pd-banner-content h3 {
      margin: 0 0 8px !important;
      font-size: 18px !important;
      line-height: 1.2 !important;
      font-weight: 900 !important;
      color: #1677ff !important;
      max-width: 90% !important;
    }

    .pd-banner-content p {
      margin: 0 !important;
      font-size: 13px !important;
      line-height: 1.55 !important;
      color: #0f172a !important;
      max-width: 92% !important;

      /* stop ugly overflow on small screens */
      display: -webkit-box !important;
      -webkit-line-clamp: 4 !important;
      -webkit-box-orient: vertical !important;
      overflow: hidden !important;
    }
  }

  /* smaller phones */
  @media (max-width: 480px) {
    .pd-banner {
      height: 310px !important;
      min-height: 310px !important;
    }
  }
}

/* =========================
   NEWS/RELEASES PAGE
   ========================= */
.nr-wrap {
  width: min(1120px, 92%);
  margin: 0 auto;
}

/* HERO */
.nr-hero {
  position: relative;
  padding: 74px 0 62px;
  overflow: hidden;
  border-radius: 0 0 0 0;
  /* keep normal */
}

/* Put your hero background image here */
.nr-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/news1.jpg") center/cover no-repeat;
  z-index: 0;
}

/* Color overlay like screenshot (purple/blue tint) */
.nr-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(112, 0, 160, .45) 0%,
      rgba(0, 80, 255, .30) 55%,
      rgba(0, 160, 255, .22) 100%);
  z-index: 1;
}

.nr-hero-content {
  position: relative;
  z-index: 2;
  max-width: 520px;
  color: #fff;
}

.nr-kicker {
  font-size: 30px;
  opacity: .9;
  margin-bottom: 10px;
}

.nr-hero-title {
  margin: 0 0 14px;
  font-size: 46px;
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.nr-hero-sub {
  margin: 0 0 18px;
  max-width: 460px;
  font-size: 20px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .86);
}

.nr-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: #fff;
  color: #1a66ff;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, .55);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.nr-hero-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .16);
}

/* LATEST NEWS GRID */
.nr-latest {
  padding: 34px 0 44px;
  background: #fff;
}

.nr-section-title {
  margin: 0 0 16px;
  font-size: 26px;
  font-weight: 900;
  color: #0b1220;
}

.nr-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.nr-card {
  background: transparent;
}

/*
.nr-card-media{
  display:block;
  border-radius: 14px;
  overflow:hidden;
  background:#f3f4f6;
  box-shadow: 0 12px 26px rgba(16,24,40,.08);
  transition: transform .18s ease, box-shadow .18s ease;
}*/
.nr-card-media {
  border-radius: 18px;
  /* smoother corners like reference */
  box-shadow: none;
  /* reference looks clean, not heavy shadow */
  background: transparent;
}

.nr-card-media img {
  height: 220px;
  /* key change (150 -> 220) */
  transform: none;
  /* remove forced scale default */
  object-position: center;
}

/* âœ… hover effect */
.nr-card:hover .nr-card-media {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(16, 24, 40, .14);
}

.nr-card:hover .nr-card-media img {
  transform: scale(1.08);
}

.nr-card-meta {
  margin: 10px 0 8px;
  font-size: 11px;
  color: #6b7280;
}

.nr-dot {
  margin: 0 6px;
  opacity: .7;
}

.nr-card-title {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 900;
  color: #0b1220;
}

.nr-card-text {
  margin: 0 0 10px;
  font-size: 15px;
  line-height: 1.6;
  color: #6b7280;
}

.nr-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.nr-author {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nr-author-badge {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #eaf2ff;
  color: #1a66ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 900;
}

.nr-author-name {
  font-size: 12px;
  font-weight: 600;
  color: black;
}

.nr-readmore {
  font-size: 10px;
  font-weight: 900;
  color: #1a66ff;
  text-decoration: none;
  margin-right: 50px;
}

.nr-readmore:hover {
  text-decoration: underline;
}

/* NEWSROOM SECTION */
.nr-newsroom {
  background: #dde0ff;
  /* lavender like screenshot */
  padding: 44px 0 54px;
}

.nr-newsroom-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 32px;
  align-items: start;
}

.nr-newsroom-title {
  margin: 0 0 10px;
  font-size: 26px;
  font-weight: 900;
  color: #0b1220;
  line-height: 1.1;
}

.nr-newsroom-sub {
  margin: 0 0 18px;
  font-size: 20px;
  line-height: 1.7;
  color: #4b5563;
  max-width: 300px;
}

.nr-line {
  width: 220px;
  height: 2px;
  background: rgba(11, 18, 32, .25);
  border-radius: 999px;
}

.nr-item {
  padding: 10px 0;
}

.nr-date {
  font-size: 13px;
  color: #111827;
  opacity: .85;
  margin-bottom: 5px;
}

.nr-headline {
  font-size: 15px;
  color: #0b1220;
  font-weight: 800;
}

/* Floating buttons (optional) */
.nr-float {
  position: fixed;
  right: 16px;
  top: 90%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 999;
}

.nr-float-btn {
  width: 60px;
  height: 60px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 30px;
  font-weight: 900;
  color: #fff;
  box-shadow: 0 16px 40px rgba(16, 24, 40, .20);
  transition: transform .18s ease, box-shadow .18s ease;
}


.nr-float-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 54px rgba(16, 24, 40, .26);
}

.nr-float-top {
  background: #1a66ff;
}

.nr-float-wa {
  background: #22c55e;
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 980px) {
  .nr-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nr-hero-title {
    font-size: 40px;
  }
}

@media (max-width: 640px) {
  .nr-hero {
    padding: 62px 0 52px;
  }

  .nr-hero-content {
    max-width: 100%;
  }

  .nr-hero-title {
    font-size: 34px;
  }

  .nr-grid {
    grid-template-columns: 1fr;
  }

  .nr-card-media img {
    height: 170px;
  }

  .nr-newsroom-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .nr-line {
    width: 180px;
  }

  .nr-float {
    right: 10px;
  }
}

/* ===== MOBILE FIX: Latest News should be full-width + centered ===== */
@media (max-width: 640px) {

  /* container uses full width nicely */
  .nr-wrap {
    width: min(1120px, 94%);
  }

  /* make grid a single full-width column */
  .nr-grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  /* force each card to take full width */
  .nr-card {
    width: 100%;
    margin: 0 auto;
  }

  /* image wrapper should be full width */
  .nr-card-media {
    width: 100%;
    display: block;
    border-radius: 16px;
    overflow: hidden;
  }

  /* image should fill properly + not look weird */
  .nr-card-media img {
    width: 100%;
    height: 210px;
    /* good mobile height */
    object-fit: cover;
    object-position: center;
    display: block;
  }

  /* reduce text spacing so it feels like mobile feed */
  .nr-card-meta {
    font-size: 12px;
  }

  .nr-card-title {
    font-size: 14px;
    line-height: 1.35;
  }

  .nr-card-text {
    font-size: 12.5px;
  }

  .nr-readmore {
    font-size: 11px;
  }
}

/* ================= ============ DETAIL PAGE (matches screenshot) ============ */

.ab-page {
  background: #ffffff;
  padding: 60px 0 100px;
}

.ab-wrap {
  width: min(1000px, 92%);
  margin: 0 auto;
}


.ab-title {
  margin: 0 0 12px;
  font-size: 39px;
  font-weight: 800;
  color: #0b1220;
  line-height: 1.3;
}

.ab-date {
  font-size: 14px;
  color: #94a3b8;
}

/* PARAGRAPHS */
.ab-para {
  margin: 20px 0;
  font-size: 16px;
  line-height: 1.9;
  color: #475569;
}

/* QUOTE BOX */
.ab-quote {
  background: #f4f7fb;
  border-left: 5px solid #1a66ff;
  border-radius: 18px;
  padding: 22px 24px;
  margin: 30px 0 30px;
}

.ab-quote p {
  margin: 0;
  font-size: 20px;
  line-height: 1.8;
  color: #334155;
}

.ab-link {
  color: #1a66ff;
  font-weight: 700;
  text-decoration: none;
}

.ab-link:hover {
  text-decoration: underline;
}

/* BENEFITS LIST */
.ab-list {
  margin-top: 35px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.ab-item {
  display: flex;
  gap: 19px;
  align-items: flex-start;
}

.ab-num {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #1a66ff;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  flex: 0 0 34px;
  margin-top: 4px;
}

.ab-txt h3 {
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 700;
  color: #0b1220;
}

.ab-txt p {
  margin: 0;
  font-size: 20px;
  line-height: 1.8;
  color: #64748b;
  max-width: 780px;
}

/* Benefit Item Container */
.ab-item {
  padding: 18px 20px;
  margin-bottom: 20px;
  /* space between 1â€“6 */
  border-radius: 20px;
  transition: background .25s ease, box-shadow .25s ease;
}

/* remove extra space after last item */
.ab-item:last-child {
  margin-bottom: 0;
}

/* hover effect like screenshot */
.ab-item:hover {
  background: #f3f4f8;
  /* light grey background */
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
}


/* CTA SECTION */
.ab-cta {
  margin: 60px auto 0;
  width: min(700px, 100%);
  background: #062c57;
  border-radius: 32px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 30px 70px rgba(6, 44, 87, .25);
}

.ab-cta h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
}

.ab-cta p {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, .9);
  font-size: 14px;
  line-height: 1.8;
}

.ab-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 12px;
  background: #ffffff;
  color: #1a66ff;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: all .2s ease;
}

/* ðŸ”¥ BLUE HOVER EFFECT */
.ab-cta-btn:hover {
  background: #1a66ff;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(26, 102, 255, .35);
}

/* ================= MOBILE ================= */

@media (max-width:768px) {

  .ab-page {
    padding: 40px 0 80px;
  }

  .ab-title {
    font-size: 24px;
  }

  .ab-para {
    font-size: 15px;
  }

  .ab-quote p {
    font-size: 15px;
  }

  .ab-txt h3 {
    font-size: 16px;
  }

  .ab-txt p {
    font-size: 14px;
  }

  .ab-cta {
    padding: 30px 20px;
    border-radius: 24px;
  }

  .ab-cta h2 {
    font-size: 18px;
  }

}



/* service page css */


    /* ================= HERO (NO GLASS CARD) ================= */
.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;

  /* âœ… lighter overlay (image more visible) */
  background:
    linear-gradient(90deg,
      rgba(10, 70, 170, 0.14) 0%,
      rgba(22, 119, 255, 0.10) 55%,
      rgba(0, 180, 255, 0.06) 100%),
    url("./assets/images/aqua.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.03);
  /* tiny lift */
  backdrop-filter: none;
  pointer-events: none;
}

.hero {
  /* boosts image quality / visibility */
  filter: saturate(1.15) contrast(1.08);
}


.hero .content {
  position: relative;
  padding: 70px 0 70px;
  max-width: 720px;
}

.hero h1 {
  margin: 0 0 16px;
  color: #fff;
  font-weight: 900;
  letter-spacing: -0.03em;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.02;
}

.hero p {
  margin: 0 0 26px;
  color: rgba(255, 255, 255, .86);
  font-size: 18px;
  line-height: 1.55;
  max-width: 650px;
}

/* ===== HERO GLASS CARD ===== */
.hero .wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
}

.hero-glass {
  justify-self: end;
  width: 420px;
  max-width: 100%;
  padding: 26px 26px 24px;

  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.35);

  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.35);
}

.glass-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.glass-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: #fff;
}

.glass-item img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.glass-item h4 {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 800;
}

.glass-item p {
  margin: 0;
  font-size: 13px;
  opacity: .85;
  line-height: 1.4;
}

.glass-divider {
  height: 1px;
  background: rgba(255, 255, 255, .35);
  margin: 18px 0 14px;
}

.glass-quote {
  margin: 0;
  text-align: center;
  font-size: 14px;
  font-style: italic;
  color: rgba(255, 255, 255, .9);
}

/* responsive */
@media(max-width: 900px) {
  .hero .wrap {
    grid-template-columns: 1fr;
  }

  .hero-glass {
    margin-top: 30px;
    justify-self: start;
  }
}

/* âœ… button like screenshot: white pill, blue text; hover blue */
.heroBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 34px;
  border-radius: 999px;
  background: #1478F2;
  color: var(--blue);
  border: 2px solid rgba(22, 119, 255, .20);
  font-weight: 800;
  font-size: 18px;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .16);
  transition: transform .12s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}

.heroBtn:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  box-shadow: 0 26px 60px rgba(22, 119, 255, .30);
  transform: translateY(-1px);
}

.heroBtn:active {
  transform: translateY(0px);
  background: #0f66ff;
  border-color: #0f66ff;
  box-shadow: 0 18px 40px rgba(22, 119, 255, .22);
}

.heroBtn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 5px rgba(22, 119, 255, .25), 0 26px 60px rgba(22, 119, 255, .30);
}

/* ================= SECTION TITLES ================= */
.section {
  padding: 54px 0;
}

.title {
  margin: 0;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.subtitle {
  margin: 10px 0 28px;
  color: var(--muted);
  font-size: 14px;
}

/* ===== Comprehensive Solutions: exact alignment ===== */
/* ===== Comprehensive Solutions: exact alignment ===== */
.csx {
  padding: 56px 0;
  background: #fff;
}

.csx-title {
  margin: 0;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -.01em;
}

.csx-sub {
  margin: 8px 0 26px;
  color: #6b7280;
  font-size: 13px;
}

/* âœ… REAL website-style alignment = 12-column grid */
.csx-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 26px;
}

/* spans (this is the key) */
.csx-a {
  grid-column: span 7;
}

.csx-b {
  grid-column: span 5;
}

.csx-c {
  grid-column: span 4;
}

.csx-d {
  grid-column: span 8;
}

/* card base */
.csx-card {
  border-radius: 18px;
  padding: 28px 28px;
  border: 1px solid rgba(10, 70, 170, .06);
  box-shadow: 0 18px 40px rgba(16, 24, 40, .06);
  background: #fff;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.csx-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 70px rgba(16, 24, 40, .12);
  border-color: rgba(22, 119, 255, .18);
}

/* exact background colors like reference */
.csx-soft {
  background: #f2f9ff;
}

.csx-mint {
  background: #e9fbff;
}

/* ================= DARK (BLUE) CARD ================= */
.csx-dark {
  background: #052b58;
  border-color: #052b58;
  box-shadow: 0 22px 60px rgba(5, 43, 88, .20);
}

/* âœ… FIX: proper professional text contrast */
.csx-dark h3 {
  color: #ffffff;
  /* pure white heading */
}

.csx-dark p {
  color: rgba(255, 255, 255, .85);
  /* soft white body text */
}

/* (optional but safe if you ever add spans/links later) */
.csx-dark span,
.csx-dark a {
  color: rgba(255, 255, 255, .85);
}

/* =================================================== */

/* icon tile size + top alignment like reference */
.csx-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: rgb(255, 255, 255);
  border: 1px solid rgba(10, 70, 170, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  /* keeps all titles aligned */
}

.csx-icon img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  display: block;
}

.csx-icon-dark {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .12);
}

/* typography like reference */
.csx-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 900;
  color: #0b1220;
}

.csx-card p {
  margin: 0;
  color: #667085;
  font-size: 13.5px;
  line-height: 1.55;
  max-width: 520px;
}

/* Top row should feel taller like reference */
.csx-a,
.csx-b {
  min-height: 260px;
}

/* responsive */
@media (max-width: 980px) {

  .csx-a,
  .csx-b,
  .csx-c,
  .csx-d {
    grid-column: span 12;
  }

  .csx-a,
  .csx-b {
    min-height: auto;
  }
}


/* ===== Standardized Installation Process (exact screenshot) ===== */

.install-sec {
  background: #f3f6fb;
  /* light grey like screenshot */
  padding: 54px 0 70px;
}

.install-title {
  text-align: center;
  margin: 0 0 34px;
  font-size: 30px;
  font-weight: 900;
  color: #0b1220;
}

/* white rounded container with shadow (the one you pointed out) */
.install-shell {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  /* keep corners clean */
  box-shadow: 0 18px 30px rgba(16, 24, 40, .12);
  /* âœ… shadow like screenshot */
  width: 100%;
  /* centered by .wrap */
}

/* keep all 4 in ONE LINE always */
.install-row {
  display: flex;
  flex-wrap: nowrap;
}

/* each column */
.install-step {
  flex: 1;
  padding: 26px 28px 24px;
  /* âœ… little bigger, not huge */
  border-right: 1px solid #e7edf6;
  /* dividers */
  background: #fff;
}

.install-step:last-child {
  border-right: none;
}

/* big faint numbers */
.install-num {
  font-size: 38px;
  font-weight: 900;
  color: #dbeafe;
  /* light blue like screenshot */
  margin-bottom: 12px;
}

/* titles */
.install-ttl {
  font-weight: 800;
  font-size: 17px;
  margin: 0 0 10px;
  color: #0b1220;
}

/* description */
.install-txt {
  margin: 0;
  color: #667085;
  font-size: 14.5px;
  line-height: 1.6;
  max-width: 250px;
}

/* âœ… hover effect you asked (light cyan highlight, not changing structure) */
.install-step:hover {
  background: rgba(173, 245, 255, .25);
}

/* responsive: if screen is too small, it will overflow instead of stacking */
@media (max-width: 900px) {
  .install-shell {
    overflow-x: auto;
  }

  .install-row {
    min-width: 900px;
  }

  /* keeps 4-in-row like screenshot */
}

/* ================= AMC (exact style you showed) ================= */
.amcTitle {
  text-align: center;
  margin: 0;
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.amcSub {
  text-align: center;
  margin: 10px 0 34px;
  color: var(--muted);
  font-size: 14px;
}

.amcGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: stretch;
}

.amcCard {
  border: 1px solid rgba(10, 70, 170, .10);
  border-radius: var(--radius-lg);
  background: #fff;
  padding: 44px 44px;
  min-height: 360px;
  box-shadow: 0 16px 38px rgba(16, 24, 40, .06);
  transition: transform .18s ease, box-shadow .18s ease;
}

.amcCard:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 60px rgba(16, 24, 40, .12);
}

.amcCard h4 {
  margin: 0 0 14px;
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.amcNote {
  margin: 0 0 30px;
  font-size: 20px;
  font-style: italic;
  color: #0b1220;
  opacity: .70;
}

.amcCard.active {
  background: #052b58;
  border-color: #052b58;
  color: #fff;
  box-shadow: 0 26px 70px rgba(5, 43, 88, .22);
}

.amcCard.active .amcNote {
  color: #fff;
  opacity: .80;
}

.amcList {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 26px;
}

.amcList li {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  font-size: 18px;
  color: #0b1220;
}

.amcCard.active .amcList li {
  color: #fff;
}

/* âœ… check icon (no images) */
.check {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.check svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: #052b58;
  stroke-width: 3.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.amcCard.active .check svg {
  stroke: #fff;
}

/* ================= OTP section (bigger, attractive like reference) ================= */
.otpSection {
  background: #eef3ff;
  padding: 70px 0 84px;
}

.otpTitle {
  text-align: center;
  margin: 0 0 34px;
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.otpCard {
  width: min(720px, 100%);
  margin: 0 auto;
  background: #fff;
  border-radius: 22px;
  border: 1px solid rgba(10, 70, 170, .10);
  box-shadow: 0 28px 80px rgba(16, 24, 40, .12);
  padding: 46px 54px;
  text-align: center;
}

.otpLabel {
  font-size: 30px;
  font-weight: 900;
  margin: 0 0 24px;
  letter-spacing: -0.01em;
}

.otpInput {
  width: min(520px, 100%);
  margin: 0 auto;
  border: 1px solid rgba(10, 70, 170, .18);
  border-radius: 16px;
  padding: 16px 18px;
  font-size: 16px;
  outline: none;
  transition: box-shadow .18s ease, border-color .18s ease;
}

.otpInput:focus {
  border-color: rgba(22, 119, 255, .55);
  box-shadow: 0 0 0 5px rgba(22, 119, 255, .18);
}

.otpHelp {
  margin: 18px auto 28px;
  max-width: 520px;
  font-size: 18px;
  color: #0b1220;
  opacity: .75;
  line-height: 1.6;
}

.otpBtn {
  width: min(520px, 100%);
  border: 0;
  border-radius: 14px;
  background: var(--blue);
  color: #fff;
  font-weight: 900;
  font-size: 18px;
  padding: 16px 18px;
  cursor: pointer;
  box-shadow: 0 18px 50px rgba(22, 119, 255, .28);
  transition: transform .12s ease, box-shadow .18s ease, background .18s ease;
}

.otpBtn:hover {
  background: #0f66ff;
  box-shadow: 0 24px 60px rgba(22, 119, 255, .34);
  transform: translateY(-1px);
}

.otpBtn:active {
  transform: translateY(0px);
  box-shadow: 0 18px 50px rgba(22, 119, 255, .24);
}

/* ================= Responsive ================= */
@media (max-width: 980px) {
  .solutionsGrid {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr 1fr;
  }

  .step:nth-child(2) {
    border-right: 0;
  }

  .step:nth-child(3),
  .step:nth-child(4) {
    border-top: 1px solid rgba(10, 70, 170, .10);
  }

  .amcGrid {
    grid-template-columns: 1fr;
  }

  .otpTitle {
    font-size: 32px;
  }

  .otpLabel {
    font-size: 22px;
  }

  .otpCard {
    padding: 34px 24px;
  }
}

@media (max-width: 560px) {
  .wrap {
    width: calc(100% - 32px);
  }

  .hero {
    min-height: 520px;
  }

  .hero p {
    font-size: 16px;
  }

  .heroBtn {
    width: 100%;
    max-width: 360px;
  }
}

.hero {
  background: radial-gradient(circle at bottom left,
      #8fb6d9 0%,
      #1f4fa3 40%,
      #081c4a 100%);
  padding: 100px 0 80px;
  position: relative;
   justify-content: center;
  overflow: hidden;
  color: white;
  
}

.career-hero {
  position: relative;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

/* Background Image */
.career-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Blue Overlay */
.career-overlay {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(
    90deg,
    rgba(28,60,140,0.85),
    rgba(37,166,199,0.75)
  ); */
  z-index: 1;
}

/* Content */
.career-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 20px;
  color: #fff;
}

/* Title */
.career-title {
  font-size: 55px;
  font-weight: 1000;
  margin-bottom: 20px;
}

/* Subtitle */
.career-subtitle {
  font-size: 22px;
  line-height: 1.7;
  margin-bottom: 40px;
}

/* Button */
.career-btn {
  display: inline-block;
  padding: 14px 35px;
  background: #fff;
  color: #1c3c8c;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
}

.career-btn:hover {
  background: #f2f2f2;
}

@media (max-width: 768px) {

  .career-title {
    font-size: 36px;
  }

  .career-subtitle {
    font-size: 18px;
  }

  .career-hero {
    height: 60vh;

  }
}

.why-section {
  background: #f3f4f6;
  padding: 100px 20px;
  text-align: center;
}

.why-container {
  max-width: 1200px;
  margin: auto;
}

.why-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.why-subtitle {
  font-size: 18px;
  color: #555;
  margin-bottom: 60px;
}

/* Cards Row */
.why-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* Card */
.why-card {
  position: relative;
  background: #fff;
  padding: 70px 25px 40px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: 0.3s ease;
  border: 2px solid #e0e0e0;
}

.why-card:hover {
  transform: translateY(-5px);
}

/* Icon Circle */
.why-icon {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 90px;
  background: #dfe8f5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-icon img {
  width: 45px;
}

/* Card Title */
.why-card h3 {
  margin-top: 30px;
  font-size: 22px;
  font-weight: 700;
}

/* Card Text */
.why-card p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}
@media (max-width: 992px) {
  .why-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .why-cards {
    grid-template-columns: 1fr;
  }

  .why-title {
    font-size: 30px;
  }
}

.philosophy-section {
  background: #122a8f;
  padding: 100px 20px;
  color: #fff;
}

.philosophy-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Tag */
.philosophy-tag {
  color: #f5b000;
  font-weight: 600;
  margin-bottom: 20px;
}

/* Title */
.philosophy-title {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 25px;
}

/* Paragraph */
.philosophy-text {
  font-size: 20px;
  line-height: 1.8;
  color: #d5dcff;
  margin-bottom: 40px;
}

/* Feature Box */
.philosophy-box {
  display: flex;
  gap: 20px;
  background: #e9edf5;
  color: #111;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 20px;
  align-items: center;
}

.box-icon {
  background: #1e3fb3;
  padding: 15px;
  border-radius: 12px;
}

.box-icon img {
  width: 50px;
}

/* Right Image */
.philosophy-right {
  position: relative;
}

.philosophy-img {
  width: 190%;        /* Never exceed container */
  /* max-width: 100%;     */
  height: auto;       /* Maintain ratio */
  border-radius: 16px;
  border: 2px solid #2e5bff;
  display: block;
}


/* Yellow Badge */
.quality-badge {
  position: absolute;
  bottom: -30px;
  right: -5px;
  background: #f5a300;
  padding: 25px 30px;
  border-radius: 16px;
  color: #fff;
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.quality-badge .zero {
  display: block;
  font-size: 36px;
  font-weight: 800;
}
@media (max-width: 992px) {
  .philosophy-container {
    grid-template-columns: 1fr;
  }

  .quality-badge {
    position: relative;
    bottom: 0;
    right: 0;
    margin-top: 20px;
  }
}
.philosophy-img {
    width: 100%;
    margin-top: 30px;
  }

.jobs-section {
  background: #f4f5f7;
  padding: 100px 20px;
  font-weight: 700;
}

.jobs-container {
  max-width: 1200px;
  margin: auto;
}

/* Header */
.jobs-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
}

.jobs-title {
  font-size: 40px;
  font-weight: 700;
}

.jobs-subtitle {
  color: #666;
  margin-top: 8px;
}

.jobs-filter {
  display: flex;
  align-items: center;
  gap: 10px;
}

.jobs-filter select {
  padding: 10px 20px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 14px;
}

/* Grid */
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */
.job-card {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  border: 1px solid #e5e5e5;
  box-shadow: 0 8px 25px rgba(0,0,0,0.03);
  transition: 0.3s ease;
}

.job-card:hover {
  transform: translateY(-5px);
}

/* Badge */
.badge {
  display: inline-block;
  padding: 8px 18px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 20px;
  margin-bottom: 20px;

}

.badge.technical {
  background: #e6f0ff;
  color: #2e5bff;
}

.badge.sales {
  background: #f5ede4;
  color: #ff7a00;
  
}

/* Title */
.job-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

/* Description */
.job-desc {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Location */
.job-location {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

/* Footer */
.job-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
 
}

.job-type {
  font-weight: 600;
  color: #444;
}

.apply-btn {
  background: #2e7be6;
  color: #fff;
  padding: 10px 22px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.apply-btn:hover {
  background: #1f5dc3;
}
@media (max-width: 992px) {
  .jobs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  .jobs-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .jobs-grid {
    grid-template-columns: 1fr;
  }
}


@media (max-width: 768px) {
  .stats-container .subtitle {
    margin-left: 0;          /* remove left shift */
    text-align: center;      /* center text */
    padding: 0 15px;         /* small side spacing */
  }
}


/* HEADER SECTION */
.purity-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto 80px;
  padding: 0 20px;
}

/* LEFT */
.purity-left {
  flex: 1;
}

.purity-tag {
  color: #0b63ff;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 10px;
}

.purity-title {
  font-size: 48px;
  line-height: 1.2;
}

.purity-title span {
  color: #0b63ff;
}

/* CENTER ICON */
.tech-divider-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #1f5fff, #4fa3ff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 26px;
  box-shadow: 0 15px 40px rgba(31,95,255,0.25);
  flex-shrink: 0;
  margin-right: 60px;
}

/* RIGHT */
.purity-right {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  max-width: 480px;
}

/* FIXED LINE */
.purity-line {
  width: 3px;
  background: #0b63ff;
  height: 120px;   /* ðŸ‘ˆ THIS fixes visibility */
  border-radius: 10px;
}

/* TEXT */
.purity-text {
  margin: 0;
  color: #555;
  line-height: 1.7;
  font-size: 17px;
}



.footer-credit {
  margin: 6px 0 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

/* Premium Link Style */
.omnigross-link {
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
}

/* Elegant underline animation */
.omnigross-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 2px;
  background: #ffd700;
  transition: width 0.3s ease;
}

.omnigross-link:hover {
  color: #ffd700;
}

.omnigross-link:hover::after {
  width: 100%;
}


/* ================= JOB OPENINGS ================= */
.openings-section {
  padding: 90px 40px;
  background: #ffffff;
}

.openings-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}

.openings-title {
  font-size: 32px;
  color: #0ea5e9;
}

.openings-subtitle {
  color: #64748b;
  margin-top: 6px;
}

/* Filter */
.filter-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.filter-box select {
  padding: 10px 16px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  background: #fff;
}

/* Grid */
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
}

/* Job Card */
.job-card {
  background: #ffffff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
}

.job-card h3 {
  margin: 14px 0 10px;
  font-size: 20px;
}

/* Tag */
.job-tag {
  align-self: flex-start;
  background: #eff6ff;
  color: #2563eb;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

/* Meta */
.job-location,
.job-type {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 6px;
}

.job-desc {
  margin: 12px 0 18px;
  color: #374151;
  font-size: 14px;
}

/* Apply Button */
.apply-btn {
  margin-top: auto;
  background: #1e3a8a;
  color: #fff;
  border: none;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
}

.apply-btn:hover {
  background: #0f2f6b;
}

/* Mobile */
@media (max-width: 768px) {
  .openings-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}





/* ================= ALERTS ================= */
.alert {
  max-width: 600px;
  margin: 20px auto;
  padding: 15px;
  border-radius: 8px;
  text-align: center;
}
.success { background: #dcfce7; color: #166534; }
.error { background: #fee2e2; color: #991b1b; }

/* ================= MOBILE ================= */
@media(max-width:768px){
  .job-card { flex-direction: column; }
  .hero h1 { font-size: 2.2rem; }
}

/* ================= APPLY MODAL UI (FINAL MATCH) ================= */
.apply-modal {
  position: fixed;
  inset: 0;
  background: rgba(3,10,20,0.78);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.apply-modal.active {
  display: flex;
}

/* Modal Box */
.apply-modal-box {
  width: 95%;
  max-width: 560px;
  background: #ffffff;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.45);
  animation: modalIn .35s ease;
}

@keyframes modalIn {
  from { transform: translateY(50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Header */
.apply-modal-header {
  background: #062e5f;
  padding: 38px 38px 30px;
  color: #ffffff;
  position: relative;
}

.apply-modal-header h2 {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
}

.apply-modal-header p {
  margin-top: 10px;
  font-size: 15px;
  color: #c7d2fe;
}

.apply-modal-header span {
  color: #fbbf24;
  font-weight: 700;
  text-decoration: underline;
}

/* Close button */
.apply-close {
  position: absolute;
  right: 24px;
  top: 22px;
  background: none;
  border: none;
  font-size: 26px;
  color: #ffffff;
  cursor: pointer;
}

/* ================= FORM ================= */
.apply-form {
  padding: 32px;
}

.apply-form input,
.apply-form textarea {
  width: 100%;
  padding: 18px 18px;
  border-radius: 14px;
  border: 1px solid #e6eaf2;
  background: #f7f9ff;
  font-size: 14px;
  color: #1f2937;
  margin-bottom: 18px;
}

.apply-form input::placeholder,
.apply-form textarea::placeholder {
  color: #9aa4b2;
  font-weight: 500;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;                 /* IMPORTANT */
}

/* Force equal height & spacing */
.two-col input {
  height: 54px;
}

.apply-form input,
.apply-form textarea {
  width: 100%;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e6eaf2;
  background: #f7f9ff;
  font-size: 14px;
  margin-bottom: 18px;
  box-sizing: border-box;   /* ðŸ”¥ KEY FIX */
}


.upload-box {
  display: flex;                 /* ðŸ”¥ KEY FIX */
  align-items: center;
  justify-content: center;

  width: 100%;
  min-height: 80px;

  box-sizing: border-box;
  border: 2px dashed #ff8a00;
  border-radius: 18px;

  padding: 26px;
  margin: 26px 0;

  background: #f7f9ff;
  cursor: pointer;

  text-align: center;
  font-size: 15px;
}

.upload-box span {
  color: #ff8a00;
  font-weight: 700;
}



/* Submit Button */
.submit-btn {
  width: 100%;
  background: #ff8a00;
  border: none;
  padding: 20px;
  border-radius: 18px;
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  cursor: pointer;
}

.submit-btn:hover {
  background: #e67700;
}

/* Mobile */
@media(max-width:600px){
  .two-col {
    grid-template-columns: 1fr;
  }
}

/* ===== Homepage hero override (prevents stretch/zoom from global .hero collisions) ===== */
.home-page .hero {
  position: relative;
  min-height: clamp(560px, 88vh, 760px);
  height: auto;
  padding: 36px 0 70px;
  overflow: hidden;
}

.home-page .hero-slides {
  width: 100%;
  display: block;
}

.home-page .hero-container {
  display: none;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 4vw, 72px);
}

.home-page .hero-container.active {
  display: flex;
}

.home-page .hero-text {
  flex: 1 1 52%;
  min-width: 0;
}

.home-page .hero-image {
  flex: 1 1 48%;
  display: flex;
  justify-content: center;
}

.home-page .hero-image img {
  width: min(100%, 560px);
  max-height: min(68vh, 620px);
  height: auto;
  object-fit: contain;
}

.home-page .hero-dots {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  width: max-content;
  margin: 0;
  z-index: 5;
}

.home-page .hero-dots span {
  display: block;
  width: 48px;
  height: 5px;
  border-radius: 999px;
}

@media (max-width: 992px) {
  .home-page .hero {
    min-height: auto;
    padding: 28px 0 68px;
  }

  .home-page .hero-container.active {
    flex-direction: column;
    text-align: center;
  }

  .home-page .hero-text,
  .home-page .hero-image {
    flex: 1 1 auto;
    width: 100%;
  }

  .home-page .hero-badges,
  .home-page .hero-buttons {
    justify-content: center;
  }

  .home-page .hero-image img {
    width: min(88vw, 480px);
    max-height: 50vh;
  }

  .home-page .hero-dots {
    bottom: 14px;
  }
}


/* ===== Employee Login Page ===== */
.employee-login-page {
  min-height: calc(100vh - 180px);
  padding: 70px 20px 90px;
  background: linear-gradient(145deg, #eef5ff 0%, #f7fbff 45%, #ffffff 100%);
}

.employee-login-wrap {
  width: min(1120px, 100%);
  margin: 0 auto;
  text-align: center;
}

.employee-login-tag {
  display: inline-block;
  margin: 0 0 10px;
  padding: 7px 14px;
  border-radius: 999px;
  background: #e8f1ff;
  color: #0b3f87;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.employee-login-wrap h1 {
  margin: 0;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  color: #0a1f44;
}

.employee-login-subtitle {
  margin: 12px auto 0;
  max-width: 700px;
  color: #4c5f7d;
  font-size: 17px;
}

.employee-login-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 22px;
}

.employee-login-card {
  text-decoration: none;
  text-align: left;
  background: #ffffff;
  border: 1px solid #dce8fb;
  border-radius: 20px;
  padding: 26px 22px;
  box-shadow: 0 10px 26px rgba(15, 49, 109, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.employee-login-card:hover {
  transform: translateY(-4px);
  border-color: #a7c7ff;
  box-shadow: 0 16px 30px rgba(15, 49, 109, 0.14);
}

.employee-login-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #ebf3ff 0%, #dceaff 100%);
  color: #0e58cc;
  font-size: 24px;
}

.employee-login-card h3 {
  margin: 18px 0 8px;
  font-size: 24px;
  line-height: 1.2;
  color: #0a1f44;
}

.employee-login-card p {
  margin: 0;
  color: #5f7290;
  font-size: 15px;
  line-height: 1.65;
}

.employee-login-cta {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0d53c7;
  font-weight: 700;
  font-size: 15px;
}

@media (max-width: 991px) {
  .employee-login-grid {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }
}

@media (max-width: 640px) {
  .employee-login-page {
    padding: 50px 16px 70px;
  }

  .employee-login-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 28px;
  }

  .employee-login-card {
    padding: 22px 18px;
  }

  .employee-login-card h3 {
    font-size: 22px;
  }
}

/* ===== Water Softner: Equal Product Image Height ===== */
.water-softner-page .domestic-products .product-grid .product-card {
  display: flex;
  flex-direction: column;
}

.water-softner-page .domestic-products .product-grid .product-card img {
  width: 100%;
  height: clamp(170px, 23vw, 240px);
  object-fit: contain;
  object-position: center bottom;
  background: transparent;
  border-radius: 0;
}

@media (max-width: 991px) {
  .water-softner-page .domestic-products .product-grid .product-card img {
    height: clamp(160px, 34vw, 220px);
  }
}


/* Index slider button anchor fix */
.products-section .buy-btn,
.products-section .tsm-buy {
  text-decoration: none !important;
}

.products-section a.buy-btn,
.products-section a.tsm-buy {
  display: block;
  width: 100%;
  text-align: center;
  text-decoration: none !important;
}

.products-section .rating {
  letter-spacing: 0;
}

/* ===== Homepage Product Card Alignment Fix ===== */
.products-section .product-card,
.products-section .tsm-card {
  display: flex;
  flex-direction: column;
}

.products-section .product-card img,
.products-section .tsm-card img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  object-position: center;
}

.products-section .product-card h3,
.products-section .tsm-card h3 {
  min-height: 58px;
}

/* Keep category label as small pill (not full-width strip) */
.products-section .product-card .tag {
  display: inline-block;
  width: auto;
  min-width: 110px;
  padding: 4px 14px;
  border-radius: 999px;
  margin: 0 auto 12px;
  text-align: center;
}

/* Product star ratings */
.products-section .rating {
  color: #f4b400;
  font-weight: 700;
}

.products-section .rating small {
  color: #222;
  font-weight: 500;
}

.products-section .product-card .desc,
.products-section .tsm-card .desc {
  min-height: 84px;
}

.products-section .product-card ul,
.products-section .tsm-card ul {
  min-height: 92px;
}

.products-section .product-card .price,
.products-section .tsm-card .tsm-price {
  margin-top: auto;
}

.products-section a.buy-btn,
.products-section a.tsm-buy {
  text-decoration: none !important;
}

@media (max-width: 991px) {
  .products-section .product-card img,
  .products-section .tsm-card img {
    height: 180px;
  }

  .products-section .product-card h3,
  .products-section .tsm-card h3,
  .products-section .product-card .desc,
  .products-section .product-card ul,
  .products-section .tsm-card ul {
    min-height: unset;
  }
}

/* Global spacing between navbar and page content */
.aqua-navbar {
  margin-bottom: 32px;
}

/* HEADER SECTION */
.purity-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto 80px;
  padding: 0 20px;
}

/* LEFT */
.purity-left {
  flex: 1;
}

.purity-tag {
  color: #0b63ff;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 10px;
}

.purity-title {
  font-size: 48px;
  line-height: 1.2;
}

.purity-title span {
  color: #0b63ff;
}

/* CENTER ICON */
.tech-divider-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #1f5fff, #4fa3ff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 26px;
  box-shadow: 0 15px 40px rgba(31,95,255,0.25);
  flex-shrink: 0;
  margin-right: 60px;
}

/* RIGHT */
.purity-right {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  max-width: 480px;
}

/* FIXED LINE */
.purity-line {
  width: 3px;
  background: #0b63ff;
  height: 120px;   /* 👈 THIS fixes visibility */
  border-radius: 10px;
}

/* TEXT */
.purity-text {
  margin: 0;
  color: #555;
  line-height: 1.7;
  font-size: 17px;
}

.thank-popup{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.4);
  display:none;
  justify-content:center;
  align-items:center;
  z-index:9999;
}

.thank-popup.is-open{
  display:flex;
}

.popup-box{
  background:#fff;
  padding:40px;
  border-radius:20px;
  text-align:center;
  width:420px;
}

.whatsapp-btn{
  display:block;
  margin:25px auto 10px;
  background:#22c55e;
  color:#fff;
  padding:14px 26px;
  border-radius:10px;
  text-decoration:none;
  font-weight:600;
}

.close-btn{
  display:block;
  margin:auto;
  margin-top:8px;
  border:none;
  background:none;
  color:#666;
  font-size:14px;
  cursor:pointer;
}


/* SUPPORT SECTION */

.support-section{
padding:90px 20px;
background:linear-gradient(180deg,#eaf2fb,#cfd8e6);
text-align:center;
}

.support-container{
max-width:1100px;
margin:auto;
}

.support-container h1{
font-size:40px;
font-weight:800;
color:#0b1a33;
}

.support-sub{
margin-top:10px;
color:#6b7280;
margin-bottom:40px;
}

/* SERVICE CARD */

.support-card{
background:white;
padding:40px;
border-radius:18px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
max-width:550px;
margin:auto;
}

.support-card h2{
margin-bottom:20px;
font-size:26px;
}

/* FORM */

.service-form input,
.service-form select,
.service-form textarea{

width:100%;
padding:14px;
margin-bottom:15px;
border-radius:8px;
border:1px solid #cbd5e1;
font-size:15px;
}

.service-form textarea{
min-height:90px;
resize:none;
}

/* BUTTON */

.service-form button{
width:100%;
padding:15px;
border:none;
border-radius:10px;
background:linear-gradient(135deg,#2c7be5,#1b5fd6);
color:white;
font-size:17px;
font-weight:600;
cursor:pointer;
transition:.3s;
}

.service-form button:hover{
transform:translateY(-2px);
box-shadow:0 10px 20px rgba(0,0,0,0.15);
}

/* ACTION BUTTONS */

.support-actions{
margin-top:30px;
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
}

.whatsapp-btn{
background:#25D366;
color:white;
padding:14px 28px;
border-radius:8px;
font-weight:600;
text-decoration:none;
}

.call-btn{
background:#2c7be5;
color:white;
padding:14px 28px;
border-radius:8px;
font-weight:600;
text-decoration:none;
}

/* TRACK SERVICE */

.track-service{
margin-top:50px;
}

.track-service h3{
margin-bottom:20px;
font-size:24px;
}

.track-box{
display:flex;
gap:10px;
justify-content:center;
flex-wrap:wrap;
}

.track-box input{
padding:12px;
border-radius:6px;
border:1px solid #cbd5e1;
width:220px;
}

.track-box button{
padding:12px 20px;
border:none;
background:#2c7be5;
color:white;
border-radius:6px;
cursor:pointer;
}

/* MOBILE */

@media(max-width:768px){

.support-container h1{
font-size:30px;
}

.support-card{
padding:30px 20px;
}

}
.product-card ul{
  text-align:left;
  padding-left:20px;
  margin:15px 0;
}

.product-card ul li{
  margin-bottom:6px;
  list-style:disc;
}

