:root{
  --navy: #0A1E3F;
  --navy-deep: #071f47;
  --steel: #143257;
  --steel-light: #1E4370;
  --gold: #c8102e;
  --gold-light: #c8102e;
  --gold-deep: #c8102e;
  --ink: #000000;
  --paper: #FFFFFF;
  --mist: #F4F5F8;
  --mist-2: #ECEEF2;
  --line: #DFE2E8;
  --radius: 4px;
  --shadow-lg: 0 30px 60px -20px rgba(5,16,33,0.35);
  --shadow-sm: 0 8px 20px -8px rgba(5,16,33,0.18);
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{ 
  color:var(--ink);
  background:var(--paper);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
h1,h2,h3,h4,.font-display{ 
  color:var(--ink);
  letter-spacing:-0.01em;
  font-weight:7600;
}
.eyebrow{  
  font-size:1rem;
  font-weight:600;
  color:var(--gold-deep);
}
a{text-decoration:none;color:inherit;}
img{max-width:100%;display:block;}
.section-pad{padding: 4.5rem 0;}
#brands{
  background-color: #e6ecff;
}
@media(max-width:768px){.section-pad{padding:3.2rem 0;}}
.bg-mist{background:var(--mist);}
.divider-gold{
  width:64px;height:3px;background:var(--gold);
  margin:14px 0 22px;
}
.divider-gold.center{margin-left:auto;margin-right:auto;}

/* ================= TOP BAR ================= */
.topbar{
  background:var(--navy-deep);
  color:#fff;
  font-size:0.88rem;
  padding: 6px 0;
  border-bottom:1px solid rgba(201,162,39,0.25);
}
.topbar a{color:#fff;transition:color .2s;}
.topbar a:hover{color:var(--gold-light);}
.topbar .divider{opacity:.3;margin:0 10px;}
.social-ic{
  display:inline-flex;align-items:center;justify-content:center;
  width:26px;height:26px;border-radius:50%;
  margin-left:8px;font-size:0.82rem;color:#fff;
  transition:transform .25s ease, opacity .25s;
}
.social-ic:hover{transform:translateY(-2px);opacity:.88;}
.ic-fb{background:#1877F2;}
.ic-ig{background:radial-gradient(circle at 30% 110%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);}
.ic-li{background:#0A66C2;}
.ic-yt{background:#FF0000;}
.ic-tw{background:#000000;}

/* ================= MAIN HEADER ================= */
.main-header{
  background:var(--paper);
  padding: 1px 0;
  position:sticky;top:0;z-index:1000;
  box-shadow:0 4px 24px -8px rgba(5,16,33,0.12);
}
.brand-logo{display:flex;align-items:center;gap:12px;}
.logo-mark{
  width:52px;height:52px;border-radius:6px;
  background:linear-gradient(155deg, var(--navy) 0%, var(--steel) 55%, var(--navy-deep) 100%);
  display:flex;align-items:center;justify-content:center;
  border:1px solid var(--gold);
  position:relative;
  flex-shrink:0;
}
.logo-mark span{
  font-family: "Manrope", sans-serif;font-weight:700;color:var(--gold-light);
  font-size:1.5rem;letter-spacing:0.02em;
}
.logo-word{line-height:1.1;}
.logo-word .l1{
  font-family: "Manrope", sans-serif;font-weight:700;font-size:1.28rem;color:var(--navy);letter-spacing:0.01em;
}
.logo-word .l2{
  font-family: "Manrope", sans-serif;font-size:0.62rem;letter-spacing:0.14em;color:var(--gold-deep);text-transform:uppercase;
}

.navbar-nav{gap:2px;}
.main-nav .nav-link{
    font-family: "Manrope", sans-serif;
  font-weight: 600;font-size: 14px;
  color:var(--ink) !important;
  padding:10px 10px !important;
  position:relative;
}
.main-nav .nav-link::after{
  content:"";position:absolute;left:15px;right:15px;bottom:6px;height:2px;
  background:var(--gold);transform:scaleX(0);transform-origin:left;transition:transform .25s ease;
}
.main-nav .nav-link:hover::after,.main-nav .nav-link.active::after{transform:scaleX(1);}
.main-nav .nav-link:hover{color:var(--gold-deep) !important;}

.dropdown-menu{
  border:none;border-top:3px solid var(--gold);
  box-shadow:var(--shadow-lg);border-radius:2px;
  padding:10px 0;margin-top:0 !important;
}
.dropdown-item{
  font-size:0.88rem;padding:9px 22px;color:var(--ink);
  display:flex;align-items:center;gap:9px;
}
.dropdown-item i{color:var(--gold-deep);font-size:0.8rem;}
.dropdown-item:hover{background:var(--mist);color:var(--navy);}

@media(min-width:992px){
  .dropdown:hover>.dropdown-menu{display:block;}
  .dropdown-menu{display:none;}
  .dropdown-submenu{position:relative;}
  .dropdown-submenu>.dropdown-menu{
    top:0;left:100%;margin-top:0;
  }
  .dropdown-submenu:hover>.dropdown-menu{display:block;}
  .dropdown-submenu>a::after{content:"\F285";font-family:"bootstrap-icons";font-size:0.65rem;margin-left:auto;padding-left:10px;}
}
@media(max-width:991px){
  .dropdown-menu{border-top:none;border-left:3px solid var(--gold);box-shadow:none;background:var(--mist);}
  .dropdown-submenu .dropdown-menu{background:#fff;margin-left:10px;}
}

.btn-quote-nav{
  background:var(--navy);color:#fff !important;
  padding:10px 22px !important;border-radius:2px;
  font-weight:600;font-size:0.88rem;
  border:1px solid var(--navy);
  transition:all .25s;
}
.btn-quote-nav:hover{background:var(--gold);border-color:var(--gold);color:var(--navy) !important;}

/* ================= HERO SLIDER ================= */
.hero-slider{position:relative;width:100%;height: 80vh; overflow:hidden;background:var(--navy-deep);}
.hero-slider .carousel,.hero-slider .carousel-inner,.hero-slider .carousel-item{height:100%;width:100%;}
.hero-slide-bg{
  width:100%;height:100%;background-size:100% 100%;background-position:center;position:relative;
}
.hero-slide-bg::before{
  /* content:"";position:absolute;inset:0;
  background:linear-gradient(100deg, rgba(5,16,33,0.92) 0%, rgba(5,16,33,0.72) 38%, rgba(5,16,33,0.35) 68%, rgba(5,16,33,0.15) 100%); */
}
.hero-caption{
  position:absolute;inset:0;display:flex;align-items:center;z-index:5;
}
.hero-caption .container{color:#fff;}
.hero-eyebrow{
  font-family: "Manrope", sans-serif;letter-spacing:0.2em;text-transform:uppercase;
  font-size:0.78rem;color:var(--gold-light);margin-bottom:16px;display:flex;align-items:center;gap:10px;
}
.hero-eyebrow::before{content:"";width:34px;height:1px;background:var(--gold-light);}
.hero-caption h1{
  font-size:3.2rem;font-weight:700;color:#fff;line-height:1.12;max-width:780px;margin-bottom:20px;
}
.hero-caption h1 em{font-style:italic;color:var(--gold-light);font-weight:500;}
.hero-caption p{
  font-size:1.08rem;color:#dbe2ee;max-width:600px;line-height:1.7;margin-bottom:32px;font-weight:300;
}
.hero-stats{display:flex;gap:34px;margin-top:38px;flex-wrap:wrap;}
.hero-stats .hs-num{font-family: "Manrope", sans-serif;font-size:1.9rem;color:var(--gold-light);font-weight:700;}
.hero-stats .hs-label{font-size:0.75rem;color:#aebbd1;font-family: "Manrope", sans-serif;letter-spacing:0.06em;}
@media(max-width:768px){
  .hero-caption h1{font-size:2.05rem;}
  .hero-slider{height:60vh;}
  .hero-stats{gap:22px;}
}

.btn-gold{
  background:var(--gold);border:1px solid var(--gold);color:#fff !important;
  font-weight:700;padding:14px 30px;border-radius:2px;font-size:0.92rem;
  letter-spacing:0.02em;transition:all .25s;
}
.btn-gold:hover{background:#0a1e3f;color:#fff !important;border-color:#fff;}
.btn-outline-light-premium{
  background:transparent;border:1px solid rgba(255,255,255,0.55);color:#fff !important;
  font-weight:600;padding:13px 28px;border-radius:2px;font-size:0.92rem;transition:all .25s;
}
.btn-outline-light-premium:hover{background:#fff;color:var(--navy) !important;border-color:#fff;}

.hero-arrow{
  width:52px;height:52px;border-radius:50%;background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.35);display:flex;align-items:center;justify-content:center;
  opacity:1;transition:background .25s;
}
.hero-arrow:hover{background:var(--gold);border-color:var(--gold);}
.hero-arrow i{color:#fff;font-size:1.2rem;}
.carousel-control-prev,.carousel-control-next{width:8%;z-index:6;}
@media(max-width:768px){.carousel-control-prev,.carousel-control-next{width:16%;}}

.carousel-indicators{bottom:26px;z-index:6;}
.carousel-indicators [data-bs-target]{
  width:10px;height:10px;border-radius:50%;background:rgba(255,255,255,0.45);
  border:none;opacity:1;margin:0 5px;transition:all .3s;
}
.carousel-indicators .active{background:var(--gold);width:28px;border-radius:6px;}

/* ================= ABOUT ================= */
.about-image-wrap{position:relative;}
.about-image-wrap img{border-radius:4px;box-shadow:var(--shadow-lg);}
.about-badge{
  position:absolute;bottom:-28px;right:-20px;background:var(--navy);color:#fff;
  padding:22px 26px;border-radius:4px;box-shadow:var(--shadow-lg);border:1px solid var(--gold);
  min-width:170px;
}
@media(max-width:768px){.about-badge{position:static;margin-top:-40px;margin-left:16px;width:calc(100% - 32px);}}
.about-badge .num{font-family: "Manrope", sans-serif;font-size:2.1rem;color:var(--gold-light);font-weight:700;line-height:1;}
.about-badge .lbl{font-size:0.78rem;color:#c8d2e3;margin-top:6px;}

.mv-card{
  background:var(--paper);border:1px solid var(--line);border-radius:4px;
  padding:34px 30px;height:100%;transition:all .3s;border-top:3px solid var(--gold);
}
.mv-card:hover{box-shadow:var(--shadow-sm);transform:translateY(-4px);}
.mv-card .ic{
  width:52px;height:52px;border-radius:50%;background:var(--navy);color:var(--gold-light);
  display:flex;align-items:center;justify-content:center;font-size:1.3rem;margin-bottom:18px;
}
.mv-card p{color:#333;line-height:1.75;font-size:0.95rem;}

/* ================= WHY CHOOSE US ================= */
.feature-item{display:flex;gap:18px;padding:22px 0;border-bottom:1px solid var(--line);}
.feature-item:last-child{border-bottom:none;}
.feature-ic{
  width:56px;height:56px;flex-shrink:0;border-radius:50%;
  background:var(--mist);border:1px solid var(--line);color:var(--gold-deep);
  display:flex;align-items:center;justify-content:center;font-size:1.35rem;
}
.feature-item h5{font-family: "Manrope", sans-serif;font-weight:600;margin-bottom:6px;}
.feature-item p{color:#333;font-size:0.92rem;line-height:1.65;margin-bottom:0;}

/* ================= BRANDS ================= */
.brand-card{
  background:#fff;border:1px solid var(--line);border-radius:4px;overflow:hidden;
  transition:all .3s;height:100%;
}
.brand-card:hover{box-shadow:var(--shadow-lg);transform:translateY(-6px);border-color:var(--gold);}
.brand-card .bimg{height:190px;overflow:hidden;position:relative;}
.brand-card .bimg img{width:100%;height:100%;object-fit:cover;transition:transform .5s;}
.brand-card:hover .bimg img{transform:scale(1.08);}
.brand-card .bimg::after{content:"";position:absolute;inset:0;background:linear-gradient(0deg, rgba(5,16,33,0.55) 0%, transparent 55%);}
.brand-card .bicon{
  position:absolute;bottom:12px;left:14px;width:44px;height:44px;border-radius:50%;
  background:var(--gold);color: #fff;display:flex;align-items:center;justify-content:center;font-size:1.15rem;z-index:2;
}
.brand-card .bbody{padding:20px 22px 24px;}
.brand-card h5{font-family: "Manrope", sans-serif;font-weight:600;margin-bottom:8px;font-size: 1.2rem;}
.brand-card p{font-size:0.87rem;color:#000;line-height:1.65;margin-bottom:14px;}
.brand-card .blink{font-family: "Manrope", sans-serif;font-size:0.74rem;letter-spacing:0.08em;color:var(--gold-deep);font-weight: 800;}
.brand-card .blink i{transition:transform .25s;}
.brand-card:hover .blink i{transform:translateX(4px);}

/* Brand detail alternating rows */
.brand-detail{padding:64px 0;border-bottom:1px solid var(--line);}
.brand-detail:last-of-type{border-bottom:none;}
.brand-detail .bd-img{border-radius:4px;box-shadow:var(--shadow-sm);height:340px;object-fit:cover;width:100%;}
.brand-detail .bd-tag{
  display:inline-flex;align-items:center;gap:8px;background:var(--mist);border:1px solid var(--line);
  padding:6px 14px;border-radius:20px;font-family: "Manrope", sans-serif;font-size:0.72rem;
  letter-spacing:0.08em;text-transform:uppercase;color:var(--gold-deep);margin-bottom:16px;
}
.brand-detail h3{font-size:1.7rem;margin-bottom:14px;}
.brand-detail p{color:#222;line-height:1.8;font-size:0.98rem;}
.brand-detail ul{margin-top:16px;padding-left:0;list-style:none;}
.brand-detail ul li{padding:7px 0;font-size:0.92rem;color:#222;display:flex;align-items:center;gap:10px;}
.brand-detail ul li i{color:var(--gold-deep);}

/* ================= PRODUCTS ================= */
.product-card{
  background:#fff;border:1px solid var(--line);padding:32px 24px;border-radius:4px;text-align:center;
  height:100%;transition:all .3s;
}
.product-card:hover{background:var(--navy);border-color:var(--navy);}
.product-card:hover h6,.product-card:hover p{color:#e6ebf3;}
.product-card:hover .pic{background:var(--gold);color: #fff;}
.product-card .pic{
  width:64px;height:64px;border-radius:50%;background:var(--mist);color:var(--navy);
  display:flex;align-items:center;justify-content:center;font-size:1.6rem;margin:0 auto 18px;transition:all .3s;
}
.product-card h6{font-family: "Manrope", sans-serif;font-weight:600;font-size:1.02rem;margin-bottom:8px;transition:color .3s;}
.product-card p{font-size:0.83rem;color:#444;margin-bottom:0;transition:color .3s;}

/* ================= INDUSTRIES ================= */
.industry-pill{
  background:#fff;border:1px solid var(--line);border-radius:4px;padding:26px 20px;text-align:center;height:100%;
  transition:all .25s;
}
.industry-pill:hover{border-color:var(--gold);box-shadow:var(--shadow-sm);}
.industry-pill i{font-size:1.7rem;color:var(--gold-deep);margin-bottom:12px;display:block;}
.industry-pill span{font-size:0.86rem;font-weight:500;}

/* ================= DARK SECTIONS (Dealership / Network) ================= */
.bg-navy{background:linear-gradient(155deg, var(--navy-deep) 0%, var(--navy) 60%, var(--steel) 130%);color:#fff;}
.bg-navy h2,.bg-navy h3,.bg-navy h4{color:#fff;}
.bg-navy p{color:#c6d0e2;}
.bg-navy .eyebrow{color:var(--gold-light);}
.bg-navy .divider-gold{background:var(--gold);}

.solution-item{display:flex;gap:16px;margin-bottom:24px;}
.solution-item .sic{
  width:46px;height:46px;border-radius:50%;background:rgba(201,162,39,0.15);border:1px solid #fff;
  color: #fff;display:flex;align-items:center;justify-content:center;flex-shrink:0;font-size:1.1rem;
}
.solution-item h6{color:#fff;font-family: "Manrope", sans-serif;font-weight:600;margin-bottom:5px;}
.solution-item p{margin-bottom:0;font-size:0.9rem;}

.network-card{
  background:rgba(255,255,255,0.04);border:1px solid rgba(255,255,255,0.15);border-radius:4px;
  padding: 20px;height:100%;backdrop-filter:blur(4px);
}
.network-card .nhead{display:flex;align-items:center;gap:14px;margin-bottom:16px;}
.network-card .nic{
  width:50px;height:50px;border-radius:50%;background:var(--gold);color: #fff;
  display:flex;align-items:center;justify-content:center;font-size:1.2rem;flex-shrink:0;
}
.network-card h5{color:#fff;font-family: "Manrope", sans-serif;margin-bottom:2px; font-size:1.1rem;}
.network-card .ntag{font-family: "Manrope", sans-serif;font-size:0.82rem;color: #fff;letter-spacing:0.06em;}
.network-card address{font-size:0.9rem;color:#c6d0e2;margin-bottom:0;}

/* ================= CAREERS BAND ================= */
.careers-band{
  background:var(--mist);position:relative;overflow:hidden;
  border-top:1px solid var(--line);border-bottom:1px solid var(--line);
}
.careers-band .cimg{height:100%;min-height:280px;object-fit:cover;width:100%;border-radius:4px;}

/* ================= CONTACT ================= */
.contact-info-card{
  display:flex;gap:16px;padding:20px 0;border-bottom:1px solid var(--line);
}
.contact-info-card:last-child{border-bottom:none;}
.cic-ic{
  width:48px;height:48px;border-radius:50%;background:var(--navy);color: #fff;
  display:flex;align-items:center;justify-content:center;font-size:1.15rem;flex-shrink:0;
}
.contact-info-card h6{font-weight:600;margin-bottom:3px;font-family: "Manrope", sans-serif;}
.contact-info-card p{margin-bottom:0;font-size:0.88rem;color:#333;}

.form-control-premium{
  border-radius:2px;border:1px solid var(--line);padding:13px 16px;font-size:0.92rem;
}
.form-control-premium:focus{border-color:var(--gold);box-shadow:0 0 0 3px rgba(201,162,39,0.15);}

.map-embed{border-radius:4px;overflow:hidden;box-shadow:var(--shadow-sm);border:1px solid var(--line);}

/* ================= FOOTER ================= */
footer{background:var(--navy-deep);color:#aebbd1;padding-top:60px;}
footer h6{color:#fff;font-family: "Manrope", sans-serif;font-weight:600;margin-bottom:18px;letter-spacing:0.02em;}
footer a{color:#aebbd1;font-size:0.88rem;transition:color .2s;}
footer a:hover{color:var(--gold-light);}
footer .flink{display:block;padding:5px 0;}
footer .fdiv{border-color:rgba(255,255,255,0.1);margin:40px 0 22px;}
.footer-bottom{font-size:0.8rem;color:#8592a9;padding-bottom:22px;}
.footer-social .social-ic{margin-left:0;margin-right:8px;}
.footer-logo{display:flex;align-items:center;gap:10px;margin-bottom:16px;}
.footer-logo .l1{color:#fff;font-family: "Manrope", sans-serif;font-weight:700;font-size:1.2rem;}

/* ================= SCROLL TOP ================= */
#scrollTop{
  position:fixed;bottom:24px;right:24px;width:46px;height:46px;border-radius:50%;
  background:var(--navy);color: #fff;display:flex;align-items:center;justify-content:center;
  z-index:999;opacity:0;visibility:hidden;transition:all .3s;box-shadow:var(--shadow-sm);border:1px solid var(--gold);
}
#scrollTop.show{opacity:1;visibility:visible;}
#scrollTop:hover{background:var(--gold);color:var(--navy-deep);}

/* Section heading helper */
.sec-head{max-width:640px;}
.sec-head.center{max-width:880px;margin:0 auto;text-align:center;}
.sec-head h2{font-size:2rem;font-weight:600;}
@media(max-width:768px){.sec-head h2{font-size:1.6rem;}}

.navbar-toggler{border:1px solid var(--navy);padding:8px 10px;}
.navbar-toggler:focus{box-shadow:none;} 

.brand-logo img{
    width: 250px;
}

.brand-marquee{
    background: #35383e;
    padding:0.5rem 0;
    overflow:hidden;
    border-bottom:1px solid rgba(255,255,255,.06);
  }
  .marquee-track{
    display:flex; gap:4.5rem; white-space:nowrap;
    animation:scroll-left 26s linear infinite;
    width:max-content;
  }
  .marquee-track span{
    font-family: "Manrope", sans-serif; font-weight:600; font-size:1.05rem;
    color:rgba(255,255,255,.7); letter-spacing:.03em;
    display:inline-flex; align-items:center; gap:.6rem;
  }
  .marquee-track span i{ color: #fff; font-size:.6rem; }
  @keyframes scroll-left{ from{ transform:translateX(0);} to{ transform:translateX(-50%);} }
  
  /* =============== ABOUT SECTION =============== */
  .about-media{ position:relative; }
  .about-media img{ border-radius:6px; width:100%; height:460px; object-fit:cover; }
  .about-media .badge-float{
    position:absolute; bottom:-28px; left:-28px;
    background:var(--gold); color:#fff; padding:1.5rem 1.3rem; border-radius:6px;
    box-shadow:0 20px 40px rgba(200,16,46,.3);
    max-width:230px;
  }
  .about-media .badge-float .num{ font-family: "Manrope", sans-serif; font-size:2.4rem; font-weight:700; line-height:1; }
  .about-media .badge-float .lbl{ font-size:.8rem; margin-top:.4rem; font-weight:600; }
  @media (max-width:991px){ .about-media .badge-float{ left:14px; bottom:14px; } }
  
  .check-list{ list-style:none; padding:0; margin:1.6rem 0; }
  .check-list li{
    display:flex; align-items:flex-start; gap:.7rem; margin-bottom:.85rem;
    font-weight:600; color:var(--ink-soft); font-size:.98rem;
  }
  .check-list li i{ color:var(--gold); font-size:1.1rem; margin-top:.15rem; }
  
  /* Leadership mini cards */
  .lead-card{
    background:var(--silver); border-radius:6px; padding:1.8rem;
    border-top:3px solid var(--navy); height:100%;
    transition:transform .3s var(--ease), box-shadow .3s var(--ease);
  }
  .lead-card:hover{ transform:translateY(-6px); box-shadow:0 18px 34px rgba(10,31,68,.12); }
  .lead-card .avatar{
    width:64px; height:64px; border-radius:50%;
    background:linear-gradient(150deg,var(--navy),var(--steel));
    display:flex; align-items:center; justify-content:center; color:#fff;
    font-family: "Manrope", sans-serif; font-weight:700; font-size:1.3rem; margin-bottom:1rem;
  }

  
/* =========================================================
 NEXGEN / AUTOMOTIVE stakeholder SECTION
========================================================= */

.ng-stakeholder-section {
  position: relative; 
  background: #f5f7f9;
  overflow: hidden;
}

.ng-stakeholder-bg-shape {
  position: absolute;
  width: 520px;
  height: 520px;
  right: -250px;
  top: -190px;
  border: 1px solid rgba(196, 27, 27, 0.07);
  border-radius: 50%;
}

.ng-stakeholder-bg-shape::before {
  content: "";
  position: absolute;
  inset: 65px;
  border: 1px solid rgba(196, 27, 27, 0.06);
  border-radius: 50%;
}

.ng-stakeholder-bg-shape::after {
  content: "";
  position: absolute;
  inset: 130px;
  border: 1px solid rgba(20, 31, 42, 0.05);
  border-radius: 50%;
}


/* =========================================================
 HEADING
========================================================= */

.ng-stakeholder-heading {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 58px;
}

.ng-stakeholder-heading-left {
  max-width: 650px;
}

.ng-stakeholder-eyebrow {
  position: relative;
  display: inline-block;
  padding-left: 40px;
  margin-bottom: 14px;
  color: #c51f1f;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.5px;
}

.ng-stakeholder-eyebrow::before {
  content: "";
  position: absolute;
  width: 27px;
  height: 2px;
  left: 0;
  top: 50%;
  background: #c51f1f;
}

.ng-stakeholder-heading h2 {
  margin: 0;
  color: #17212b;
  font-size: 46px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -1px;
}

.ng-stakeholder-heading h2 span {
  color: #c51f1f;
}

.ng-stakeholder-heading-right {
  max-width: 390px;
  padding-bottom: 4px;
}

.ng-stakeholder-heading-right p {
  margin: 0;
  color: #000;
  font-size: 15px;
  line-height: 1.8;
}


/* =========================================================
 PROFILE GRID
========================================================= */

.ng-stakeholder-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}


/* =========================================================
 PROFILE CARD
========================================================= */

.ng-stakeholder-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #e1e6ea;
  box-shadow: 0 18px 50px rgba(25, 40, 53, 0.07);
  padding: 0 15px 10px;
  overflow: hidden;
  transition: all 0.35s ease;
}

.ng-stakeholder-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #c51f1f;
}

.ng-stakeholder-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 65px rgba(25, 40, 53, 0.11);
}


/* =========================================================
 PROFILE TOP
========================================================= */

.ng-profile-top {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 33px 0 27px;
  border-bottom: 1px solid #e7ebee;
}

.ng-profile-number {
  flex: 0 0 auto;
  color: #dfe4e8;
  font-size: 42px;
  line-height: 1;
  font-weight: 900;
}

.ng-profile-name {
  flex: 1;
}

.ng-profile-label {
  display: block;
  margin-bottom: 6px;
  color: #c51f1f;
  font-size: 12px;
  font-weight: 800; 
}

.ng-profile-name h3 {
  margin: 0;
  color: #17212b;
  font-size: 25px;
  line-height: 1.2;
  font-weight: 800;
}


/* =========================================================
 EXPERIENCE BADGE
========================================================= */

.ng-experience-badge {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 9px;
  padding-left: 18px;
  border-left: 1px solid #dfe4e8;
}

.ng-experience-badge strong {
  color: #c51f1f;
  font-size: 29px;
  line-height: 1;
  font-weight: 900;
}

.ng-experience-badge span {
  color: #000;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 800;
  letter-spacing: 1px;
}


/* =========================================================
 EXPERTISE
========================================================= */

.ng-profile-expertise {
  padding: 25px 0 22px;
}

.ng-profile-expertise > span {
  display: block;
  margin-bottom: 13px;
  color: #000;
  font-size: 12px;
  font-weight: 800; 
}

.ng-expertise-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.ng-expertise-list span {
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  border: 1px solid #e1e6ea;
  background: #f8fafb;
  color: #000;
  font-size: 12px;
  line-height: 1.3;
  font-weight: 600;
  transition: all 0.25s ease;
}

.ng-expertise-list span:hover {
  border-color: #c51f1f;
  color: #c51f1f;
}


/* =========================================================
 DESCRIPTION
========================================================= */

.ng-profile-description {
  padding-top: 4px;
}

.ng-profile-description p {
  margin: 0 0 16px;
  color: #000;
  font-size: 15px;
  line-height: 1.8;
}

.ng-profile-description p:last-child {
  margin-bottom: 0;
}


/* =========================================================
 PROFILE FOOTER
========================================================= */

.ng-profile-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 27px;
  padding-top: 18px;
  border-top: 1px solid #e7ebee;
}

.ng-profile-footer > span:first-child {
  color: #c51f1f;
  font-size: 14px;
  font-weight: 800;
}

.ng-profile-footer div {
  flex: 1;
  height: 1px;
  background: #e0e5e8;
}

.ng-profile-footer > span:last-child {
  color: #000;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1.2px;
}


/* =========================================================
 TABLET
========================================================= */

@media (max-width: 991px) {

  .ng-stakeholder-section {
      padding: 80px 0;
  }

  .ng-stakeholder-heading {
      display: block;
  }

  .ng-stakeholder-heading-right {
      margin-top: 20px;
  }

  .ng-stakeholder-grid {
      grid-template-columns: 1fr;
  }

}


/* =========================================================
 MOBILE
========================================================= */

@media (max-width: 767px) {

  .ng-stakeholder-section {
      padding: 60px 0;
  }

  .ng-stakeholder-heading {
      margin-bottom: 40px;
  }

  .ng-stakeholder-heading h2 {
      font-size: 32px;
  }

  .ng-stakeholder-card {
      padding: 0 10px 15px;
  }

  .ng-profile-top {
      gap: 12px;
  }

  .ng-profile-number {
      font-size: 32px;
  }

  .ng-profile-name h3 {
      font-size: 21px;
  }

  .ng-experience-badge {
      padding-left: 12px;
  }

  .ng-experience-badge strong {
      font-size: 23px;
  }

  .ng-experience-badge span {
      font-size: 7px;
  }

  .ng-profile-description p {
      font-size: 12.5px;
      line-height: 1.75;
  }

}


@media (max-width: 480px) {

  .ng-stakeholder-heading h2 {
      font-size: 28px;
  }

  .ng-profile-top {
      flex-wrap: wrap;
  }

  .ng-profile-name {
      min-width: 150px;
  }

  .ng-experience-badge {
      margin-left: auto;
  }

  .ng-profile-footer > span:last-child {
      font-size: 7px;
  }

}

:root {
  --oe-navy: #071f49;
  --oe-navy-dark: #04152f;
  --oe-red: #c91622;
  --oe-red-dark: #a70f19;
  --oe-blue: #0d5ca8;
  --oe-light-blue: #eef5fc;
  --oe-border: #dfe7f0;
  --oe-text: #1b2638;
  --oe-muted: #687588;
  --oe-white: #ffffff;
}


/* =========================
 BREADCRUMB
========================= */

.oe-page-breadcrumb {
  background: #222;
  border-bottom: 6px solid #ac1315;
  height: 100px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}

.oe-breadcrumb-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.oe-breadcrumb-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.oe-breadcrumb-icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: var(--oe-navy);
  color: #fff;
  font-size: 11px;
}

.oe-breadcrumb-title {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .1px;
}

.oe-breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
}

.oe-breadcrumb-nav a {
  color: #6d7888;
  text-decoration: none;
  transition: .25s ease;
}

.oe-breadcrumb-nav a:hover {
  color: var(--oe-red);
}

.oe-breadcrumb-arrow {
  color: #aeb8c5;
  font-size: 9px;
}

.oe-breadcrumb-current {
  color: var(--oe-red);
  font-weight: 600;
}


/* =========================
 MAIN SECTION
========================= */

.oe-company-overview {
  position: relative;
  overflow: hidden;
  padding: 92px 0 70px;
  background:
      linear-gradient(
          180deg,
          #ffffff 0%,
          #f9fbfe 100%
      );
}

.oe-overview-pattern {
  position: absolute;
  width: 420px;
  height: 420px;
  right: -180px;
  top: -170px;
  border: 80px solid rgba(7, 31, 73, .025);
  border-radius: 50%;
  pointer-events: none;
}


/* =========================
 LEFT CONTENT
========================= */

.oe-section-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--oe-red);
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.4px;
  margin-bottom: 15px;
}

.oe-section-label span {
  width: 27px;
  height: 2px;
  background: var(--oe-red);
  display: inline-block;
}

.oe-overview-content h1 { 
  color: var(--oe-navy);
  font-size: 30px;
  line-height: 1.16;
  font-weight: 700;
  margin: 0;
  max-width: 700px;
}

.oe-overview-content h1 strong {
  display: block;
  color: var(--oe-red);
  font-weight: 700;
}

.oe-heading-line {
  width: 62px;
  height: 4px;
  margin: 22px 0 24px;
  border-radius: 10px;
  background: var(--oe-red);
}

.oe-overview-intro {
  color: var(--oe-text);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.85;
  font-weight: 500;
  max-width: 720px;
  margin-bottom: 13px;
}

.oe-overview-text {
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.85;
  max-width: 720px;
  margin-bottom: 28px;
}


/* =========================
 TRUST POINTS
========================= */

.oe-trust-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 8px;
}

.oe-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--oe-border);
  border-radius: 10px;
  transition: all .3s ease;
}

.oe-trust-item:hover {
  border-color: rgba(201, 22, 34, .28);
  transform: translateX(5px);
  box-shadow: 0 10px 30px rgba(7, 31, 73, .07);
}

.oe-trust-icon {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--oe-light-blue);
  color: var(--oe-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

.oe-trust-item h4 {
  margin: 1px 0 4px;
  color: var(--oe-navy);
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.oe-trust-item p {
  margin: 0;
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.55;
}


/* =========================
 BUTTONS
========================= */

.oe-overview-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.oe-primary-btn,
.oe-secondary-btn {
  min-height: 48px;
  padding: 0 20px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all .3s ease;
}

.oe-primary-btn {
  background: var(--oe-navy);
  color: #fff;
  border: 1px solid var(--oe-navy);
}

.oe-primary-btn:hover {
  background: var(--oe-red);
  border-color: var(--oe-red);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 9px 22px rgba(201, 22, 34, .20);
}

.oe-secondary-btn {
  color: var(--oe-navy);
  background: #fff;
  border: 1px solid #ccd6e2;
}

.oe-secondary-btn:hover {
  color: var(--oe-red);
  border-color: var(--oe-red);
  transform: translateY(-2px);
}


/* =========================
 RIGHT VISUAL
========================= */

.oe-overview-visual {
  position: relative;
  min-height: 525px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.oe-visual-card {
  width: 100%;
  max-width: 475px;
  position: relative;
  z-index: 3;
  background: #fff;
  border: 1px solid #dce5ef;
  border-radius: 18px;
  padding: 26px;
  box-shadow:
      0 25px 60px rgba(7, 31, 73, .10);
}

.oe-card-top { 
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding-bottom: 19px;
  border-bottom: 1px solid #e8edf3;
}

.oe-mini-brand img { 
  height: auto;
  display: block;
}

.oe-verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 9px;
  border-radius: 30px;
  background: #f1f8f4;
  color: #197344;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.oe-verified-badge i {
  font-size: 9px;
}


.oe-visual-title {
  padding: 25px 0 20px;
}

.oe-visual-title span {
  display: block;
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  margin-bottom: 5px;
}

.oe-visual-title strong {
  display: block;
  color: var(--oe-navy);
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 800;
}


/* =========================
 STATS
========================= */

.oe-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid #e4eaf1;
  border-radius: 12px;
  overflow: hidden;
}

.oe-stat-box {
  min-height: 105px;
  padding: 18px 14px;
  background: #fbfcfe;
  border-right: 1px solid #e4eaf1;
  border-bottom: 1px solid #e4eaf1;
}

.oe-stat-box:nth-child(2n) {
  border-right: 0;
}

.oe-stat-box:nth-child(3),
.oe-stat-box:nth-child(4) {
  border-bottom: 0;
}

.oe-stat-number {
  color: var(--oe-navy);
  font-family: "Montserrat", sans-serif;
  font-size: 27px;
  line-height: 1;
  font-weight: 800;
  margin-bottom: 8px;
}

.oe-stat-number span {
  color: var(--oe-red);
}

.oe-stat-label {
  color: #000; 
  font-size: 14px;
  line-height: 1.45;
  font-weight: 600;
}


/* =========================
 AUTHORIZED STRIP
========================= */

.oe-authorized-strip {
  margin-top: 18px;
  padding: 13px 14px;
  display: flex;
  align-items: center;
  gap: 11px;
  border-radius: 10px;
  background: var(--oe-navy);
  color: #fff;
}

.oe-authorized-icon {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .10);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.oe-authorized-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.oe-authorized-content span {
  color: #aebed3;
  font-family: "Inter", sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1.2px;
}

.oe-authorized-content strong {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  margin-top: 2px;
}

.oe-strip-arrow {
  color: #e52a35;
  font-size: 12px;
}


/* =========================
 LOCATION CARD
========================= */

.oe-location-card {
  position: absolute;
  z-index: 5;
  left: -32px;
  bottom: -30px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 17px;
  background: #fff;
  border: 1px solid #dce5ef;
  border-radius: 10px;
  box-shadow: 0 15px 35px rgba(7, 31, 73, .12);
}

.oe-location-icon {
  width: 35px;
  height: 35px;
  flex: 0 0 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff2f3;
  color: var(--oe-red);
  border-radius: 7px;
}

.oe-location-card span {
  display: block;
  color: #8a95a4;
  font-family: "Inter", sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1px;
}

.oe-location-card strong {
  display: block;
  color: var(--oe-navy);
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  margin-top: 3px;
}


/* =========================
 DECORATIONS
========================= */

.oe-visual-decoration {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.oe-decoration-one {
  width: 160px;
  height: 160px;
  right: -45px;
  top: 25px;
  border: 35px solid rgba(201, 22, 34, .05);
}

.oe-decoration-two {
  width: 90px;
  height: 90px;
  left: -20px;
  top: 60px;
  background: rgba(7, 31, 73, .035);
}


/* =========================
 BOTTOM BRAND BAR
========================= */

.oe-overview-brandbar {
  margin-top: 65px;
  padding: 20px 24px;
  background: #fff;
  border: 1px solid #dfe6ee;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 25px;
  box-shadow: 0 8px 25px rgba(7, 31, 73, .035);
}

.oe-brandbar-label {
  flex: 0 0 235px;
}

.oe-brandbar-label span {
  display: block;
  color: var(--oe-red);
  font-family: "Inter", sans-serif;
  font-size:15px;
  font-weight: 800;
  letter-spacing: 1.3px;
}

.oe-brandbar-label strong {
  display: block;
  color: var(--oe-navy);
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  margin-top: 4px;
}

.oe-brandbar-divider {
  height: 38px;
  width: 1px;
  background: #dfe6ee;
}

.oe-brandbar-items {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.oe-brandbar-items span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #5d6a7b;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.oe-brandbar-items i {
  color: var(--oe-red);
  font-size: 10px;
}


/* =========================
 TABLET
========================= */

@media (max-width: 991px) {

  .oe-company-overview {
      padding: 70px 0 55px;
  }

  .oe-overview-content {
      max-width: 760px;
      margin: auto;
  }

  .oe-overview-visual {
      min-height: 490px;
      margin-top: 10px;
  }

  .oe-visual-card {
      max-width: 560px;
  }

  .oe-location-card {
      left: calc(50% - 300px);
  }

  .oe-overview-brandbar {
      flex-wrap: wrap;
  }

  .oe-brandbar-label {
      flex: 1 1 100%;
  }

  .oe-brandbar-divider {
      display: none;
  }

  .oe-brandbar-items {
      flex-wrap: wrap;
      justify-content: flex-start;
  }

}


/* =========================
 MOBILE
========================= */

@media (max-width: 767px) {

  .oe-page-breadcrumb {
      height: 47px;
  }

  .oe-breadcrumb-inner {
      gap: 8px;
  }

  .oe-breadcrumb-title {
      font-size: 15px;
  }

  .oe-breadcrumb-icon {
      width: 25px;
      height: 25px;
      font-size: 10px;
  }

  .oe-breadcrumb-nav {
      font-size: 10px;
      gap: 6px;
  }

  .oe-breadcrumb-nav a {
      display: none;
  }

  .oe-breadcrumb-arrow {
      display: none;
  }

  .oe-company-overview {
      padding: 55px 0 45px;
  }

  .oe-overview-pattern {
      width: 280px;
      height: 280px;
      right: -170px;
      top: -100px;
      border-width: 50px;
  }

  .oe-section-label {
      font-size: 9px;
      letter-spacing: 1.1px;
  }

  .oe-overview-content h1 {
      font-size: 29px;
      line-height: 1.2;
  }

  .oe-overview-content h1 strong {
      margin-top: 3px;
  }

  .oe-heading-line {
      margin: 17px 0 18px;
      width: 48px;
      height: 3px;
  }

  .oe-overview-intro {
      font-size: 14px;
      line-height: 1.75;
  }

  .oe-overview-text {
      font-size: 12.5px;
      line-height: 1.75;
  }

  .oe-trust-item {
      padding: 12px;
      gap: 11px;
  }

  .oe-trust-icon {
      width: 36px;
      height: 36px;
      flex-basis: 36px;
      font-size: 13px;
  }

  .oe-trust-item h4 {
      font-size: 12px;
  }

  .oe-trust-item p {
      font-size: 14px;
  }

  .oe-overview-actions {
      margin-top: 22px;
  }

  .oe-primary-btn,
  .oe-secondary-btn {
      width: 100%;
      min-height: 45px;
      font-size: 12px;
  }

  .oe-overview-visual {
      min-height: auto;
      margin-top: 22px;
      padding-bottom: 48px;
  }

  .oe-visual-card {
      max-width: 100%;
      padding: 18px;
      border-radius: 14px;
  }

  .oe-card-top {
      padding-bottom: 14px;
  } 

  .oe-verified-badge {
      font-size: 7px;
      padding: 6px 7px;
  }

  .oe-visual-title {
      padding: 19px 0 15px;
  }

  .oe-visual-title span {
      font-size: 14px;
  }

  .oe-visual-title strong {
      font-size: 20px;
  }

  .oe-stat-box {
      min-height: 92px;
      padding: 15px 11px;
  }

  .oe-stat-number {
      font-size: 23px;
  }

  .oe-stat-label {
      font-size: 14px;
  }

  .oe-authorized-strip {
      margin-top: 13px;
      padding: 11px;
  }

  .oe-authorized-icon {
      width: 32px;
      height: 32px;
      flex-basis: 32px;
      font-size: 12px;
  }

  .oe-authorized-content strong {
      font-size: 10px;
  }

  .oe-location-card {
      left: 50%;
      transform: translateX(-50%);
      bottom: 0;
      width: calc(100% - 24px);
      padding: 10px 12px;
  }

  .oe-location-icon {
      width: 32px;
      height: 32px;
      flex-basis: 32px;
  }

  .oe-location-card strong {
      font-size: 9px;
  }

  .oe-overview-brandbar {
      margin-top: 35px;
      padding: 16px;
      border-radius: 10px;
      gap: 12px;
  }

  .oe-brandbar-label {
      flex: 1 1 100%;
  }

  .oe-brandbar-items {
      display: grid;
      grid-template-columns: 1fr 1fr;
      width: 100%;
      gap: 10px;
  }

  .oe-brandbar-items span {
      white-space: normal;
      font-size: 9px;
      line-height: 1.4;
  }

  .oe-decoration-one {
      width: 110px;
      height: 110px;
      right: -50px;
      top: 20px;
      border-width: 25px;
  }

  .oe-decoration-two {
      width: 60px;
      height: 60px;
      left: -15px;
      top: 50px;
  }

}


/* =========================
 SMALL MOBILE
========================= */

@media (max-width: 390px) {

  .oe-breadcrumb-current {
      font-size: 9px;
  }

  .oe-overview-content h1 {
      font-size: 26px;
  }

  .oe-mini-brand img {
      width: 125px;
  }

  .oe-verified-badge {
      display: none;
  }

  .oe-stat-box {
      min-height: 85px;
  }

  .oe-stat-number {
      font-size: 21px;
  }

  .oe-stat-label {
      font-size: 8px;
  }

} 


:root {
  --oe-navy: #071f49;
  --oe-navy-dark: #04152f;
  --oe-red: #c91622;
  --oe-red-dark: #a70f19;
  --oe-exide-red: #d71920;
  --oe-text: #1b2638;
  --oe-muted: #697789;
  --oe-border: #dfe6ee;
}


/* =========================================
 MAIN SECTION
========================================= */

.oe-exide-section {
  position: relative;
  overflow: hidden;
  padding: 50px 0 50px;
  background: #f7f9fc;
}


/* Background Shapes */

.oe-exide-bg-shape {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
}

.oe-exide-shape-one {
  width: 470px;
  height: 470px;
  top: -240px;
  right: -180px;
  border: 90px solid rgba(7, 31, 73, .035);
}

.oe-exide-shape-two {
  width: 230px;
  height: 230px;
  bottom: -110px;
  left: -90px;
  background: rgba(201, 22, 34, .025);
}


/* =========================================
 HEADING
========================================= */

.oe-exide-heading {
  position: relative;
  z-index: 2;
  margin-bottom: 55px;
}

.oe-exide-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--oe-red);
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.6px;
}

.oe-exide-eyebrow span {
  width: 25px;
  height: 2px;
  background: var(--oe-red);
  display: inline-block;
}

.oe-exide-heading h2 {
  margin: 12px 0 7px;
  color: var(--oe-navy);
  font-family: "Montserrat", sans-serif;
  font-size: 35px;
  line-height: 1.1;
  font-weight: 700;
}

.oe-exide-heading h2 strong {
  color: var(--oe-red);
}

.oe-exide-heading p {
  margin: 0;
  color: #000; 
  font-size: 15px;
}


/* =========================================
 MAIN GRID
========================================= */

.oe-exide-main {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 70px;
  align-items: center;
}


/* =========================================
 VISUAL
========================================= */

.oe-exide-visual {
  position: relative;
  padding: 12px 0 25px;
}

.oe-exide-visual-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid #dce4ed;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 25px 60px rgba(7, 31, 73, .11);
}


/* Top */

.oe-exide-top-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 17px;
  border-bottom: 1px solid #edf0f4;
}

.oe-exide-top-line > span {
  color: #000; 
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1.2px;
}

.oe-exide-verified {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #23804e;
  background: #f0f8f4;
  border-radius: 20px;
  padding: 6px 9px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 700;
}


/* Logo */

.oe-exide-logo-box { 
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 5px 0 3px;
}

.oe-exide-logo { 
  width: 100%;
  height: 100%;
  object-fit: contain;
}


/* =========================================
 BATTERY VISUAL
========================================= */

.oe-exide-battery {
  position: relative;
  width: 245px;
  height: 175px;
  margin: 5px auto 25px;
  perspective: 800px;
}

.oe-battery-body {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 0;
  height: 145px;
  background:
      linear-gradient(
          145deg,
          #20242b 0%,
          #111419 55%,
          #080a0d 100%
      );
  border-radius: 8px 8px 12px 12px;
  box-shadow:
      10px 15px 25px rgba(0,0,0,.22),
      inset 0 1px 0 rgba(255,255,255,.08);
  overflow: hidden;
}

.oe-battery-top {
  position: absolute;
  left: 35px;
  right: 35px;
  top: 20px;
  height: 24px;
  border-radius: 4px 4px 2px 2px;
  background: #181b20;
  z-index: 2;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.07);
}

.oe-battery-terminal {
  position: absolute;
  width: 19px;
  height: 12px;
  top: 14px;
  border-radius: 3px 3px 1px 1px;
  background: #b9bec4;
  z-index: 4;
}

.terminal-left {
  left: 53px;
}

.terminal-right {
  right: 53px;
}

.oe-battery-brand {
  position: absolute;
  left: 0;
  right: 0;
  top: 53px;
  color: #fff;
  text-align: center;
  font-family: Arial, sans-serif;
  font-size: 29px;
  font-weight: 900;
  letter-spacing: -1px;
}

.oe-battery-series {
  position: absolute;
  left: 0;
  right: 0;
  top: 91px;
  color: #c7cbd0;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.oe-battery-power {
  position: absolute;
  width: 24px;
  height: 24px;
  right: 15px;
  bottom: 12px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--oe-red);
  font-size: 10px;
}


/* =========================================
 VISUAL FOOTER
========================================= */

.oe-exide-visual-footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #edf0f4;
  padding-top: 17px;
  gap: 5px;
}

.oe-exide-visual-footer > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #667487;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

.oe-exide-visual-footer i {
  color: var(--oe-red);
  font-size: 11px;
}


/* =========================================
 FLOATING CARD
========================================= */

.oe-exide-floating {
  position: absolute;
  z-index: 5;
  left: -32px;
  bottom: -20px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid #dce4ed;
  border-radius: 10px;
  padding: 11px 15px;
  box-shadow: 0 15px 35px rgba(7, 31, 73, .13);
}

.oe-exide-floating-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff1f2;
  color: var(--oe-red);
  font-size: 14px;
}

.oe-exide-floating span {
  display: block;
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
}

.oe-exide-floating strong {
  display: block;
  color: var(--oe-navy);
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  margin-top: 2px;
}


/* =========================================
 CONTENT
========================================= */

.oe-exide-content-label {
  display: inline-block;
  color: var(--oe-red);
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.oe-exide-content h3 {
  margin: 0;
  color: var(--oe-navy); 
  font-size: 30px;
  line-height: 1.17;
  font-weight: 800;
}

.oe-exide-content h3 span {
  display: block;
  color: var(--oe-red);
}

.oe-exide-content > p {
  color: #000; 
  font-size: 14px;
  line-height: 1.85;
  margin: 16px 0 0;
}

.oe-exide-content .oe-exide-intro {
  color: #000;
  font-size: 16px;
  font-weight: 600;
  margin-top: 21px;
}


/* =========================================
 FEATURES
========================================= */

.oe-exide-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 11px;
  margin-top: 25px;
}

.oe-exide-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 13px;
  background: #fff;
  border: 1px solid #e0e6ed;
  border-radius: 9px;
  transition: all .3s ease;
}

.oe-exide-feature:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 22, 34, .3);
  box-shadow: 0 12px 28px rgba(7, 31, 73, .07);
}

.oe-exide-feature-icon {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border-radius: 7px;
  background: #eef4fb;
  color: var(--oe-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.oe-exide-feature h4 {
  margin: 1px 0 4px;
  color: var(--oe-navy); 
  font-size: 16px;
  font-weight: 700;
}

.oe-exide-feature p {
  margin: 0;
  color: #000; 
  font-size: 14px;
  line-height: 1.5;
}


/* =========================================
 APPLICATION TAGS
========================================= */

.oe-exide-applications {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 22px;
}

.oe-exide-applications span {
  padding: 7px 10px;
  border-radius: 30px;
  background: #eef3f8;
  color: #000; 
  font-size: 12px;
  font-weight: 700;
}


/* =========================================
 ACTIONS
========================================= */

.oe-exide-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 27px;
}

.oe-exide-primary-btn {
  min-height: 47px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  background: var(--oe-navy);
  border: 1px solid var(--oe-navy);
  border-radius: 6px;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 700;
  transition: .3s ease;
}

.oe-exide-primary-btn:hover {
  color: #fff;
  background: var(--oe-red);
  border-color: var(--oe-red);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(201,22,34,.2);
}

.oe-exide-text-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--oe-navy);
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 700;
  transition: .25s ease;
}

.oe-exide-text-btn:hover {
  color: var(--oe-red);
}

.oe-exide-text-btn i {
  font-size: 10px;
}


/* =========================================
 TRUST STRIP
========================================= */

.oe-exide-trust {
  position: relative;
  z-index: 2;
  margin-top: 70px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 13px;
  background: var(--oe-navy);
  border-radius: 10px;
  box-shadow: 0 15px 35px rgba(7, 31, 73, .13);
}

.oe-exide-trust-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(255,255,255,.10);
  font-size: 13px;
}

.oe-exide-trust-text {
  flex: 1;
}

.oe-exide-trust-text span {
  display: block;
  color: #9eafc6; 
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 1.2px;
}

.oe-exide-trust-text strong {
  display: block;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  margin-top: 3px;
}

.oe-exide-trust-arrow {
  color: #e12934;
  font-size: 13px;
}


/* =========================================
 TABLET
========================================= */

@media (max-width: 991px) {

  .oe-exide-section {
      padding: 50px 0 50px;
  }

  .oe-exide-main {
      grid-template-columns: 1fr;
      gap: 55px;
  }

  .oe-exide-visual {
      max-width: 580px;
      width: 100%;
      margin: auto;
  }

  .oe-exide-content {
      max-width: 700px;
      margin: auto;
  }

}


/* =========================================
 MOBILE
========================================= */

@media (max-width: 767px) {

  .oe-exide-section {
      padding: 40px 0 30px;
  }

  .oe-exide-heading {
      margin-bottom: 35px;
  }

  .oe-exide-eyebrow {
      font-size: 8px;
      letter-spacing: 1.1px;
      gap: 7px;
  }

  .oe-exide-eyebrow span {
      width: 16px;
  }

  .oe-exide-heading h2 {
      font-size: 28px;
  }

  .oe-exide-heading p {
      font-size: 14px;
  }

  .oe-exide-main {
      gap: 45px;
  }

  .oe-exide-visual-card {
      padding: 17px;
      border-radius: 14px;
  }

  .oe-exide-top-line > span {
      font-size: 14px;
  }

  .oe-exide-verified {
      font-size: 7px;
      padding: 5px 7px;
  } 
 

  .oe-exide-battery {
      transform: scale(.88);
      margin-top: -5px;
      margin-bottom: 5px;
  }

  .oe-exide-visual-footer {
      gap: 2px;
  }

  .oe-exide-visual-footer > div {
      font-size: 14px;
      flex-direction: column;
      gap: 4px;
  }

  .oe-exide-floating {
      left: 50%;
      transform: translateX(-50%);
      bottom: -20px;
      width: max-content;
  }

  .oe-exide-content-label {
      font-size: 8px;
  }

  .oe-exide-content h3 {
      font-size: 28px;
  }

  .oe-exide-content > p {
      font-size: 11.5px;
      line-height: 1.75;
  }

  .oe-exide-content .oe-exide-intro {
      font-size: 12px;
  }

  .oe-exide-features {
      grid-template-columns: 1fr;
      gap: 9px;
  }

  .oe-exide-feature {
      padding: 11px;
  }

  .oe-exide-feature h4 {
      font-size: 11px;
  }

  .oe-exide-feature p {
      font-size: 9px;
  }

  .oe-exide-applications {
      gap: 5px;
  }

  .oe-exide-applications span {
      font-size: 7.5px;
      padding: 6px 8px;
  }

  .oe-exide-actions {
      flex-direction: column;
      align-items: stretch;
      gap: 12px;
  }

  .oe-exide-primary-btn {
      width: 100%;
      min-height: 45px;
  }

  .oe-exide-text-btn {
      justify-content: center;
  }

  .oe-exide-trust {
      margin-top: 45px;
      padding: 14px;
  }

  .oe-exide-trust-text strong {
      font-size: 12px;
      line-height: 1.45;
  }

}


/* =========================================
 SMALL MOBILE
========================================= */

@media (max-width: 390px) {

  .oe-exide-heading h2 {
      font-size: 29px;
  }

  .oe-exide-verified {
      display: none;
  }

  .oe-exide-battery {
      transform: scale(.78);
      margin-top: -15px;
      margin-bottom: -8px;
  }

  .oe-exide-floating {
      width: calc(100% - 30px);
      justify-content: center;
  }

}

/* ==========================================
   OE BUSINESS SUPPORT
   GET QUOTE SECTION
========================================== */

.oe-getquote-section {
  position: relative;
  overflow: hidden;
  padding: 75px 0;
  background: #f6faff;
  font-family: "Inter", sans-serif;
}

.oe-getquote-section::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -180px;
  top: -190px;
  border-radius: 50%;
  background: #e8f3ff;
}

.oe-getquote-section::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  left: -160px;
  bottom: -150px;
  border-radius: 50%;
  background: #edf6ff;
}


/* Heading */

.oe-getquote-heading {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.oe-getquote-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  color: #0868b8;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1.8px;
}

.oe-getquote-eyebrow span {
  width: 32px;
  height: 1px;
  background: #0b72c9;
}

.oe-getquote-heading h2 {
  margin: 0;
  color: #142c46;
  font-family: "Montserrat", sans-serif;
  font-size: 42px;
  line-height: 1.2;
  font-weight: 700;
}

.oe-getquote-heading h2 strong {
  color: #0873c7;
}

.oe-getquote-heading p {
  max-width: 650px;
  margin: 14px auto 0;
  color: #66788b;
  font-size: 14px;
  line-height: 1.8;
}


/* Main Box */

.oe-getquote-box {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  overflow: hidden;
  border: 1px solid #e2ebf3;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 25px 65px rgba(20, 58, 94, .10);
}


/* Left */

.oe-getquote-info {
  position: relative;
  overflow: hidden;
  padding: 42px;
  background: #0b2948;
}

.oe-getquote-info::before {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  top: -120px;
  right: -100px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 50%;
}

.oe-getquote-label {
  position: relative;
  display: inline-block;
  margin-bottom: 18px;
  color: #6dbcf1;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1.5px;
}

.oe-getquote-info h3 {
  position: relative;
  margin: 0 0 16px;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 30px;
  line-height: 1.3;
}

.oe-getquote-info h3 strong {
  display: block;
  color: #69bdf4;
}

.oe-getquote-info > p {
  position: relative;
  margin: 0;
  color: #c5d3df;
  font-size: 14px;
  line-height: 1.8;
}


/* Points */

.oe-getquote-points {
  position: relative;
  margin-top: 28px;
  padding-top: 25px;
  border-top: 1px solid rgba(255,255,255,.12);
}

.oe-getquote-point {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 18px;
}

.oe-getquote-point:last-child {
  margin-bottom: 0;
}

.oe-getquote-point-icon {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  background: rgba(255,255,255,.08);
  color: #6dc1f6;
  font-size: 15px;
}

.oe-getquote-point strong {
  display: block;
  margin-bottom: 3px;
  color: #fff;
  font-size: 14px;
}

.oe-getquote-point span {
  display: block;
  color: #a9bdce;
  font-size: 14px;
}


/* Contact */

.oe-getquote-contact {
  position: relative;
  margin-top: 28px;
  padding-top: 23px;
  border-top: 1px solid rgba(255,255,255,.12);
}

.oe-getquote-contact > span {
  display: block;
  margin-bottom: 10px;
  color: #8fa8bd;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
}

.oe-getquote-contact a {
  display: block;
  width: fit-content;
  margin-bottom: 7px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.oe-getquote-contact a i {
  width: 22px;
  color: #67bdf4;
}


/* Form */

.oe-getquote-form {
  padding: 38px 42px;
}

.oe-getquote-form-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid #edf1f5;
}

.oe-getquote-form-head span {
  display: block;
  margin-bottom: 5px;
  color: #0b72c9;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1.3px;
}

.oe-getquote-form-head h3 {
  margin: 0;
  color: #172d44;
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 700;
}

.oe-getquote-form-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: #edf6ff;
  color: #0b72c9;
  font-size: 18px;
}


/* Fields */

.oe-getquote-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
}

.oe-getquote-field {
  margin-bottom: 17px;
}

.oe-getquote-field label {
  display: block;
  margin-bottom: 7px;
  color: #304357;
  font-size: 14px;
  font-weight: 700;
}

.oe-getquote-field label b {
  color: #0873c7;
}

.oe-getquote-input {
  position: relative;
}

.oe-getquote-input > i:first-child {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  color: #8fa1b2;
  font-size: 14px;
  pointer-events: none;
}

.oe-getquote-input input,
.oe-getquote-input select,
.oe-getquote-input textarea {
  width: 100%;
  border: 1px solid #dce6ee;
  border-radius: 10px;
  outline: none;
  background: #fbfdff;
  color: #263b50;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  transition: .3s ease;
}

.oe-getquote-input input,
.oe-getquote-input select {
  height: 50px;
  padding: 0 40px;
}

.oe-getquote-input textarea {
  min-height: 105px;
  padding: 14px 40px;
  resize: vertical;
  line-height: 1.6;
}

.oe-getquote-input input::placeholder,
.oe-getquote-input textarea::placeholder {
  color: #9caab7;
}

.oe-getquote-input input:focus,
.oe-getquote-input select:focus,
.oe-getquote-input textarea:focus {
  border-color: #0b72c9;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(11,114,201,.08);
}


/* Select */

.oe-getquote-input select {
  appearance: none;
  cursor: pointer;
}

.oe-getquote-select-arrow {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  color: #8fa1b2;
  font-size: 11px;
  pointer-events: none;
}

.oe-getquote-textarea > i:first-child {
  top: 17px;
  transform: none;
}


/* Button */

.oe-getquote-btn {
  width: 100%;
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 7px 6px 22px;
  border: 0;
  border-radius: 11px;
  background: #0b72c9;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: .3s ease;
}

.oe-getquote-btn i {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(255,255,255,.15);
  transition: .3s ease;
}

.oe-getquote-btn:hover {
  background: #075ca8;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(11,114,201,.20);
}

.oe-getquote-btn:hover i {
  transform: translateX(3px);
}

.oe-getquote-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  color: #7d8d9c;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
}

.oe-getquote-note i {
  color: #0b72c9;
}


/* ==========================================
 RESPONSIVE
========================================== */

@media (max-width: 991px) {

  .oe-getquote-box {
      grid-template-columns: 1fr;
  }

  .oe-getquote-info {
      padding: 35px;
  }

  .oe-getquote-form {
      padding: 35px;
  }

}


@media (max-width: 767px) {

  .oe-getquote-section {
      padding: 55px 0;
  }

  .oe-getquote-heading {
      margin-bottom: 30px;
  }

  .oe-getquote-heading h2 {
      font-size: 32px;
  }

  .oe-getquote-heading p {
      font-size: 14px;
  }

  .oe-getquote-info,
  .oe-getquote-form {
      padding: 28px 22px;
  }

  .oe-getquote-info h3 {
      font-size: 26px;
  }

  .oe-getquote-row {
      grid-template-columns: 1fr;
      gap: 0;
  }

}


@media (max-width: 480px) {

  .oe-getquote-section {
      padding: 45px 0;
  }

  .oe-getquote-heading h2 {
      font-size: 28px;
  }

  .oe-getquote-eyebrow {
      font-size: 14px;
  }

  .oe-getquote-eyebrow span {
      width: 20px;
  }

  .oe-getquote-info,
  .oe-getquote-form {
      padding: 24px 17px;
  }

  .oe-getquote-info h3 {
      font-size: 24px;
  }

  .oe-getquote-form-head h3 {
      font-size: 21px;
  }

  .oe-getquote-form-icon {
      width: 44px;
      height: 44px;
  }

}