/* =====================================================================
   IGNACORE — Battery Energy Storage Systems
   All visuals are <img> tags. To swap an image, just edit the src
   attribute in index.html — CSS handles sizing/cropping automatically.
   ===================================================================== */

/* ---------- Tokens ---------- */
:root {
  --navy-900: #06112e;
  --navy-800: #0a1834;
  --navy-700: #0d1d44;
  --navy-600: #142654;
  --navy-500: #1d3068;
  --navy-400: #2a3f7e;
  --navy-300: #3b528e;

  --blue-500: #3aa8df;
  --blue-600: #2998d3;
  --blue-700: #1d83be;
  --blue-300: #6cc1e6;
  --blue-100: #d8edf8;

  --ink-900: #0d1733;
  --ink-700: #1f2a44;
  --ink-500: #4b566f;
  --ink-300: #8390a8;
  --ink-100: #d6dbe5;

  --bg-light: #ffffff;
  --bg-soft:  #f3f5f9;
  --bg-card:  #ffffff;

  --line-light: #e5e9f1;
  --line-dark:  rgba(255,255,255,.10);

  --radius-sm: 10px;
  --radius:    14px;
  --radius-lg: 22px;

  --shadow-sm: 0 6px 20px rgba(8,16,38,.06);
  --shadow:    0 14px 38px rgba(8,16,38,.12);
  --shadow-lg: 0 28px 64px -18px rgba(8,16,38,.30);

  --container: 1180px;
  --ease: cubic-bezier(.2,.7,.2,1);
}

/* ---------- Reset ---------- */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-700);
  background: var(--bg-light);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul  { list-style: none; padding: 0; margin: 0; }

h1,h2,h3,h4,h5,h6 { margin: 0 0 .5em; font-weight: 700; line-height: 1.2; letter-spacing: -.005em; color: var(--ink-900); }
h1 { font-size: clamp(2.2rem, 4.6vw, 3.4rem); font-weight: 600; }
h2 { font-size: clamp(1.6rem, 2.8vw, 2.1rem); font-weight: 600; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.1rem; font-weight: 600; }
h5 { font-size: .95rem; font-weight: 600; }
h6 { font-size: .85rem; font-weight: 600; letter-spacing: .04em; }

p  { margin: 0 0 1em; color: var(--ink-500); }

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-video {
  height: 40px;        /* adjust logo size */
  width: auto;
  object-fit: contain;
  display: block;
  background-color: #06112e;
}

/* ---------- Layout ---------- */
.container { width: min(var(--container), 100% - 2.4rem); margin-inline: auto; }
section { position: relative; }

/* ---------- Background image helper ----------
   Any <img class="bg-image"> inside a positioned element fills it
   completely (object-fit: cover) and sits behind content. Pair with
   <div class="bg-overlay">…</div> for tinting. */
.bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.bg-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
}

/* ---------- Section titles ---------- */
.section-title {
  text-align: center;
  font-size: clamp(1.7rem, 2.8vw, 2.1rem);
  margin-bottom: .35em;
  font-weight: 600;
}
.section-title.left  { text-align: left; }
.section-title.light { color: #fff; }
.section-sub {
  text-align: center; color: var(--ink-500);
  font-size: .98rem; margin: 0 auto 2.4rem; max-width: 720px;
}
.section-sub.light { color: #cfd6e6; }
.section-sub.left  { text-align: left; margin-left: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  justify-content: center;
  padding: .8rem 1.5rem;
  border: 1px solid transparent;
  border-radius: 10px;
  font-weight: 500;
  font-size: .92rem;
  white-space: nowrap;
  transition: transform .25s var(--ease), box-shadow .25s, background .25s, color .25s, border-color .25s;
}
.btn-pill { border-radius: 999px; }
.btn-sm   { padding: .55rem 1.1rem; font-size: .82rem; }
.btn svg  { width: 14px; height: 14px; fill: currentColor; } 

.btn-primary {
  background: linear-gradient(180deg, #4ab9ea, #2a9fd6);
  color: #fff;
  box-shadow: 0 6px 18px -4px rgba(58,168,223,.55);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 24px -4px rgba(58,168,223,.6); }

.btn-outline-blue {
  background: #fff;
  color: var(--blue-600);
  border-color: var(--blue-300);
}
.btn-outline-blue:hover { background: var(--blue-100); }

.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.55);
  padding: .7rem 2.2rem;
}
.btn-outline-light:hover { background: #fff; border-color: #fff; }

.btn-dark {
  background: var(--navy-700);
  color: #fff;
  padding: .8rem 1.7rem;
}
.btn-dark:hover { background: var(--navy-800); transform: translateY(-2px); }

.btn-soft {
  background: #fff;
  color: var(--ink-700);
  border-color: var(--line-light);
}
.btn-soft:hover { 
  color: #000;
  background: var(--bg-soft); 
}

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0;
  z-index: 60;
  padding: 1rem 0;
  transition: background .3s var(--ease), padding .25s var(--ease);
  background: transparent;

  /* background: transparent; */

}
.site-header.scrolled {
  background: rgba(8,18,44,.92);
  padding: .65rem 0;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-dark);
}
.nav-wrap {
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  background: linear-gradient(90.02deg, #000000 13.47%, rgba(23, 35, 76, 0.1) 45.75%);

  /* background: rgba(255,255,255,.04); */
  border: none;;
  /* border: 1px solid rgba(255,255,255,.10); */
  border-radius: 999px;
  padding: .55rem 1.4rem;
  backdrop-filter: blur(8px);
/* 
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);

  box-shadow: 0px 0px 6.8px 0px rgba(0, 0, 0, 0.25); */

  box-shadow: 0px 0px 7.8px 0px rgba(195, 209, 255, 0.25);

}
@media (max-width: 768px) {
  .nav-wrap {
    background: linear-gradient(89.82deg, #000000 33.21%, rgba(23, 35, 76, 0.1) 83.16%);

  }
}

/* .logo { color: #fff; font-weight: 700; letter-spacing: .14em; font-size: 1.05rem; } */
.primary-nav ul { display: flex; gap: 1.6rem; }
.primary-nav a {
  color: #e8edf6; font-size: 1rem; font-weight: 400;
  position: relative; padding: .25rem 0;
  transition: color .2s, opacity .2s;
}
.primary-nav a:hover, .primary-nav a.active { color: #fff; }
.primary-nav a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 2px; background: var(--blue-500); border-radius: 2px;
}
.nav-actions { display: flex; align-items: center; gap: .6rem; }
.icon-btn {
  width: 36px; height: 36px;
  background: transparent; border: 0;
  display: grid; place-items: center;
  color: #fff; opacity: .9;
  transition: opacity .2s, transform .2s;
}
.icon-btn:hover { opacity: 1; transform: translateY(-2px); }
.icon-btn svg { width: 18px; height: 18px; fill: currentColor; }

.nav-toggle {
  display: none;
  width: 36px; height: 36px;
  background: transparent; border: 0;
  flex-direction: column; gap: 4px; align-items: center; justify-content: center;
}
.nav-toggle span { width: 18px; height: 2px; background: #fff; border-radius: 2px; transition: transform .25s, opacity .25s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 70vh;
  padding: 7rem 0 4rem;
  color: #fff;
  display: flex; align-items: center;
  isolation: isolate;
  overflow: hidden;
}
.hero-overlay {
  background: linear-gradient(180deg, rgba(7,16,40,.55) 0%, rgba(7,16,40,.85) 75%, var(--navy-800) 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 2rem;
  align-items: center;
  width: 100%;
}
.hero-eyebrow {
  display: inline-block;
  font-size: .9rem;
  font-weight: 400;
  color: #fff;
  letter-spacing: .02em;
  margin-bottom: .5rem;
  opacity: .85;
}
.hero .hero-title { color: #fff; margin-bottom: 1.7rem; font-weight: 600; }

.hero-products {
  display: flex; align-items: flex-end; justify-content: center;
  filter: drop-shadow(0 30px 30px rgba(0,0,0,.4));
}
.hero-products img {
  /* width: 100%; */
  height: auto;
  max-height: 460px;
  object-fit: contain;
  border-radius: var(--radius);
}

---------- RELIABLE BACKUP ----------
/* .reliable {
  position: relative;
  padding: 6rem 0;
  color: #fff;
  background: var(--navy-800);
  isolation: isolate;
  overflow: hidden;
 
}

.reliable-grid {
  z-index: 2;
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 3rem; align-items: center;
} */
.reliable-overlay {
  z-index: 1;
  background: linear-gradient(181.05deg, rgba(0, 0, 0, 0) -11.04%, #11182D 94.63%),
linear-gradient(180deg, #17254C 2.34%, rgba(0, 0, 0, 0) 50%);

  /* background: linear-gradient(90deg, rgba(8,16,40,.95) 0%, rgba(8,16,40,.55) 50%, rgba(8,16,40,.85) 100%); */
}
.reliable {
  position: relative;
  padding: 6rem 0;
  color: #fff;
  /* background: var(--navy-800); */
  background: linear-gradient(180deg, #DEE6FF 4.95%, #FFF 100%);
  overflow: hidden;
  height: auto;
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 3;
 
}
.hero-wave svg {
  display: block;
  width: 100%;
  height: 120px;
}
.reliable-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.reliable-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(181.05deg, rgba(0, 0, 0, 0) -11.04%, #11182D 94.63%),
linear-gradient(180deg, #17254C 2.34%, rgba(0, 0, 0, 0) 50%);

  /* background: linear-gradient(
      90deg,
      rgba(8,16,40,.95) 0%,
      rgba(8,16,40,.55) 50%,
      rgba(8,16,40,.85) 100%
  ); */
  z-index: 1;
}

.reliable-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: center;
  height: 90vh;
  /* padding-top: 50px;
  padding-bottom: 200px; */
}
.reliable-copy h2 { color: #fff; margin-bottom: 1.1rem; font-weight: 500; }
.reliable-copy p  { color: #cfd6e6; max-width: 540px; font-size: .94rem; }

/* .reliable-bg-video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
} */

/* ---------- COMMITMENT ---------- */
.commitment {
  background: var(--navy-800);
  color: #fff;
  padding: 4rem 0 6rem;
  position: relative;
 
  isolation: isolate;
  overflow: hidden;
}

.commit-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}
.commit-image {
  height: 360px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.commit-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.commit-copy h2 { color: #fff; margin-bottom: 1rem; font-weight: 500; }
.commit-lead { color: #cfd6e6; margin-bottom: 1.6rem; font-size: .94rem; }
.commit-features { display: grid; gap: 1.4rem; }
.commit-features li {
  display: grid; grid-template-columns: 44px 1fr; gap: 1rem; align-items: start;
}
/* .cf-icon {
  width: 46px; height: 44px;
  display: grid; place-items: center;
 
} */
.cf-icon{
  position: relative;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cf-icon img{
  position: absolute;
  width: 100%;
  height: 100%;
  transition: opacity .3s ease;
}

.icon-default{
  opacity: 1;
}

.icon-hover{
  opacity: 0;
}

/* Hover on the entire list item */
.commit-features li:hover .icon-default{
  opacity: 0;
}

.commit-features li:hover .icon-hover{
  opacity: 1;
}
/* .cf-icon svg{
  padding: 0 5px;
}
.cf-icon svg:hover { stroke: #7DFF6E; fill: #7dff6e !important; ;  } */
.commit-features h4 { color: #fff; margin-bottom: .25rem; font-weight: 500; }
.commit-features p  { color: #b8c1d4; font-size: .87rem; margin: 0; line-height: 1.55; }

/* ---------- BLEED SECTIONS (full-width image bands w/ overlays) ---------- */
.bleed {
  position: relative;
  min-height: 480px;
  display: flex; align-items: center;
  color: #fff;
  isolation: isolate;
  overflow: hidden;
}
.bleed-overlay {
  background: linear-gradient(90deg, rgba(8,16,40,.75) 0%, rgba(8,16,40,.35) 60%, rgba(8,16,40,.75) 100%);
}
.portable-overlay   { background: linear-gradient(90deg, rgba(8,16,40,.75) 0%, rgba(8,16,40,.05) 50%, rgba(8,16,40,.4) 100%); }
.residential-overlay{ background: linear-gradient(90deg, rgba(8,16,40,.65) 0%, rgba(8,16,40,.15) 100%); }
.commercial-overlay { background: linear-gradient(90deg, rgba(8,16,40,.45) 0%, rgba(8,16,40,.65) 100%); }
.industrial-overlay { 
  background: linear-gradient(90deg, rgba(23, 35, 76, 0.95) 4.05%, rgba(0, 0, 0, 0) 73.26%),
linear-gradient(180deg, rgba(0, 0, 0, 0) 57.02%, #172242 97.47%),
linear-gradient(78.41deg, rgba(23, 35, 76, 0) 47.89%, #17234C 94.65%);

  /* background: linear-gradient(90deg, rgba(8,16,40,.85) 0%, rgba(8,16,40,.25) 60%, rgba(8,16,40,.55) 100%);  */
}
.bg-overlay.subtle  { background: linear-gradient(180deg, transparent 50%, rgba(8,16,40,.7) 100%); }

.bleed-content {
  position: relative; z-index: 1;
  padding: 2rem 1.4rem;
  width: 100%;
  /* max-width: 540px; */
}
.bleed-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.bleed-content > div {
  flex: 1;
}

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

@media (max-width: 768px) {
  .bleed-content {
    flex-direction: column;
    text-align: center;
  }

  .bleed-content > div:first-child {
    order: 2; /* text goes bottom */
  }

  .bleed-content > div:last-child {
    order: 1; /* image goes top */
  }
}
.bleed-content h2, .banner-content h2 { color: #fff; font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 500; margin-bottom: .5rem; }
.bleed-content h4, .banner-content h4 { color: #fff; font-weight: 500; margin-bottom: .25rem; }
.bleed-content p , .banner-content p { color: #d6deec; margin-bottom: 1.4rem; }
.bleed-content.content-right { margin-left: auto; }
.bleed-content.content-port  { margin-left: auto; padding-right: 4rem; }

.bleed-portable    { min-height: 540px; }
.bleed-residential { min-height: 440px; }
.bleed-residential .bleed-content { padding-left: max(2rem, calc((100vw - var(--container))/2 + 1rem)); }
.bleed-commercial  { min-height: 440px; }
.bleed-commercial .bleed-content  { padding-right: max(2rem, calc((100vw - var(--container))/2 + 1rem)); text-align: right; }
.bleed-industrial  { min-height: 520px; }

/* ---------- PRODUCTS & SOLUTIONS ---------- */
.ps-section {
  position: relative;
  padding: 5rem 0 4rem;
  color: #fff;
  isolation: isolate;
  overflow: hidden;
  
}
.ps-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(357.14deg, rgba(0, 0, 0, 0) -12.34%, #192240 80.19%);
  /* background: linear-gradient(180deg, rgba(8,16,40,.95) 0%, rgba(8,16,40,.85) 50%, rgba(8,16,40,.96) 100%); */
  z-index: 1;
}
.ps-tabs {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 0;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  padding: 6px;
  width: fit-content;
  margin: 1.5rem auto 2.4rem;
}
.ps-section .container {
  position: relative;
  z-index: 2;
}
.ps-tab {
  background: transparent; border: 0; color: #cfd6e6;
  padding: .65rem 1.6rem;
  border-radius: 999px;
  font-size: .9rem; font-weight: 500;
  transition: background .25s, color .25s;
}
.ps-tab.active { background: #fff; color: var(--ink-900); box-shadow: 0 4px 14px rgba(0,0,0,.18); }
/* .ps-card {
  max-width: 760px; margin: 0 auto;
  background: rgba(26, 26, 26, 0.14);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius-lg);
  padding: 2rem 2.4rem;
  text-align: center;
  box-shadow: -63.23px 63.23px 63.23px 0px rgba(255, 255, 255, 0.1) inset;

box-shadow: 63.23px -63.23px 63.23px 0px rgba(194, 194, 194, 0.1) inset;

backdrop-filter: blur(126.46611022949219px);

} */
.ps-card {
  max-width: 760px;
  margin: 0 auto;
  padding: 2rem 2.4rem;
  text-align: center;
  border-radius: 24px;
  background: rgba(26, 26, 26, 0.14);
  box-shadow:
        -63.23px 63.23px 63.23px 0 rgba(255, 255, 255, 0.10) inset,
         63.23px -63.23px 63.23px 0 rgba(194, 194, 194, 0.10) inset;

    backdrop-filter: blur(5.466px);
    -webkit-backdrop-filter: blur(12.466px);

  overflow: hidden;
  position: relative;
}
/* .ps-card::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:50%;

  background: linear-gradient(
      180deg,
      rgba(255,255,255,.22),
      rgba(255,255,255,0)
  );

  pointer-events:none;
} */
.ps-card h3 { color: #fff; font-weight: 500; margin-bottom: .8rem; }
.ps-card p  { color: #c8d1e2; margin: 0; font-size: .92rem; }

/* ---------- PRODUCT GRID ---------- */
.prod-cat { background: var(--bg-soft); padding: 4rem 0 5rem; }
.prod-cat-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem;
  margin-bottom: 2rem;
}
.pc-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform .3s var(--ease), box-shadow .3s;
}
.pc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.pc-img {
  height: 170px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 1rem;
  background-color: #eef1f7;
}
.pc-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.pc-badge {
  display: inline-block;
  font-size: .75rem; font-weight: 500;
  background: var(--bg-soft);
  color: var(--ink-700);
  padding: .2rem .7rem;
  border-radius: 6px;
  margin-bottom: .5rem;
}
.pc-card h4 { font-size: .95rem; margin-bottom: .3rem; }
.pc-card p  { font-size: .82rem; color: var(--ink-500); margin: 0; }
.prod-cat-cta { text-align: center; }

.home_best_selling{
  background: linear-gradient(180deg, #DEE6FF 4.95%, #FFF 100%);
}

.product-row{
  display:flex;
  flex-wrap:wrap;
}

.product-card{
  overflow:hidden;
  border-radius: 19.326px;
  border-bottom: 2.899px solid #D8D8D8;
  background: rgba(212, 236, 255, 0.10);
  box-shadow: 0 3.865px 3.865px 0 rgba(0, 0, 0, 0.25),
              17.999px -17.999px 17.999px 0 rgba(161, 168, 194, 0.10) inset,
              -17.999px 17.999px 17.999px 0 rgba(255, 255, 255, 0.10) inset;
  backdrop-filter: blur(18px);
  position:relative;
  display:flex;
  flex-direction:column;
  height:100%;
  position:relative;
  
}

.card-img-wrap{
  display:flex;
  align-items:center;
  justify-content:center;
  padding:0;
  position:relative;
}

.product-body{
  padding:1rem 1.25rem;
  display:flex;
  flex-direction:column;
  flex:1;
}

.product-name{
  font-size:20px;
  font-weight:700;
  margin:5px 0;
  padding-top: 10px;
}
.product-price{
  font-size:17px;
  font-weight:700;
  padding-top: 5px;
  padding-bottom: 5px;
}
.product-name:hover{
  text-decoration: underline;
  
}

.product-desc{
  font-size:12px;
  margin:15px 0;
  line-height:1.5;
  padding-bottom: 10px;
}

.learn-more{
  font-size:12px;
  color:#2D7DD2;
  text-decoration:none;
  margin-top:2px;
}

.learn-more:hover{
  text-decoration:underline;
}

/* .btn-order{
  margin-top:auto;
  padding-top:12px;
}

.btn-order a{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:7px;
  width:100%;
  padding:9px 14px;
  color:#111;
  font-size:13px;
  font-weight:500;
  text-decoration:none;
  border-radius: 16px;
  border-bottom: 1.933px solid #2FB9F4;
  background: linear-gradient(90deg, rgba(217, 217, 217, 0.10) 0%, rgba(115, 115, 115, 0.10) 100%);
  box-shadow: 0 3.865px 3.865px 0 rgba(0, 0, 0, 0.25), 11.257px -11.257px 11.257px 0 rgba(165, 165, 165, 0.10) inset, -11.257px 11.257px 11.257px 0 rgba(255, 255, 255, 0.10) inset;
  backdrop-filter: blur(11.256744384765625px);
}

.btn-order a:hover{
  background:#f5f5f3;
  border-color:#bbb;
} */

.product-actions{
  margin-top: auto;
  padding-top: 12px;
  display: flex;
  gap: 10px;
}

.btn-order,.btn-add-cart {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 16px;
  transition: all .3s ease;
}
.btn-order{
  color: #111;
  background: linear-gradient(
    90deg,
    rgba(217,217,217,.10) 0%,
    rgba(115,115,115,.10) 100%
  );
  border-bottom: 1.933px solid #2FB9F4;
  box-shadow:
  0 3.865px 3.865px rgba(0,0,0,.25),
  11.257px -11.257px 11.257px rgba(165,165,165,.10) inset,
  -11.257px 11.257px 11.257px rgba(255,255,255,.10) inset;
backdrop-filter: blur(11.2567px);
}
.btn-add-cart{
  background: rgba(23, 35, 76, 1);
  border: 1.933px solid rgba(23, 35, 76, .8);
  box-shadow: 11.26px -11.26px 11.26px 0px rgba(165, 165, 165, 0.1) inset;
  backdrop-filter: blur(22.51348876953125px);

  box-shadow: 0px 3.87px 3.87px 0px rgba(0, 0, 0, 0.25);
  color: #fff;
}

.btn-order:hover{
  background: #f5f5f3;
  border-color: #bbb;
}
.btn-add-cart:hover{
  background: rgba(23, 35, 76, .8);
  border-color: rgba(23, 35, 76, .6);
}

/* Mobile */
@media (max-width: 767px){
  .product-actions{
      flex-direction: column;
  }

  .product-actions a{
      width: 100%;
  }
}

.card-img-wrap{
  position:relative; 
}

/* .pac-badge{
  position:absolute;
  left:0;
  bottom:-12px; 
  display:inline-flex;
  width:auto;         
  background:#F5A623;
  color:#7A4E00;
  font-size:11px;
  font-weight:500;
  padding:4px 14px;

  border-top-right-radius:6px;
  border-bottom-right-radius:6px;
  z-index:5;
  clip-path: polygon(0 0, 92% 0, 100% 50%, 92% 100%, 0 100%);
}

.pac-badge span{
  display:inline-block;
  transform:skewX(12deg);
} */
.pac-badge {
  position: absolute;
  left: 0;
  bottom: -12px; 
  z-index: 5;

  /* Width reduced to 115px, height stays 38px */
  width: 115px;
  height: 38px;
  background: rgba(255, 195, 13, 1);
  color: #fff;

  font-size: 14px;
  font-weight: 700;
  
  display: flex;
  align-items: center;
  padding-left: 14px; /* Slightly less padding to maximize text space */
  box-sizing: border-box;

  /* Recalculated path for 115px width (Curves begin shifting left at X=115) */
  clip-path: path("M0 0 H115 V15 C115 28 104 38 89 38 H0 Z");
}
  /* Scaled down mathematical path to perfectly match 140px x 38px */
  
/* .pac-blue-badge{
  position:absolute;
  left:0;
  bottom:-12px; 
  display:inline-flex;
  width:auto;         
  background: #2FB9F4;
  color:#fff;
  font-size:11px;
  font-weight:500;
  padding:4px 14px;

  border-top-right-radius:6px;
  border-bottom-right-radius:6px;
  z-index:5;
  clip-path: path("M0 0 H170 V22 C170 38 158 48 142 48 H0 Z");
}

.pac-blue-badge span{
  display:inline-block;
  transform:skewX(12deg);
} */
.pac-blue-badge {
  position: absolute;
  left: 0;
  bottom: -12px; 
  z-index: 5;

  width: 140px;
  height: 38px;
  background: #28B8F4;
  color: #ffffff;

  font-size: 14px;
  font-weight: 700;
  
  /* Adjusted alignment for the smaller scale */
  display: flex;
  align-items: center;
  padding-left: 16px;
  box-sizing: border-box;

  /* Scaled down mathematical path to perfectly match 140px x 38px */
  clip-path: path("M0 0 H140 V15 C140 28 129 38 114 38 H0 Z");
}
.title{
  padding-bottom:15px;
}

/* ---------- NEW ARRIVALS ---------- */
.arrivals { background: #fff; padding: 2rem 0; }
.arr-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.arr-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s;
}
.arr-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.arr-img {
  height: 180px;
  position: relative;
  overflow: hidden;
  background-color: #f1f4fa;
}
.arr-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.arr-tag {
  position: absolute; top: 0; left: 0; z-index: 1;
  font-size: .72rem; font-weight: 500;
  color: #fff;
  padding: .25rem .7rem;
  border-radius: 0 8px 8px 0;
}
.tag-new  { background: #d1832b; }
.tag-best { background: #1f7ec6; }
.arr-body { padding: 1.2rem 1.4rem 1.6rem; text-align: center; }
.arr-body h4 { font-size: .92rem; margin-bottom: .35rem; }
.arr-body p  { font-size: .8rem; color: var(--ink-500); min-height: 50px; margin-bottom: 1rem; }

.arr-arrows { display: flex; justify-content: center; gap: .5rem; margin-top: 1rem; }
.circle-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line-light);
  background: #fff;
  color: var(--ink-500);
  display: grid; place-items: center;
  font-size: .8rem;
  transition: background .2s, color .2s, transform .2s;
}
.circle-btn:hover { transform: scale(1.05); }
.circle-btn.solid {
  background: var(--blue-500);
  color: #fff;
  border-color: var(--blue-500);
}
.circle-btn.ghost { background: #fff; }

/* ---------- LOAD CALCULATOR ---------- */
.lc-section {
  position: relative;
  padding: 5rem 0;
  color: #fff;
  isolation: isolate;
  overflow: hidden;
  
  background: url("../images/calculator_bg.png") center top / cover no-repeat fixed;
}
.lc-overlay { 
  background: linear-gradient(182deg, #17234C -1.37%, rgba(0, 0, 0, 0.00) 111.9%);
  /* background: linear-gradient(180deg, rgba(8,16,40,.92), rgba(8,16,40,.96));  */
}
.lc-wrap {
  display: grid; grid-template-columns: 280px 1fr;
  gap: 1rem;
  background: rgba(20,38,84,.45);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 1.2rem;
  backdrop-filter: blur(6px);
}
.lc-cats { display: flex; flex-direction: column; gap: .5rem; }
.lc-cat {
  display: flex; align-items: center; gap: .7rem;
  padding: .8rem 1rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 10px;
  color: #cfd6e6;
  font-size: .88rem;
  text-align: left;
  transition: background .2s, border-color .2s, color .2s;
}
.lc-cat svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.lc-cat:hover { background: rgba(255,255,255,.07); color: #fff; }
.lc-cat.active { background: rgba(74,185,234,.14); border-color: rgba(74,185,234,.45); color: #fff; }
.lc-cat-w { margin-left: auto; color: #99a4bf; font-size: .8rem; }

.lc-items {
  background: rgba(8,18,44,.55);
  border-radius: var(--radius);
  padding: 1.4rem;
  display: flex; flex-direction: column; gap: 1rem;
  min-height: 360px;
}
.lc-list { display: flex; flex-direction: column; gap: .6rem; flex: 1; }
.lc-item {
  display: grid; grid-template-columns: 1fr auto;
  align-items: center; gap: 1rem;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 10px;
  padding: .9rem 1rem;
  color: #e1e7f3;
  font-size: .9rem;
}
.lc-stepper { display: flex; align-items: center; gap: .5rem; }
.lc-stepper button {
  width: 28px; height: 28px;
  border-radius: 6px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff; font-size: 1rem;
  display: grid; place-items: center;
}
.lc-stepper button:hover { background: rgba(74,185,234,.25); }
.lc-stepper input {
  width: 38px; padding: .25rem;
  background: transparent; border: 0; color: #fff; text-align: center;
  font: inherit; outline: none;
}

.lc-foot {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
  background: rgba(255,255,255,.04);
  border-radius: 10px;
  padding: .9rem 1rem;
  border: 1px solid rgba(255,255,255,.06);
}
.lc-total { display: grid; gap: .15rem; padding-right: 1rem; border-right: 1px solid var(--line-dark); }
.lc-total span { color: #b3bdd3; font-size: .8rem; }
.lc-total strong { color: #fff; font-size: 1.05rem; font-weight: 600; }
.lc-running { display: flex; align-items: center; gap: .8rem; flex-wrap: wrap; }
.lc-running-label { color: #cfd6e6; font-size: .85rem; flex: 1 1 100%; }
.lc-pct { display: flex; gap: 0; }
.lc-pct button {
  background: transparent; border: 1px solid rgba(255,255,255,.15);
  color: #cfd6e6;
  padding: .4rem .9rem; font-size: .8rem;
}
.lc-pct button:first-child { border-radius: 8px 0 0 8px; }
.lc-pct button:last-child  { border-radius: 0 8px 8px 0; border-left: 0; }
.lc-pct button:not(:first-child) { border-left: 0; }
.lc-pct button.active { background: #fff; color: var(--ink-900); border-color: #fff; }

/* ---------- BENEFITS ---------- */
.benefits {
  position: relative;
  padding: 5rem 0;
  color: #fff;
  isolation: isolate;
  overflow: hidden;
}
.benefits-overlay { background: linear-gradient(180deg, rgba(8,16,40,.92), rgba(8,16,40,.96)); }
.ben-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem;
}
.ben {
  background: rgba(54, 68, 114, 0.2);
  border-bottom: 2px solid rgba(47, 185, 244, 1);
  /* background: rgba(255,255,255,.04); */
  /* border: 1px solid rgba(255,255,255,.08); */
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem;
  transition: transform .3s var(--ease), background .3s;
}
.ben:hover { transform: translateY(-4px); background: rgba(255,255,255,.07); }
.ben-ico {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  margin-bottom: 1rem;
}
.ben-ico svg { width: 35px; height: 35px;  fill: none; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }
.ben h4 { color: #fff; font-weight: 500; margin-bottom: .4rem; }
.ben p  { color: #b3bdd3; font-size: .84rem; line-height: 1.55; margin: 0; }

/* ---------- DUAL SHOWCASE ---------- */
.showcase { display: grid; grid-template-columns: 1fr 1fr; }
.bleed-show-res, .bleed-show-port { min-height: 360px; }
.bleed-show-port .bleed-content { color: #fff; padding-right: max(2rem, calc((100vw - var(--container))/2 + 1rem)); padding-left: 1.4rem; max-width: 540px; }

/* ---------- COMPARE ESS vs DIESEL ---------- */
.compare {
  position: relative;
  padding: 5rem 0;
  color: #fff;
  isolation: isolate;
  overflow: hidden;
  margin-top: -2px;
}
.compare-overlay { 
  background: linear-gradient(0deg, rgba(23, 35, 76, 0.85) 0%, rgba(23, 35, 76, 0.85) 100%);
  /* background: linear-gradient(180deg, rgba(8,16,40,.94), rgba(8,16,40,.97));  */
}
.kw-tabs {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 0;
  margin: 1.5rem auto 2rem;
  width: fit-content;
}
.kw-tab {
  background: transparent;
  color: #cfd6e6;
  border: 1px solid rgba(255,255,255,.18);
  padding: .55rem 1.6rem;
  font-size: .88rem;
}
.kw-tab:first-child { border-radius: 999px 0 0 999px; }
.kw-tab:last-child  { border-radius: 0 999px 999px 0; }
.kw-tab:not(:first-child) { border-left: 0; }
.kw-tab.active {
  background: linear-gradient(180deg, #4ab9ea, #2a9fd6);
  color: #fff;
  border-color: transparent;
}

.cmp-wrap {
  display: grid; grid-template-columns: 200px 1fr;
  gap: 1rem;
  background: rgba(20,38,84,.45);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 1rem;
}
.cmp-side { display: flex; flex-direction: column; gap: .4rem; padding: .4rem 0; }
.cmp-side-tab {
  background: transparent;
  border: 1px solid transparent;
  color: #cfd6e6;
  padding: .8rem 1rem;
  border-radius: 8px;
  text-align: left;
  font-size: .9rem;
  position: relative;
}
.cmp-side-tab.active {
  background: rgba(255,255,255,.06);
  color: #fff;
  border-color: rgba(255,255,255,.12);
}
.cmp-side-tab.active::before {
  content: ""; position: absolute; left: -2px; top: 25%; bottom: 25%; width: 3px;
  background: var(--blue-500); border-radius: 4px;
}
.cmp-table {
  background: rgba(8,18,44,.55);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
  overflow: hidden;
  
}
.cmp-table .cmp-row:not(.cmp-head){
  min-height:90px;
}
.cmp-row {
  display: grid; grid-template-columns: 1.1fr 1.4fr 1.2fr;
  gap: 1.2rem;
  padding: 1.1rem 1.4rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
  font-size: .87rem;
  color: #d1d8ea;
}
.cmp-row:last-child { border-bottom: 0; }
.cmp-row > div:first-child { color: #fff; font-weight: 500; }
.cmp-head { background: rgba(255,255,255,.04); color: #fff; font-weight: 500; }
.cmp-head > div { color: #fff !important; }
.cmp-cta { text-align: center; margin-top: 1.6rem; }

/* ---------- USER STORIES ---------- */
/* .stories { background: #fff; padding: 4rem 0 5rem; }
.stories-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1.5rem;
}
.stories-head .section-title { margin: 0; }
.stories-arrows { display: flex; gap: .5rem; } */
/* .story-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
}
.story-card {
  position: relative;
  aspect-ratio: 4/4.4;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform .3s var(--ease);
} */
.story-card:hover { transform: translateY(-4px); }
/* .story-card > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.story-play {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(74,185,234,.95);
  border: 0;
  color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 10px 24px rgba(0,0,0,.4);
  transition: transform .25s, background .25s;
}
.story-play svg { width: 22px; height: 22px; fill: currentColor; }
.story-card:hover .story-play { transform: translate(-50%, -50%) scale(1.1); }
.story-cap {
  position: absolute; left: 1rem; right: 1rem; bottom: 1rem;
  background: rgba(8,18,44,.7);
  backdrop-filter: blur(6px);
  color: #fff;
  padding: .7rem .9rem;
  border-radius: 10px;
  font-size: .8rem;
}
.story-cap p { color: #fff; margin: 0; line-height: 1.4; } */
.stars { color: #ffb547; letter-spacing: 2px; margin-top: .25rem; font-size: .85rem; }

/* ---------- DEALER ---------- */
.dealer {
  position: relative;
  padding: 5rem 0 6rem;
  color: #000 !important;
  isolation: isolate;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 8.8px 0 rgba(47, 185, 244, 0.50), 63.233px -63.233px 63.233px 0 rgba(194, 194, 194, 0.10) inset, -63.233px 63.233px 63.233px 0 rgba(255, 255, 255, 0.10) inset;
  backdrop-filter: blur(63.233055114746094px);
  padding:15px;
}
.dealer-overlay { background: linear-gradient(180deg, rgba(8,16,40,.92), rgba(8,16,40,.95)); }
.dealer-wrap {
  display: grid; grid-template-columns: 220px 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
.dealer-side {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 1rem;
  display: flex; flex-direction: column; gap: .25rem;
}
.dealer-side h5 {
  background: rgba(255,255,255,.06);
  margin: -.5rem -.5rem .5rem;
  padding: .8rem;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  color:#fff;
}
.dealer-side button {
  background: transparent;
  border: 0;
  color: #cfd6e6;
  text-align: left;
  padding: .7rem 1rem;
  border-radius: 8px;
  font-size: .9rem;
  position: relative;
}
.dealer-side button:hover { background: rgba(255,255,255,.05); color: #fff; }
.dealer-side button.active { background: rgba(255,255,255,.05); color: #fff; }
.dealer-side button.active::before {
  content: ""; position: absolute; left: 6px; top: 25%; bottom: 25%; width: 2px;
  background: #fff; border-radius: 2px;
}
.dealer-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
  align-content: start;
}
.dealer-card {
  background: #fff;
  color: var(--ink-700);
  border-radius: var(--radius);
  padding: 1.2rem 1.4rem;
  font-size: .85rem;
  box-shadow: var(--shadow-sm);
}
.dealer-card p { margin: 0 0 .35rem; color: var(--ink-700); }
.dealer-card p strong { color: var(--ink-900); font-weight: 500; }

/* ---------- WHY CHOOSE ---------- */
.why { background: #fff; padding: 5rem 0; }
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
  margin-top: 1.5rem;
}
.why-item { text-align: center; padding: 1rem; }
.why-ico {
  width: 78px; height: 78px;
  margin: 0 auto 1rem;
  display: grid; place-items: center;
}
.why-ico svg {
  width: 64px; height: 64px;
  stroke: var(--ink-900);
  fill: none;
  stroke-width: 1.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.why-item h4 { color: var(--ink-900); font-weight: 500; }

/* ---------- DISTRIBUTORS ---------- */
.distributors { background: #fff; padding: 0 0 4rem; }
.dist-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem;
}
.dist-card {
  background: var(--navy-800);
  color: #fff;
  border-radius: var(--radius);
  padding: 2rem 2rem 1.6rem;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.dist-card .dist-map {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .12;
  z-index: -1;
}
.dist-card h3 { color: #fff; font-weight: 500; line-height: 1.3; margin-bottom: 1.6rem; max-width: 360px; position: relative; z-index: 1; }
.dist-info { font-size: .85rem; position: relative; z-index: 1; }
.dist-info h6 { color: #fff; margin-bottom: .8rem; }
.dist-info p  { color: #cfd6e6; margin: 0 0 .35rem; font-size: .82rem; }
.dist-info strong { color: #fff; font-weight: 500; }

.dist-image {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 360px;
  position: relative;
}
.dist-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute; inset: 0;
}

/* ---------- OFFICES ---------- */
.offices { background: #fff; padding: 1rem 0 5rem; }
.off-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem;
}
.off-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  padding: 0 0 1.4rem;
  text-align: center;
  transition: transform .3s var(--ease), box-shadow .3s;
}
.off-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.off-img {
  height: 130px;
  position: relative;
  margin-bottom: 2rem;
  overflow: hidden;
}
.off-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.off-pin {
  position: absolute; left: 50%; bottom: -22px; transform: translateX(-50%);
  width: 44px; height: 44px;
  background: var(--navy-800);
  color: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 6px 20px rgba(8,16,40,.4);
  z-index: 1;
}
.off-pin svg { width: 22px; height: 22px; fill: currentColor; }
.off-card h3 { font-size: 1.1rem; font-weight: 500; margin-bottom: .4rem; padding: 0 1rem; }
.off-card h6 {
  font-size: .8rem; letter-spacing: .12em; color: var(--ink-700);
  margin-bottom: .6rem; padding: 0 1rem;
}
.off-card p { font-size: .82rem; color: var(--ink-500); padding: 0 1.4rem; line-height: 1.55; }

/* ---------- PROJECT REFERENCE ---------- */
.ref { background: #fff; padding: 3rem 0 4rem; }
.ref-grid {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 1rem;
  margin-top: 1.5rem;
}
.ref-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  display: block;
  color: #fff;
  isolation: isolate;
  transition: transform .3s var(--ease);
}
.ref-card:hover { transform: translateY(-3px); }
.ref-large { min-height: 480px; }
.ref-card .ref-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -1;
  transition: transform .6s var(--ease);
}
.ref-card:hover .ref-img { transform: scale(1.05); }
.ref-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(8,16,40,.88) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.4rem 1.6rem;
}
.ref-overlay h3, .ref-overlay h4 { color: #fff; font-weight: 500; margin-bottom: .5rem; }
.ref-large .ref-overlay h3 { font-size: 1.4rem; }
.ref-overlay p { color: #d1d8ea; font-size: .82rem; margin: 0 0 .6rem; max-width: 440px; }
.ref-meta { color: #aebbd6; font-size: .76rem; letter-spacing: .04em; }
.ref-stack { display: grid; grid-template-rows: 1fr 1fr 1fr; gap: 1rem; }
.ref-stack .ref-card { min-height: 150px; }
.ref-cta { text-align: center; margin-top: 2rem; }
.more-link {
  color: var(--ink-500);
  font-size: .9rem;
  position: relative;
  padding-bottom: 2px;
  border-bottom: 1px solid var(--ink-300);
  transition: color .2s, border-color .2s;
}
.more-link:hover { color: var(--blue-600); border-color: var(--blue-500); }

/* ---------- HELP ---------- */
.help {
  position: relative;
  padding: 5rem 0;
  color: #fff;
  isolation: isolate;
  overflow: hidden;
}
.help-overlay { background: linear-gradient(180deg, rgba(8,16,40,.7), rgba(8,16,40,.85)); }
.help-grid {
  display: grid; grid-template-columns: 1fr 1.05fr; gap: 3rem; align-items: center;
}
.help-title {
  color: #fff;
  font-size: clamp(2.2rem, 4.4vw, 3.2rem);
  letter-spacing: .01em;
  margin: 0;
  /* font-family: "Sofia Sans"; */
  font-style: normal;
  font-weight: 400;
  text-transform: uppercase;
}
.help-form {
  background: rgba(20,38,84,.4);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius-lg);
  padding: 1.8rem 2rem;
  backdrop-filter: blur(10px);
}
.help-form h4 { color: #fff; font-weight: 500; margin-bottom: 1.4rem; }
.hf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-bottom: 1rem; }
.hf-field {
  position: relative;
  display: block;
  padding-top: .5rem;
}
.hf-field input, .hf-field textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.25);
  color: #fff;
  padding: .6rem 0;
  font: inherit;
  font-size: .9rem;
  outline: none;
  transition: border-color .25s;
  border-radius: 0 !important;
}
.hf-field input:focus, .hf-field textarea { border-color: var(--blue-500); }
.hf-field span {
  position: absolute; left: 0; top: 1rem;
  color: #aebbd6;
  font-size: .9rem;
  pointer-events: none;
  transition: top .2s, font-size .2s, color .2s;
}
.hf-field input:focus + span,
.hf-field input:not(:placeholder-shown) + span {
  top: -.2rem;
  font-size: .72rem;
  color: var(--blue-300);
}
.hf-field textarea:focus + span,
.hf-field textarea:not(:placeholder-shown) + span {
  top: -.2rem;
  font-size: .72rem;
  color: var(--blue-300);
}
.hf-field input:-webkit-autofill,
.hf-field input:-webkit-autofill:hover,
.hf-field input:-webkit-autofill:focus,
.hf-field input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px transparent inset !important;
  -webkit-text-fill-color: #fff !important;
  transition: background-color 5000s ease-in-out 0s;
}

.hf-field textarea:-webkit-autofill,
.hf-field textarea:-webkit-autofill:hover,
.hf-field textarea:-webkit-autofill:focus,
.hf-field textarea:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px transparent inset !important;
  -webkit-text-fill-color: #fff !important;
  transition: background-color 5000s ease-in-out 0s;
}
.help-form .btn { margin-top: 1.4rem; }
.form-msg { color: var(--blue-300); font-size: .85rem; margin: .8rem 0 0; min-height: 1.2em; }

/* ---------- FOOTER ---------- */
.site-footer {
  position: relative;
  background: #04081d;
  color: #cfd6e6;
  padding: 4rem 0 1.5rem;
  isolation: isolate;
  overflow: hidden;
  text-align: center;
}
.footer-bg-img { object-position: center bottom; }
.footer-bg-video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
/* .footer-overlay {
 
  background:
    radial-gradient(80% 60% at 50% 130%, rgba(74,185,234,.25), transparent 60%),
    linear-gradient(180deg, rgba(4,8,29,.85) 0%, rgba(2,5,15,.95) 100%); 
} */
.footer-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 27.98%, #121931 100%);
  z-index: 1;
}
.footer-inner{
  position: relative;
  z-index: 3;
}
.foot-logo {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 300;
  letter-spacing: .25em;
  color: #e6ecf7;
  margin-bottom: 2.5rem;
}
.foot-grid {
  display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 2rem;
  text-align: left;
  max-width: 900px;
  margin: 0 auto 2.5rem;
  padding: 0 1rem;
}
.foot-col h6 { color: #fff; margin-bottom: 1rem; font-weight: 500; font-size: .92rem; }
.foot-col ul { display: grid; gap: .55rem; }
.foot-col a { color: #aebbd6; font-size: .87rem; transition: color .2s; }
.foot-col a:hover { color: #fff; }
.foot-line {
  display: flex; align-items: center; gap: .5rem;
  margin: 0 0 .55rem;
  color: #aebbd6;
  font-size: .85rem;
}
.foot-line svg { width: 14px; height: 14px; fill: var(--blue-300); flex-shrink: 0; }

.foot-social { margin-bottom: 1.4rem; }
.foot-comp { margin-bottom: 1.4rem; color: #fff; z-index: 10; }
.foot-social h6 { color: #fff; margin-bottom: .8rem; font-weight: 500; }
.socials { display: inline-flex; gap: 1rem; }
.socials a {
  width: 30px; height: 30px;
  display: grid; place-items: center;
  border-radius: 50%;
  transition: transform .2s, color .2s;
  color: #cfd6e6;
}
.socials a:hover { color: var(--blue-500); transform: translateY(-2px); }
.socials svg { width: 16px; height: 16px; fill: currentColor; }


.foot-legal {
  display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap;
  margin-bottom: .8rem;
  font-size: .76rem; letter-spacing: .12em;
}
.foot-legal a { color: #aebbd6; transition: color .2s; }
.foot-legal a:hover { color: #fff; }
.foot-copy { color: #7d88a6; font-size: .72rem; letter-spacing: .08em; margin: 0; }

/* ---------- Back to top ---------- */
.back-top {
  position: fixed; right: 1.4rem; bottom: 1.4rem;
  width: 42px; height: 42px;
  border-radius: 50%; border: 0;
  background: var(--blue-500);
  color: #fff;
  font-size: 1.2rem;
  box-shadow: 0 10px 22px rgba(58,168,223,.5);
  opacity: 0; transform: translateY(20px) scale(.9);
  transition: opacity .3s, transform .3s;
  z-index: 50;
}
.back-top.show { opacity: 1; transform: none; }
.back-top:hover { transform: translateY(-3px); }

/* =====================================================================
   Responsive
   ===================================================================== */
@media (max-width: 1024px) {
  .hero-grid       { grid-template-columns: 1fr; gap: 2rem;justify-items: center;
    text-align: center; }
  .reliable-grid,
  .commit-grid,
  .help-grid,
  .dist-grid       { grid-template-columns: 1fr; gap: 2rem; }
  .commit-image    { height: 280px; }
  .prod-cat-grid   { grid-template-columns: 1fr 1fr; }
  .arr-grid        { grid-template-columns: 1fr 1fr; }
  .ben-grid        { grid-template-columns: 1fr 1fr; }
  .lc-wrap         { grid-template-columns: 1fr; }
  .cmp-wrap        { grid-template-columns: 1fr; }
  .cmp-side        { flex-direction: row; overflow-x: auto; }
  /* .story-grid      { grid-template-columns: 1fr 1fr; } */
  .dealer-wrap     { grid-template-columns: 1fr; }
  .dealer-side     { flex-direction: row; flex-wrap: wrap; }
  .dealer-side h5  { width: 100%; margin: 0 0 .5rem; }
  .dealer-cards    { grid-template-columns: 1fr 1fr; }
  .why-grid        { grid-template-columns: 1fr; }
  .off-grid        { grid-template-columns: 1fr; }
  .ref-grid        { grid-template-columns: 1fr; }
  .foot-grid       { grid-template-columns: 1fr 1fr; }
  .bleed-content   { padding-left: 1.6rem; padding-right: 1.6rem; }
  .cmp-row         { grid-template-columns: 1fr; gap: .4rem; }
  .cmp-row > div:first-child { font-size: .78rem; opacity: .7; }
  /* .foot-comp {width: 50%; } */
}

@media (max-width: 720px) {
  /* .foot-comp {width: 50%; } */
  section { padding-block: 3rem; }
  .nav-wrap { padding: .4rem .8rem; }
  .primary-nav {
    position: fixed; inset: 64px 1rem auto 1rem;
    background: rgba(8,18,44,.97);
    border-radius: 12px;
    padding: 1rem;
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: opacity .25s, transform .25s;
    border: 1px solid var(--line-dark);
  }
  .primary-nav.open { opacity: 1; transform: none; pointer-events: auto; }
  .primary-nav ul { flex-direction: column; gap: 0; }
  .primary-nav li { border-bottom: 1px solid var(--line-dark); }
  .primary-nav li:last-child { border-bottom: 0; }
  .primary-nav a { display: block; padding: .8rem 0; font-size: .95rem; }
  .nav-toggle { display: flex; }

  .hero { min-height: 600px; }
  .hero-products img { max-height: 280px; }

  .prod-cat-grid, .arr-grid, .ben-grid, .dealer-cards, .foot-grid { grid-template-columns: 1fr; }
  .hf-row { grid-template-columns: 1fr; }
  .lc-foot { grid-template-columns: 1fr; }
  .lc-running { flex-direction: column; align-items: stretch; }
  /* .stories-head { flex-direction: column; align-items: flex-start; gap: 1rem; } */

  /* Residential | Commercial split AND Dual Showcase only stack on phones */
  .bleed-split { grid-template-columns: 1fr; }
  .showcase    { grid-template-columns: 1fr; }
  .bleed-residential .bleed-content,
  .bleed-commercial  .bleed-content { padding-left: 1.6rem; padding-right: 1.6rem; max-width: 100%; text-align: left; margin-left: 0; }
}
/* Toast */
  .toast {
    position: fixed; 
    /* top: 22px; 
    left: 50%; */
    
    right: 0px;
    bottom: 50%;
    transform: translateY(120%);
    transition: transform 0.28s ease;
    background: rgba(64,66,82, 0.96);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 11px; padding: 11px 20px;
    font-size: 13.5px; color: #fff; 
    z-index: 99999;
    transition: transform 0.28s ease;
    white-space: nowrap; backdrop-filter: blur(16px);
    display: flex; align-items: center; gap: 9px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    width:400px !important;
    
  }

  .toast.show { transform: translateY(0); }
  /* .toast.show { transform: translateX(-50%) translateY(0); } */
  .toast-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
  .toast.success .toast-dot { background: #10b981; }
  .toast.error .toast-dot { background: #ef4444; }
  .toast.info .toast-dot { background: #6366f1; }


.category-residential,
.category-commercial {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  flex-direction: column;
}

/* ── Category Content ── */
.category-content {
  position: relative;
  z-index: 2;
  display: flex;
  /* flex-direction: column; */
  justify-content: space-between;
  height: 100%;
  width: 100%;
  flex: 1;
}

/* ── Residential: text TOP ── */
.category-content-top {
  padding: 36px 36px 0 36px;
  color: #fff;
}

.category-content-top h2 {
  color: #fff; font-size: clamp(2.2rem, 5vw, 3.6rem); 
  font-weight: 500; 
  margin-bottom: .5rem; 
  color: #fff;
}

.category-content-top p {
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 18px;
  color: #fff;
}

/* ── Residential: product image BOTTOM ── */
.category-residential .product-img-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 0 20px;
  margin-top: auto;
}

.category-residential .product-img-wrap img {
  max-height: 340px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

/* ── Commercial: product image TOP ── */
.category-commercial .product-img-wrap {
  display: flex;
  justify-content: flex-end;  /* right-align the product */
  align-items: flex-end;
  padding: 20px 40px 0 20px;
}

.category-commercial .product-img-wrap img {
  max-height: 340px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

.category-content-bottom {
  padding: 0 36px 36px 36px;
  color: #fff;
  margin-top: auto;
}

.category-content-bottom h2 { 
  font-size: clamp(2.2rem, 5vw, 3.6rem); 
  font-weight: 500; 
  margin-bottom: .5rem;
  color: #fff;
}

.category-content-bottom p {
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 18px;
  color: #fff ;
}


/* ── Mobile ── */
@media (max-width: 991px) {
  .category-residential,
  .category-commercial {
    min-height: 420px;
  }
  .category-residential { order: 1; }
  .category-commercial  { order: 2; }

  .category-content-top {
    padding: 24px 20px 0 20px;
  }

  .category-content-bottom {
    padding: 0 20px 24px 20px;
  }

  .category-residential .product-img-wrap img,
  .category-commercial .product-img-wrap img {
    max-height: 220px;
  }

  .category-commercial .product-img-wrap {
    justify-content: center;
    padding: 16px 20px 0 20px;
  }
  .category-content {
    flex-direction: column;
  }

  .product-img-wrap {
    order: 1;
  }

  .category-content-top,
  .category-content-bottom {
    order: 2;
  }
}
/* .video-section {
  position: relative;
  width: 100%;
  height: 70vh;   
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #DEE6FF 4.95%, #FFF 100%);
}

.play-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}


.video-play-btn {
  position: relative;
  z-index: 2;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.video-play-btn:hover {
  background: rgba(0, 0, 0, 0.7);
  transform: scale(1.05);
} */

.video-section {
  position: relative;
  height: 70vh;
  overflow: hidden;
}

.play-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* center SVG button */
.video-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  background: transparent;
  border: none;
  cursor: pointer;
}

.branches{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.branch{
  background: #fff;
  color: #111;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 0 19.4px 0 rgba(54, 68, 114, 0.52);
}
.branch-img-wrap {
  position: relative;
}


.branch img{
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
}
.branch-icon {
  position: absolute;
  left: 50%;
  bottom: -27.5px; /* half of SVG height (83px / 2) */
  transform: translateX(-50%);
  z-index: 10;
}

.branch-body{
  padding: 12px;
}

.branch-name{
  text-align: center;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 16px;
  font-size:22px;
}

.branch-text{
  font-size: 12px;
  line-height: 2.2;
  color: #444;
}

@media (max-width: 1024px){


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

@media (max-width: 640px){

  .branches{
    grid-template-columns: repeat(1, 1fr);
  }
}

.showcase-grid{
  display:grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap:16px;
}

/* card base */
.showcase-item{
  position:relative;
  overflow:hidden;
  border-radius:18px;
  display:block;
  text-decoration:none;
  color:#fff;
}

/* image */
.showcase-item img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* exact placement */
.showcase-featured{
  grid-column:1;
  grid-row:1 / span 2;
}

.showcase-small:nth-child(2){
  grid-column:2;
  grid-row:1;
}

.showcase-small:nth-child(3){
  grid-column:3;
  grid-row:1;
}

.showcase-wide{
  grid-column:2 / span 2;
  grid-row:2;
}

/* overlay */
.showcase-content{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  padding:20px;
  border-radius: 20px;
background: rgba(57, 56, 56, 0.25);
box-shadow: 56.933px -56.933px 56.933px 0 rgba(194, 194, 194, 0.08) inset, -56.933px 56.933px 56.933px 0 rgba(255, 255, 255, 0.08) inset;
backdrop-filter: blur(34.729331970214844px);

backdrop-filter:blur(15px); 
}

.showcase-featured .showcase-content{
  padding:28px;
}

.showcase-featured h3{
  font-size:22px;
  margin-bottom:12px;
  color:#fff;
}

.showcase-featured p{
  font-size:12px;
  line-height:1.7;
  margin-bottom:20px;
  color:#fff;
}

.showcase-small h4,
.showcase-wide h4{
  font-size:18px;
  line-height:1.4;
  margin:0 0 8px;
  color:#fff;
}

.showcase-content span{
  font-size:12px;
  opacity:.8;
  color:#fff;
}
@media (max-width: 767px){

  .showcase-grid{
      grid-template-columns:1fr;
      grid-template-rows:auto;
  }

  .showcase-featured,
  .showcase-small:nth-child(2),
  .showcase-small:nth-child(3),
  .showcase-wide{
      grid-column:auto;
      grid-row:auto;
  }

  .showcase-item{
      height:280px;
  }

  .showcase-featured h3,
  .showcase-small h4,
  .showcase-wide h4{
      font-size:18px;
  }

  .showcase-content{
      padding:16px;
  }
}

.cta-banner {
  position: relative;
  overflow: hidden;
  min-height: 700px;
  display: flex;
  /* align-items: center; */
  justify-content: center;
  /* Dark city background */
  background-image: url('../images/compare_bg.png');
  background-size: cover;
  background-position: center;
}

/* Dark blue overlay across the whole section */
/* .cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 20, 55, 0.72);
  z-index: 1;
} */

/* ── Slant overlay on the right ── */
/* .cta-banner__slant {
  position: absolute;
  top: 0;
  right: 0;
  width: 52%;       
  height: 100%;
  background: rgba(255, 255, 255, 0.07);
  
  transform-origin: top right;
  clip-path: polygon(10% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: 2;
  pointer-events: none;
} */

/* Content sits above overlays */
.cta-banner__inner {
  position: relative;
  z-index: 3;
  width: 100%;
}

/* Left text */
.cta-banner__text {
  color: #ffffff;
  font-size: 1.9rem;
  font-weight: 600;
  line-height: 1.55;
  max-width: 420px;
}

/* Buttons */
.cta-banner__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-cta-outline {
  border: 1.5px solid rgba(255,255,255,0.75);
  color: #ffffff;
  background: transparent;
  border-radius: 4px;
  padding: 9px 22px;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  
}

.btn-cta-outline:hover,
.btn-cta-outline:focus {
  /* background: rgba(255,255,255,0.15);
  border-color: #ffffff;*/
  color: #000; 
  background: #fff; 
  border-color: #fff; 
  border-bottom: 1px solid rgba(47, 185, 244, 1);
}

/* ── Responsive ── */
@media (max-width: 767.98px) {
  .cta-banner {
    min-height: unset;
    padding: 28px 0;
  }

  .cta-banner__slant {
    width: 100%;
    clip-path: polygon(0% 40%, 100% 0%, 100% 100%, 0% 100%);
  }

  .cta-banner__text {
    font-size: 0.97rem;
    margin-bottom: 18px;
  }

  .cta-banner__actions {
    justify-content: center;
  }
}


.hero-slider {
  padding: 5px 0;
  /* background: #07152b; */
}

.companySwiper {
  width: 100%;
  
}

.banner-card {
  display: block;
  position: relative;
  overflow: hidden;
  /* border-radius: 10px; */
  text-decoration: none;
}

.banner-card img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

.banner-card:hover img {
  transform: scale(1.05);
}

.banner-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
  color: #fff;
  /* background: linear-gradient(
      90deg,
      rgba(0,0,0,.6) 0%,
      rgba(0,0,0,.2) 50%,
      rgba(0,0,0,0) 100%
  ); */
}

.banner-overlay h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.banner-overlay p {
  font-size: 1rem;
  max-width: 500px;
}

.swiper-banner-button-next,
.swiper-banner-button-prev {
  color: #fff;
}

.swiper-banner-pagination-bullet {
  background: #fff;
}
.swiper-banner-pagination {
  position: absolute !important;
  bottom: 15px !important;
  left: 50% !important;
  transform: translateX(-50%);
  width: auto !important;
  z-index: 10;
}

@media (max-width: 991px) {
  .banner-card img {
      height: 300px;
  }

  .banner-overlay {
      padding: 25px;
  }

  .banner-overlay h2 {
      font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .banner-card img {
      height: 250px;
  }

  .banner-overlay h2 {
      font-size: 1.5rem;
  }

  .banner-overlay p {
      font-size: 14px;
  }
}

.emi-badge {
	
  font-size: 12.85px;
  font-weight: 400;
  background-color:rgba(47, 185, 244, 1) !important;
  color: #fff;
  padding: 8px 18px;
  margin-bottom: 10px;
}
.logo{
  display: flex;
  align-items: center;
}

.logo-gif{
  height: 50px;   /* adjust as needed */
  width: auto;
  display: block;
}

.motto-hero{
  /* position:relative; */

  display:flex;
  align-items:center;
  justify-content:center;
 

} 

/* Bottom blend */
/* .motto-hero::after{

  content:"";

  position:absolute;

  left:0;
  right:0;
  bottom:0;

  height:180px;

  background:linear-gradient(
      to bottom,
      rgba(10,18,35,0),
      rgba(10,18,35,.45),
      rgba(10,18,35,.8),
      #08111e
  );

  pointer-events:none;
}
*/
.motto-logo{
  
  height: 140px; 
  width: auto;
  display: block;
  margin: 0 auto;
  
}
.motto-text{
  font-size:26px;
  color:#fff;
}

.icon-btn{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.header-icon-svg{
  width: 24px !important;
  height: 24px !important;
}

/* .cart-badge{
  position: absolute;
  top: -4px;
  right: -4px;

  display: flex;
  align-items: center;
  justify-content: center;

  min-width: 18px;
  height: 18px;
  padding: 3px 6px;

  font-size: 10px;
  font-weight: 600;
  line-height: 1;
  

  color: rgb(187, 186, 66);
  background: rgba(187, 186, 66, 0.18); 
  border: 1px solid rgba(187, 186, 66, 0.6);
  border-radius: 50px;

  box-shadow:
      0 0 5px rgba(187, 186, 66, 0.5),
      0 0 10px rgba(187, 186, 66, 0.4),
      0 0 18px rgba(187, 186, 66, 0.3);

  animation: badgeGlow 1.8s ease-in-out infinite;
  z-index: 9999;
}

@keyframes badgeGlow{
  0%,100%{
      box-shadow:
          0 0 5px rgba(187,186,66,.5),
          0 0 10px rgba(187,186,66,.4),
          0 0 18px rgba(187,186,66,.3);
  }
  50%{
      box-shadow:
          0 0 8px rgba(187,186,66,.8),
          0 0 16px rgba(187,186,66,.7),
          0 0 28px rgba(187,186,66,.6);
  }
} */

.cart-badge{
  position: absolute;
  top: -4px;
  right: -4px;

  display: flex;
  align-items: center;
  justify-content: center;

  min-width: 18px;
  height: 18px;
  padding: 3px 6px;

  font-size: 10px;
  font-weight: 600;
  line-height: 1;

  color: rgb(59, 130, 246);
  background: rgba(59, 130, 246, 0.18);
  border: 1px solid rgba(59, 130, 246, 0.6);
  border-radius: 50px;

  box-shadow:
      0 0 5px rgba(59, 130, 246, 0.5),
      0 0 10px rgba(59, 130, 246, 0.4),
      0 0 18px rgba(59, 130, 246, 0.3);

  animation: badgeGlow 1.8s ease-in-out infinite;
  z-index: 9999;
}

@keyframes badgeGlow {
  0%, 100% {
      box-shadow:
          0 0 5px rgba(59, 130, 246, 0.5),
          0 0 10px rgba(59, 130, 246, 0.4),
          0 0 18px rgba(59, 130, 246, 0.3);
  }
  50% {
      box-shadow:
          0 0 8px rgba(59, 130, 246, 0.8),
          0 0 16px rgba(59, 130, 246, 0.7),
          0 0 28px rgba(59, 130, 246, 0.6);
  }
}

.ess_type_div{
  background: #17234C;
  color:#fff !important;
  box-shadow: 0px 0px 4px 0px #00000040;
}
.model_name{
  color: #17234C;
}
.model-capacity{
  color: #17234C;
}

/* .btn-ask-price {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  min-height: 48px;
  padding: 0 22px;

  border: 1px solid #242625;
  border-radius: 8px;

  background: #fff;
  color: #242625;

  font-size: 15px;
  font-weight: 600;
  text-decoration: none;

  transition: all 0.25s ease;
} */

.btn-ask-price svg {
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

/* .btn-ask-price:hover {
  background: #242625;
  color: #fff;
  border-color: #242625;
}

.btn-ask-price:hover svg {
  transform: scale(1.08);
} */
/* =========================
   Ask For Price Modal
========================= */

.ask-price-modal .modal-dialog {
    max-width: 650px;
}

.ask-price-modal .modal-content {
    /* background: #303030; */
    background: #111E39;
    border: none;
    border-radius: 14px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
    color: #fff;
    overflow: hidden;
}

.ask-price-modal .modal-header {
    display: block;
    position: relative;
    border: none;
    padding: 28px 34px 10px;
}

.ask-price-modal .modal-title {
    color: #fff;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
    margin: 0 35px 10px 0;
}

.ask-price-modal .modal-description {
    color: #f0f0f0;
    font-size: 14px;
    line-height: 1.55;
    margin: 0;
    max-width: 540px;
}

.ask-price-modal .btn-close {
    position: absolute;
    top: 25px;
    right: 25px;
    opacity: 0.8;
}

.ask-price-modal .btn-close:hover {
    opacity: 1;
}

.ask-price-modal .modal-body {
    padding: 10px 34px 34px;
}

/* Labels */

.ask-price-modal .form-label {
    display: block;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}

/* Inputs */

.ask-price-modal .form-control {
    width: 100%;
    min-height: 38px;

    background: transparent;
    color: #fff;

    border: 1px solid #8a8a8a;
    border-radius: 6px;

    padding: 9px 12px;

    font-size: 14px;

    box-shadow: none;
}

.ask-price-modal .form-control:focus {
    background: transparent;
    color: #fff;

    border-color: #bdbdbd;
    box-shadow: none;
}

.ask-price-modal .form-control::placeholder {
    color: #aaa;
}

.ask-price-modal textarea.form-control {
    min-height: 112px;
    resize: vertical;
}

/* Product */

.ask-price-modal #askPriceProductName {
    color: #ddd;
}

/* Send button */

.btn-send-price {
    width: 100%;
    color: #000 !important;

    border-bottom: 1.58px solid #2FB9F4;
    border-radius: 6px;

    font-size: 14px;
    font-weight: 600;
    cursor: pointer;

    transition: all 0.2s ease;
    background: linear-gradient(90deg, rgba(217, 217, 217, 0.1) 0%, rgba(115, 115, 115, 0.1) 100%);

}

.btn-send-price:hover, .btn-send-price:active, .btn-send-price:focus {
  border: 1px solid #2FB9F4 !important;
  transform: translateY(-1px);
  background: linear-gradient(90deg, rgba(217, 217, 217, 0.1) 0%, rgba(115, 115, 115, 0.1) 100%);
} 

.btn-send-price:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.ask-message-field .form-input {
  height: 120px;
  padding-top: 35px;
  padding-bottom: 15px;
}

.ask-message-field span {
  top: 18px;
}