/* :root{--blue:#006699;}
body{font-family:Inter,Arial;} */
/* .hero-section{min-height:70vh;display:flex;align-items:center;}
.btn-primary{background:var(--blue);border:none;} */

:root {
  --blue: #006699;
  --blue-dark: #004d73;
  --blue-light: #0080bf;
  --green: #009966;
  --green-dark: #007a52;
  --white: #ffffff;
  --text: #1e293b;
  --text-muted: #64748b;
  --bg-light: #f1f5f9;
  --bg-subtle: #f8fafc;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  color: #1e293b;
  overflow-x: hidden;
  margin: -34px 0 0;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}
.navbar-logo {
  height: 48px;
  width: auto;
}

/* ── NAVBAR ── */
#mainNav {
  transition: background 0.3s, padding 0.3s;
  background: transparent;
  padding: 1.25rem 0;
}
#mainNav.scrolled {
  /* background: #0061b0 !important; */
  background: #fff !important;
  padding: 0.6rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

#mainNav .nav-link {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  font-size: 0.875rem;
  transition: color 0.2s;
}
#mainNav.scrolled .nav-link {
  color: rgb(56 132 194);
}
#mainNav .nav-link:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}
#mainNav.scrolled .nav-link:hover {
  color: rgb(56 132 194);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.btn-nav-cta {
  background: #fff;
  color: #0061b0;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.5rem 1.4rem;
  border-radius: 50px;
  border: none;
  transition: background 0.2s, transform 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
#mainNav.scrolled #contact.btn-nav-cta {
  background: #be2230;
  color: #fff;
}
.btn-nav-cta:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: scale(1.03);
  color: #0061b0;
}
.navbar-toggler {
  border: none;
  color: #fff;
}
.navbar-toggler:focus {
  box-shadow: none;
}
#mainNav.scrolled .navbar-toggler{color: rgb(56 132 194);}
.navbar-toggler .bi-list::before, #mainNav.scrolled .navbar-toggler .bi-list::before {font-size: 1.6em !important;}

/* ── WHEEL SVG ICON ── */
.wheel-icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: middle;
  transition: transform 0.5s;
}
.wheel-spin:hover .wheel-icon {
  transform: rotate(180deg);
}

/* ── HERO ── */
#home {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
#heroVideo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 102, 153, 0.55),
    rgba(0, 102, 153, 0.35),
    rgba(0, 102, 153, 0.2)
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.hero-impact-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1.25rem;
  padding: 1.5rem;
  color: #fff;
}
.impact-val {
  font-family: "Montserrat", sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  /* color: var(--green); */
}
.impact-lbl {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.7);
}
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  gap: 0.4rem;
  z-index: 2;
}
@keyframes bounceY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}
.bounce {
  animation: bounceY 1.4s infinite;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-up {
  animation: fadeUp 0.8s ease both;
}

/* ── STATS BAR ── */
.stats-bar {
  background: #0061b0;
}
.stat-val {
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
}
.stat-lbl {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ── SECTION LABEL ── */
.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #0061b0;
  border-bottom: 2px solid var(--green);
  padding-bottom: 2px;
}

/* ── ABOUT ── */
#about {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
#aboutBg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.about-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 102, 153, 0.55),
    rgba(0, 102, 153, 0.4),
    rgba(0, 102, 153, 0.2)
  );
  z-index: 1;
}
.about-content {
  position: relative;
  z-index: 2;
}
.cert-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  backdrop-filter: blur(4px);
}
.vision-card {
  background: rgba(0, 102, 153, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  padding: 1.25rem;
  border-left: 4px solid var(--green);
}
.vision-card.mission {
  border-left-color: #fff;
}

/* ── SERVICES ── */
.service-card {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
  transition: transform 0.3s, box-shadow 0.3s;
  background: #fff;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.13);
}
.service-card-head {
  background: #0061b0;
  padding: 1.1rem 1.3rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.service-icon-wrap {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 0.75rem;
  padding: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-card-body {
  padding: 1.4rem 1.3rem;
}
.cta-card {
  background: linear-gradient(135deg, #0061b0, var(--blue-dark));
  border-radius: 1rem;
  padding: 1.6rem;
  color: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ── CALCULATOR ── */
#calculator {
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
}
#calcBg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.calc-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 102, 153, 0.87);
  backdrop-filter: blur(2px);
  z-index: 1;
}
.calc-content {
  position: relative;
  z-index: 2;
}
.calc-box {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  padding: 2.5rem;
}
input[type="range"]::-webkit-slider-thumb {
  cursor: pointer;
}
.result-card {
  border-radius: 0.75rem;
  padding: 1rem 0.75rem;
  text-align: center;
  border: 1px solid;
}
.result-card.blue {
  background: rgba(0, 102, 153, 0.08);
  border-color: rgba(0, 102, 153, 0.2);
}
.result-card.green {
  background: #fff;
  border-color: rgba(0, 153, 102, 0.3);
}
.result-val {
  font-family: "Montserrat", sans-serif;
  font-size: 1.3rem;
  font-weight: 900;
}
.result-lbl {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

/* ── CONTACT ── */
#contact {
  background: var(--bg-light);
  padding: 5rem 0;
}
.contact-card {
  background: #fff;
  border-radius: 1.25rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  padding: 1.75rem;
}
.contact-icon-box {
  background: rgba(0, 102, 153, 0.1);
  border-radius: 0.75rem;
  padding: 0.55rem;
  display: inline-flex;
}
.wa-card {
  background: linear-gradient(135deg, #0061b0, var(--blue-dark));
  border-radius: 1.25rem;
  padding: 1.5rem;
  color: #fff;
}
.form-control,
.form-control:focus {
  border-radius: 0.75rem;
  border: 1px solid #cbd5e1;
  background: #f8fafc;
  font-size: 0.9rem;
  box-shadow: none;
  outline: none;
}
.form-control:focus {
  border-color: #0061b0;
  box-shadow: 0 0 0 3px rgba(0, 102, 153, 0.15);
}
.btn-submit {
  background: #0061b0;
  color: #fff;
  font-weight: 700;
  border-radius: 0.75rem;
  padding: 0.75rem;
  border: none;
  width: 100%;
  transition: background 0.2s;
}
.btn-submit:hover {
  background: var(--blue-dark);
  color: #fff;
}

/* ── FOOTER ── */
footer {
  background: #0061b0;
  color: #fff;
  padding: 3.5rem 0 1.5rem;
}
footer a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}
footer a:hover {
  color: #fff;
}
.social-btn {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  padding: 0.3rem 0.9rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: background 0.2s;
}
.social-btn:hover {
  background: var(--green);
  color: #fff;
}
.footer-divider {
  border-color: rgba(255, 255, 255, 0.1);
}

/* ── WHATSAPP FAB ── */
.wa-fab {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  background: #25d366;
  color: #fff;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  z-index: 999;
  font-size: 1.6rem;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
  color: #fff;
}

/* ── IMAGES GALLERY ── */
.gallery-section {
  padding: 5rem 0;
  background: var(--bg-light);
}
.gallery-img {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}
.gallery-img:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18);
}
.gallery-overlay-card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
}
.gallery-overlay-card .overlay-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 102, 153, 0.9));
  color: #fff;
  padding: 1rem 1.2rem;
  font-weight: 700;
  font-size: 0.95rem;
}

/* ── UTILITY ── */
.text-blue {
  color: #0061b0 !important;
}
.text-green {
  color: var(--green) !important;
}
.bg-blue {
  background-color: #0061b0 !important;
}
.btn-white-blue {
  background: #fff;
  color: #0061b0;
  font-weight: 700;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  border: none;
  transition: background 0.2s, transform 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.btn-white-blue:hover {
  background: rgba(255, 255, 255, 0.9);
  color: #0061b0;
  transform: scale(1.04);
}
.btn-outline-white {
  background: transparent;
  color: #fff;
  font-weight: 700;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  transition: background 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
/* video-sec */
.video-sec {
  min-height: 80vh;
  display: flex;
  align-items: center;
  /* background: radial-gradient(circle at 30% 50%, #be2230, #000 60%); */
  background: #fff;
}
.our-model {
  background: #fff;
  display: flex;
  align-items: center;
  padding: 5rem 0;
}

/* WHEEL */
.wheel-wrapper {
  position: relative;
  width: 420px;
  height: 420px;
  margin: auto;
}

/* VIDEO WITH SVG MASK */
.video-mask {
  width: 100%;
  height: 100%;
  mask: url(#wheelMask);
  -webkit-mask: url(#wheelMask);
}

.video-mask video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* SVG overlay */
.wheel-svg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* PARTICLE CANVAS */
#particles {
  position: absolute;
  right: -200px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

/* GLOW */
.glow {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: 0 0 80px rgba(25, 164, 99, 0.6);
}
.vehicle-cls {
  border-bottom: 10px solid #126cb6;
  width: 100%;
  border-radius: 10px;
  background: #ffffffd4;
  box-shadow: 0px 0px 1px 1px #fff;
  margin: 10px auto;
}
.vehicle-cls img {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 8px 0 0;
}
@media (max-width: 768px) {
  #home{height: 650px;min-height: auto;}
  #heroVideo{height: 650px;}
  .hero-impact-card {
    display: none;
  }
  #about {
    min-height: auto;
  }
  #particles {
    right: 0;
  }
}
/* Remove extra spacing from CF7 automatic tags */
.wpcf7 p, .wpcf7 br {
    display: none !important;
}

/* Ensure the validation messages still show up correctly */
.wpcf7-not-valid-tip {
    display: block !important;
}