@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100..700;1,100..700&family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');

:root {
  --blue-deep: #1565c0;
  --blue-mid: #1976d2;
  --blue-accent: #2196f3;
  --blue-light: #e3f2fd;
  --green-accent: #16a34a;
  --green-bright: #22c55e;
  --green-light: #dcfce7;
  --cyan: #0284c7;
  --teal: #0d9488;

  /* Light glass variables */
  --glass-bg: rgba(255, 255, 255, 0.55);
  --glass-border: rgba(255, 255, 255, 0.85);
  --glass-blur: blur(20px);

  /* Text */
  --text-dark: #0f172a;
  --text-mid: #1e3a5f;
  --text-muted: #4b6a8a;
  --white: #ffffff;

  /* BG */
  --bg-body: #f0f7ff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Source Sans 3", sans-serif;
  background: var(--bg-body);
  color: var(--text-dark);
  overflow-x: hidden;
  min-height: 100vh;
}

/* ─── ANIMATED BACKGROUND ─── */
.hero-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 70% 55% at 15% 85%, rgba(33, 150, 243, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 55% 45% at 85% 15%, rgba(34, 197, 94, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 55% 50%, rgba(6, 182, 212, 0.10) 0%, transparent 60%),
    linear-gradient(160deg, #dbeafe 0%, #eff6ff 35%, #f0fdf4 65%, #f0f7ff 100%);
}

/* Water wave blobs — light pastel */
.water-blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.30;
  animation: blobFloat 12s ease-in-out infinite;
  z-index: 0;
}

.water-blob:nth-child(1) {
  width: 520px;
  height: 520px;
  background: #90caf9;
  top: -80px;
  left: -100px;
  animation-delay: 0s;
}

.water-blob:nth-child(2) {
  width: 380px;
  height: 380px;
  background: #86efac;
  top: 30%;
  right: -60px;
  animation-delay: -4s;
}

.water-blob:nth-child(3) {
  width: 300px;
  height: 300px;
  background: #67e8f9;
  bottom: 10%;
  left: 30%;
  animation-delay: -8s;
}

.water-blob:nth-child(4) {
  width: 250px;
  height: 250px;
  background: #a5f3fc;
  top: 60%;
  left: 10%;
  animation-delay: -2s;
}

@keyframes blobFloat {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(30px, -25px) scale(1.05);
  }

  66% {
    transform: translate(-20px, 20px) scale(0.95);
  }
}

/* ─── TOP BAR ─── */
.top-bar {
  position: relative;
  z-index: 100;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(33, 150, 243, 0.18);
  padding: 8px 0;
  box-shadow: 0 1px 10px rgba(21, 101, 192, 0.08);
}

.top-bar .contact-item {
  font-family: "Source Sans 3", sans-serif;
  font-size: 13px;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-right: 20px;
}

.top-bar .contact-item i {
  color: var(--green-accent);
  font-size: 12px;
}

.top-bar .contact-item a {
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.3s;
}

.top-bar .contact-item a:hover {
  color: var(--blue-deep);
}

.top-bar .social-icons a {
  color: var(--text-muted);
  margin-left: 12px;
  font-size: 14px;
  transition: all 0.3s;
}

.top-bar .social-icons a:hover {
  color: var(--blue-accent);
  transform: translateY(-2px);
  display: inline-block;
}

/* ─── NAVBAR ─── */
.main-nav {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.60);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(33, 150, 243, 0.15);
  box-shadow: 0 2px 20px rgba(21, 101, 192, 0.10);
  transition: all 0.4s ease;
  padding: 0;
}

.main-nav.scrolled {
  background: rgba(255, 255, 255, 0.90);
  box-shadow: 0 4px 30px rgba(21, 101, 192, 0.15);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  text-decoration: none;
}

.logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: box-shadow 0.3s;
  flex-shrink: 0;
}

.logo-wrap:hover {
  box-shadow: 0 6px 28px rgba(22, 163, 74, 0.25), inset 0 1px 0 rgba(255, 255, 255, 1);
}

.logo-wrap img {
  height: 73px;
}

.brand-text {
  line-height: 1.1;
}

.brand-name {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 17px;
  font-weight: 700;
  background: linear-gradient(135deg, #1565c0 0%, #16a34a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 1px;
  display: block;
}

.brand-sub {
  font-family: "Source Sans 3", sans-serif;
  font-size: 11px;
  letter-spacing: 2.5px;
  color: var(--text-muted);
  text-transform: uppercase;
}

.navbar-nav .nav-link {
  font-family: "Source Sans 3", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-mid) !important;
  padding: 8px 14px !important;
  letter-spacing: 0.5px;
  position: relative;
  transition: color 0.3s;
  text-transform: uppercase;
}

.navbar-nav .nav-link::before {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-accent), var(--green-accent));
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--blue-deep) !important;
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
  transform: scaleX(1);
}

/* Dropdown */
.dropdown-menu {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(33, 150, 243, 0.18);
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(21, 101, 192, 0.14);
  padding: 8px;
  min-width: 220px;
}

.dropdown-item {
  color: var(--text-mid);
  font-family: "Source Sans 3", sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.2s;
}

.dropdown-item:hover {
  background: rgba(33, 150, 243, 0.10);
  color: var(--blue-deep);
}

.dropdown-item i {
  color: var(--green-accent);
  margin-right: 8px;
}

/* Get Quote button */
.btn-quote {
  font-family: "Source Sans 3", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 9px 22px;
  border: none;
  border-radius: 30px;
  background: linear-gradient(135deg, #1565c0 0%, #16a34a 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(21, 101, 192, 0.30);
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  display: inline-block;
}

.btn-quote::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-quote:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(22, 163, 74, 0.35);
  color: #fff;
}

.btn-quote:hover::before {
  opacity: 1;
}

/* Toggler */
.navbar-toggler {
  border: 1px solid rgba(21, 101, 192, 0.25);
  border-radius: 8px;
  padding: 6px 10px;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2821, 101, 192, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-collapse.show {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  padding: 10px;
  margin-top: 8px;
  box-shadow: 0 8px 30px rgba(21, 101, 192, 0.12);
}

/* Common Heading */
.main_secheading {
  font-size: 30px;
  margin-bottom: 20px !important;
  font-weight: 500;
  font-family: 'IBM Plex Sans';
}

.main_secheading span {
  background: linear-gradient(135deg, #16a34a 0%, #1565c0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.main_secheading:after {
  content: '';
  width: 76px;
  height: 2px;
  display: block;
  background: linear-gradient(135deg, #1565c0 0%, #16a34a 100%);
  margin: 0 auto;
  margin-top: 10px;
  margin-bottom: 35px;
}

/* ─── HERO SECTION ─── */
.hero-section {
  position: relative;
  z-index: 10;
  min-height: 82vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  /* background-image: url(../images/herovideo.mp4);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover; */
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}


/* Glass card — light frosted */
.hero-glass-card {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(26px);
  -webkit-backdrop-filter: blur(26px);
  border: 1px solid rgba(255, 255, 255, 0.90);
  border-radius: 24px;
  padding: 52px 48px;
  box-shadow:
    0 8px 50px rgba(21, 101, 192, 0.12),
    0 2px 0px rgba(255, 255, 255, 0.9) inset,
    0 -1px 0px rgba(21, 101, 192, 0.06) inset;
  position: relative;
  overflow: hidden;
}

/* .hero-glass-card::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background:
    radial-gradient(circle at 30% 30%, rgba(33,150,243,0.07) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(22,163,74,0.05) 0%, transparent 50%);
  animation: glassSweep 10s linear infinite;
}
@keyframes glassSweep {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
} */

/* White flow shine strip on card top */
.hero-glass-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 1) 40%, rgba(33, 150, 243, 0.5) 70%, transparent);
  border-radius: 24px 24px 0 0;
}

/* Hero badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(33, 150, 243, 0.10);
  border: 1px solid rgba(33, 150, 243, 0.30);
  border-radius: 20px;
  padding: 6px 16px;
  font-family: "Source Sans 3", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-deep);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
}

.hero-badge i {
  color: var(--green-accent);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

/* Hero title */
.hero-title {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 6px;
  color: var(--text-dark);
  text-shadow: 0 2px 18px rgba(21, 101, 192, 0.12);
}

.hero-title .accent {
  background: linear-gradient(135deg, #1565c0 0%, #16a34a 60%, #0284c7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hero desc */
.hero-desc {
  font-family: "Source Sans 3", sans-serif;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 20px 0 32px;
  max-width: 480px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

/* Primary button */
.btn-primary-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #1565c0 0%, #22c55e 100%);
  color: #fff;
  font-family: "Source Sans 3", sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 13px 30px;
  border-radius: 40px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(21, 101, 192, 0.30);
  transition: all 0.3s;
  border: none;
}

.btn-primary-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(22, 163, 74, 0.40);
  color: #fff;
}

/* Outline button */
.btn-outline-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.70);
  color: var(--text-mid);
  font-family: "Source Sans 3", sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  padding: 12px 28px;
  border-radius: 40px;
  text-decoration: none;
  border: 1.5px solid rgba(33, 150, 243, 0.30);
  backdrop-filter: blur(10px);
  transition: all 0.3s;
}

.btn-outline-hero:hover {
  background: rgba(33, 150, 243, 0.10);
  border-color: var(--blue-accent);
  color: var(--blue-deep);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(33, 150, 243, 0.15);
}

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

/* Cylinder wrap */
.chem-tank-wrap {
  position: relative;
  width: 280px;
  margin: 0 auto;
}

/* Rings — light blue/green */
.chem-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  animation: ringPulse 3s ease-in-out infinite;
}

.chem-ring:nth-child(1) {
  width: 320px;
  height: 320px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-color: rgba(33, 150, 243, 0.25);
  animation-delay: 0s;
}

.chem-ring:nth-child(2) {
  width: 400px;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-color: rgba(22, 163, 74, 0.18);
  animation-delay: -1s;
}

.chem-ring:nth-child(3) {
  width: 480px;
  height: 480px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-color: rgba(6, 182, 212, 0.12);
  animation-delay: -2s;
}

@keyframes ringPulse {

  0%,
  100% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.04);
  }
}

/* Floating stat cards — white glass */
.stat-float {
  position: absolute;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 14px;
  padding: 12px 18px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(21, 101, 192, 0.12);
  animation: floatCard 4s ease-in-out infinite;
  z-index: 5;
}

.stat-float .stat-num {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 22px;
  font-weight: 700;
  background: linear-gradient(135deg, #1565c0, #16a34a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-float .stat-lbl {
  font-family: "Source Sans 3", sans-serif;
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.stat-float:nth-child(5) {
  top: 47%;
  left: -73px;
  animation-delay: 0s;
}

.stat-float:nth-child(6) {
  bottom: 18%;
  right: -20px;
  animation-delay: -2s;
}

.stat-float:nth-child(7) {
  bottom: 5%;
  left: 0;
  animation-delay: -1s;
}

@keyframes floatCard {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* Cylinder SVG glow — adjust for light bg */
.cylinder-svg {
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 20px 50px rgba(21, 101, 192, 0.30));
  animation: cylinderFloat 5s ease-in-out infinite;
}

@keyframes cylinderFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

/* ══════════════════════════════════════
   ABOUT SECTION
══════════════════════════════════════ */
.about-section {
  position: relative;
  z-index: 10;
  padding: 60px 0 60px;
}

/* Glass text card — same feel as hero card */
.about-glass-card {
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 22px;
  padding: 40px 38px;
  box-shadow:
    0 8px 40px rgba(21, 101, 192, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  position: relative;
  overflow: hidden;
}

/* White shine strip top */
.about-glass-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #fff 40%, rgba(33, 150, 243, 0.45) 70%, transparent);
  border-radius: 22px 22px 0 0;
}

/* Headings inside cards */
.about-heading {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(17px, 2.2vw, 24px);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.35;
  margin-bottom: 18px;
}

.about-accent {
  background: linear-gradient(135deg, #1565c0 0%, #16a34a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Paragraph text */
.about-para {
  font-family: "Source Sans 3", sans-serif;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.78;
  margin-bottom: 14px;
}

.about-para:last-of-type {
  margin-bottom: 0;
}

/* Inline stat row */
.about-stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(33, 150, 243, 0.12);
}

.about-stat-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Source Sans 3", sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-mid);
  letter-spacing: 0.3px;
}

.about-stat-item i {
  color: var(--blue-accent);
  font-size: 14px;
  width: 28px;
  height: 28px;
  background: rgba(33, 150, 243, 0.10);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Image wrap */
.about-img-wrap {
  position: relative;
  border-radius: 22px;
}

/* Placeholder image box */
.about-img-placeholder {
  width: 100%;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1.5px dashed rgba(33, 150, 243, 0.30);
  box-shadow:
    0 10px 40px rgba(21, 101, 192, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(21, 101, 192, 0.45);
  transition: border-color 0.3s;
  overflow: hidden;
}

.about-img-placeholder img {
  width: 100%;
}

.about-img-placeholder:hover {
  border-color: rgba(33, 150, 243, 0.55);
}

.about-img-placeholder i {
  font-size: 48px;
  background: linear-gradient(135deg, rgba(33, 150, 243, 0.35), rgba(22, 163, 74, 0.30));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-img-placeholder span {
  font-family: "Source Sans 3", sans-serif;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(21, 101, 192, 0.45);
}

/* Floating badge on image */
.about-img-badge {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.98);
  border-radius: 16px;
  padding: 14px 20px;
  text-align: center;
  box-shadow: 0 8px 28px rgba(21, 101, 192, 0.14);
  z-index: 5;
  min-width: 88px;
}

.about-img-badge .badge-num {
  display: block;
  font-family: 'Orbitron', sans-serif;
  font-size: 22px;
  font-weight: 700;
  background: linear-gradient(135deg, #1565c0, #16a34a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.about-img-badge .badge-lbl {
  display: block;
  font-family: "Source Sans 3", sans-serif;
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  line-height: 1.3;
  margin-top: 3px;
}

/* Capacity strip */
.capacity-strip {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  padding: 16px 20px;
  background: rgba(33, 150, 243, 0.06);
  border: 1px solid rgba(33, 150, 243, 0.14);
  border-radius: 14px;
  flex-wrap: wrap;
}

.cap-item {
  text-align: center;
}

.cap-num {
  display: block;
  font-family: 'Orbitron', sans-serif;
  font-size: 16px;
  font-weight: 700;
  background: linear-gradient(135deg, #1565c0, #16a34a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cap-lbl {
  display: block;
  font-family: "Source Sans 3", sans-serif;
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.cap-divider {
  color: rgba(33, 150, 243, 0.35);
  font-size: 13px;
  flex: 1;
  text-align: center;
}

/* Why Choose — full width card */
.whychoose {
  background-image: url(../images/whychoose-bg.jpg);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
}

.about-why-card {
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 22px;
  padding: 42px 40px;
  box-shadow:
    0 8px 40px rgba(21, 101, 192, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  position: relative;
  overflow: hidden;
}

.about-why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1565c0, #16a34a 50%, #06b6d4);
  border-radius: 22px 22px 0 0;
}

/* Individual why item */
.why-item {
  background: rgba(255, 255, 255, 0.70);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 14px;
  padding: 18px 14px;
  text-align: center;
  transition: all 0.3s;
  height: 100%;
  box-shadow: 0 3px 14px rgba(21, 101, 192, 0.07);
  cursor: default;
}

.why-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(21, 101, 192, 0.14);
  border-color: rgba(33, 150, 243, 0.30);
}

.why-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(33, 150, 243, 0.12), rgba(22, 163, 74, 0.10));
  border: 1px solid rgba(33, 150, 243, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 18px;
  color: var(--blue-accent);
  transition: transform 0.3s;
}

.why-item:hover .why-icon {
  transform: rotate(8deg) scale(1.1);
  background: linear-gradient(135deg, rgba(33, 150, 243, 0.20), rgba(22, 163, 74, 0.15));
}

.why-text {
  font-family: "Source Sans 3", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
  line-height: 1.4;
  letter-spacing: 0.3px;
}

/* ─── PRODUCTS STRIP ─── */
.products-strip {
  position: relative;
  z-index: 10;
  background: rgba(255, 255, 255, 0.60);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.90);
  border-bottom: 1px solid rgba(33, 150, 243, 0.12);
  padding: 60px 0;
  box-shadow: 0 -2px 20px rgba(21, 101, 192, 0.07);
}

.products-strip .product_wrp {
  background: #fff;
  width: 100%;
  overflow: hidden;
  border: 1px solid #15808c;
  border-radius: 10px;
  position: relative;
}

.products-strip .product_wrp .product_img img {
  width: 100%;
}

.products-strip .product_wrp .product_box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 16%, rgba(237, 221, 83, 0) 100%);
}

.products-strip .product_wrp .product_box .product_name a {
  color: #fff;
  text-decoration: none;
  font-size: 22px;
}

.products-strip .product_wrp .product_box .Pro_butn {
  font-size: 15px;
  text-decoration: none;
  color: #ffffff;
  border: 2px solid #ffffff7d;
  padding: 2px 11px;
  background: #ffffff21;
}

.products-strip .product_wrp .product_box .Pro_butn:hover {
  background: #ffffff36;
}

/* product slider */
/* ── PRODUCT SLIDER SECTION ── */
.prod-slider-section {
  position: relative;
  z-index: 10;
  padding: 60px 0 60px;
}

.prod-slider-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(20px, 3vw, 34px);
  font-weight: 800;
  color: var(--text-dark);
  margin-top: 14px;
}

/* Owl wrapper override */
.prod-owl-slider {
  padding-bottom: 10px;
}

/* Each slide item */
.prod-slide-item {
  padding: 10px 10px 20px;
}

/* Card */
.prod-slide-card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow:
    0 6px 30px rgba(21, 101, 192, 0.12),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
  transition: transform 0.38s ease, box-shadow 0.38s ease;
  background: #fff;
}

.prod-slide-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(21, 101, 192, 0.22);
}

/* Image container — fixed height like reference */
.prod-slide-img {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
  background: rgba(224, 242, 254, 0.5);
}

.prod-slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.prod-slide-card:hover .prod-slide-img img {
  transform: scale(1.07);
}

/* Placeholder when no image */
.prod-slide-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #dbeafe 0%, #dcfce7 100%);
  display: none;
  /* shown via onerror JS */
}

.prod-slide-placeholder i {
  font-size: 64px;
  background: linear-gradient(135deg, rgba(21, 101, 192, 0.35), rgba(22, 163, 74, 0.30));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Dark gradient overlay at bottom (like reference) */
.prod-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(5, 14, 31, 0.82) 0%,
      rgba(5, 14, 31, 0.30) 45%,
      transparent 75%);
  transition: opacity 0.38s;
}

.prod-slide-card:hover .prod-slide-overlay {
  background: linear-gradient(to top,
      rgba(5, 14, 31, 0.90) 0%,
      rgba(5, 14, 31, 0.40) 50%,
      transparent 80%);
}

/* Text content — sits ON the image at bottom */
.prod-slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 24px 22px;
  z-index: 5;
}

.prod-slide-name {
  font-family: 'Exo 2', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 14px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.prod-slide-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: "Source Sans 3", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.80);
  text-decoration: none;
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  transition: all 0.3s;
}

.prod-slide-link i {
  font-size: 11px;
  transition: transform 0.3s;
}

.prod-slide-link:hover {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.85);
  gap: 11px;
}

.prod-slide-link:hover i {
  transform: translateX(3px);
}

/* ── CUSTOM NAV ── */
.prod-slider-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.prod-nav-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid rgba(33, 150, 243, 0.28);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--blue-deep);
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  box-shadow: 0 4px 14px rgba(21, 101, 192, 0.10);
}

.prod-nav-btn:hover {
  background: linear-gradient(135deg, #1565c0, #16a34a);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(21, 101, 192, 0.28);
  transform: scale(1.08);
}

/* Dots */
.prod-dots {
  display: flex;
  align-items: center;
  gap: 7px;
}

.prod-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(33, 150, 243, 0.22);
  border: 1.5px solid rgba(33, 150, 243, 0.30);
  cursor: pointer;
  transition: all 0.3s;
}

.prod-dot.active {
  width: 24px;
  border-radius: 6px;
  background: linear-gradient(90deg, #1565c0, #16a34a);
  border-color: transparent;
}

/* Hide default owl dots & nav */
.prod-owl-slider .owl-dots,
.prod-owl-slider .owl-nav {
  display: none !important;
}

/* ══════════════════════════════
   BLOG SECTION
══════════════════════════════ */
.blog-section {
  position: relative;
  z-index: 10;
  padding: 80px 0 70px;
}

.blog-card {
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 30px rgba(21, 101, 192, 0.10);
  transition: all 0.38s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 50px rgba(21, 101, 192, 0.18);
  border-color: rgba(33, 150, 243, 0.28);
}

/* Image */
.blog-img {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, #dbeafe, #dcfce7);
  flex-shrink: 0;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-img img {
  transform: scale(1.07);
}

.blog-img-placeholder {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #dbeafe 0%, #dcfce7 100%);
}

.blog-img-placeholder i {
  font-size: 52px;
  background: linear-gradient(135deg, rgba(21, 101, 192, 0.30), rgba(22, 163, 74, 0.25));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.blog-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(33, 150, 243, 0.22);
  border-radius: 20px;
  padding: 4px 12px;
  font-family: "Source Sans 3", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--blue-deep);
}

/* Body */
.blog-body {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-meta {
  display: flex;
  gap: 14px;
  margin-bottom: 12px;
  font-family: "Source Sans 3", sans-serif;
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.blog-meta i {
  color: var(--blue-accent);
  margin-right: 5px;
}

.blog-title {
  font-family: "Source Sans 3", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
  margin-bottom: 10px;
}

.blog-excerpt {
  font-family: 'Exo 2', sans-serif;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 18px;
}

.blog-readmore {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: "Source Sans 3", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blue-deep);
  text-decoration: none;
  border-bottom: 1.5px solid rgba(21, 101, 192, 0.28);
  padding-bottom: 2px;
  transition: all 0.3s;
  width: fit-content;
}

.blog-readmore i {
  font-size: 11px;
  transition: transform 0.3s;
}

.blog-readmore:hover {
  color: var(--green-accent);
  border-bottom-color: var(--green-accent);
  gap: 11px;
}

.blog-readmore:hover i {
  transform: translateX(3px);
}

/* White shine top strip on blog card */
.blog-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #fff 40%, rgba(33, 150, 243, 0.4) 70%, transparent);
  border-radius: 20px 20px 0 0;
  opacity: 0;
  transition: opacity 0.35s;
}

.blog-card {
  position: relative;
}

.blog-card:hover::after {
  opacity: 1;
}


/* ══════════════════════════════
   TESTIMONIALS SECTION
══════════════════════════════ */
.testi-section {
  position: relative;
  z-index: 10;
  padding: 0 0 60px;
}

/* Subtle bg tint for testi */
.testi-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(219, 234, 254, 0.18);
  z-index: -1;
}

.testi-owl {
  padding-bottom: 10px;
}

.testi-item {
  padding: 10px 12px 20px;
}

.testi-card {
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(255, 255, 255, 0.94);
  border-radius: 20px;
  padding: 34px 32px 30px;
  box-shadow: 0 6px 30px rgba(21, 101, 192, 0.10);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s, box-shadow 0.35s;
}

.testi-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 44px rgba(21, 101, 192, 0.16);
}

/* Top gradient line */
.testi-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1565c0, #16a34a 50%, #06b6d4);
  border-radius: 20px 20px 0 0;
}

.testi-quote {
  font-size: 28px;
  background: linear-gradient(135deg, rgba(21, 101, 192, 0.18), rgba(22, 163, 74, 0.12));
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--blue-accent);
}

.testi-text {
  font-family: 'Exo 2', sans-serif;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.78;
  margin-bottom: 24px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(33, 150, 243, 0.10);
}

.testi-avatar {
  font-size: 38px;
  color: rgba(33, 150, 243, 0.30);
  flex-shrink: 0;
}

.testi-name {
  font-family: "Source Sans 3", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
}

.testi-role {
  font-family: 'Exo 2', sans-serif;
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.3px;
}

.testi-stars {
  color: #f59e0b;
  font-size: 12px;
  display: flex;
  gap: 2px;
  align-self: flex-start;
  margin-top: 2px;
}

/* Hide default owl dots */
.testi-owl .owl-dots,
.testi-owl .owl-nav {
  display: none !important;
}


/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.site-footer {
  position: relative;
  z-index: 10;
  margin-top: 0;
}

.footer-wave {
  line-height: 0;
  background: transparent;
}

.footer-wave svg {
  display: block;
}

.footer-main {
  background: #0d1626;
  padding: 65px 0 45px;
  background: #011C64;
  background: linear-gradient(180deg, rgba(1, 28, 100, 1) 0%, rgba(30, 129, 4, 1) 100%);
}

/* Brand row */
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.footer-logo-wrap {
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  padding: 8px;
}

.footer-logo-wrap img {
  height: 97px;
}

.footer-brand-name {
  font-family: 'Orbitron', sans-serif;
  font-size: 16px;
  font-weight: 700;
  background: linear-gradient(135deg, #64b5f6, #81c784);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.footer-brand-sub {
  font-family: "Source Sans 3", sans-serif;
  font-size: 10px;
  letter-spacing: 2.5px;
  color: rgba(255, 255, 255, 0.40);
  text-transform: uppercase;
}

.footer-about-text {
  font-family: 'Exo 2', sans-serif;
  font-size: 14px;
  color: #cac7c7;
  line-height: 1.75;
  margin-bottom: 22px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cac7c7;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s;
}

.footer-social a:hover {
  background: linear-gradient(135deg, #1565c0, #16a34a);
  border-color: transparent;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(21, 101, 192, 0.30);
}

/* Headings */
.footer-heading {
  font-family: "Source Sans 3", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(33, 150, 243, 0.20);
  position: relative;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 36px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

/* Footer nav links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links li a {
  font-family: "Source Sans 3", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #cac7c7;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
  padding: 2px 0;
}

.footer-links li a i {
  font-size: 10px;
  color: var(--green-accent);
  transition: transform 0.3s;
}

.footer-links li a:hover {
  color: rgba(255, 255, 255, 0.90);
  padding-left: 5px;
}

.footer-links li a:hover i {
  transform: translateX(3px);
}

/* Capacity badge */
.footer-capacity-badge {
  margin-top: 18px;
  background: rgba(33, 150, 243, 0.10);
  border: 1px solid rgba(33, 150, 243, 0.22);
  border-radius: 10px;
  padding: 10px 14px;
  font-family: "Source Sans 3", sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.60);
  letter-spacing: 0.3px;
}

.footer-capacity-badge i {
  color: var(--green-bright);
  margin-right: 7px;
}

.footer-capacity-badge strong {
  color: rgba(255, 255, 255, 0.85);
}

/* Contact list */
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.fc-icon {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: rgba(33, 150, 243, 0.12);
  border: 1px solid rgba(33, 150, 243, 0.20);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
}

.fc-text {
  font-family: 'Exo 2', sans-serif;
  font-size: 13.5px;
  color: #cac7c7;
  line-height: 1.55;
}

.fc-text a {
  color: #cac7c7;
  text-decoration: none;
  transition: color 0.3s;
}

.fc-text a:hover {
  color: var(--green-bright);
}

/* Footer bottom */
.footer-bottom {
  background: #0a1a2c;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 16px 0;
}

.footer-copy {
  font-family: "Source Sans 3", sans-serif;
  font-size: 13px;
  color: #fff;
  margin: 0;
  letter-spacing: 0.3px;
}

.footer-copy strong {
  color: rgba(255, 255, 255, 0.60);
}

.footer-copy span {
  font-family: "Source Sans 3", sans-serif;
  font-size: 13px;
  color: #fff;
  margin: 0;
  letter-spacing: 0.3px;
}

.btn-close-custom {
  border: 0;
  background: transparent;
}

/* Trust badge row in hero */
.trust-row-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: "Source Sans 3", sans-serif;
  font-size: 13px;
  color: var(--text-muted);
}

/* Water drops — light blue */
.water-drop {
  position: fixed;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  animation: dropFall linear infinite;
  opacity: 0;
  z-index: 0;
  pointer-events: none;
}

@keyframes dropFall {
  0% {
    transform: translateY(-20px) scaleX(0.8);
    opacity: 0;
  }

  10% {
    opacity: 0.45;
  }

  90% {
    opacity: 0.20;
  }

  100% {
    transform: translateY(100vh) scaleX(0.8);
    opacity: 0;
  }
}

/* Facebook */
.footer_social_links a:nth-child(1) {
  background: linear-gradient(135deg, #1877f2, #3b5998);
}

/* Twitter / X */
.footer_social_links a:nth-child(2) {
  background: linear-gradient(135deg, #1da1f2, #14171a);
}

/* LinkedIn */
.footer_social_links a:nth-child(3) {
  background: linear-gradient(135deg, #0077b5, #00a0dc);
}

/* WhatsApp */
.footer_social_links a:nth-child(4) {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

/* Instagram */
.footer_social_links a:nth-child(5) {
  background: linear-gradient(135deg,
      #feda75,
      #fa7e1e,
      #d62976,
      #962fbf,
      #4f5bd5);
}

.bc-section {
  position: relative;
  width: 100%;
  height: 300px;
  background: #0a1a2e;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  font-family: 'Barlow', sans-serif;
}

.bc-bg {
  position: absolute;
  inset: 0;
  background-image: url(../images/bc_bg.jpg);
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}

/* .bc-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 26, 46, 0.65);
  } */

.bc-content {
  position: relative;
  z-index: 2;
}

.bc-title {
  font-size: 38px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.bc-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  list-style: none;
  margin-bottom: 0px;
}

.bc-breadcrumb li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.bc-breadcrumb a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.bc-breadcrumb a:hover {
  color: #3dd68c;
}

.bc-breadcrumb .sep {
  color: #3dd68c;
  font-size: 13px;
}

.bc-breadcrumb .current {
  font-size: 14px;
  color: #3dd68c;
  font-weight: 600;
}

/* About page */
.about-page {
  width: 100%;
  padding: 60px 0px;
}

.about-img-wrap .img_box img{width: 100%;}
.about-page p{text-align: justify;}

/* Products  */

/* Section */
.prod-detail-section {
  position: relative;
  z-index: 10;
  padding: 80px 0 70px;
}

/* Title */
.pd-title-wrap { margin-bottom: 28px; }

.pd-main-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(20px, 2.8vw, 32px);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  margin-top: 10px;
}

/* Divider */
.pd-divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(33,150,243,0.18), transparent);
  margin: 26px 0;
}

/* Block heading */
.pd-block { margin-bottom: 4px; }

.pd-block-heading {
  font-family: "Source Sans 3", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 0.3px;
  margin-bottom: 14px;
}

/* Paragraph */
.pd-desc {
  font-family: 'Exo 2', sans-serif;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.78;
  margin: 0;
}
.pd-desc strong { color: var(--text-dark); font-weight: 700; }

/* Info list */
.pd-info-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pd-info-list li {
  font-family: 'Exo 2', sans-serif;
  font-size: 14.5px;
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
  line-height: 1.6;
}
.pd-info-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--blue-accent);
  font-size: 16px;
  line-height: 1.4;
}
.pd-info-list li strong { color: var(--text-dark); font-weight: 700; }

/* Spec table */
.pd-spec-table {
  border: 1px solid rgba(33,150,243,0.14);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.pd-spec-row {
  display: flex;
  border-bottom: 1px solid rgba(33,150,243,0.10);
  transition: background 0.2s;
}
.pd-spec-row:last-child { border-bottom: none; }
.pd-spec-row:hover { background: rgba(33,150,243,0.04); }
.pd-spec-key,
.pd-spec-val {
  padding: 11px 16px;
  font-family: 'Exo 2', sans-serif;
  font-size: 14px;
  line-height: 1.5;
}
.pd-spec-key {
  width: 48%;
  font-weight: 600;
  color: var(--text-dark);
  border-right: 1px solid rgba(33,150,243,0.10);
  background: rgba(219,234,254,0.20);
}
.pd-spec-val { color: var(--text-muted); flex: 1; }

/* CTA */
.pd-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* ── Gallery ── */
.pd-gallery-wrap {
  position: sticky;
  top: 100px;
}

/* Main image wrapper */
.pd-main-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255,255,255,0.58);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.92);
  box-shadow: 0 8px 40px rgba(21,101,192,0.12);
  aspect-ratio: 4 / 3;
  margin-bottom: 14px;
}

/* Top gradient line */
.pd-main-img-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1565c0, #16a34a 50%, #06b6d4);
  z-index: 3;
  border-radius: 20px 20px 0 0;
}

/* Main image */
.pd-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.22s ease, transform 0.5s ease;
}
.pd-main-img-wrap:hover .pd-main-img { transform: scale(1.03); }

/* Placeholder — only shows on error */
.pd-main-placeholder {
  position: absolute; inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #dbeafe 0%, #dcfce7 100%);
  pointer-events: none;
}
.pd-main-placeholder span {
  font-family: "Source Sans 3", sans-serif;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(21,101,192,0.50);
}
.pd-no-img .pd-main-img       { display: none; }
.pd-no-img .pd-main-placeholder{ display: flex; }

/* Arrows */
.pd-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.80);
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--blue-deep);
  font-size: 13px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 5;
  transition: all 0.3s;
  box-shadow: 0 3px 12px rgba(0,0,0,0.12);
}
.pd-arrow:hover {
  background: linear-gradient(135deg, #1565c0, #16a34a);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 5px 18px rgba(21,101,192,0.30);
}
.pd-arrow-prev { left: 12px; }
.pd-arrow-next { right: 12px; }

/* Zoom hint */
.pd-zoom-hint {
  position: absolute;
  bottom: 12px; right: 12px;
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.80);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-accent);
  font-size: 13px;
  z-index: 5;
  pointer-events: none;
}

/* Thumbnails row */
.pd-thumbs {
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
  scrollbar-color: rgba(33,150,243,0.25) transparent;
}
.pd-thumbs::-webkit-scrollbar { height: 4px; }
.pd-thumbs::-webkit-scrollbar-track { background: transparent; }
.pd-thumbs::-webkit-scrollbar-thumb {
  background: rgba(33,150,243,0.25);
  border-radius: 4px;
}

/* Single thumbnail */
.pd-thumb {
  width: 74px;
  height: 62px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.70);
  background: linear-gradient(135deg, #dbeafe, #dcfce7);
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  transition: all 0.28s;
  box-shadow: 0 3px 10px rgba(21,101,192,0.08);
}
.pd-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.pd-thumb:hover {
  border-color: rgba(33,150,243,0.50);
  transform: translateY(-3px);
}
.pd-thumb:hover img { transform: scale(1.10); }
.pd-thumb.active {
  border-color: var(--blue-accent);
  box-shadow: 0 4px 16px rgba(21,101,192,0.28);
}
.pd-thumb.active::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(21,101,192,0.08);
  pointer-events: none;
}


/* Gallery */
.gallery-section {
  position: relative;
  z-index: 10;
  padding: 80px 0 70px;
}

/* Each image item */
.gal-item {
  display: block;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(255,255,255,0.90);
  box-shadow: 0 4px 18px rgba(21,101,192,0.10);
  transition: transform 0.32s ease, box-shadow 0.32s ease;
  background: linear-gradient(135deg, #dbeafe, #dcfce7);
  text-decoration: none;
}
.gal-item:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 14px 38px rgba(21,101,192,0.20);
}

.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.gal-item:hover img { transform: scale(1.08); }

/* Overlay on hover */
.gal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(21,101,192,0.30);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.32s ease;
}
.gal-item:hover .gal-overlay { opacity: 1; }

.gal-overlay i {
  font-size: 28px;
  color: #fff;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.3));
}

/* Blog details */
.blog-detail-section {
  position: relative;
  z-index: 10;
  padding: 80px 0 70px;
}

/* Meta row */
.bd-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 20px;
  font-family: "Source Sans 3", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.bd-meta i {
  color: var(--blue-accent);
  margin-right: 6px;
}

/* Title */
.bd-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 30px;
}

/* Featured image */
.bd-featured-img {
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 36px;
  border: 1px solid rgba(255,255,255,0.90);
  box-shadow: 0 8px 36px rgba(21,101,192,0.12);
}
.bd-featured-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

/* Content typography */
.bd-content p {
  font-family: 'Exo 2', sans-serif;
  font-size: 15.5px;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 22px;
}

.bd-content h4 {
  font-family: "Source Sans 3", sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 32px 0 14px;
  padding-left: 14px;
  border-left: 3px solid var(--blue-accent);
}

.bd-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bd-content ul li {
  font-family: 'Exo 2', sans-serif;
  font-size: 15px;
  color: var(--text-muted);
  padding-left: 18px;
  position: relative;
  line-height: 1.65;
}
.bd-content ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--blue-accent);
  font-size: 16px;
  line-height: 1.5;
}
.bd-content ul li strong { color: var(--text-dark); font-weight: 700; }

/* Blockquote */
.bd-quote {
  background: rgba(255,255,255,0.58);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.90);
  border-left: 4px solid var(--blue-accent);
  border-radius: 0 14px 14px 0;
  padding: 22px 26px;
  margin: 30px 0;
  box-shadow: 0 4px 20px rgba(21,101,192,0.08);
  font-family: 'Exo 2', sans-serif;
  font-size: 15px;
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.75;
}
.bd-quote cite {
  display: block;
  margin-top: 10px;
  font-family: "Source Sans 3", sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

/* Tags */
.bd-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}
.bd-tag-label {
  font-family: "Source Sans 3", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.bd-tags a {
  font-family: "Source Sans 3", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--blue-deep);
  background: rgba(33,150,243,0.08);
  border: 1px solid rgba(33,150,243,0.22);
  border-radius: 20px;
  padding: 4px 14px;
  text-decoration: none;
  transition: all 0.25s;
}
.bd-tags a:hover {
  background: linear-gradient(135deg, #1565c0, #16a34a);
  color: #fff;
  border-color: transparent;
}

/* Contact Us */

.contact-section {
  position: relative;
  z-index: 10;
  padding: 80px 0 70px;
}

/* ── Info Card ── */
.ct-info-card {
  background: rgba(255,255,255,0.58);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(255,255,255,0.92);
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: 0 6px 30px rgba(21,101,192,0.10);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.ct-info-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1565c0, #16a34a 50%, #06b6d4);
  border-radius: 20px 20px 0 0;
}

.ct-info-heading {
  font-family: 'Orbitron', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.ct-info-sub {
  font-family: 'Exo 2', sans-serif;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* Info list */
.ct-info-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.ct-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.ct-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(33,150,243,0.10);
  border: 1px solid rgba(33,150,243,0.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-accent);
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}
.ct-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ct-label {
  font-family: "Source Sans 3", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.ct-text span + * ,
.ct-text a,
.ct-text {
  font-family: 'Exo 2', sans-serif;
  font-size: 14px;
  color: var(--text-mid);
  text-decoration: none;
  line-height: 1.55;
}
.ct-text a:hover { color: var(--blue-deep); }

/* Social icons */
.ct-social {
  display: flex;
  gap: 10px;
}
.ct-social a {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(33,150,243,0.07);
  border: 1px solid rgba(33,150,243,0.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-mid);
  font-size: 14px;
  text-decoration: none;
  transition: all 0.28s;
}
.ct-social a:hover {
  background: linear-gradient(135deg, #1565c0, #16a34a);
  color: #fff;
  border-color: transparent;
  transform: translateY(-3px);
}

/* ── Form Card ── */
.ct-form-card {
  background: rgba(255,255,255,0.58);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(255,255,255,0.92);
  border-radius: 20px;
  padding: 38px 36px;
  box-shadow: 0 6px 30px rgba(21,101,192,0.10);
  position: relative;
  overflow: hidden;
}
.ct-form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1565c0, #16a34a 50%, #06b6d4);
  border-radius: 20px 20px 0 0;
}

/* Field */
.ct-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.ct-field label {
  font-family: "Source Sans 3", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.ct-field label span { color: #e53e3e; }

.ct-field input,
.ct-field select,
.ct-field textarea {
  font-family: 'Exo 2', sans-serif;
  font-size: 14px;
  color: var(--text-dark);
  background: rgba(255,255,255,0.75);
  border: 1.5px solid rgba(33,150,243,0.18);
  border-radius: 10px;
  padding: 11px 16px;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  width: 100%;
  resize: none;
}
.ct-field input::placeholder,
.ct-field textarea::placeholder { color: rgba(75,106,138,0.50); }

.ct-field input:focus,
.ct-field select:focus,
.ct-field textarea:focus {
  border-color: var(--blue-accent);
  box-shadow: 0 0 0 3px rgba(33,150,243,0.10);
  background: rgba(255,255,255,0.92);
}
.ct-field select { cursor: pointer; appearance: auto; }

/* Submit button */
.ct-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: linear-gradient(135deg, #1565c0 0%, #16a34a 100%);
  color: #fff;
  font-family: "Source Sans 3", sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 13px 34px;
  border-radius: 40px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(21,101,192,0.28);
  transition: all 0.3s;
}
.ct-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(22,163,74,0.35);
}

/* Map */
.ct-map {
  margin-top: 50px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.92);
  box-shadow: 0 6px 30px rgba(21,101,192,0.10);
  height: 320px;
}
.ct-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  filter: saturate(0.7) brightness(1.05);
}

/* Sitemap */

.sitemap-section {
  position: relative;
  z-index: 10;
  padding: 80px 0 70px;
}
 
.sm-card {
  background: rgba(255,255,255,0.58);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(255,255,255,0.92);
  border-radius: 20px;
  padding: 44px 48px;
  box-shadow: 0 6px 30px rgba(21,101,192,0.10);
  max-width: 600px;
  position: relative;
  overflow: hidden;
}
.sm-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1565c0, #16a34a 50%, #06b6d4);
  border-radius: 20px 20px 0 0;
}
 
.sm-site-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 28px;
}
 
/* Tree list */
.sm-tree,
.sm-tree ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
 
/* Top level */
.sm-tree > li {
  position: relative;
  padding: 5px 0 5px 20px;
}
.sm-tree > li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 14px;
  height: 1.5px;
  background: var(--text-muted);
  opacity: 0.5;
}
/* Vertical line connecting siblings */
.sm-tree > li::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1.5px;
  background: rgba(75,106,138,0.20);
}
.sm-tree > li:last-child::after { display: none; }
 
/* Links */
.sm-tree a {
  font-family: 'Exo 2', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.25s;
  line-height: 1.5;
}
.sm-tree a:hover { color: var(--blue-deep); }
 
/* Sub list */
.sm-tree ul {
  margin-top: 6px;
  padding-left: 20px;
}
.sm-tree ul li {
  position: relative;
  padding: 4px 0 4px 20px;
}
.sm-tree ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 14px;
  height: 1.5px;
  background: var(--text-muted);
  opacity: 0.4;
}
.sm-tree ul li::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0; bottom: 0;
  width: 1.5px;
  background: rgba(75,106,138,0.15);
}
.sm-tree ul li:last-child::after { display: none; }
.sm-tree ul a {
  font-size: 14px;
  color: var(--text-muted);
}
.sm-tree ul a:hover { color: var(--blue-accent); }

/* Market area */


.market-section {
  position: relative;
  z-index: 10;
  padding: 80px 0 70px;
}

/* Each state block */
.ma-block {
  margin-bottom: 36px;
}
.ma-block:last-child { margin-bottom: 0; }

/* State heading */
.ma-state {
  font-family: "Source Sans 3", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--blue-deep);
  margin-bottom: 16px;
  letter-spacing: 0.3px;
}
.ma-state--intl { color: var(--green-accent); }

/* Grid of area items */
.ma-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Single area box — dashed border like reference */
.ma-item {
  font-family: 'Exo 2', sans-serif;
  font-size: 14px;
  color: var(--text-mid);
  padding: 9px 18px;
  border: 1.5px dashed rgba(33,150,243,0.35);
  border-radius: 6px;
  background: rgba(255,255,255,0.50);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: default;
  transition: all 0.25s;
  min-width: 130px;
}
.ma-item:hover {
  border-color: var(--blue-accent);
  background: rgba(255,255,255,0.80);
  color: var(--blue-deep);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(21,101,192,0.10);
}