/* Base variables, typography, and components tuned to the provided design */

:root {
  /* Color system (3-5 total) */
  --color-primary: #63C1F9;
  --color-accent: #61C0F7;
  --color-text: #101010;
  --color-black:#000000;
  --color-muted: #6b7280;
  --color-surface: #FFFFFF;
  --block-bg-color:#F3F3F3;
  --bg-second:#EEEEEE;

  --radius: 1rem;

  --font-body: "Roboto", system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  --font-title: "Barlow Condensed", system-ui, -apple-system, Segoe UI, Arial, sans-serif;
}

html,
body {
  height: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: #fff;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand {
  font-family: var(--font-title);
}

.h1{
  font-weight: 500;
  font-size: 72px;
  line-height: 1.2;
  letter-spacing: -1.6px;
}
.h2 {
  font-weight: 500;
  font-size: 48px;
  line-height: 1.4;
  letter-spacing: 0px;
}
.h3{
  font-weight: 500;
  font-size: 40px;
  line-height: 1.4;
  letter-spacing: 0px;
}
.h5 {
  font-weight: 500;
  font-size: 32px;
  line-height: 1.4;
  letter-spacing: 0px;
}
.h6 {
  font-weight: 500;
  font-size: 22px;
  line-height: 1.4;
  letter-spacing: 0px;
}
.h4 {
  font-weight: 600;
  font-size: 28px;
  line-height: 1.4;
  letter-spacing: 0px;
}
p{
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0;
}
.font-title{
    font-family: var(--font-title) !important;
}
/* Topbar */
.topbar {
  background: #2A2A2A;
  padding: 12px 15px;
  border-radius: 16px;
  transition: transform .3s ease, opacity .3s ease, height .3s ease;
  will-change: transform, opacity, height;
}
.topbar .container, .navbar .container{
  max-width:100%;
  margin:0;
}
.topbar a,.nav-link{
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.39px;
}
/* Wrapper */
.mobile-business-toggle {
  position: relative;
   z-index: 10;
  width: 33%;
}

/* Button style */
.business-btn {
  background: none;
  color: #fff;
  font-weight: 600;
  display: flex;
  gap: 8px;
  cursor: pointer;
  font-size: 12px;
  align-items: center;
}

.business-btn .icon {
  font-size: 14px;
  line-height: 1;
  border-radius: 100%;
  padding: 0px 4px 2px 4px;
  border: 1px solid #fff;
}

/* Dropdown full overlay */
/*.business-menu {*/
/*  display: none;*/
/*  position: relative;*/
/*  top: 110%;*/
/*  left: 0;*/
/*  width: 85vw;*/
/*  height: 85vh;*/
/*  background: transparent;*/
/*  border-radius: 12px;*/
/*  padding: 25px 20px;*/
/*  flex-direction: column;*/
/*  z-index: 1;*/
/*   transition: max-height 0.4s ease, opacity 0.3s ease-in-out;*/
/*   pointer-events: none; */
/*}*/

/* Active (open) state */
/*.mobile-business-toggle.active .business-menu {*/
/*  max-height: 100vh; */
/*  opacity: 1;*/
/*  padding: 25px 20px;*/
/*  pointer-events: auto;*/
/*}*/

/*.business-menu a {*/
/*  display: block;*/
/*  font-weight: 600;*/
/*  font-size: 16px;*/
/*  color: #fff;*/
/*  padding: 14px 0;*/
/*  border-bottom: 1px solid rgba(255,255,255,0.2);*/
/*  text-decoration: none;*/
/*  transition: color 0.3s ease;*/
/*}*/

/*.business-menu a:last-child {*/
/*  border-bottom: none;*/
/*}*/

.business-menu {
  display: flex;
  position: relative;
  top: 110%; /* just below button */
  left: 0;
  width: auto; /* Let it fill available space */
  min-width: 270px; /* Minimum width for readability */
  max-width: 100%;
  max-height:0vh;
  overflow: hidden;
  background: #2A2A2A;
  border-radius: 12px;
  padding: 0px 20px;
  flex-direction: column;
  z-index: 1110;
  opacity: 0;
  transform: translateY(-10px);
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  will-change: max-height, opacity, transform;
}

/* Active (open) state */
.mobile-business-toggle.active .business-menu {
  max-height: 85vh; /* enough to open fully */
  opacity: 1;
  transform: translateY(0);
  padding: 25px 25px;
  pointer-events: auto;
}
.mobile-business-toggle.active{
  width: 100%;
} 

.business-menu a {
  display: block;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  text-decoration: none;
  transition: color 0.3s ease;
}

.business-menu a:last-child {
  border-bottom: none;
}

 /*Active state */
.mobile-business-toggle.active .business-menu {
  display: flex;
}
 /*When overlay is open, hide right-nav */
.mobile-business-toggle.active ~ .right-nav {
  display: none !important;
}

.mobile-business-toggle.active .icon {
  content: "-";
}


header.main-header {
    position: fixed;
    width: 100%;
    transition: transform .3s ease, background-color .3s ease, box-shadow .3s ease;
    z-index: 1100;
    top: 0;
    right: 0;
    left: 0;
}

/* Collapse only the topbar on scroll down */
.topbar.is-hidden {
  transform: translateY(-120%);
  opacity: 0;
}

/* Make navbar behave like sticky even inside transformed parents */
.main-header nav.navbar {
  position: relative; /* default */
  z-index: 1;
  transition: transform .3s ease, box-shadow .2s ease;
}

/* When scrolled, lift the navbar with a shadow */
.main-header.is-scrolled nav.navbar {
    box-shadow: 0 6px 18px rgba(0,0,0,.2) !important;
}

/* When topbar is hidden, shift nav up to occupy the top */
.main-header.topbar-hidden nav.navbar {
  transform: translateY(-35px); /* roughly the vertical padding top/bottom */
}
.nav-link{
  color: var(--color-text);
}
nav.navbar.sticky-top {
    border-radius: 16px;
    padding: 14px 15px;
}

/* Header */
.custom-header {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  z-index: 1000;
}
.mobile-logo{
  display:none;
}

/* Toggle Button */
.custom-toggle {
  background: none;
  border: none;
  display: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: #000;
  z-index: 1100;
}

.custom-toggle .close-icon {
  display: none;
}

.custom-toggle.open .open-icon {
  display: none;
}

.custom-toggle.open .close-icon {
  display: inline;
}
 
/* Mobile Overlay Menu */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
  z-index: 1100;
}

.mobile-menu-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-panel {
  background: #fff;
  width: 100%;
  position: relative;
  transform: translateY(-8px);
  opacity: 0;
  transition: transform .25s ease, opacity .25s ease;
  padding: 20px;
  box-sizing: border-box;
}

.mobile-menu-overlay.open .mobile-menu-panel {
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  color: #000;
  padding: 8px;
  z-index: 1;
}

.mobile-nav {
  padding-top: 50px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}
.mobile-nav-list li {
  border-bottom:1px solid rgba(0,0,0,0.1);
  padding:24px 0;
}
.mobile-nav-link {
  display: block;
  padding: 20px 0;
  color: #000;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid #e5e5e5;
  transition: color 0.3s ease;
}

.mobile-nav-link:last-of-type {
  border-bottom: none;
}

.mobile-nav-link:hover {
  color: #63C1F9;
}

.mobile-search {
  padding: 20px 0;
  color: #000;
  display: flex;
  align-items: center;
}

/* search-overlay css */
.search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
  }

  .search-overlay.active {
    display: flex;
    animation: fadeIn 0.3s ease forwards;
  }

  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  .close-search {
    position: absolute;
    top: 25px;
    right: 30px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    transition: opacity 0.2s;
  }

  .close-search:hover {
    opacity: 0.7;
  }

  .search-center {
    width: 80%;
    max-width: 800px;
    display: flex;
    justify-content: center;
  }

  #searchForm {
    width: 100%;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #fff;
  }

  #searchInput {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 1.5rem;
    padding: 0.5rem 0;
  }

  #searchInput::placeholder {
    color: #aaa;
  }

  #searchForm button {
    background: none;
    border: none;
    cursor: pointer;
  }

.section-spacing {
  padding: 80px 0; 
}
.section-small-space{
  padding: 40px 0; 
}
.block-bg{
  background: var(--block-bg-color) !important;
} 
.second-bg {
    background :var(--bg-second) !important;
}
.font-black{
  color:var(--color-black);
}

/* About Us page - Our Story section: top 40px, left/right 40px, bottom 40px */
.page-id-95 section.section-spacing.section-spacing-mob.news-section.our-story-section {
  padding: 40px 0px 0px !important;
}
section.section-spacing.section-spacing-mob.our-values-section {
  padding: 5px 0px 40px !important;
}
section.section-spacing.section-spacing-mob.news-section {
  background: #EEEEEE;
}
section.section-spacing.section-spacing-mob.news-section.our-story-section {
  background: #fff;
}

/* About Us – Inquiry Form Labels Font Fix */
.inquiry-form label.form-label {
  font-family: "Barlow Condensed", system-ui, -apple-system, "Segoe UI", Arial, sans-serif !important;
  font-size: 20px;
}

.text-secondary{
  color:#8C8B8B !important;
}
.size-18{
  font-size: 18px;
  line-height: 1.4;
  font-weight: 400;
  font-family: var(--font-body);
}
.size-14{
  font-size: 13.44px;
  line-height: 1.4;
  letter-spacing: 0.02em; 
}
.size-22 {
  font-size: 22px;
  line-height: 1.5;
  font-weight: 400;
  font-family: var(--font-body);
}
.h-fit-content {
  height: fit-content;
}
.bottom-bg{
 background-position: center bottom !important;  
}
.divider{
  padding: 40px 0;
  opacity: 0.2;
}
.divider-border{
  width: 100%;
    height: 1px;
    display: block;
  border: 1px solid #c4c4c4e3;
}
.business-feature {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 16px;
  padding:0px 0 16px 0;
}
.business-feature:after{
    border-bottom: 1px solid #595959;
    /*padding-bottom: 16px;*/
    opacity: 0.2;
    content: '';
    position: absolute;
    width: 100%;
    bottom: 0;
}
.col-12:last-child .business-feature{
    padding-bottom:0 !important;
}
.col-12:last-child .business-feature:after{
    border-bottom:none;
}
/*.news-section{*/
/*  background:#EEEEEE !important;   */
/*}*/
/* Brand mark accent */
.brand-mark {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: var(--color-primary);
}

/* Buttons */
.btn-primary {
  --bs-btn-bg: var(--color-primary);
  --bs-btn-border-color: var(--color-primary);
  --bs-btn-hover-bg: #093f8f;
  --bs-btn-hover-border-color: #093f8f;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: 16px;
}

.btn-outline-primary {
  --bs-btn-color: var(--color-primary);
  --bs-btn-border-color: var(--color-primary);
  --bs-btn-hover-bg: var(--color-primary);
  --bs-btn-hover-border-color: var(--color-primary);
}
.btn-width{
  width:252px;  
}

/* Hero */
.hero {
  position: relative;
}
.hero .lead{
  font-size: 24px;
  font-weight: 400;
}

.hero-slide {
  position: relative;
  min-height: 70vh;
  background-position: center;
  background-size: cover;
  display: flex !important;
  align-items: center;
  overflow: hidden; /* ensure parallax bg doesn't overflow */
}

.hero-slide .bg {
  position: absolute;
  inset: -20% 0 -20% 0; /* larger bleed so no edges when translating */
  background-size: cover;
  background-position: center center no-repeat;
  z-index: 0;
  will-change: transform;
  transform: translate3d(0,0,0);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(121deg, rgb(0 0 0 / 92%), rgb(15 20 28 / 4%));
  z-index: 1;
  pointer-events: none;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: transform;
}
.no-overlay{
     background: unset !important;
}

.hero-content {
  position: relative;
  padding: 3rem 0;
  z-index: 2; /* above overlay + bg */
}
.hero-content h2{
  font-size: 56px;
  font-weight: 400;
  letter-spacing: -1.6px;
}
.hero-banner .slick-dots{
    bottom: 10px;
}
/* Slick dots styling */
.slick-dots li button:before {
  color: #fff;
  opacity: 0.5;
}
.slick-dots li.slick-active button:before {
  color: #fff;
  opacity: 1;
}
.slick-dotted.slick-slider{
  margin-bottom: 0 !important; 
}

/* Sections */
.section-kicker {
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--color-accent);
  font-weight: 700;
  margin-bottom: .5rem;
}

/* Stats */
.bg-surface {
  background: var(--color-surface) !important;
} 
.statshead{
  gap:16px;
}
.stats-section{
  padding-bottom: 72px;
}
 .stats .stat-card {
  border-right: 1px solid #0000002b;
  padding-right: 24px;
  height: 100%;
}
.stats .col-12:nth-child(3) .stat-card {
  border-right: none;
}

.stat-title {
  font-family: var(--font-title);
  color: #101010;
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 0;
}
.stats-section .stats.row {
    padding: 0 40px;
}

/* leadership */
.leadership{
    padding: 80px 40px;
}
.round-border{
  border-radius: 24px;
}
.leadership-image-slider .slick-dots {  
  bottom: auto;
}
.leadership-image-slider .slick-dots li button:before {
  color: #ccc;
  opacity: 1;
  font-size: 10px;
}
.leadership-image-slider .slick-dots li.slick-active button:before {
  color: #213A8F;
  opacity: 1;
}

.feature{
  position: relative;
  padding: 16px 0;
}
.feature::after {
    border-bottom: 1px solid #595959;
    padding-bottom: 16px;
    opacity: 0.2;
    content: '';
    position: absolute;
    width: 100%;
    bottom: 0;
}
.grid-features{
    grid-template-columns: repeat(2, 1fr);
  column-gap: 80px;
}
.feature-sensors-description{
 padding-top:40px;   
}
.feature-sensors-item{
    border-bottom: 1px solid #59595933;
    position:relative;
}
.feature-sensors{
    padding:24px 16px;
    text-transform: uppercase;
}
.feature-sensors::before {
    content: "";
    position: absolute;
    left: 40px;
    top: 28px;
    bottom: 0px;
    width: 4px;
    height: 16px;
    background: rgb(220, 38, 38);
}
.page-template-business .feature-inner-content:last-child{
  border-bottom: none !important;
}
.feature-inner-content{
 align-items:center !important;   
}


.col-12:last-child .feature::after {
    border-bottom: unset;
}
.mob-img{
    display:none;  
 }
/* business */
.business-card,.blog-card,.news-card {
    border-radius: 10px;
  overflow: hidden; /* keep image inside card */
  /*cursor:pointer;*/
}
.image-wrapper{
     border-radius: 10px;
  overflow: hidden;
}
.business-card img,.blog-card img,.news-card img{
  border-radius: 10px;
  transition: transform 0.5s ease;
  transform-origin: center center; 
}
.business-card:hover img,.blog-card:hover img,.news-card:hover img{
  border-radius: 10px;
  transform: scale(1.08);
}
.business-card h5.card-title{
  font-weight: 600;
}
.business-card p{
    display: -webkit-box;
  -webkit-line-clamp: 3; /* number of lines to show */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;   
}
.business-card .tag{
  position: relative;
  display: flex;
  align-items:center;
  justify-content:space-between;
  border-top: 1px solid #0000002b;
  border-bottom: 1px solid #0000002b;
  padding: 12px 15px;
  margin:10px 0;
  font-size:20px;
  font-weight: 600;
  font-family: var(--font-title);
  cursor:pointer;
  transition:0.3s all;
}
.tag-area{
    color :#101010 !important;
}
.business-card span.tag::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #dc2626;
  margin: 10px 0;
}
.btn-business{
  display: block;
  margin-bottom: 22px;
  padding-top:16px;
  color: #213A8F;
}
.business-card .tag svg {
    display:none;
    transition:0.3s all;
}
.business-card .tag:hover svg {
    display:block;
    transition:0.3s all;
}
/* newsroom */
#newsroom .blog-card img {
  border-radius: 8px;
}
#newsroom a.newsroom-link h6.card-title{ 
  color: var(--color-black);
}
#newsroom .newsroom-link .card-body p
{
    font-size:15px;
}
/* Tag badge styles */
.news-tag-badge {
  position: absolute;
  left: 0px;            /* adjust to match design */
  bottom: 0px;          /* adjust to match design */
  display: inline-block;
  padding: 8px 16px;
  border-radius: 8px;
  background-color: #213A8F; /* dark blue as in sample */
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.4;
  z-index: 5;
}

/* Feature list */
.feature {
  display: flex;
  align-items: flex-start;
  flex-direction: row;
  gap: 16px;
}

.icon {
  font-weight: 700;
}

/* Cards */
.card-img-top {
  height: 185px;
  object-fit: cover;
}

footer.footer {
    background: #F9F9F9 !important;
}
.footer .link-body-emphasis:hover {
  color: var(--color-primary) !important;
}

.footer-title {
  font-family: var(--font-title);
  color: var(--color-primary);
  letter-spacing: .02em;
}

.footer-link {
  display: inline-block;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08px;
  line-height: 18px;
  color: #768089;
  text-decoration: none;
  margin-bottom: 13px;
}
.footer-link:hover {
  color: var(--color-primary);
}

.footer-nav-link {
  text-decoration: none;
  color: #213A8F;
  line-height: 20.16px;
  letter-spacing: 0.08px;
  font-size: 13px;
  font-family: var(--font-body);
  font-weight: 800;
  text-transform: uppercase;
  padding: .3rem 0;
  display: block;
}
.footer-policy {
      color: var(--color-muted);
      text-decoration: none;
      font-size:11.8px;
      line-height: 1.5;
      font-weight: 400;
      letter-spacing: 0.08px;
      color:#768089;
}

.footer-policy:hover {
  color: var(--color-primary);
}

.footer-social svg path {
  fill: #8C8B8B;
}
.footer-social:hover svg path {
  fill: var(--color-primary);
}


/* Utilities */
.rounded-4 {
  border-radius: 1rem !important;
}

/* Testimonial section styles */
.testimonial-card {
  background: radial-gradient(
    120% 120% at 100% 100%,
    rgba(11, 15, 20, 0.92) 0%,
    rgba(11, 15, 20, 1) 55%,
    rgba(11, 15, 20, 1) 100%
  );
  padding:58px 50px 58px 50px;
  color: #fff;
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  min-height: 420px;
  position: relative;
}

.testimonial-media {
  position: relative;
}

.testimonial-body {
  flex: 1;
  padding: clamp(20px, 3vw, 40px) clamp(20px, 3.5vw, 48px);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonial-body::after {
  content: "";
  background-image: url(../images/quote-icon.png);
  position: absolute;
  right: clamp(12px, 2vw, 24px);
  bottom: clamp(95px, -1vw, -12px);
  height: 172px;
  width: 214px;
  font-family: var(--font-title);
  font-weight: 700;
  line-height: 0.6;
  font-size: clamp(120px, 18vw, 220px);
  color: rgba(31, 122, 224, 0.3); /* uses accent hue */
  pointer-events: none;
}

.testimonial-quote {
  margin: 0 0 40px 0;
  color:#FFFFFFE5;
  line-height: 130%;
  font-size: 24px;
  padding-left: 32px;
  border-left: 3px solid var(--color-accent);
}

.testimonial-author .author-name {
  font-family: var(--font-title);
  font-size:40px;
  color: var(--color-accent);
  font-weight: 400;
}

.testimonial-author .author-meta {
  color: rgba(255, 255, 255, 0.7);
}

/* slider chrome */
.testimonial .slick-list {
  overflow: hidden;
  border-radius: 1rem;
}
.testimonial .slick-dots li button:before {
  color: #fff;
  opacity: 0.45;
}
.testimonial .slick-dots li.slick-active button:before {
  opacity: 1;
}
.testimonial .slick-prev,
.testimonial .slick-next {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}
.testimonial .slick-prev:hover,
.testimonial .slick-next:hover {
  background: rgba(255, 255, 255, 0.2);
}
.testimonial .slick-prev:before,
.testimonial .slick-next:before {
  color: #fff;
}

/* on-scroll fade-in utility */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* BUSINESS DIVISIONS slider chrome (minimal) */
.divisions-slider .slick-slide {
  padding: 0 12px;
}
.divisions-slider .slick-list {
  margin: 0 -12px;
}
.divisions-slider .slick-dots li button:before {
  color: #000;
  opacity: .35;
}
.divisions-slider .slick-dots li.slick-active button:before {
  opacity: 1;
}
.divisions-slider .slick-prev,
.divisions-slider .slick-next {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(0,0,0,.06);
}
.divisions-slider .slick-prev:hover,
.divisions-slider .slick-next:hover {
  background: rgba(0,0,0,.12);
}
.divisions-slider .slick-prev:before,
.divisions-slider .slick-next:before {
  color: #000;
}
.division-slide .card-title{
  font-size: 28px;
  font-weight: 600;
}
.division-slide .card-body{
    display: flex;
    height: 225px;
    flex-direction: column;
}

/* Remove Swiper's default arrow icons */
.divisions-slider .swiper-button-prev::after,
.divisions-slider .swiper-button-next::after,
.divisions-slider .swiper-navigation,
.blogs-slider .swiper-button-prev::after,
.blogs-slider .swiper-button-next::after
{
  content: none !important;
  display: none;
}

/* BUSINESS PAGE SPECIFIC STYLES */
.page-template-business .leadership{
    background:#FFF !important;
}
.page-template-business .border-bottom{
    border-bottom:1px solid rgba(0,0,0,0.2) !important;
}
.page-template-business .hero-content,
.page-template-business-gecko .hero-content,
.page-template-business-sarbloh-motors .hero-content{
  margin-top:15rem;   
}
 
/* Product Tabs */
/*.product-tabs {*/
/*  background: #D4EFFF;*/
/*  border-radius: 12px;*/
/*}*/

/*.tab-item {*/
/*  flex: 1;*/
/*  padding: 16px 24px;*/
/*  text-align: center;*/
/*  cursor: pointer;*/
/*  border-radius: 8px;*/
/*  transition: all 0.3s ease;*/
/*  background: transparent;*/
/*  color: #000;*/
/*  font-weight: 600;*/
/*  font-size: 16px;*/
/*}*/

/*.tab-item:first-child {*/
/*  border-top-left-radius: 8px;*/
/*  border-bottom-left-radius: 8px;*/
/*}*/

/*.tab-item:last-child {*/
/*  border-top-right-radius: 8px;*/
/*  border-bottom-right-radius: 8px;*/
/*}*/

/*.tab-item.active {*/
/*  background: #17479E;*/
/*  color: white;*/
/*}*/

/* .tab-item:hover:not(.active) {
  background: rgba(99, 193, 249, 0.1);
  color: var(--color-primary);
} */

/* V-BAT Detail Section - Full Screen Video Background */
.vbat-detail-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  border-radius: 24px;
  overflow: hidden;
}

.hero-image-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  z-index: 0;
}

/* Dark overlay over video for text readability */
.vbat-video-overlay {
  position: absolute;
  inset: 0;
  background: #000;
  opacity: 0.2;
  z-index: 2;
  pointer-events: none;
}

/* Fallback gradient overlay */
.vbat-detail-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(135, 206, 235, 0.3) 0%, rgba(70, 130, 180, 0.3) 100%);
  z-index: 0;
}

.container_1360_wrp {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 120px 20px 90px;
  display: flex;
  justify-content: center;
}

.caption_wrp {
  text-align: center;
  color: #fff;
  max-width: 600px;
}

.common_ttle {
  font-family: var(--font-title);
  font-size: 48px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 24px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.desc {
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
  margin-bottom: 32px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.common_cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: white;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

.play-icon {
  width: 38px;
  height: 38px;
  background:#EBEBEB;
  border-radius:50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

/* Play/Pause icon states */
.play-icon.play-state svg {
  display: block;
}

.play-icon.pause-state svg {
  display: none;
}

.play-icon.pause-state::after {
  content: '';
  width: 6px;
  height: 15px;
  background: #17479E;
  margin: 0 2px;
  display: inline-block;
}

.play-icon.pause-state::before {
  content: '';
  width: 6px;
  height: 15px;
  background: #17479E;
  margin: 0 2px;
  display: inline-block;
}

/* Video transition effects */
.video-fade-in {
  opacity: 0;
  animation: fadeIn 0.5s ease-in-out forwards;
}

.video-fade-out {
  opacity: 1;
  animation: fadeOut 0.3s ease-in-out forwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}

/* Content transition effects */
.content-fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: contentFadeIn 0.6s ease-out forwards;
}

@keyframes contentFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Features Accordion */

.Feature-top{
    padding-bottom: 40px;
    border-bottom:1px solid #0000002b;
}
.feature-description{
  padding-top: 40px;
}
.feature-item {
  border-bottom: 1px solid #59595933;
}

.feature-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}
.features-accordion-title{
  font-size: 28px;
  font-weight: 600;
}
.feature-content p{
  font-size: 16px;
}

.feature-item.active {
  border-color: #595959;
}
.feature-item.active .feature-header {
  padding-left: 20px;
}

.feature-item.active .feature-header::before {
  content: '';
  position: absolute;
  left: 0;
  top: 30px;
  bottom: 0;
  width: 4px;
  height:25px;
  background: #dc2626;
}

.feature-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-weight: bold;
  font-size: 18px;
  transition: all 0.3s ease;
}

.feature-icon .plus {
  display: block;
}

.feature-icon .minus {
  display: none;
}
.feature-icon .minus,.feature-icon .plus {
    height:30px;
}
.feature-item.active .feature-icon .plus {
  display: none;
}
.feature-item.active .feature-icon .minus {
  display: block;
}
.mobile-business-toggle .plus{
    display: block;
}
.mobile-business-toggle .minus{
    display: none;
}
.mobile-business-toggle.active .plus{
    display: none;
}
.mobile-business-toggle.active .minus{
    display: block;
}

.feature-content {
  max-height: 0;
  overflow: hidden;
  transition:max-height 0.5s ease-in-out;
  background: rgba(99, 193, 249, 0.05);
  /*padding:16px;*/
}
.feature-content p{
    padding:16px 16px;
}

.feature-content.active {
  /*height: 200px;*/
  background: #E9F7FF;
  border-radius: 16px;
}

/* News Cards */
.news-card .card-title{
  font-weight: 600 !important;
  font-size: 26px !important;
}

.news-card .card-img-top {
  border-radius: 8px;
  height: 200px;
  object-fit: cover;
}

.btn-link-primary {
  color: var(--color-primary) !important;
  transition: all 0.3s ease;
}

.btn-link-primary:hover {
  color: #093f8f;
  text-decoration: none;
}
.news-btn{
  color:#213A8F !important;
  text-decoration: none;
  font-size:13.44px;
  transition: 0.3s all ease-in-out;
}
.news-btn:hover {
   color: var(--color-primary) !important;
   transition: 0.3s all ease-in-out;
}
.news-btn:hover .svg svg{
   color: var(--color-primary) !important;
   rotate:45deg;
   transition: 0.3s all ease-in-out;
}

/* container and stacking to avoid clipping */
.nav-item.dropdown { position: relative; overflow: visible; z-index: 2200; }

/* caret */
.dropdown-toggle { cursor: pointer; }
.dropdown-toggle::after{
  content:""; display:inline-block; margin-left:6px;
  border-left:4px solid transparent; border-right:4px solid transparent;
  border-top:5px solid currentColor; transition: transform .22s;
}

/* dropdown panel */
.dropdown-menu{
  display:block;
  position: absolute;
  top: calc(100% + 25px);
  left: -300%;
  width: 600px;
  background: #FFFFFF;
  border-radius: 12px;
  padding: 20px 16px;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: all 0.3s ease, transform .2s ease, visibility .2s;
  pointer-events: none; box-sizing: border-box;
}


/* show via hover OR .show class (JS may add .show) */
.nav-item.dropdown:hover .dropdown-menu,
.nav-item.dropdown.show .dropdown-menu {
   opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto;transition: 0.3s ease-in-out;
}
.nav-item.dropdown:hover .ab-svg svg,
.nav-item.dropdown.show .ab-svg svg,
.dropdown-submenu:hover .ab2-svg svg{ transform: rotate(180deg); }
/* Remove default Bootstrap arrow */
.navbar .dropdown-toggle::after {
  display: none !important;
}
.ab-svg svg,
.ab2-svg svg{
  transition: transform 0.3s ease;
}

.dropdown.show > a .ab-svg svg {
  transform: rotate(180deg);
}


/* inner layout */
.dropdown-inner { display: flex; align-items: flex-start;     justify-content: space-between; }
.dropdown-title { margin: 0;
    font-size: 24px;
    font-weight: 600;
    color: #101010;
    letter-spacing: 0.5px; }
.dropdown-desc { margin: 0; font-size:15px; color: #595959;}
.dropdown-col { display: flex; flex-direction: column; gap: 10px; }
.dropdown-item {
  display: block; padding: 12px 0; text-decoration: none; color:#101010;
  font-weight: 600; text-transform: uppercase; font-size: 13px; letter-spacing:0.5px;
  border-bottom: 1px solid #C7C7C7;
}

.dropdown-item:hover {
  color:#213A8F;
  background:transparent;
}
/* --- Smooth hover bridge fix --- */
.nav-item.dropdown:hover::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;          /* place right below the nav link */
  height: 28px;       /* invisible area to keep hover alive */
}

/* Comng Soon btn */
.coming-soon {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  font-size: 8px;
  font-weight: 600;
  color: #D8191F;            /* text color */
  border: 1px solid #FFE8E8; /* border color */
  background: #FFF5F5;       /* soft light red bg */
  border-radius: 999px;
  text-transform: uppercase;
  line-height: 1;
}

/* Compare Variants Section */
.compare-tabs {
  gap: 0;
  display: flex;
  border:1px solid #DEDEDE;
  border-radius: 12px;
  padding: 4px;
  overflow: hidden;
  margin: 0 auto;
}

.compare-tabs .nav-item {
  margin: 0;
}

.compare-tabs .nav-link {
  padding: 12px 91px;
  font-size: 24px;
  font-family: var(--font-title);
  color: #000;
  background: #E7E7E7;
  border: none;
  border-radius: 0;
  transition: all 0.3s ease;
  cursor: pointer;
  font-weight: 600;
  position: relative;
}

.compare-tabs .nav-item:first-child .nav-link {
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
}

.compare-tabs .nav-item:last-child .nav-link {
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
}

.compare-tabs .nav-link:hover {
  color: #000;
  background: #E0E0E0;
}

.compare-tabs .nav-link.active {
  color: #fff;
  background: #17479E;
  border: none;
  font-weight: 600;
}

.compare-label-bar {
  display: inline-block;
  width: 4px;
  height: 32px;
  background: #D5181F;
  border-radius: 2px;
}

.compare-specs-wrapper {
  background-color: #E9F7FF;
  border-radius: 8px;
  padding:0 16px;
  overflow: hidden;
}

.compare-spec-item {
  display: flex;
  align-items: center;
  padding: 16px 0px;
  border-bottom: 1px solid #59595920;
}

.compare-spec-item:last-child {
  border-bottom: none;
}
.compare-spec-item span{
    color:#333333;
    font-size:16px;
    font-weight:400;
    font-family:var(--font-body);
}

/* Ensure Bootstrap tabs work correctly */
.tab-content {
  width: 100%;
}

.tab-pane.fade {
  opacity: 0;
  transition: opacity 0.15s linear;
}

.tab-pane.fade:not(.show) {
  display: none;
}

.tab-pane.fade.show {
  opacity: 1;
  display: block;
}

/* mobile adjustments */
@media (max-width: 880px) {
  .dropdown-menu { position: static; top: auto; left: auto; width: 100%; transform: none; opacity: 1; visibility: visible; padding: 16px; box-shadow: none; border-radius: 8px; margin-top: 8px; }
  .dropdown-inner { flex-direction: column; gap: 12px; }
  .dropdown-desc { max-width: none; }
  .mobile-dropdown-toggle { display:flex; justify-content:space-between; align-items:center; padding:12px 10px; text-decoration:none; color:inherit; }
  .mobile-dropdown-menu { list-style:none; /*margin:10px 20px 0;*/ padding:0; max-height:0; overflow:hidden; transition:max-height .25s; }
  .mobile-dropdown.active .mobile-dropdown-menu { max-height: 360px; }
  .mobile-dropdown-item { display:block; padding:10px 0; font-weight:600; font-size:18px; text-transform:uppercase; text-decoration:none; color:inherit; }
  .mobile-dropdown.active .dropdown-arrow {transform: rotate(180deg);}
  .mobile-dropdown-menu a {padding:0 !important;}
  .mobile-subdropdown-toggle { display:flex; align-items:center; justify-content:space-between; gap:8px; }
  .mobile-subdropdown-button { background:none; border:0; padding:6px; color:inherit; line-height:0; }
  .mobile-subdropdown-menu { list-style:none; margin:6px 0 0 14px; padding:0; max-height:0; overflow:hidden; transition:max-height .25s; }
  .mobile-subdropdown.active .mobile-subdropdown-menu { max-height: 200px; }
  .mobile-subdropdown-item { display:block; padding:8px 0; font-size:16px; font-weight:500; text-transform:uppercase; text-decoration:none; color:inherit; }
  .mobile-subdropdown.active .sub-dropdown-arrow { transform: rotate(180deg); }
}

.dropdown-submenu {
  position: relative;
}

.submenu {
  display: none;
  padding-left: 10px;
  margin-top:10px;
}

.submenu .dropdown-item {
  font-size: 12px !important;
  font-weight:500;
  color:#101010E5 !important;
  letter-spacing:0.5px;
  padding-left:5px;
}
.submenu .dropdown-item:hover{
    color:#63C1F9;
}

.dropdown-submenu:hover .submenu {
  display: block;
}


.dropdown-submenu {
  position: relative;
}

/* parent layout */
.dropdown-item.parent {
  display: flex;
  gap:5px ;
  align-items: center;
}

/* filled caret */
.caret {
  width: 0;
  height: 0;
  border-left: 5px solid #1a1a1a;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  transform: rotate(0deg);
  transition: transform 0.25s ease;
  margin-left: 10px;
}

/* rotate when submenu open */
.dropdown-submenu:hover .caret {
  transform: rotate(90deg);
}

/* remove theme-generated arrows from nested dropdown */
.business-menu .dropdown-submenu > .parent::after {
  display: none !important;
  content: none !important;
}

/* Leadership Section */

.leaders-wrapper {
  display: flex;
  justify-content: center;
  gap: 127px;
}

.leader-item {
  text-align: center;
}

/* Leader Image Container */
.leader-img {
  width: 206px;
  height: 206px;
  border-radius: 50%;
  overflow: hidden;
}

/* Image Styling */
.leader-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Img Adjustments */
.leader-img--parth img {
  object-position: center top;
}

.leader-img--madhu img {
  object-position: right top;
  transform: scale(1.25) translateY(20px);
}

/* Leader Name */
.leader-name {
  color: #17479E;
  font-size: 30px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 500;
}

/* Leader Role */
.leader-role {
  font-size: 18px;
  color: #6c757d; /* same as Bootstrap text-muted */
}

@media (max-width: 767.98px) {
  .leadership-section .leaders-wrapper {
    flex-direction: column;
    gap: 48px;
    align-items: center;
  }
  .leadership-section .leaders-wrapper {
    flex-direction: column;
    gap: 48px;
    align-items: center;
  }
}


/* Our Value */
/* Parent image container */
.our-values-inner {
    min-height: 650px;
    position: relative;
    border-radius: 16px;
    background-image: url("../images/about-us-jsw.webp");
    background-size: cover;
    background-repeat: no-repeat;
}

/* Gradient overlay */
.our-values-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #fff;
    /*background: linear-gradient(*/
    /*to top,*/
    /*rgba(0,0,0,0.25) 0%,*/
    /*rgba(0,0,0,0.12) 20%,*/
    /*rgba(0,0,0,0) 40%*/
    /*);*/
}

.our-values-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 48px;
  font-weight: 500;
  /*color:#63C1F9 !important;*/
}

/* Our Values icon spacing - only inside this section */
.our-values-overlay .our-values-icon.mb-3 {
  margin-bottom: 0rem !important;
}

.our-values-inner {
  background-size: cover !important;
  background-position: center !important;
  min-height: 622px;
}


section.section-spacing.leadership-section {
  background: #F7F7F7 !important;
}

/* Icon circle box */
.contact-icon-circle {
  width: 48px;
  height: 48px;
  background: #F2F4F7;
  border-radius: 12px !important; /* override rounded-circle */
}

/* Hide bootstrap icon */
.contact-icon-circle i {
  display: none;
}

/* Contact Page Icons */
.contact-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px 16px;
}

/* Location icon */
.contact-icon-circle.icon-location {
  background-image: url("/wp-content/themes/JSW Defence/assets/images/HQ1.svg");
}

/* Email icon */
.contact-icon-circle.icon-email {
  background-image: url("/wp-content/themes/JSW Defence/assets/images/Email.svg") !important;
}

/* Phone icon */
.contact-icon-circle.icon-phone {
  background-image: url("/wp-content/themes/JSW Defence/assets/images/Phone.svg") !important;
}

#contact-inquiry-form .col-lg-6:first-child .d-flex.flex-column {
  gap: 40px !important;
}

/* Inquiry form field spacing fix */
#contact-inquiry-form .inquiry-form > div {
  margin-bottom: 24px !important;
}


#contact-inquiry-form .inquiry-form > div:last-child {
  margin-bottom: 0 !important;
}


#contact-inquiry-form h2 {
  margin-bottom: 24px !important;
}


#contact-inquiry-form h2 + p {
  margin-bottom: 40px !important;
}

@media (max-width: 767px) {
  .our-values-inner {
    height: auto !important;
    min-height: 400px !important;
    overflow: visible !important;
    /*background-image: url("../images/our-values-mobile.png");*/
  }
    
  .our-values-overlay {
    position: relative !important;
  }
/*  .our-values-overlay {*/
/*  background:#2a2c27cc;*/
/*}*/
a.mobile-dropdown-item.s {
    margin-top: 5px;
}
}

/* Submit Enquiry Button */
#contact-inquiry-form .btn-inquiry {
  background-color: #6EC1F6;  
  color: #ffffff;
  border-radius: 16px;
  border: #E5E7EB;
  padding: 16px 0px 16px 0px;         
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  white-space: nowrap;
  flex-wrap: nowrap;

  transition: background-color 0.3s ease;
}

/* Contact Inquiry - Heading (Headquarters, Email, Phone) */
#contact-inquiry-form h6.fw-bold {
  font-size: 22px;
  font-weight: 600; /* Semibold */
  line-height: 140%;
}

.inquiry-form .form-control {
    border-radius: 8px;
    border-color: #E5E7EB;
    color: #ADAEBC;
    width: 100%;
    height: 50px;
}


/* Message field (Textarea) height fix */
#contact-inquiry-form textarea.form-control {
  height: 140px;
  resize: none;      
}

body.page-id-85 article.news-card {
  display: none !important;
}

/* Hover for Sarbloh child items (Gecko & Tomcar) */
.dropdown-submenu .submenu .dropdown-item:hover {
  color: #213A8F !important;
  background: transparent !important;
}

/* Business DropDown menu description */
.mobile-menu-description {
  display: none;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: #595959;
  margin: 0 0 -8px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 16px;
  padding-bottom: 16px;
}

/* When Dropdown activated */
.mobile-dropdown.active .mobile-menu-description {
  display: block;
}

li.mobile-subdropdown {
    border-bottom: 0;
    padding-bottom: 0;
}

ul.mobile-subdropdown-menu li:first-child {
    /*border-bottom: 1px solid rgba(0, 0, 0, 0.1);*/
    padding-top: 16px;
    padding-bottom: 12px;
} 

ul.mobile-subdropdown-menu li:last-child {
    border-bottom: 0;
    padding-top: 12px;
    padding-bottom: 0 !important;
}

/* Base icon style */
.our-values-icon {
  width: 40px;
  height: 40px;
  border: 1px solid #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

/* SVG inside icon */
.our-values-icon img {
  width: 20px;
  height: 20px;
}

/* Contact Inquiry Section ONLY */

#contact-inquiry-form .inquiry-form-card {
  background: #F7F7F7;
}

#contact-inquiry-form .inquiry-form .form-control {
  border-radius: 8px;
  border-color: #E5E7EB;
  color: #ADAEBC;
}

#contact-inquiry-form .inquiry-form .form-control::placeholder {
  color: #ADAEBC;
  opacity: 1;
}

#contact-inquiry-form .btn-inquiry {
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-accent)
  );
  border: none;
  color: #fff;
  border-radius: 8px;
}

#contact-inquiry-form .btn-inquiry:hover {
  opacity: 0.95;
  color: #fff;
}
.btn-inquiry br{
    display:none !important;
}

.hero-bg-slide {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* New CSS */

.uav-img {
    width: 100%;
    height: 470px; 
    overflow: hidden;
}

.uav-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px){
    .uav-img{
        height: auto;
    }
    .uav-img img{
        height: auto;
    }
}

.gecko-img {
    width: 100%;
    height: 487px; 
    overflow: hidden;
}

.gecko-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px){
    .gecko-img{
        height: auto;
    }
    .gecko-img img{
        height: auto;
    }
}

.sarbloh-img {
    width: 100%;
    height: 467px;
    overflow: hidden;
}

@media (max-width: 768px){
    .sarbloh-img{
        height: auto;
    }
    .sarbloh-img img{
        height: auto;
    }
}

.sarbloh-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.compare-image-wrapper {
    width: 100%;
    max-width: 538px;
    aspect-ratio: 538 / 484;
    overflow: hidden;
}

.compare-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .v-bat-img {
        margin-bottom: 20px;
    }
    .compare-content{
        padding-top: 20px;
    }
}

.jsw-auto-btn {
  width: auto !important;
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .jsw-auto-btn {
    width: 264px !important;
    margin-top: 16px;
    margin-bottom: 20px;
  }
}