:root {
  --light-gray: #F6F6F6;
  --theme-blue: #222961;
  --theme-green: #01DEBD;
  --theme-purple: #6C7BD3
}

.bg-theme-light-gray {
  background: var(--light-gray);
}

.bg-theme-blue {
  background: var(--theme-blue);
}

body {
  line-height: 1.2;
}

.home_banner .banner_caption h1 {
  text-wrap: balance;
}

.home_banner .banner_caption p {
  color: #fff;
  font-size: 20px;
  text-align: center;
  text-wrap: balance;
  margin-top: 20px;
  font-family: "Gilroy-Regular";
}

.home-banner-img,
.home-banner-img img,
.home-banner-img dotlottie-wc {
  width: 115vw !important;
}

.home_banner .home-banner-img {
  opacity: 0;
  transition: all ease-in-out 0.5s;
  transition-delay: 1.2s;
}

.loaded .home_banner .home-banner-img {
  opacity: 1;
}

/* Main navigation container */
nav.mega-menu-nav ul.main-nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Level 1 - Top level menu items */
nav.mega-menu-nav ul.main-nav-menu>li.menu-item {
  position: relative;
  margin: 0 30px 0 0;
}

nav.mega-menu-nav ul.main-nav-menu>li.menu-item>a {
  display: block;
  padding: 10px 0;
  font-size: 18px;
  color: #ffffff;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
  line-height: 1;
}

body:not(.home) nav.mega-menu-nav ul.main-nav-menu>li.menu-item>a {
  color: #222961;
}


/* Level 1 - Hover underline effect */
nav.mega-menu-nav ul.main-nav-menu>li.menu-item>a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 100%;
  height: 2px;
  background: #01DEBD;
  opacity: 0;
  transition: opacity 0.3s ease;
}

nav.mega-menu-nav ul.main-nav-menu>li.menu-item>a:hover::after,
nav.mega-menu-nav ul.main-nav-menu>li.menu-item.current-menu-item>a::after,
nav.mega-menu-nav ul.main-nav-menu>li.menu-item.current-menu-parent>a::after {
  opacity: 1;
}

/* Level 2 - Mega menu dropdown container */
nav.mega-menu-nav ul.main-nav-menu>li.menu-item-has-children>.sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: max-content;
  min-width: 120px;
  background: #ffffff;
  border-radius: 20px;
  padding: 24px 0;
  border: 2px solid #E9E7E7;
  z-index: 1000;
}

/* Show mega menu on hover */
nav.mega-menu-nav ul.main-nav-menu>li.menu-item-has-children:hover>.sub-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

/* Level 2 - Menu items in mega menu */
nav.mega-menu-nav ul.main-nav-menu>li.menu-item-has-children>.sub-menu>li.menu-item {
  list-style: none;
  margin: 0 !important;
  padding: 0 24px;
}

nav.mega-menu-nav ul.main-nav-menu>li.menu-item-has-children>.sub-menu>li.menu-item>a {
  display: block;
  color: #222961;
  font-size: 16px;
}

/* Level 2 - Hover effect with arrow */
nav.mega-menu-nav ul.main-nav-menu>li.menu-item-has-children>.sub-menu>li.menu-item.menu-item-has-children>a {
  padding-right: 15px;
}

nav.mega-menu-nav ul.main-nav-menu>li.menu-item-has-children>.sub-menu>li.menu-item.menu-item-has-children>a::before {
  content: "";
  background: url('/wp-content/themes/battgenie/images/right-custom-arrow.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  right: 0;
  width: 6px;
  height: 100%;
  transition: all 0.3s ease;
  color: #222961;
}

nav.mega-menu-nav ul.main-nav-menu>li.menu-item-has-children>.sub-menu>li.menu-item>a:hover::before {
  opacity: 1;
}

/* Level 2 - Active/current state with underline */
nav.mega-menu-nav ul.main-nav-menu>li.menu-item-has-children>.sub-menu>li.menu-item.current-menu-item>a,
nav.mega-menu-nav ul.main-nav-menu>li.menu-item-has-children>.sub-menu>li.menu-item.current-menu-parent>a {
  position: relative;
}

/* nav.mega-menu-nav ul.main-nav-menu>li.menu-item-has-children>.sub-menu>li.menu-item.current-menu-item>a::after,
nav.mega-menu-nav ul.main-nav-menu>li.menu-item-has-children>.sub-menu>li.menu-item.current-menu-parent>a::after {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 8px;
  height: 2px;
  background: #01DEBD;
} */

/* Level 3 - Sub-submenu container */
nav.mega-menu-nav ul.main-nav-menu>li.menu-item-has-children>.sub-menu>li.menu-item-has-children>.sub-menu {
  display: none;
  list-style: none;
  background: #ffffff;
  border-radius: 20px;
  padding: 24px 0;
  top: 0;
  left: 100%;
  width: max-content;
  min-width: 120px;
  border: 2px solid #E9E7E7;
}

/* Show Level 3 when parent is active or hovered */
nav.mega-menu-nav ul.main-nav-menu>li.menu-item-has-children>.sub-menu>li.menu-item-has-children:hover>.sub-menu,
nav.mega-menu-nav ul.main-nav-menu>li.menu-item-has-children>.sub-menu>li.menu-item-has-children.current-menu-parent>.sub-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

/* Level 3 - Menu items */
nav.mega-menu-nav ul.main-nav-menu>li.menu-item-has-children>.sub-menu>li.menu-item-has-children>.sub-menu>li.menu-item {
  list-style: none;
  margin: 0;
  padding: 0 24px;
}

nav.mega-menu-nav ul.main-nav-menu>li.menu-item-has-children>.sub-menu>li.menu-item-has-children>.sub-menu>li.menu-item>a {
  display: block;
  font-size: 16px;
  color: #222961;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 400;
}


/* Responsive - Mobile styles */
@media screen and (max-width: 1024px) {
  nav.mega-menu-nav ul.main-nav-menu>li.menu-item-has-children>.sub-menu {
    min-width: 400px;
  }

  nav.mega-menu-nav ul.main-nav-menu>li.menu-item-has-children:hover>.sub-menu {
    grid-template-columns: 1fr;
  }
}



.title_txt_underline span {
  position: relative;
  display: inline-block;
  z-index: 1;
}

.title_txt_underline span::after {
  content: "";
  position: absolute;
  width: 0;
  left: 0;
  bottom: 6px;
  height: 8px;
  background: #01debd;
  z-index: -1;
  transition: all ease-in-out 0.5s;
}

.title_txt_underline.showed span::after {
  width: 100%;
}

/* Homepage */
.solution_home_sec {
  padding: 110px 0;
  background: #222961;
}

.solution_home_sec h2,
.battgenie-miles h2 {
  text-align: center;
  font-size: 48px;
  color: #ffffff;
  text-align: center;
  font-family: "Gilroy-Bold";
}

.solution_home_sec .solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.solution_home_sec .solution-grid .solution-item {
  background: #ffffff;
  padding: 32px;
  border-radius: 20px;
  border: 1px solid #3441a6;
  color: #1f202c;
  transition: all ease-in-out 0.3s;
  display: block;
  position: relative;
}

.solution_home_sec .solution-grid .solution-item:hover {
  transform: scale(1.1);
  z-index: 10;
}


.solution_home_sec .solution-grid .solution-item h4 {
  font-size: 24px;
}

.solution-list {
  border: 1px solid #7f8ee5;
  margin-top: 20px;
}

.solution-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.solution-list span {
  padding: 12px;
  background: #7f8ee5;
  font-size: 20px;
  color: #fff;
  display: block;
}

.solution-list ul li {
  padding: 12px;
  border-bottom: 1px solid #7f8ee5;
  font-size: 18px;
}

.solution-list ul li:last-child {
  border-bottom: none;
}

.solution_home_sec .solution-feat {
  padding-top: 110px;
}

.solution_home_sec .solution-feat .solution-feat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: space-between;
  height: 100%;
}

.solution_home_sec .solution-feat .solution-feat-item h4 {
  color: #01debd;
  font-size: 48px;
  font-weight: bold;
}

.solution_home_sec .solution-feat .solution-feat-item p {
  color: #fff;
  font-size: 20px;
  margin-top: 10px;
}

.solution-feat-item .solution-feat-icon {
  margin-bottom: 30px;
}

.solution-feat-item .solution-feat-icon img {
  width: 100%;
  height: 100px;
  object-fit: contain;
}

.solution-feat-item .solution-feat-icon svg {
  height: 100px;
}

.solution-feat .row {
  row-gap: 40px;
}

/* Many Miles */
.battgenie-miles {
  margin-top: 40px;
  padding: 100px 0;
  background: #222961;
}

.timeline-img {
  margin-top: 60px;
}

@media screen and (max-width: 767px) {

  .solution_home_sec .solution-grid .solution-item:hover {
    transform: scale(1.05);
    z-index: 10;
  }

  .solution_home_sec h2,
  .solution_home_sec .solution-feat .solution-feat-item h4,
  .battgenie-miles h2 {
    font-size: 36px;
  }

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

  .solution_home_sec .solution-feat .solution-feat-item p {
    font-size: 16px;
  }

  .solution-feat-item .solution-feat-icon img {
    height: 80px;
  }

  .solution-feat-item .solution-feat-icon {
    margin-bottom: 20px;
  }
}

/* Batt Maas */

.BattSaaS-banner-text p {
  max-width: 380px;
}

@media (min-width: 1200px) and (max-width: 1700px) {
  .BattDaas-banner-caption {
    padding-top: 150px;
  }
}

.BattSaaS-banner-imgbox-main .BattDaas-imgbox .BattSaaS-banner img {
  width: 100%;
  max-width: 100%;
  min-height: 100%;
  height: auto;
}


.BattDaaS-section-1 .icon-box-main ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.BattDaaS-section-1 .icon-box-main ul li {
  font-size: 20px;
  padding: 15px 0;
  color: #fff;
}

.BattDaaS-section-1 .icon-box-main ul li:not(:last-child) {
  border-bottom: 1px solid #3D499F;
}

.BattMaaS-section-2 {
  background: linear-gradient(111.06deg, #BCC9F8 -28.91%, #E3E5F9 79.45%);
}

.BattMaaS-section-2 .section-title h2 {
  font-size: 36px;
}

.BattMaaS-section-2 .graphic-sec {
  padding-left: 50px;
}

.BattMaaS-section-2 .graphic-sec img,
.BattMaaS-section-2 .graphic-sec {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom;
}

.BattMaaS-section-2 .models-wrapper {
  position: relative;
}

.BattMaaS-section-2 .models-list {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-right: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.BattMaaS-section-2 .models-list .models-sec {
  border-radius: 16px;
  box-shadow: 0px 0px 24px 0px #00000040;
  background: #fff;
  padding: 40px;
  padding-top: 52px;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.BattMaaS-section-2 .models-list .models-sec::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 12px;
  background: #01DEBD;
}

.BattMaaS-section-2 .models-list .models-sec h4 {
  font-size: 24px;
  font-family: "Gilroy-Bold";
  margin-bottom: 24px;
}

.BattMaaS-section-2 .models-list .models-sec li {
  font-size: 20px;
  padding: 15px 0;
  font-weight: 400;
  font-family: "Gilroy-Regular";
}

.BattMaaS-section-2 .models-list .models-sec ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.BattMaaS-section-2 .models-list .models-sec li:not(:last-child) {
  border-bottom: 1px solid #E9E7E7;
}

.BattMaaS-section-2 .models-list .models-sec li span {
  font-weight: 500;
  font-family: "Gilroy-Medium";
}

/* BattMaaS-section-2 Stacking Animation Styles */
.BattMaaS-section-2 {
  min-height: calc(100vh);
  position: relative;
  overflow: hidden;
}

.BattMaaS-section-2 .row {
  height: calc(100vh - 100px);
}

.BattMaaS-section-3 {
  position: relative;
  overflow: hidden;
  padding-bottom: 0;
  background: #222961;
}

.BattMaaS-section-3 .graphic-sec {
  width: 100%;
  height: auto;
  object-fit: cover;
  margin-top: -100px;
}

.BattMaaS-section-3 .section-title h2 {
  text-align: center;
  font-size: 36px;
  color: #fff;
}

.BattMaaS-section-3 .models-includes {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 70px;
}


.BattMaaS-section-3 .models-includes .models-include-item h4 {
  margin-top: 16px;
  color: #01DEBD;
  font-size: 20px;
  font-family: "Gilroy-Regular";
}

.BattMaaS-section-3 .models-include-wrapper h3,
.BattMaaS-section-3 .chemistry-models h3 {
  color: #fff;
  font-family: "Gilroy-Bold";
  margin-bottom: 30px;
  margin-top: 60px;
  font-size: 24px;
}


.BattMaaS-section-3 .chemistry-models .animation-progressBar {
  width: 100%;
  height: 2px;
  background: #3D499F;
  position: relative;
  overflow: hidden;
  margin-bottom: 40px;
}

.BattMaaS-section-3 .chemistry-models .animation-progressBar .progressBar-fill {
  width: 100%;
  height: 100%;
  background: #01DEBD;
  position: absolute;
  top: 0;
  left: 0;
  transform: scaleX(0);
  transform-origin: left center;
}

.BattMaaS-section-3 .chemistry-models .models-animation-item .content-sec h4 {
  font-size: 24px;
  color: #01DEBD;
  font-weight: bold;
  font-family: "Gilroy-Bold";
  margin-bottom: 24px;
}

.BattMaaS-section-3 .chemistry-models .models-animation-item .content-sec li {
  font-size: 20px;
  padding: 24px 0;
  color: #fff;
}

.BattMaaS-section-3 .chemistry-models .models-animation-item .content-sec li:last-child {
  padding-bottom: 0;
}

.BattMaaS-section-3 .chemistry-models .models-animation-item .content-sec ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.BattMaaS-section-3 .chemistry-models .models-animation-item .content-sec li:not(:last-child) {
  border-bottom: 1px solid #3D499F;
}

.BattMaaS-section-3 .chemistry-models .models-animation-item-wrap {
  position: relative;
  padding-top: 48px;
  width: 340px;
  flex: 1;
}

.BattMaaS-section-3 .chemistry-models .models-animation-item {
  padding: 100px 40px 40px;
  border: 2px solid #3D499F;
}

.BattMaaS-section-3 .chemistry-models .models-animation-item-wrap:not(:first-child) .models-animation-item {
  border-left: 0;
}

.BattMaaS-section-3 .chemistry-models .models-animation-item .models-icon {
  position: absolute;
  top: 0;
  left: 40px;
}

.BattMaaS-section-3 .chemistry-models .models-animation-wrapper {
  overflow: hidden;
  width: 100%;
}

.BattMaaS-section-3 .chemistry-models .models-animation-list {
  position: relative;
  display: flex;
  min-width: max-content;
  will-change: transform;
  row-gap: 30px;
}

.BattMaaS-section-4 {
  background: var(--light-gray);
}

.BattMaaS-section-4 .section-title {
  margin-bottom: 60px;
}

.BattMaaS-section-4 .section-title h3 {
  font-size: 36px;
  font-family: "Gilroy-Bold";
  margin-bottom: 15px;
}

.BattMaaS-section-4 .section-title p {
  font-size: 20px;
  font-family: "Gilroy-Regular";
  font-weight: 400;
}

.BattMaaS-section-4-swiper {
  position: relative;
  width: 100%;
}


.BattMaaS-section-4-swiper .BattMaaS-slider-button-next,
.BattMaaS-section-4-swiper .BattMaaS-slider-button-prev {
  cursor: pointer;
  width: 60px;
  height: 60px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  transition: all 0.3s ease;
}

.BattMaaS-section-4-swiper .BattMaaS-slider-button-next.swiper-button-disabled,
.BattMaaS-section-4-swiper .BattMaaS-slider-button-prev.swiper-button-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.BattMaaS-section-4-swiper .BattMaaS-slider-button-next:hover,
.BattMaaS-section-4-swiper .BattMaaS-slider-button-prev:hover {
  opacity: 0.7;
}

.BattMaaS-section-4-swiper .BattMaaS-slider-button-next {
  right: -120px;
}

.BattMaaS-section-4-swiper .BattMaaS-slider-button-prev {
  left: -120px;
}

.work-slide-wrapper {
  display: flex;
}

.work-slide-item-1 {
  --work-slide-color: #0014FF;
  --work-slide-bg-color: #E9EAFF;
  --work-spce-top: 0;
  --work-index: 1;
  --arrow-position: 0;
  --work-slide-gradient: radial-gradient(50% 50% at 50% 50%, #0014FF 0%, rgba(0, 20, 255, 0.174821) 76.76%, rgba(0, 20, 255, 0.0838813) 88.85%, rgba(0, 20, 255, 0) 100%);
}

.work-slide-item-2 {
  --work-slide-color: #FF0000;
  --work-slide-bg-color: #FFE6E0;
  --work-spce-top: 100px;
  --work-index: 2;
  --arrow-position: 25px;
  --work-slide-gradient: radial-gradient(50% 50% at 50% 50%, #FF0000 0%, rgba(255, 0, 0, 0.174821) 76.76%, rgba(255, 0, 0, 0.0838813) 88.85%, rgba(255, 0, 0, 0) 100%);
}

.work-slide-item-3 {
  --work-slide-color: #FF9900;
  --work-spce-top: 40px;
  --work-index: 3;
  --arrow-position: 85px;
  --work-slide-bg-color: #FFF5E9;
  --work-slide-gradient: radial-gradient(50% 50% at 50% 50%, #FF9900 0%, rgba(255, 153, 0, 0.174821) 76.76%, rgba(255, 153, 0, 0.0838813) 88.85%, rgba(255, 153, 0, 0) 100%);
}

.work-slide-item-4 {
  --work-slide-color: #FF0099;
  --work-slide-bg-color: #FFE1FE;
  --work-spce-top: 100px;
  --arrow-position: 25px;
  --work-index: 4;
  --work-slide-gradient: radial-gradient(50% 50% at 50% 50%, #FF0099 0%, rgba(255, 0, 153, 0.174821) 76.76%, rgba(255, 0, 153, 0.0838813) 88.85%, rgba(255, 0, 153, 0) 100%);
}

.work-slide-item-5 {
  --work-slide-color: #00AD6F;
  --work-spce-top: 80px;
  --index: 5;
  --arrow-position: 45px;
  --work-slide-bg-color: #E7FDE9;
  --work-slide-gradient: radial-gradient(50% 50% at 50% 50%, #00AD6F 0%, rgba(0, 173, 111, 0.174821) 76.76%, rgba(0, 173, 111, 0.0838813) 88.85%, rgba(0, 173, 111, 0) 100%);
}

.work-slide-item {
  border-radius: 25px;
  position: relative;
  border: 1px solid var(--work-slide-color);
  padding: 30px;
  flex: 1;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  background: var(--work-slide-bg-color);
  color: var(--work-slide-color);
  font-size: 16px;
  text-align: center;
  margin-top: var(--work-spce-top);
  height: 100%;
  margin-left: 10px;
  z-index: var(--work-index);
}

.work-slide-item .arrow-icon {
  top: var(--arrow-position);
  left: -36px;
  z-index: 99;
}

.work-slide-item:not(:first-child) {
  margin-left: -10px !important;
}

.work-slide-number {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Gilroy-Bold";
  font-size: 36px;
  color: #fff;
  background: var(--work-slide-gradient);
}

/* ============================================
   BattMaaS Custom Pagination
   ============================================ */
.BattMaaS-custom-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 60px;
}

.BattMaaS-custom-pagination .swiper-pagination-bullet {
  width: 100%;
  height: auto;
  padding: 0 !important;
  margin: 0 !important;
  padding-bottom: 20px !important;
  border-bottom: 3px solid #DEDEDE;
  border-radius: 0 !important;
  background: none !important;
  text-align: center;
  opacity: 1;
  font-family: "Gilroy-Regular";
  font-size: 20px;
  text-transform: capitalize;
}

.BattMaaS-custom-pagination .swiper-pagination-bullet:hover {
  border-bottom-color: #01DEBD;
}

.BattMaaS-custom-pagination .swiper-pagination-bullet-active {
  border-bottom-color: #01DEBD;
  font-family: "Gilroy-Bold";
}

/* ============================================
   BattMaaS-section-2 Responsive Styles
   ============================================ */

/* Tablet and below (1024px and down) */
@media (max-width: 1024px) {
  .BattMaaS-section-2 .section-title h2 {
    font-size: 30px;
  }

  .BattMaaS-section-2 .graphic-sec {
    padding-left: 20px;
  }


}

/* Mobile and tablet (767px and down) */
@media (max-width: 767px) {
  .work-slide-item .arrow-icon {
    rotate: 90deg;
    transform-origin: center;
    width: 60px;
    height: 20px;
    left: calc(50% - 30px);
    top: -20px;
  }

  /* Remove fixed height for mobile */
  .BattMaaS-section-2 {
    height: auto !important;
    min-height: auto !important;
    overflow: visible !important;
  }

  .BattMaaS-section-2 .row {
    height: auto !important;
    min-height: auto !important;
  }

  .BattMaaS-section-2 .section-title h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .BattMaaS-section-2 .graphic-sec {
    padding-left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .BattMaaS-section-2 .graphic-sec img {
    max-height: 400px;
    width: auto;
    object-fit: contain;
  }

  /* Fix models list for mobile - disable stacking animation */
  .BattMaaS-section-2 .models-wrapper {
    position: static;
  }

  .BattMaaS-section-2 .models-list {
    margin-top: 40px;
    gap: 20px;
    padding-right: 0;
    position: static !important;
  }

  .BattMaaS-section-2 .models-list .models-sec {
    padding: 30px 20px;
    padding-top: 42px;
    opacity: 1 !important;
    transform: translateY(0) !important;
    position: static !important;
  }

  .BattMaaS-section-2 .models-list .models-sec h4 {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .BattMaaS-section-2 .models-list .models-sec li {
    padding: 12px 0;
  }
}

/* Small mobile (480px and down) */
@media (max-width: 480px) {

  .BattMaaS-section-2 .section-title h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .BattMaaS-section-2 .graphic-sec img {
    width: 100%;
  }

  .BattMaaS-section-2 .models-list {
    margin-top: 30px;
    gap: 15px;
  }

  .BattMaaS-section-2 .models-list .models-sec {
    padding: 25px 15px;
    padding-top: 37px;
  }

  .BattMaaS-section-2 .models-list .models-sec::before {
    height: 8px;
  }
}





/* ============================================
   BattMaaS-section-3 Responsive Styles (Stacked Layout)
   ============================================ */

/* Tablet and below (1024px and down) */
@media (max-width: 1024px) {
  .BattMaaS-section-3 .section-title h2 {
    font-size: 30px;
  }

  .BattMaaS-section-3 .chemistry-models h3,
  .BattMaaS-section-3 .models-include-wrapper h3 {
    font-size: 22px;
  }

  .BattMaaS-section-3 .chemistry-models .models-animation-item .content-sec h4 {
    font-size: 22px;
  }

  .BattMaaS-section-3 .chemistry-models .models-animation-item .content-sec li {
    font-size: 18px;
  }

  .BattMaaS-section-3 .models-includes .models-include-item h4 {
    font-size: 18px;
  }
}

/* Mobile and tablet (767px and down) */
@media (max-width: 767px) {

  .BattMaaS-section-3 .chemistry-models h3,
  .BattMaaS-section-3 .models-include-wrapper h3 {
    font-size: 20px;
    margin-top: 40px;
    margin-bottom: 25px;
  }

  /* Hide progress bar on mobile */
  .BattMaaS-section-3 .chemistry-models .animation-progressBar {
    display: none;
  }

  /* Change to vertical stacking on mobile */
  .BattMaaS-section-3 .chemistry-models .models-animation-wrapper {
    overflow: visible !important;
  }

  .BattMaaS-section-3 .chemistry-models .models-animation-list {
    display: flex;
    flex-direction: column;
    min-width: 100% !important;
    transform: none !important;
  }

  .BattMaaS-section-3 .chemistry-models .models-animation-item-wrap {
    width: 100% !important;
    padding-top: 0;
  }

  .BattMaaS-section-3 .chemistry-models .models-animation-item {
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border: 2px solid #3D499F !important;
    border-left: 2px solid #3D499F !important;
  }

  /* Remove absolute positioning from icon on mobile */
  .BattMaaS-section-3 .chemistry-models .models-animation-item .models-icon {
    position: static;
    width: 60px;
    max-height: 60px;
    height: auto;
    margin-bottom: 10px;
  }

  .BattMaaS-section-3 .chemistry-models .models-animation-item .content-sec h4 {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .BattMaaS-section-3 .chemistry-models .models-animation-item .content-sec li {
    font-size: 16px;
    padding: 16px 0;
  }

  /* Models includes - stack vertically */
  .BattMaaS-section-3 .models-includes {
    flex-direction: column;
    gap: 25px;
    align-items: flex-start;
  }

  .BattMaaS-section-3 .models-includes .models-include-item {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
  }

  .BattMaaS-section-3 .models-includes .models-include-item svg {
    flex-shrink: 0;
    width: 35px;
    height: 35px;
  }

  .BattMaaS-section-3 .models-includes .models-include-item h4 {
    margin-top: 0;
    font-size: 16px;
  }

  /* Graphic section */
  .BattMaaS-section-3 .graphic-sec {
    margin-top: 50px;
  }
}

/* Small mobile (480px and down) */
@media (max-width: 480px) {


  .BattMaaS-section-3 .chemistry-models h3,
  .BattMaaS-section-3 .models-include-wrapper h3 {
    font-size: 20px;
  }

  .BattMaaS-section-3 .chemistry-models .models-animation-item-wrap {
    padding-top: 0;
  }

  .BattMaaS-section-3 .chemistry-models .models-animation-item {
    padding: 25px 20px;
    gap: 15px;
  }

  /* Icon already set to static in 767px breakpoint */
  .BattMaaS-section-3 .chemistry-models .models-animation-item .models-icon {
    width: 50px;
    max-height: 50px;
    margin-bottom: 8px;
  }

  .BattMaaS-section-3 .chemistry-models .models-animation-item .content-sec h4 {
    font-size: 18px;
    margin-bottom: 16px;
  }

  /* Models includes */
  .BattMaaS-section-3 .models-includes {
    gap: 20px;
  }

  .BattMaaS-section-3 .models-includes .models-include-item {
    gap: 12px;
  }

  .BattMaaS-section-3 .models-includes .models-include-item svg {
    width: 30px;
    height: 30px;
  }

  /* Graphic section */
  .BattMaaS-section-3 .graphic-sec {
    margin-top: 50px;
  }
}

/* ============================================
   BattMaaS-section-4 Responsive Styles
   ============================================ */

/* Tablet and below (1024px and down) */
@media (max-width: 1024px) {
  .BattMaaS-section-4 .section-title h3 {
    font-size: 30px;
  }

  .BattMaaS-section-4 .section-title p {
    font-size: 18px;
  }

  .BattMaaS-section-4-swiper .BattMaaS-slider-button-next {
    right: -80px;
  }

  .BattMaaS-section-4-swiper .BattMaaS-slider-button-prev {
    left: -80px;
  }

  .work-slide-number {
    width: 100px;
    height: 100px;
    font-size: 32px;
  }

  .work-slide-item {
    font-size: 15px;
    padding: 25px;
  }
}

/* Mobile and tablet (767px and down) */
@media (max-width: 767px) {

  .BattMaaS-section-4 .section-title {
    margin-bottom: 40px;
  }

  .BattMaaS-section-4 .section-title p {
    font-size: 16px;
  }

  /* Hide navigation buttons on mobile */
  .BattMaaS-section-4-swiper .BattMaaS-slider-button-next,
  .BattMaaS-section-4-swiper .BattMaaS-slider-button-prev {
    display: none;
  }

  /* Work slide items - vertical stacking */
  .work-slide-wrapper {
    flex-direction: column;
    gap: 15px;
  }

  .work-slide-item {
    margin-top: 0 !important;
    margin-left: 0 !important;
    padding: 40px 20px;
  }

  .work-slide-item:not(:first-child) {
    margin-left: 0 !important;
  }

  .work-slide-number {
    width: 80px;
    height: 80px;
    font-size: 28px;
  }

  /* Custom pagination */
  .BattMaaS-custom-pagination {
    margin-bottom: 40px;
    overflow: hidden;
    overflow-x: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    justify-content: flex-start;
  }

  .BattMaaS-custom-pagination .swiper-pagination-bullet {
    font-size: 16px;
    padding: 0 15px !important;
    padding-bottom: 15px !important;
    flex: 1 1 auto;
    min-width: fit-content;
  }

  .BattMaaS-section-2 .models-list .models-sec li {
    font-size: 18px;
  }
}

/* Small mobile (480px and down) */
@media (max-width: 480px) {
  .BattMaaS-section-4 .section-title {
    margin-bottom: 30px;
  }

  .work-slide-wrapper {
    gap: 12px;
  }

  .work-slide-number {
    width: 70px;
    height: 70px;
    font-size: 24px;
  }

  .BattMaaS-custom-pagination {
    margin-bottom: 30px;
  }

  .BattMaaS-custom-pagination .swiper-pagination-bullet {
    padding-bottom: 12px !important;
  }
}

/* ============================================
   Header Responsive Styles
   ============================================ */

/* Tablet and Mobile (1200px and down) - Hamburger Menu */
@media (max-width: 1200px) {

  #header.sticky_header .header_wrapper {
    padding-top: 15px;
  }

  #header .logo {
    max-width: 140px;
  }

  #header .logo svg {
    width: 100%;
    height: auto;
  }

  /* Hide desktop navigation - Tablet view (less than half width) */
  nav.navigation {
    position: fixed !important;
    top: 0 !important;
    right: -100% !important;
    width: 45% !important;
    max-width: 450px !important;
    height: 100vh !important;
    background: #222961 !important;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    flex-direction: column !important;
    align-items: flex-start !important;
    padding: 100px 50px 50px !important;
    overflow-y: auto !important;
    transition: right 0.3s ease-in-out !important;
    z-index: 1110 !important;
    margin: 0 !important;
    display: flex !important;
  }

  nav.navigation.active {
    right: 0 !important;
  }

  nav.navigation ul {
    flex-direction: column !important;
    align-items: flex-start !important;
    width: 100% !important;
    display: flex !important;
    gap: 24px;
    margin-bottom: 24px !important;
  }

  nav.navigation ul li {
    margin: 0 !important;
    width: 100% !important;
    display: block !important;
  }

  nav.navigation ul li a {
    padding: 0 !important;
    display: block !important;
    width: 100% !important;
    color: #ffffff !important;
    position: relative !important;
    font-size: 16px !important;
  }

  nav.navigation ul li.current_page_item a {
    color: #01DEBD !important;
  }


  /* Remove desktop underline effect */
  nav.navigation ul li a::after {
    display: none !important;
  }

  nav.navigation ul li:hover>a {
    color: #01DEBD !important;
  }


  /* Submenu styles for mobile */
  nav.navigation ul li .sub-menu {
    position: static !important;
    display: none !important;
    width: 100% !important;
    padding: 12px 0 8px 0 !important;
    margin: 5px 0 0 0 !important;
    background: rgba(0, 0, 0, 0.2) !important;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2) !important;
    border-radius: 8px !important;
    top: auto !important;
    left: auto !important;
  }



  nav.navigation ul li .sub-menu li a {
    padding: 10px 12px !important;
    font-size: 14px !important;
    color: rgba(255, 255, 255, 0.85) !important;
    transition: all 0.25s ease !important;
    border-radius: 5px !important;
    display: block !important;
    font-weight: normal !important;
  }

  nav.navigation ul li .sub-menu li:hover>a,
  nav.navigation ul li .sub-menu li a:hover {
    color: #ffffff !important;
    background: rgba(1, 222, 189, 0.15) !important;
  }

  /* Third level menu */
  nav.navigation ul li .sub-menu .sub-menu {
    padding: 8px 0 8px 0 !important;
    margin: 5px 0 0 0 !important;
    background: rgba(0, 0, 0, 0.25) !important;
    border-radius: 6px !important;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15) !important;
  }

  nav.navigation ul li .sub-menu .sub-menu li {
    padding: 0 10px !important;
    border-bottom: none !important;
    background: transparent !important;
  }

  nav.navigation ul li .sub-menu .sub-menu li:last-child {
    border-bottom: none !important;
  }

  nav.navigation ul li .sub-menu .sub-menu li a {
    font-size: 13px !important;
    color: rgba(255, 255, 255, 0.8) !important;
    padding: 8px 10px !important;
    border-radius: 4px !important;
  }

  nav.navigation ul li .sub-menu .sub-menu li:hover>a,
  nav.navigation ul li .sub-menu .sub-menu li a:hover {
    color: #ffffff !important;
    background: rgba(1, 222, 189, 0.12) !important;
  }

  /* Third level menu items should have proper spacing */
  nav.navigation ul li .sub-menu li.menu-item-has-children {
    padding-bottom: 0 !important;
  }

  /* Contact button in mobile menu */
  nav.navigation .mobile-contactCTA a {
    color: #fff;
    font-size: 24px;
    line-height: 1;
  }


  /* Show hamburger menu */
  #header .hamburgermenu.mobile_show,
  #header .hamburgermenu {
    display: flex !important;
  }

  /* Show overlay */
  .overlay_close.mobile_show,
  .overlay_close {
    display: none !important;
    background: rgba(0, 0, 0, 0.5) !important;
    z-index: 1109 !important;
  }

  .overlay_close.mobile_show.active,
  .overlay_close.active {
    display: block !important;
  }

  /* Mobile menu footer */
  .menu_foo {
    margin-top: auto !important;
    padding-top: 30px !important;
    width: 100% !important;
    display: block !important;
    padding: 0 !important;
  }

  .menu_foo .email_tel p {
    margin: 0 !important;
  }

  .menu_foo .email_tel a {
    color: #ffffff !important;
    font-size: 14px !important;
  }

  .menu_foo .socialbox {
    margin-top: 20px !important;
    gap: 15px !important;
    display: flex !important;
  }

  .menu_foo .socialbox a {
    width: 35px !important;
    height: 35px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .menu_foo .socialbox svg {
    width: 20px !important;
    height: 20px !important;
  }

  .menu_foo .socialbox svg path {
    fill: #ffffff !important;
  }
}

/* Tablet and below (1024px and down) */
@media (max-width: 1024px) {

  #header.sticky_header .header_wrapper {
    padding-top: 15px;
  }

  nav.navigation ul li {
    margin: 0 15px;
  }

  nav.navigation .btnbox a {
    padding: 12px 25px;
  }
}

/* Mobile specific adjustments (767px and down) - Full width menu */
@media (max-width: 767px) {

  #header .logo {
    max-width: 120px !important;
  }

  nav.navigation {
    width: 100% !important;
    max-width: 100% !important;
    padding: 80px 30px 30px !important;
  }

  nav.navigation .btnbox a {
    height: 42px !important;
    font-size: 14px !important;
  }
}

@media (max-width: 1024px) {
  nav.navigation {
    width: 100% !important;
    padding: 100px 20px 20px !important;
  }

  .menu_foo {
    margin-top: 60px !important;
  }

  nav.navigation ul li a {
    font-size: 24px !important;
  }

  nav.mega-menu-nav ul.main-nav-menu>li.menu-item {
    width: 100%;
    margin: 0;
    position: relative !important;
  }

  nav.mega-menu-nav ul.main-nav-menu li.menu-item-has-children a {
    display: flex !important;
    align-items: center;
    padding-right: 40px !important;
    width: fit-content !important;
    background: none !important;
  }

  nav.mega-menu-nav ul.main-nav-menu li.menu-item-has-children a:hover {
    color: #01DEBD;
  }


  nav.mega-menu-nav ul.main-nav-menu li.menu-item-has-children>a::before,
  nav.mega-menu-nav ul.main-nav-menu>li.menu-item-has-children>.sub-menu>li.menu-item.menu-item-has-children>a::before {
    content: "";
    background: url('/wp-content/themes/battgenie/images/right-custom-arrow.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    left: unset;
    right: 0;
    width: 15px;
    height: 15px;
    transition: all 0.3s ease;
    color: #01DEBD !important;
    display: block !important;
  }

  nav.mega-menu-nav ul.main-nav-menu li.menu-item-has-children.active>a::before {
    rotate: 90deg !important;
  }

  nav.mega-menu-nav ul.main-nav-menu>li.menu-item-has-children>.sub-menu,
  nav.mega-menu-nav ul.main-nav-menu>li.menu-item-has-children>.sub-menu>li.menu-item.menu-item-has-children>.sub-menu {
    background: none !important;
    border: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
    padding-left: 30px !important;
    margin-top: 16px !important;
    min-width: fit-content !important;
    /* display: flex !important; */
    flex-direction: column;
    gap: 24px !important;
    list-style: disc !important;
  }

  nav.mega-menu-nav ul.main-nav-menu>li.menu-item-has-children.active>.sub-menu,
  nav.mega-menu-nav ul.main-nav-menu>li.menu-item-has-children.active>.sub-menu>li.menu-item.menu-item-has-children.active>.sub-menu {
    display: flex !important;
  }

  nav.mega-menu-nav ul.main-nav-menu>li.menu-item-has-children>.sub-menu>li,
  nav.mega-menu-nav ul.main-nav-menu>li.menu-item-has-children>.sub-menu>li.menu-item.menu-item-has-children>.sub-menu li {
    margin: 0 !important;
    padding: 0 !important;
    list-style: disc !important;
    font-size: 24px !important;
    line-height: 1 !important;
    color: #fff;
    display: list-item !important;
    padding-left: 10px !important;
  }


  nav.mega-menu-nav ul.main-nav-menu>li.menu-item-has-children>.sub-menu a {
    padding: 0 !important;
    margin: 0 !important;
    font-size: 24px !important;
    padding-right: 40px !important;
    width: fit-content !important;
    line-height: 1 !important;
    background: none !important;
    color: #fff !important;
  }



  nav.mega-menu-nav ul.main-nav-menu>li.menu-item-has-children>.sub-menu li.current-menu-item a,
  nav.mega-menu-nav ul.main-nav-menu>li.menu-item-has-children>.sub-menu li a:hover {
    color: #01DEBD !important;
    background: none !important;
  }

  nav.mega-menu-nav .sub-menu-toggle {
    display: none !important;
    cursor: pointer;
  }
}

/* Small mobile (480px and down) */
@media (max-width: 480px) {

  #header .logo {
    max-width: 100px !important;
  }

  nav.navigation ul li .sub-menu li a {
    font-size: 13px !important;
  }

  nav.navigation .btnbox a {
    height: 40px !important;
    font-size: 13px !important;
    padding: 0 15px !important;
  }

  .menu_foo .socialbox a {
    width: 30px;
    height: 30px;
  }

  .menu_foo .socialbox svg {
    width: 18px;
    height: 18px;
  }
}

/* Hamburger animation to cross when menu is open */
.show_menu #header .hamburgermenu a span,
.show_menu #header.sticky_header .hamburgermenu a span,
body.show_menu:not(.home) #header .hamburgermenu a span {
  background: transparent !important;
}

.show_menu #header .hamburgermenu a span::before,
.show_menu #header.sticky_header .hamburgermenu a span::before,
body.show_menu:not(.home) #header .hamburgermenu a span::before {
  top: 0 !important;
  transform: rotate(45deg) !important;
  -webkit-transform: rotate(45deg) !important;
  background: #ffffff !important;
}

.show_menu #header .hamburgermenu a span::after,
.show_menu #header.sticky_header .hamburgermenu a span::after,
body.show_menu:not(.home) #header .hamburgermenu a span::after {
  bottom: 0 !important;
  transform: rotate(-45deg) !important;
  -webkit-transform: rotate(-45deg) !important;
  background: #ffffff !important;
}

/* BMS Solution */
.banner-section {
  min-height: 100vh;
  display: flex;
  align-items: end;
  flex-direction: column;
  justify-content: space-between;
}


.banner-section .section-title {
  position: absolute;
  top: 0;
  left: 0;
}

.banner-section .section-title h1 {
  font-size: 60px;
  color: #222961;
  font-family: 'Gilroy-Bold';
  line-height: 1;
}

.banner-section .section-title p {
  font-size: 24px;
  color: #222961;
  font-family: 'Gilroy-Regular';
  margin-top: 20px;
  line-height: 1.5;
  /* text-wrap: balance; */
}

.bms-solution-tpl .banner-section .banner-img dotlottie-wc,
.studiopage-wrapper .banner-section .banner-img dotlottie-wc {
  width: 100vw !important;
}

.bms-solution-section-1 .section-title h2 {
  text-align: center;
  font-size: 36px;
  font-family: 'Gilroy-Bold';
  margin-bottom: 60px;
}

.bms-solution-section-1 .features-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.bms-solution-section-1 .features-list .features-item {
  border-radius: 16px;
  border: 2px solid #D3D3D3;
  padding: 40px;
  padding-top: 52px;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.bms-solution-section-1 .features-list .features-item:last-child {
  background: #fff;
}

.bms-solution-section-1 .features-list .features-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 12px;
  background: #5762B6;
}

.bms-solution-section-1 .features-list .features-item:last-child::before {
  background: #01DEBD;
}

.bms-solution-section-1 .features-list .features-item h4 {
  font-size: 24px;
  font-family: 'Gilroy-Bold';
  margin-bottom: 24px;
}

.bms-solution-section-1 .features-list .features-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bms-solution-section-1 .features-list .features-item ul li {
  font-size: 20px;
  padding: 15px 0;
  font-weight: 400;
  font-family: "Gilroy-Regular";

}

.bms-solution-section-1 .features-list .features-item ul li:not(:last-child) {
  border-bottom: 1px solid #5762B6;
}

.bms-solution-section-1 .features-list .features-item:last-child li:not(:last-child) {
  border-bottom: 1px solid #DEDEDE;
}

.bms-solution-section-1 .features-list .features-item ul li:first-child {
  padding-top: 0;
}

.bms-solution-section-1 .features-list .features-item ul li:last-child {
  padding-bottom: 0;
}

.bms-solution-section-1 .features-list .features-item ul li b {
  font-family: "Gilroy-Bold";
}

.bms-solution-section-2 .h-screen {
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.bms-solution-section-2 {
  padding-bottom: 0 !important;
}

.bms-solution-section-2 .graph-sec-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.bms-solution-section-2 .h-screen .section-title h2 {
  text-align: center;
  font-size: 80px;
  font-family: 'Gilroy-Bold';
  position: relative;
  z-index: 1;
  text-wrap: balance;
}

.bms-solution-section-2 .graph-sec .graph-img {
  padding-left: 60px;
}

.bms-solution-section-2 .graph-sec .graph-title {
  font-size: 36px;
  font-family: 'Gilroy-Bold';
}


/* BMS Solution Section 3 */
.bms-solution-section-3 {
  color: #fff;
}

.bms-solution-section-3 .section-title h2 {
  font-size: 36px;
  font-family: 'Gilroy-Bold';
  color: #fff;
  margin-bottom: 18px;
}

.bms-solution-section-3 .section-title p {
  font-size: 20px;
  font-family: 'Gilroy-Regular';
}

.bms-solution-section-3 .section-graphic {
  width: 100%;
  margin-top: 60px;
}

.bms-solution-section-3 .code-graphic {
  width: 100%;
  margin-top: 100px;
}

/* BMS Solution Section 4 */
.bms-solution-section-4 .section-title h2,
.bms-solution-section-4 .hardware-img h3 {
  font-size: 36px;
  font-family: 'Gilroy-Bold';
  margin-bottom: 18px;
  text-wrap: balance;
}

.bms-solution-section-4 .section-title p,
.bms-solution-section-4 .hardware-img p {
  font-size: 20px;
  font-family: 'Gilroy-Regular';
}

.bms-solution-section-4 .hardware-img p {
  color: var(--theme-green);
}

.bms-solution-section-4 .hardware-img .section-graphic {
  width: 100%;
  margin-top: 35px;
}

.bms-solution-section-4 .hardware-img {
  margin-top: 60px;
}

.bms-solution-section-4 .cust-development-box {
  padding: 40px 90px;
  border-radius: 16px;
  background: #EAEAEA;
  margin-bottom: 30px;
}

.bms-solution-section-4 .cust-development .cust-development-content h3 {
  font-size: 24px;
  font-family: 'Gilroy-Bold';
  margin-bottom: 5px;
}

.bms-solution-section-4 .cust-development .cust-development-content p {
  font-size: 20px;
  font-family: 'Gilroy-Bold';
}

.bms-solution-section-4 .cust-development .cust-development-description p {
  font-size: 20px;
  font-family: 'Gilroy-Regular';
}

.bms-solution-section-4 .cust-development .features-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.bms-solution-section-4 .cust-development .features-list .features-item {
  border-radius: 16px;
  border: 2px solid #D3D3D3;
  padding: 40px;
  padding-top: 52px;
  position: relative;
  overflow: hidden;
  width: 100%;
  background: #fff;
}

.bms-solution-section-4 .cust-development .features-list .features-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 12px;
  background: #01DEBD;
}

.bms-solution-section-4 .cust-development .features-list .features-item h4 {
  font-size: 24px;
  font-family: 'Gilroy-Bold';
  margin-bottom: 24px;
}

.bms-solution-section-4 .cust-development .features-list .features-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bms-solution-section-4 .cust-development .features-list .features-item ul li {
  font-size: 20px;
  padding: 15px 0;
  font-weight: 400;
  font-family: "Gilroy-Regular";

}

.bms-solution-section-4 .cust-development .features-list .features-item ul li:not(:last-child) {
  border-bottom: 1px solid #DEDEDE;
}

.bms-solution-section-4 .cust-development .features-list .features-item ul li:first-child {
  padding-top: 0;
}

.bms-solution-section-4 .cust-development .features-list .features-item ul li:last-child {
  padding-bottom: 0;
}

.bms-solution-section-4 .cust-development .features-list .features-item ul li b {
  font-family: "Gilroy-Bold";
}

/* BMS Solution Section 5 */
.bms-solution-section-5 .section-title h2 {
  font-size: 36px;
  font-family: 'Gilroy-Bold';
  margin: 60px 0;
  text-align: center;
}

.bms-solution-section-5 .hardware-reasons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.bms-solution-section-5 .hardware-reasons .reason-item img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  margin-bottom: 16px;
}

.bms-solution-section-5 .hardware-reasons .reason-item p {
  font-size: 20px;
  font-family: "Gilroy-Medium";
}


/* BMS Solution Section 6 */

.bms-solution-section-6 .section-title h2 {
  font-size: 36px;
  font-family: 'Gilroy-Bold';
  margin-bottom: 60px;
  text-align: center;
}

.process-box-1 {
  --process-color: #0014FF;
  --process-bg-color: #E9EAFF;
  --process-index: 1;
}

.process-box-2 {
  --process-color: #FF0000;
  --process-bg-color: #FFE6E0;
  --process-index: 2;
}

.process-box-3 {
  --process-color: #FF9900;
  --process-bg-color: #FFF5E9;
  --process-index: 3;
}

.process-box-4 {
  --process-color: #00AD6F;
  --process-bg-color: #E7FDE9;
  --process-index: 4;
}

.bms-solution-section-6 .process-list.row .process-box {
  padding: 30px;
  position: relative;
  border-radius: 25px;
  background: var(--process-bg-color);
  color: var(--process-color);
  border: 1px solid var(--process-color);
}

.bms-solution-section-6 .process-list.row .process-box h4 {
  font-size: 24px;
  font-family: 'Gilroy-Bold';
  margin-bottom: 12px;
  padding-left: 10px;
}

.bms-solution-section-6 .process-list.row .process-box ul {
  margin: 0;
}

.bms-solution-section-6 .process-list.row .process-box li:not(:last-child) {
  margin-bottom: 10px;
}

.bms-solution-section-6 .process-list.row .process-box li {
  list-style: disc;
}

.bms-solution-section-6 .process-list.row .arrow-icon {
  position: absolute;
  top: 50px;
  right: -36px;
  z-index: 10;
}

/* CTA Section */
.cta-section {
  position: relative;
}

.cta-section .zikzak_line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.cta-section h2 {
  font-size: 48px;
  font-family: 'Gilroy-Bold';
  margin-bottom: 30px;
  text-align: center;
}

.cta-section .cta-sec-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.exploration-block .exploration-row .content-sec li {
  list-style: disc;
  font-size: 20px;
  margin-bottom: 10px;
  font-family: "Gilroy-Regular";
}

.exploration-block .exploration-row .content-sec li strong {
  font-family: "Gilroy-Medium";
}

.exploration-block .exploration-row .content-sec h4 {
  font-size: 24px;
  font-family: "Gilroy-Bold";
}

.exploration-block .exploration-row .img-sec img {
  width: 100%;
  max-height: 500px;
  object-fit: contain;
}

/* Solution Banner */
@media (max-width: 1700px) {
  .solutions-tpl .banner-img {
    margin-top: 100px;
  }

  .solutions-tpl .banner-section .section-title {
    position: absolute !important;
  }

  .solutions-tpl .banner-section .banner-img dotlottie-wc {
    margin-top: 0 !important;
  }
}

/* ============================================
   BMS Solution Page Responsive Styles
   ============================================ */

/* Tablet and below (1024px and down) */
@media (max-width: 1024px) {

  /* Banner Section */
  .banner-section .section-title h1 {
    font-size: 52px;
  }

  .banner-section .section-title p {
    font-size: 20px;
  }

  /* BMS Features Section */
  .bms-solution-section-1 .section-title h2 {
    font-size: 30px;
  }

  .bms-solution-section-1 .features-item h4 {
    font-size: 20px;
  }

  .bms-solution-section-1 .features-item li {
    font-size: 16px;
  }

  /* Graph Model Section */
  .bms-solution-section-2 .h-screen .section-title h2 {
    font-size: 50px;
  }

  .bms-solution-section-2 .graph-sec .graph-title {
    font-size: 28px;
  }

  /* Software Section */
  .bms-solution-section-3 .section-title h2 {
    font-size: 30px;
  }

  .bms-solution-section-3 .section-title p {
    font-size: 16px;
  }

  /* Hardware Section */
  .bms-solution-section-4 .section-title h2,
  .bms-solution-section-4 .hardware-img h3 {
    font-size: 30px;
  }

  .bms-solution-section-4 .cust-development .cust-development-content h3 {
    font-size: 24px;
  }

  .bms-solution-section-4 .features-item h4 {
    font-size: 20px;
  }

  /* Why Us Section */
  .bms-solution-section-5 .section-title h2 {
    font-size: 30px;
  }

  /* Production Process */
  .bms-solution-section-6 .section-title h2 {
    font-size: 30px;
  }

  .bms-solution-section-6 .process-list {
    row-gap: 30px;
  }

  /* Hide arrows on even items in tablet 2-column layout */
  @media (min-width: 767px) and (max-width: 1199px) {
    .bms-solution-section-6 .process-list .col-md-6:nth-child(2n) .arrow-icon {
      display: none !important;
    }
  }

  .bms-solution-section-6 .process-box h4 {
    font-size: 20px;
  }

  /* CTA Section */
  .cta-section h2 {
    font-size: 36px;
  }
}

/* Mobile and tablet (767px and down) */
@media (max-width: 767px) {

  .banner-section {
    padding-top: 100px !important;
  }

  .bms-solution-tpl .banner-section {
    min-height: auto !important;
  }

  .banner-section .section-title {
    position: static !important;
  }

  .banner-section .section-title .col-lg-5 {
    width: 100%;
    max-width: 100%;
  }

  .banner-section .section-title h1 {
    font-size: 42px;
    margin-bottom: 20px;
  }

  .banner-section .section-title p {
    margin-bottom: 30px;
  }

  .banner-section .banner-img img {
    max-height: 400px;
    width: 100%;
    object-fit: contain;
  }

  /* BMS Features Section */
  .bms-solution-section-1 {
    padding-top: 60px;
  }

  .bms-solution-section-1 .section-title h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .bms-solution-section-1 .features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .bms-solution-section-1 .features-item {
    padding: 25px 20px;
  }

  .bms-solution-section-1 .features-item h4 {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .bms-solution-section-1 .features-item li {
    font-size: 15px;
    padding: 8px 0;
  }

  .BattDaaS-section-1 .icon-box-main ul li {
    font-size: 18px;
  }

  .bms-solution-section-2 .graph-sec {
    min-height: 60vh !important;
  }

  .bms-solution-section-2 .h-screen .section-title h2 {
    font-size: 36px;
    margin-bottom: 30px;
  }

  .bms-solution-section-2 .graph-sec .graph-title {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .bms-solution-section-2 .row {
    flex-direction: column-reverse;
  }

  .bms-solution-section-2 .graph-img {
    margin-bottom: 30px;
    padding-left: 0 !important;
  }

  .bms-solution-section-2 .graph-img img {
    max-height: 400px;
    width: 100%;
    object-fit: contain;
  }

  .bms-solution-section-2 .graph-sec-bg-img {
    max-width: 100%;
  }

  .bms-solution-section-2 .graph-sec .container {
    position: relative;
  }

  /* Software Section */

  .bms-solution-section-3 .section-title {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 20px;
  }

  .bms-solution-section-3 .section-title h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .bms-solution-section-3 .section-title p {
    font-size: 16px;
  }

  .bms-solution-section-3 .section-graphic,
  .bms-solution-section-3 .code-graphic {
    max-width: 100%;
    height: auto;
    margin-top: 40px;
  }

  /* Hardware Section */
  .bms-solution-section-4 .section-title {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 20px;
  }

  .bms-solution-section-4 .section-title h2,
  .bms-solution-section-4 .hardware-img h3 {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .bms-solution-section-4 .section-title p,
  .bms-solution-section-4 .hardware-img p {
    font-size: 16px;
  }

  .bms-solution-section-4 .cust-development {
    margin-top: 60px;
  }

  .bms-solution-section-4 .cust-development-box {
    padding: 30px 20px;
    border-radius: 12px;
  }

  .bms-solution-section-4 .cust-development-box .row {
    flex-direction: column;
    gap: 20px;
  }

  .bms-solution-section-4 .cust-development-box .col-md-5,
  .bms-solution-section-4 .cust-development-box .col-md-7 {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
  }

  .bms-solution-section-4 .cust-development .cust-development-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    line-height: 1.3;
  }

  .bms-solution-section-4 .cust-development-content p,
  .bms-solution-section-4 .cust-development-description p {
    font-size: 16px;
    line-height: 1.6;
  }

  .bms-solution-section-4 .cust-development .features-list {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .bms-solution-section-4 .cust-development .features-item {
    padding: 25px 20px;
    width: 100%;
  }

  .bms-solution-section-4 .cust-development .features-item h4 {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .bms-solution-section-4 .cust-development .features-item li {
    font-size: 16px;
    padding: 8px 0;
  }

  /* Why Us Section */
  .bms-solution-section-5 {
    padding-top: 60px;
  }

  .bms-solution-section-5 .section-title h2 {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .bms-solution-section-5 .hardware-reasons {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .bms-solution-section-5 .reason-item {
    text-align: center;
    padding: 30px 20px;
  }

  .bms-solution-section-5 .reason-item img {
    width: 70px !important;
    height: 70px !important;
    margin-bottom: 20px;
  }

  .bms-solution-section-5 .reason-item p {
    font-size: 15px;
  }

  /* Production Process */
  .bms-solution-section-6 {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }

  .bms-solution-section-6 .section-title h2 {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .bms-solution-section-6 .process-list {
    row-gap: 20px;
  }

  .bms-solution-section-6 .process-box {
    padding: 25px 20px;
  }

  .bms-solution-section-6 .process-box h4 {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .bms-solution-section-6 .process-box li {
    font-size: 15px;
  }

  /* CTA Section */
  .cta-section {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }

  .cta-section .section-title {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 20px;
  }

  .cta-section h2 {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .cta-section .cta-sec-row {
    flex-direction: column;
    gap: 20px;
  }

  .cta-section .cta-btn {
    width: 100%;
  }

  .cta-section .cta-btn a {
    width: 100%;
    justify-content: center;
    padding: 15px 30px;
    font-size: 16px;
  }
}

/* Small mobile (480px and down) */
@media (max-width: 480px) {
  .banner-section {
    padding-top: 120px !important;
    padding-bottom: 40px !important;
  }

  .banner-section .section-title h1 {
    font-size: 38px;
    margin-bottom: 15px;
  }

  .banner-section .section-title p {
    margin-bottom: 25px;
  }

  .banner-section .banner-img img {
    max-height: 300px;
  }

  /* BMS Features Section */
  .bms-solution-section-1 {
    padding-top: 40px;
  }

  .banner-section .banner-img {
    /* height: 200px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-items: center; */
  }

  .studiopage-wrapper .banner-section .banner-img {
    /* height: 250px !important; */
    margin-top: 20px;
  }

.studiopage-wrapper .banner-section .banner-img dotlottie-wc {
    transform: scale(1.35);
    transform-origin: bottom;
}

  .bms-solution-tpl .banner-section .banner-img dotlottie-wc {
    width: 450px !important;

    margin-top: -20px;
  }

  .bms-solution-section-1 .section-title h2 {
    font-size: 24px;
    margin-bottom: 25px;
  }

  .bms-solution-section-1 .features-list {
    gap: 15px;
  }

  .bms-solution-section-1 .features-item {
    padding: 20px 15px;
  }

  .bms-solution-section-1 .features-item h4 {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .bms-solution-section-2 .h-screen .section-title h2 {
    text-wrap: unset;
    margin-bottom: 25px;
  }

  .bms-solution-section-2 .graph-sec .graph-title {
    font-size: 20px;
    margin-bottom: 25px;
  }

  .bms-solution-section-2 .graph-img {
    margin-bottom: 25px;
  }

  .bms-solution-section-2 .graph-img img {
    max-height: 300px;
  }

  .bms-solution-section-2 .graph-sec .col-lg-4,
  .bms-solution-section-2 .graph-sec .col-lg-8 {
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Software Section */

  .bms-solution-section-3 .section-title h2 {
    font-size: 24px;
    margin-bottom: 15px;
  }


  .bms-solution-section-3 .section-graphic,
  .bms-solution-section-3 .code-graphic {
    margin-top: 30px;
  }

  /* Hardware Section */

  .bms-solution-section-4 .section-title h2,
  .bms-solution-section-4 .hardware-img h3 {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .bms-solution-section-4 .cust-development {
    margin-top: 40px;
  }

  .bms-solution-section-4 .cust-development-box {
    padding: 25px 15px;
    border-radius: 12px;
  }

  .bms-solution-section-4 .cust-development-box .col-md-5,
  .bms-solution-section-4 .cust-development-box .col-md-7 {
    padding-left: 15px;
    padding-right: 15px;
  }

  .bms-solution-section-4 .cust-development .cust-development-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    line-height: 1.3;
  }

  .bms-solution-section-4 .cust-development-content p,
  .bms-solution-section-4 .cust-development-description p {
    font-size: 15px;
    line-height: 1.5;
  }

  .bms-solution-section-4 .cust-development .features-list {
    margin-top: 25px;
    gap: 15px;
  }

  .bms-solution-section-4 .cust-development .features-item {
    padding: 20px 15px;
  }

  .bms-solution-section-4 .cust-development .features-item h4 {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .bms-solution-section-4 .cust-development .features-item li {
    font-size: 15px;
    padding: 6px 0;
  }

  /* Why Us Section */
  .bms-solution-section-5 {
    padding-top: 40px;
  }

  .bms-solution-section-5 .section-title h2 {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .bms-solution-section-5 .hardware-reasons {
    gap: 25px;
  }

  .bms-solution-section-5 .reason-item {
    padding: 25px 15px;
  }

  .bms-solution-section-5 .reason-item img {
    width: 60px !important;
    height: 60px !important;
    margin-bottom: 15px;
  }

  /* Production Process */
  .bms-solution-section-6 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }

  .bms-solution-section-6 .section-title h2 {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .bms-solution-section-6 .process-list.row .arrow-icon {
    rotate: 90deg;
    transform-origin: center;
    width: 60px;
    height: 20px;
    right: calc(50% - 30px);
    top: unset;
    bottom: -20px;
  }

  .bms-solution-section-6 .process-box {
    padding: 20px 15px;
  }

  .bms-solution-section-6 .process-box h4 {
    font-size: 18px;
    margin-bottom: 12px;
  }

  /* CTA Section */
  .cta-section {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }

  .cta-section h2 {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .cta-section .cta-sec-row {
    gap: 15px;
  }

  .cta-section .cta-btn a {
    padding: 12px 25px;
    font-size: 16px;
  }
}

/* Solutions Template */
.solutions-tpl .banner-section {
  align-items: unset;
}

.solutions-tpl .banner-section .banner-img dotlottie-wc {
  height: 100vh;
  object-fit: cover;
  margin-top: -100px;
}

.consumer-electronics {
  padding-bottom: 0;
  color: #fff;
}


.consumer-electronics .bg-graphics {
  top: 0;
  left: 0;
}

.consumer-electronics .section-title h2 {
  font-size: 42px;
  font-family: 'Gilroy-Bold';
  color: var(--theme-green);
  margin-bottom: 12px;
  text-align: center;
  margin-top: 25px;
  /* text-wrap: balance; */

}

.consumer-electronics .section-title p.desc-sec {
  font-size: 24px;
  font-family: 'Gilroy-Regular';
  text-align: center;

}

.consumer-electronics .reality-tab {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 80px;
}

.consumer-electronics .reality-tab .reality-tab-sec {
  padding: 40px;
  padding-top: 100px;
  border: 2px solid #3D499F;
}

.consumer-electronics .reality-tab .reality-tab-col {
  position: relative;
  padding-top: 50px;
}

.consumer-electronics .reality-tab .reality-tab-col h3 {
  font-size: 24px;
  font-family: 'Gilroy-Bold';
}

.consumer-electronics .reality-tab .reality-tab-col:first-child h3 {
  color: var(--theme-purple);
}

.consumer-electronics .reality-tab .reality-tab-col:last-child h3 {
  color: var(--theme-green);
}

.consumer-electronics .reality-tab .reality-tab-col img {
  position: absolute;
  top: 0;
  left: 40px;
}

.consumer-electronics .reality-tab .reality-tab-point {
  font-size: 24px;
  padding-bottom: 24px;
  padding-top: 24px;
  border-bottom: 1px solid #3D499F;
}

.consumer-electronics .reality-tab .reality-tab-sec ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.consumer-electronics .reality-tab .reality-tab-sec li {
  font-size: 20px;
  padding: 24px 0;
}

.consumer-electronics .reality-tab .reality-tab-sec li:not(:last-child) {
  border-bottom: 1px solid #3D499F;
}

.consumer-electronics .consumer-electronics-feat {
  margin-top: 80px;
}

.consumer-electronics .consumer-electronics-feat .consumer-electronics-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: space-between;
  height: 100%;
}

.consumer-electronics .consumer-electronics-feat .consumer-electronics-item h4 {
  color: #01debd;
  font-size: 48px;
  font-weight: bold;
}

.consumer-electronics .consumer-electronics-feat .consumer-electronics-item p {
  font-size: 20px;
  margin-top: 10px;
}

.consumer-electronics-item .consumer-electronics-icon {
  margin-bottom: 30px;
  height: 100px;
  max-height: 100px;
}

.consumer-electronics-item .consumer-electronics-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.consumer-electronics-item .consumer-electronics-icon svg {
  height: 100px;
}

.consumer-electronics .row {
  row-gap: 40px;
}

.consumer-electronics-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 60px;
  margin-top: 80px;
  border: 0 !important;
  flex-wrap: nowrap;
  row-gap: 20px;
}

.consumer-electronics-tabs button.consumer-electronics-tabs-btn {
  width: 100%;
  height: auto;
  padding: 0 15px 20px !important;
  margin: 0 !important;
  border: 0;
  border-bottom: 3px solid #3D499F;
  border-radius: 0 !important;
  background: none !important;
  text-align: center;
  opacity: 1;
  font-family: "Gilroy-Medium";
  font-size: 20px;
  text-transform: capitalize;
  color: #fff !important;
  min-width: fit-content;
}

.consumer-electronics-tabs button.consumer-electronics-tabs-btn:hover {
  border-bottom-color: #01DEBD;
}

.consumer-electronics-tabs button.consumer-electronics-tabs-btn.active {
  border-bottom-color: #01DEBD;
  font-family: "Gilroy-Bold";
}

.consumer-electronics-tab-content .tab-title-sec h3 {
  font-size: 36px;
  font-family: 'Gilroy-Bold';
  color: var(--theme-green);
  margin-bottom: 12px;
}

.consumer-electronics-tab-content .tab-title-sec p {
  font-size: 20px;
  text-wrap: balance;
  font-family: 'Gilroy-Regular';
}

.consumer-electronics-tab-content .models-includes {
  margin-top: 50px;
}


.consumer-electronics-tab-content .models-includes .models-include-item h4 {
  margin-top: 16px;
  color: #01DEBD;
  font-size: 20px;
  font-family: "Gilroy-Medium";
}

.consumer-electronics-tab-content .models-includes .models-include-item p {
  font-size: 20px;
  margin-top: 16px;
  font-family: 'Gilroy-Regular';
}

.consumer-electronics-tab-content .solution-quote .quote {
  font-size: 24px;
  text-wrap: balance;
}


.consumer-electronics-tab-content .solution-quote .quote-by {
  font-size: 20px;
  color: #6A7AD8;
  margin-top: 5px;
}

.consumer-electronics-tab-content .solution-quote {
  padding-left: 30px;
  border-left: 5px solid var(--theme-green);
  margin-top: 70px;
}

.consumer-electronics-tab-content .your-path-forward p {
  font-size: 20px;
}

.consumer-electronics-tab-content .your-path-forward img {
  margin-top: 24px;
  margin-bottom: 20px;
  height: 140px;
  object-fit: contain;
}

.consumer-electronics-tab-content .your-path-forward h3.title {
  color: var(--theme-green);
  font-size: 32px;
  margin-bottom: 16px;
}

.consumer-electronics-tab-content .your-path-forward .cta-btn a:hover {
  color: #fff;
}

/* electric-vehicles */

.electric-vehicles {
  background: #E1E3F9;
  color: #000;
  padding-bottom: 0;
}


.electric-vehicles .bg-graphics {
  top: 0;
  left: 0;
}

.electric-vehicles .section-title h2 {
  font-size: 42px;
  font-family: 'Gilroy-Bold';
  color: var(--theme-blue);
  margin-bottom: 12px;
  text-align: center;
  margin-top: 25px;
  text-wrap: balance;

}

.electric-vehicles .section-title p.desc-sec {
  font-size: 24px;
  font-family: 'Gilroy-Regular';
  text-align: center;
  text-wrap: balance;
}

.electric-vehicles .reality-tab {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 80px;
}

.electric-vehicles .reality-tab .reality-tab-sec {
  padding: 40px;
  padding-top: 100px;
  border: 2px solid #AAADD2;
}

.electric-vehicles .reality-tab .reality-tab-col {
  position: relative;
  padding-top: 50px;
}

.electric-vehicles .reality-tab .reality-tab-col h3 {
  font-size: 24px;
  font-family: 'Gilroy-Bold';
}

.electric-vehicles .reality-tab .reality-tab-col:first-child h3 {
  color: var(--theme-purple);
}

.electric-vehicles .reality-tab .reality-tab-col:last-child h3 {
  color: #000;
}

.electric-vehicles .reality-tab .reality-tab-col img {
  position: absolute;
  top: 0;
  left: 40px;
}

.electric-vehicles .reality-tab .reality-tab-point {
  font-size: 24px;
  padding-bottom: 24px;
  padding-top: 24px;
  border-bottom: 1px solid #AAADD2;
}

.electric-vehicles .reality-tab .reality-tab-sec ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.electric-vehicles .reality-tab .reality-tab-sec li {
  font-size: 20px;
  padding: 24px 0;
}

.electric-vehicles .reality-tab .reality-tab-sec li:not(:last-child) {
  border-bottom: 1px solid #3D499F;
}

.electric-vehicles .electric-vehicles-feat {
  margin-top: 120px;
}

.electric-vehicles .electric-vehicles-feat .electric-vehicles-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: space-between;
  height: 100%;
}

.electric-vehicles .electric-vehicles-feat .electric-vehicles-item h4 {
  color: #000;
  font-size: 48px;
  font-weight: bold;
}

.electric-vehicles .electric-vehicles-feat .electric-vehicles-item p {
  font-size: 20px;
  margin-top: 10px;
}

.electric-vehicles-item .electric-vehicles-icon {
  margin-bottom: 30px;
  height: 100px;
  max-height: 100px;
}

.electric-vehicles-item .electric-vehicles-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.electric-vehicles-item .electric-vehicles-icon svg {
  height: 100px;
}

.electric-vehicles .row {
  row-gap: 40px;
}

.electric-vehicles-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 60px;
  margin-top: 80px;
  border: 0 !important;
  flex-wrap: nowrap;
  row-gap: 20px;
}

.electric-vehicles-tabs button.electric-vehicles-tabs-btn {
  width: 100%;
  height: auto;
  padding: 0 15px 20px !important;
  margin: 0 !important;
  border: 0;
  border-bottom: 3px solid #BFC3EE !important;
  border-radius: 0 !important;
  background: none !important;
  text-align: center;
  opacity: 1;
  font-family: "Gilroy-Medium";
  font-size: 20px;
  text-transform: capitalize;
  color: #000 !important;
  min-width: fit-content;
}

.electric-vehicles-tabs button.electric-vehicles-tabs-btn.active {
  border-bottom-color: #01DEBD !important;
  font-family: "Gilroy-Bold";
}

.electric-vehicles-tab-content .tab-title-sec h3 {
  font-size: 36px;
  font-family: 'Gilroy-Bold';
  color: var(--theme-blue);
  margin-bottom: 12px;
}

.electric-vehicles-tab-content .tab-title-sec p {
  font-size: 20px;
  text-wrap: balance;
  font-family: 'Gilroy-Regular';
}

.electric-vehicles-tab-content .models-includes {
  display: flex;
  margin-top: 50px;
}


.electric-vehicles-tab-content .models-includes .models-include-item h4 {
  margin-top: 16px;
  color: #222961;
  font-size: 20px;
  font-family: "Gilroy-Medium";
}

.electric-vehicles-tab-content .models-includes .models-include-item p {
  font-size: 20px;
  margin-top: 16px;
  font-family: 'Gilroy-Regular';
}

.electric-vehicles-tab-content .solution-quote .quote {
  font-size: 24px;
  text-wrap: balance;
}


.electric-vehicles-tab-content .solution-quote .quote-by {
  font-size: 20px;
  color: #6A7AD8;
  margin-top: 5px;
}

.electric-vehicles-tab-content .solution-quote {
  padding-left: 30px;
  border-left: 5px solid var(--theme-green);
  margin-top: 70px;
}

.electric-vehicles-tab-content .your-path-forward p {
  font-size: 20px;
}

.electric-vehicles-tab-content .your-path-forward img {
  margin-top: 24px;
  margin-bottom: 20px;
  height: 140px;
  object-fit: contain;
}

.electric-vehicles-tab-content .your-path-forward h3.title {
  color: var(--theme-blue);
  font-size: 32px;
  margin-bottom: 16px;
}

.electric-vehicles-tab-content .your-path-forward .cta-btn a:hover {
  color: #fff;
}

.electric-vehicles-tab-content .cta-btn,
.consumer-electronics-tab-content .cta-btn {
  margin-top: 80px;
}

.electric-vehicles.BESS-section {
  background: #fff;
}

.electric-vehicles.BESS-section .models-includes {
  gap: 0;
}

/* ===================================
   Solutions Template - Responsive Styles
   =================================== */

/* Tablet (1024px and down) */
@media (max-width: 1024px) {

  /* Banner Section */
  .solutions-tpl .banner-section .section-title h1 {
    font-size: 48px;
  }

  /* Consumer Electronics Section */
  .consumer-electronics .section-title h2 {
    font-size: 36px;
  }

  .consumer-electronics .section-title p.desc-sec {
    font-size: 20px;
  }

  .consumer-electronics .reality-tab {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .consumer-electronics .reality-tab .reality-tab-sec {
    padding: 30px;
    padding-top: 80px;
  }

  .consumer-electronics .reality-tab .reality-tab-sec li {
    font-size: 18px;
    padding: 18px 0;
  }

  .consumer-electronics-tabs {
    margin-top: 60px;
    margin-bottom: 40px;
  }

  .consumer-electronics-tabs button.consumer-electronics-tabs-btn {
    font-size: 18px;
    padding-bottom: 15px !important;
  }

  .consumer-electronics-tab-content .tab-title-sec h3 {
    font-size: 32px;
  }

  .consumer-electronics-tab-content .tab-title-sec p {
    font-size: 18px;
  }

  .consumer-electronics-tab-content .models-includes .models-include-item h4 {
    font-size: 18px;
  }

  .consumer-electronics-tab-content .models-includes .models-include-item p {
    font-size: 18px;
  }

  .consumer-electronics-tab-content .solution-quote .quote {
    font-size: 20px;
  }

  .consumer-electronics-tab-content .solution-quote .quote-by {
    font-size: 18px;
  }

  .consumer-electronics .consumer-electronics-feat {
    margin-top: 60px;
  }

  .consumer-electronics .consumer-electronics-feat .consumer-electronics-item h4 {
    font-size: 40px;
  }

  .consumer-electronics .consumer-electronics-feat .consumer-electronics-item p {
    font-size: 18px;
  }

  /* Electric Vehicles Section */
  .electric-vehicles .section-title h2 {
    font-size: 36px;
  }

  .electric-vehicles .section-title p.desc-sec {
    font-size: 20px;
  }

  .electric-vehicles .reality-tab {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .electric-vehicles .reality-tab .reality-tab-sec {
    padding: 30px;
    padding-top: 80px;
  }

  .electric-vehicles .reality-tab .reality-tab-sec li {
    font-size: 18px;
    padding: 18px 0;
  }

  .electric-vehicles-tabs {
    margin-top: 60px;
    margin-bottom: 40px;
  }

  .electric-vehicles-tabs button.electric-vehicles-tabs-btn {
    font-size: 18px;
    padding-bottom: 15px !important;
  }

  .electric-vehicles-tab-content .tab-title-sec h3 {
    font-size: 32px;
  }

  .electric-vehicles-tab-content .tab-title-sec p {
    font-size: 18px;
  }

  .electric-vehicles-tab-content .models-includes .models-include-item h4 {
    font-size: 18px;
  }

  .electric-vehicles-tab-content .models-includes .models-include-item p {
    font-size: 18px;
  }

  .electric-vehicles .electric-vehicles-feat {
    margin-top: 60px;
  }

  .electric-vehicles .electric-vehicles-feat .electric-vehicles-item h4 {
    font-size: 40px;
  }

  .electric-vehicles .electric-vehicles-feat .electric-vehicles-item p {
    font-size: 18px;
  }

  .consumer-electronics-tab-content .your-path-forward h3.title,
  .electric-vehicles-tab-content .your-path-forward h3.title {
    font-size: 28px;
  }

  .consumer-electronics-tab-content .your-path-forward p,
  .electric-vehicles-tab-content .your-path-forward p {
    font-size: 18px;
  }

  .consumer-electronics-tab-content .your-path-forward img,
  .electric-vehicles-tab-content .your-path-forward img {
    height: 120px;
  }

  .consumer-electronics-tabs,
  .electric-vehicles-tabs {
    flex-wrap: nowrap;
  }

  .consumer-electronics-item .consumer-electronics-icon,
  .electric-vehicles-item .electric-vehicles-icon {
    height: 90px;
    max-height: 90px;
    margin-bottom: 25px;
  }

  .consumer-electronics-item .consumer-electronics-icon svg,
  .electric-vehicles-item .electric-vehicles-icon svg {
    height: 90px;
  }

  .consumer-electronics-item .consumer-electronics-icon img,
  .electric-vehicles-item .electric-vehicles-icon img {
    height: 100%;
    object-fit: contain;
  }
}

@media (max-width: 767px) {

  /* Banner Section */
  .solutions-tpl .banner-section {
    padding-top: 100px !important;
    padding-bottom: 40px !important;
  }

  .solutions-tpl .banner-section .section-title h1 {
    font-size: 42px;
  }

  .solutions-tpl .banner-section .banner-img {
    margin-top: 40px;
  }

  /* Consumer Electronics Section */

  .consumer-electronics .section-title h2 {
    font-size: 30px;
  }

  .consumer-electronics .section-title p.desc-sec {
    font-size: 18px;
  }

  .consumer-electronics .reality-tab {
    margin-top: 50px;
  }

  .consumer-electronics .reality-tab .reality-tab-sec {
    padding: 25px;
    padding-top: 70px;
  }

  .consumer-electronics .reality-tab .reality-tab-col h3 {
    font-size: 20px;
  }

  .consumer-electronics .reality-tab .reality-tab-col img {
    left: 25px;
    width: 60px;
  }

  .consumer-electronics .reality-tab .reality-tab-sec li {
    font-size: 16px;
    padding: 15px 0;
  }

  .consumer-electronics-tabs {
    margin-top: 50px;
    margin-bottom: 30px;
    justify-content: flex-start;
    overflow: hidden;
    overflow-x: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;

    &::-webkit-scrollbar {
      display: none;
    }
  }

  .consumer-electronics-tabs button.consumer-electronics-tabs-btn {
    font-size: 16px;
  }

  .consumer-electronics-tab-content .tab-title-sec h3 {
    font-size: 28px;
  }

  .consumer-electronics-tab-content .tab-title-sec p {
    font-size: 16px;
  }

  .consumer-electronics-tab-content .models-includes {
    margin-top: 30px;
  }

  .consumer-electronics-tab-content .models-includes .models-include-item h4 {
    font-size: 16px;
    margin-top: 12px;
  }

  .consumer-electronics-tab-content .models-includes .models-include-item p {
    font-size: 16px;
    margin-top: 12px;
  }

  .consumer-electronics-tab-content .models-includes .models-include-item svg {
    width: 32px;
    height: 32px;
  }

  .consumer-electronics-tab-content .solution-quote {
    margin-top: 40px;
    padding-left: 20px;
  }

  .consumer-electronics-tab-content .solution-quote .quote {
    font-size: 18px;
  }

  .consumer-electronics-tab-content .solution-quote .quote-by {
    font-size: 16px;
  }

  .consumer-electronics .consumer-electronics-feat {
    margin-top: 50px;
  }

  .consumer-electronics .consumer-electronics-feat .consumer-electronics-item h4 {
    font-size: 36px;
  }

  .consumer-electronics .consumer-electronics-feat .consumer-electronics-item p {
    font-size: 16px;
  }

  .consumer-electronics-item .consumer-electronics-icon {
    height: 80px;
    max-height: 80px;
    margin-bottom: 20px;
  }

  .consumer-electronics-item .consumer-electronics-icon svg {
    height: 80px;
  }

  /* Electric Vehicles Section */

  .electric-vehicles .section-title h2 {
    font-size: 30px;
  }

  .electric-vehicles .section-title p.desc-sec {
    font-size: 18px;
  }

  .electric-vehicles .reality-tab {
    margin-top: 50px;
  }

  .electric-vehicles .reality-tab .reality-tab-sec {
    padding: 25px;
    padding-top: 70px;
  }

  .electric-vehicles .reality-tab .reality-tab-col h3 {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .electric-vehicles .reality-tab .reality-tab-col img {
    left: 25px;
    width: 60px;
  }

  .electric-vehicles .reality-tab .reality-tab-sec li {
    font-size: 16px;
    padding: 15px 0;
  }

  .electric-vehicles-tabs {
    margin-top: 50px;
    margin-bottom: 30px;
    justify-content: flex-start;
    overflow: hidden;
    overflow-x: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;

    &::-webkit-scrollbar {
      display: none;
    }
  }

  .electric-vehicles-tabs button.electric-vehicles-tabs-btn {
    font-size: 16px;
  }

  .electric-vehicles-tab-content .tab-title-sec h3 {
    font-size: 28px;
  }

  .electric-vehicles-tab-content .tab-title-sec p {
    font-size: 16px;
  }

  .electric-vehicles-tab-content .models-includes {
    margin-top: 30px;
    flex-direction: column;
  }

  .electric-vehicles-tab-content .models-includes .models-include-item h4 {
    font-size: 16px;
    margin-top: 12px;
  }

  .electric-vehicles-tab-content .models-includes .models-include-item p {
    font-size: 16px;
    margin-top: 12px;
  }

  .electric-vehicles-tab-content .models-includes .models-include-item svg {
    width: 32px;
    height: 32px;
  }

  .electric-vehicles .electric-vehicles-feat {
    margin-top: 50px;
  }

  .electric-vehicles .electric-vehicles-feat .electric-vehicles-item h4 {
    font-size: 36px;
  }

  .electric-vehicles .electric-vehicles-feat .electric-vehicles-item p {
    font-size: 16px;
  }

  .electric-vehicles-item .electric-vehicles-icon {
    height: 80px;
    max-height: 80px;
    margin-bottom: 20px;
  }

  .electric-vehicles-item .electric-vehicles-icon svg {
    height: 80px;
  }

  .consumer-electronics-tab-content .your-path-forward h3.title,
  .electric-vehicles-tab-content .your-path-forward h3.title {
    font-size: 24px;
  }

  .consumer-electronics-tab-content .your-path-forward p,
  .electric-vehicles-tab-content .your-path-forward p {
    font-size: 16px;
  }

  .consumer-electronics-tab-content .your-path-forward img,
  .electric-vehicles-tab-content .your-path-forward img {
    height: 100px;
    margin-top: 16px;
    margin-bottom: 16px;
  }

  .electric-vehicles-tab-content .cta-btn,
  .consumer-electronics-tab-content .cta-btn {
    margin-top: 50px;
  }
}

/* Mobile portrait (480px and down) */
@media (max-width: 480px) {

  /* Banner Section */
  .solutions-tpl .banner-section {
    padding-top: 120px !important;
    padding-bottom: 40px !important;
  }

  .solutions-tpl .banner-section .banner-img dotlottie-wc {
    margin-top: 50px !important;
  }
  .solutions-tpl .banner-section .section-title h1 {
    font-size: 36px;
  }

  .solutions-tpl .banner-section .banner-img {
    margin-top: 30px;
  }

  /* Consumer Electronics Section */
  .consumer-electronics {
    padding-bottom: 0 !important;
  }

  .consumer-electronics .section-title p.desc-sec {
    font-size: 16px;
  }

  .consumer-electronics .reality-tab {
    margin-top: 40px;
  }

  .consumer-electronics .reality-tab .reality-tab-sec {
    padding: 20px;
    padding-top: 60px;
  }

  .consumer-electronics .reality-tab .reality-tab-col {
    padding-top: 40px;
  }

  .consumer-electronics .reality-tab .reality-tab-col h3 {
    font-size: 18px;
  }

  .consumer-electronics .reality-tab .reality-tab-col img {
    left: 20px;
    width: 50px;
  }

  .consumer-electronics .reality-tab .reality-tab-sec li {
    font-size: 16px;
    padding: 12px 0;
  }

  .consumer-electronics-tabs {
    margin-top: 40px;
    margin-bottom: 25px;
  }

  .consumer-electronics-tabs button.consumer-electronics-tabs-btn {
    font-size: 16px;
    padding-bottom: 10px !important;
  }

  .consumer-electronics-tab-content .tab-title-sec h3 {
    font-size: 22px;
  }

  .consumer-electronics-tab-content .tab-title-sec p {
    font-size: 16px;
  }

  .consumer-electronics-tab-content .models-includes {
    margin-top: 25px;
  }

  .consumer-electronics-tab-content .models-includes .models-include-item h4 {
    font-size: 16px;
    margin-top: 10px;
  }

  .consumer-electronics-tab-content .models-includes .models-include-item p {
    font-size: 16px;
    margin-top: 10px;
  }

  .consumer-electronics-tab-content .models-includes .models-include-item svg {
    width: 28px;
    height: 28px;
  }

  .consumer-electronics-tab-content .solution-quote {
    margin-top: 30px;
    padding-left: 15px;
    border-left-width: 3px;
  }

  .consumer-electronics-tab-content .solution-quote .quote {
    font-size: 16px;
  }

  .consumer-electronics-tab-content .solution-quote .quote-by {
    font-size: 16px;
  }

  .consumer-electronics .consumer-electronics-feat {
    margin-top: 40px;
  }

  .consumer-electronics .consumer-electronics-feat .consumer-electronics-item h4 {
    font-size: 28px;
  }

  .consumer-electronics .consumer-electronics-feat .consumer-electronics-item p {
    font-size: 16px;
  }

  .consumer-electronics-item .consumer-electronics-icon {
    height: 60px;
    max-height: 60px;
    margin-bottom: 15px;
  }

  .consumer-electronics-item .consumer-electronics-icon svg {
    height: 60px;
  }

  /* Electric Vehicles Section */
  .electric-vehicles {
    padding-bottom: 0 !important;
  }

  .electric-vehicles .section-title p.desc-sec {
    font-size: 16px;
  }

  .electric-vehicles .reality-tab {
    margin-top: 40px;
  }

  .electric-vehicles .reality-tab .reality-tab-sec {
    padding: 20px;
    padding-top: 60px;
  }

  .electric-vehicles .reality-tab .reality-tab-col {
    padding-top: 40px;
  }

  .electric-vehicles .reality-tab .reality-tab-col img {
    left: 20px;
    width: 50px;
  }

  .electric-vehicles-tabs {
    margin-top: 40px;
    margin-bottom: 25px;
  }

  .electric-vehicles-tabs button.electric-vehicles-tabs-btn {
    font-size: 16px;
  }

  .electric-vehicles-tab-content .tab-title-sec h3 {
    font-size: 22px;
  }

  .electric-vehicles-tab-content .tab-title-sec p {
    font-size: 16px;
  }

  .electric-vehicles-tab-content .models-includes {
    margin-top: 25px;
  }

  .electric-vehicles-tab-content .models-includes .models-include-item h4 {
    font-size: 16px;
    margin-top: 10px;
  }

  .electric-vehicles-tab-content .models-includes .models-include-item p {
    font-size: 16px;
    margin-top: 10px;
  }

  .electric-vehicles-tab-content .models-includes .models-include-item svg {
    width: 28px;
    height: 28px;
  }

  .electric-vehicles .electric-vehicles-feat {
    margin-top: 40px;
  }

  .electric-vehicles .electric-vehicles-feat .electric-vehicles-item h4 {
    font-size: 28px;
  }

  .electric-vehicles .electric-vehicles-feat .electric-vehicles-item p {
    font-size: 16px;
  }

  .electric-vehicles-item .electric-vehicles-icon {
    height: 60px;
    max-height: 60px;
    margin-bottom: 15px;
  }

  .electric-vehicles-item .electric-vehicles-icon svg {
    height: 60px;
  }

  .consumer-electronics-tab-content .your-path-forward h3.title,
  .electric-vehicles-tab-content .your-path-forward h3.title {
    font-size: 20px;
  }

  .consumer-electronics-tab-content .your-path-forward p,
  .electric-vehicles-tab-content .your-path-forward p {
    font-size: 16px;
  }

  .consumer-electronics-tab-content .your-path-forward img,
  .electric-vehicles-tab-content .your-path-forward img {
    height: 80px;
    margin-top: 12px;
    margin-bottom: 12px;
  }

  .electric-vehicles-tab-content .cta-btn,
  .consumer-electronics-tab-content .cta-btn {
    margin-top: 40px;
  }

  .consumer-electronics-tab-content .cta-btn a,
  .electric-vehicles-tab-content .cta-btn a {
    padding: 12px 24px;
    font-size: 16px;
  }
}

/* BattOps Template */
.battops-tpl .banner-section .banner-img img {
  max-height: 100%;
}


.battops-tpl .battops-section-1 .section-title h2 {
  font-size: 36px;
  text-wrap: balance;
}

.battops-tpl .battops-section-1 .graph-sec-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.battops-tpl .battops-section-1 .battops-section-1-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.battops-tpl .battops-section-1 .battops-section-1-content .assets-item-title {
  font-size: 24px;
  text-align: center;
  margin-bottom: 30px;
}

.battops-tpl .battops-section-1 .battops-section-1-content .assets-item-box {
  border-radius: 15px;
  overflow: hidden;
  padding: 42px 48px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 30px;
  border: 2px solid #D3D3D3;
}

.battops-tpl .battops-section-1 .battops-section-1-content .assets-item:last-child .assets-item-box {
  background-color: #fff;
  border: 0;
}

.battops-tpl .battops-section-1 .battops-section-1-content .assets-item .assets-item-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 12px;
  background-color: #01DEBD;
}

.battops-tpl .battops-section-1 .battops-section-1-content .assets-item:first-child .assets-item-box::before {
  background-color: #807DFB;
}

.battops-tpl .battops-section-1 .battops-section-1-content .assets-item:first-child h3 {
  color: #807DFB;
}

.battops-tpl .battops-section-1 .battops-section-1-content .assets-item-box h4 {
  font-family: "Gilroy-Bold";
  font-size: 24px;
}

.battops-tpl .battops-section-1 .battops-section-1-content .assets-item-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 24px;
}

.battops-tpl .battops-section-1 .battops-section-1-content .assets-item-box ul li {
  font-size: 20px;
  padding: 15px 0;
  font-weight: 400;
  font-family: "Gilroy-Regular";
}

.battops-tpl .battops-section-1 .battops-section-1-content .assets-item-box ul li:not(:last-child) {
  border-bottom: 1px solid #DEDEDE;
}

.battops-tpl .battops-section-1 .battops-section-1-content .assets-item-box ul li:last-child {
  padding-bottom: 0;
}

.battops-tpl .battops-section-1 .battops-section-1-content .assets-item-box ul li:first-child {
  padding-top: 0;
}


.battops-tpl .battops-section-2 .graph-sec-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.battops-tpl .battops-section-2 .section-title h2 {
  font-size: 42px;
  font-family: 'Gilroy-Bold';
  color: var(--theme-green);
  margin-bottom: 12px;
  text-align: center;
  margin-top: 25px;
}

.battops-tpl .battops-section-2 .section-title p.desc-sec {
  font-size: 24px;
  font-family: 'Gilroy-Regular';
  text-align: center;
}

.battops-tpl .battops-section-2 .battops-section-2-content h3 {
  font-size: 36px;
  font-family: 'Gilroy-Bold';
  margin-bottom: 12px;
  margin-top: 60px;
  margin-bottom: 40px;
  text-align: center;
  color: #fff;
}

.battops-tpl .battops-section-2 .battops-section-2-content .reality-tab {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 80px;
}

.battops-tpl .battops-section-2 .battops-section-2-content .reality-tab .reality-tab-sec {
  padding: 40px;
  padding-top: 100px;
  border: 2px solid #3D499F;
  background: #222961;
}

.battops-tpl .battops-section-2 .battops-section-2-content .reality-tab .reality-tab-col {
  position: relative;
  padding-top: 50px;
}

.battops-tpl .battops-section-2 .battops-section-2-content .reality-tab .reality-tab-col h4 {
  font-size: 24px;
  font-family: 'Gilroy-Bold';
}

.battops-tpl .battops-section-2 .battops-section-2-content .reality-tab .reality-tab-col:first-child h4 {
  color: var(--theme-purple);
}

.battops-tpl .battops-section-2 .battops-section-2-content .reality-tab .reality-tab-col:last-child h4 {
  color: var(--theme-green);
}

.battops-tpl .battops-section-2 .battops-section-2-content .reality-tab .reality-tab-col img {
  position: absolute;
  top: 0;
  left: 40px;
}

.battops-tpl .battops-section-2 .battops-section-2-content .reality-tab .reality-tab-point {
  font-size: 24px;
  padding-bottom: 24px;
  padding-top: 24px;
  border-bottom: 1px solid #3D499F;
}

.battops-tpl .battops-section-2 .battops-section-2-content .reality-tab .reality-tab-sec ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.battops-tpl .battops-section-2 .battops-section-2-content .reality-tab .reality-tab-sec li {
  font-size: 20px;
  padding: 24px 0;
}

.battops-tpl .battops-section-2 .battops-section-2-content .reality-tab .reality-tab-sec li:not(:last-child) {
  border-bottom: 1px solid #3D499F;
}


/* BattOps Section 5 - Flexible Grid Layout */
.battops-section-5 {
  background: #E1E3F9;
  color: #000;
}

.battops-section-5 .section-title h2 {
  font-size: 42px;
  font-family: 'Gilroy-Bold';
  color: var(--theme-blue);
  margin-top: 25px;
  text-align: center;
  text-wrap: balance;
}

.battops-section-5 .section-title p.desc-sec {
  font-size: 24px;
  font-family: 'Gilroy-Bold';
  text-align: center;
  text-wrap: balance;
  margin-top: 60px;
}

/* Flexible Reality Tab Grid - Auto-adjusts based on number of columns */
.battops-reality-tab {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  margin-top: 80px;
}

.battops-reality-tab .reality-tab-sec {
  padding: 40px;
  padding-top: 100px;
  border: 2px solid #AAADD2;
}

.battops-reality-tab .reality-tab-col {
  position: relative;
  padding-top: 50px;
}

.battops-reality-tab .reality-tab-col h3 {
  font-size: 24px;
  font-family: 'Gilroy-Bold';
  color: var(--theme-purple);
}

.battops-reality-tab .reality-tab-col:last-child h3 {
  color: #000;
}

.battops-reality-tab .reality-tab-col img {
  position: absolute;
  top: 0;
  left: 40px;
  height: 120px;
}

.battops-reality-tab .reality-tab-sec ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.battops-reality-tab .reality-tab-sec li {
  font-size: 20px;
  padding: 24px 0;
}

.battops-reality-tab .reality-tab-sec li:not(:last-child) {
  border-bottom: 1px solid #AAADD2;
}

/* Tabs Styling */
.battops-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 60px;
  margin-top: 80px;
  border: 0 !important;
  flex-wrap: nowrap;
}

.battops-tabs button.battops-tabs-btn {
  width: 100%;
  height: auto;
  padding: 0 15px 20px !important;
  margin: 0 !important;
  border: 0;
  border-bottom: 3px solid #BFC3EE !important;
  border-radius: 0 !important;
  background: none !important;
  text-align: center;
  opacity: 1;
  font-family: "Gilroy-Medium";
  font-size: 20px;
  text-transform: capitalize;
  color: #000 !important;
  min-width: fit-content;
}

.battops-tabs button.battops-tabs-btn.active {
  border-bottom-color: #01DEBD !important;
  font-family: "Gilroy-Bold";
}

/* BattOps Section 6 - Slider */
.battops-section-6 {
  background: var(--light-gray);
}

.battops-section-6 .section-title {
  margin-bottom: 60px;
}

.battops-section-6 .section-title h3 {
  font-size: 36px;
  font-family: "Gilroy-Bold";
  color: #222961;
  margin-bottom: 20px;
}

.battops-section-6 .section-title p {
  font-size: 20px;
  font-family: "Gilroy-Regular";
}

.battops-section-6-swiper {
  position: relative;
  width: 100%;
}

.battops-section-6-swiper .battops-slider-button-next,
.battops-section-6-swiper .battops-slider-button-prev {
  cursor: pointer;
  width: 60px;
  height: 60px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  transition: all 0.3s ease;
}

.battops-section-6-swiper .battops-slider-button-next.swiper-button-disabled,
.battops-section-6-swiper .battops-slider-button-prev.swiper-button-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.battops-section-6-swiper .battops-slider-button-next:hover,
.battops-section-6-swiper .battops-slider-button-prev:hover {
  opacity: 0.7;
}

.battops-section-6-swiper .battops-slider-button-next {
  right: -120px;
}

.battops-section-6-swiper .battops-slider-button-prev {
  left: -120px;
}


/* BattOps Section 7 - Exploration/Features */
.battops-section-7 {
  background: #fff;
}

.battops-section-7 .exploration-title {
  max-width: 730px;
  margin: 0 auto;
  display: block;
  width: 100%;
  text-align: center;
}

.battops-section-7 .exploration-title h2 {
  font-family: 'Gilroy-Bold';
  line-height: 1.25;
  color: #1F202C;
  font-size: 48px;
}

.battops-section-7 .exploration-block .exploration-row {
  padding: 90px 0 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}


.battops-section-7 .exploration-row .exploration-left h4 {
  font-family: 'Gilroy-Bold';
  color: #1F202C;
  font-size: 36px;
  line-height: 1.27;
  padding: 0 0 17px;
}

.battops-section-7 .exploration-row ul {
  display: flex;
  flex-direction: column;
  padding-left: 5px;
  list-style: none;
}

.battops-section-7 .exploration-row li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0;
  padding: 0;
}

.battops-section-7 .exploration-row .exploration-left p {
  font-size: 20px;
  color: #1F202C;
  font-family: 'Gilroy-Regular';
  line-height: 1.5;
}

.battops-section-7 .exploration-row .exploration-img {
  max-width: 598px;
}

.battops-section-7 .exploration-row .exploration-img img {
  max-width: 100%;
  max-height: 600px;
}

.battops-section-7 .exploration-row:nth-child(2n+0) {
  flex-direction: row-reverse;
}

/* Responsive Styles - Tablet (1024px) */
@media screen and (max-width: 1024px) {

  /* BattOps Banner */
  .battops-tpl .banner-section .section-title h1 {
    font-size: 50px;
  }

  .battops-tpl .banner-section .section-title p {
    font-size: 20px;
  }

  .battops-tpl .banner-section .banner-img img {
    max-height: calc(100vh - 350px);
    width: 100%;
  }

  /* BattOps Section 1 */
  .battops-tpl .battops-section-1 .section-title h2 {
    font-size: 36px;
  }

  .battops-tpl .battops-section-1 .battops-section-1-content .assets-item-box ul li {
    font-size: 16px;
    padding: 18px 0;
  }

  /* BattOps Section 2 */
  .battops-tpl .battops-section-2 .section-title h2 {
    font-size: 36px;
  }

  .battops-tpl .battops-section-2 .section-title p.desc-sec {
    font-size: 18px;
  }

  .battops-tpl .battops-section-2 .battops-section-2-content h3 {
    font-size: 28px;
  }

  .battops-tpl .battops-section-2 .battops-section-2-content .reality-tab .reality-tab-col h4 {
    font-size: 20px;
  }

  .battops-tpl .battops-section-2 .battops-section-2-content .reality-tab .reality-tab-sec li {
    font-size: 16px;
    padding: 18px 0;
  }

  /* BattOps Section 3 */
  .battops-section-3 .graph-sec {
    min-height: 50vh;
  }


  .battops-section-3-cards .section-title h3 {
    font-size: 28px;
  }

  .battops-section-3-cards .track-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    justify-items: center;
  }

  .battops-section-3-cards .track-cards .track-card {
    max-width: 220px;
    width: 100%;
    margin-right: 0 !important;
    margin-bottom: 0 !important;
  }

  /* Hide Arrow Icons on Tablet (1024px) */
  /* BattOps Section 4 */
  .battops-section-4 .section-title h2,
  .battops-section-4 .profitCascade .section-title h2 {
    font-size: 36px;
  }

  .battops-section-4 .battops-section-4-grid .validation-box {
    padding: 30px;
  }

  .battops-section-4 .battops-section-4-grid .validation-box h3 {
    font-size: 20px;
  }

  .battops-section-4 .battops-section-4-grid .validation-box li {
    font-size: 18px;
    padding: 20px 0;
  }

  .battops-section-4 .profitCascade .profitCascade-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .battops-section-4 .profitCascade .profitCascade-grid .profitCascade-box p {
    font-size: 40px;
  }

  .battops-section-4 .profitCascade .profitCascade-grid .profitCascade-box h4 {
    font-size: 18px;
  }

  /* BattOps Section 5 */
  .battops-section-5 .section-title h2 {
    font-size: 36px;
  }

  .battops-section-5 .section-title p.desc-sec {
    font-size: 20px;
  }

  .battops-reality-tab {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 60px;
  }

  .battops-reality-tab .reality-tab-sec {
    padding: 30px;
    padding-top: 80px;
  }

  .battops-reality-tab .reality-tab-col h3 {
    font-size: 20px;
  }

  .battops-reality-tab .reality-tab-sec li {
    font-size: 18px;
    padding: 20px 0;
  }

  .battops-tabs button.battops-tabs-btn {
    font-size: 18px;
    padding-bottom: 15px !important;
  }

  /* BattOps Section 6 */
  .battops-section-6 .section-title h3 {
    font-size: 32px;
  }

  .battops-section-6 .section-title p {
    font-size: 18px;
  }

  .battops-section-6-swiper .battops-slider-button-next,
  .battops-section-6-swiper .battops-slider-button-prev {
    display: none !important;
  }

  /* BattOps Section 7 */
  .battops-section-7 .exploration-title h2 {
    font-size: 40px;
  }

  .battops-section-7 .exploration-row .exploration-left {
    max-width: 370px;
  }

  .battops-section-7 .exploration-row .exploration-left p {
    font-size: 16px;
  }

  .battops-section-7 .exploration-row .exploration-img {
    max-width: 500px;
  }

  .battops-section-7 .exploration-row .exploration-left h4 {
    font-size: 30px;
  }

  .battops-section-7 .exploration-row .exploration-img img {
    max-height: 350px;
  }

  .battops-section-7 .exploration-block .exploration-row {
    padding: 70px 0 0 0;
  }

  /* BattOps Section 8 - Already Added */

  /* Electric Vehicles Image */
  .electric-vehicles-image {
    margin-top: 60px !important;
  }

  /* BattOps CTA Section */
  .battops-tpl .cta-section h2 {
    font-size: 40px;
  }

  .battops-tpl .cta-section .cta-sec-row {
    gap: 25px;
  }
}

/* BattOps Section 8 - Production Process */
.battops-section-8 .section-title h2 {
  font-size: 36px;
  font-family: 'Gilroy-Bold';
  margin-bottom: 60px;
  text-align: center;
}

.battops-section-8 .process-list.row .process-box {
  padding: 30px;
  position: relative;
  border-radius: 25px;
  background: var(--process-bg-color);
  color: var(--process-color);
  border: 1px solid var(--process-color);
}

.battops-section-8 .process-list.row .process-box h4 {
  font-size: 24px;
  font-family: 'Gilroy-Bold';
  margin-bottom: 12px;
  padding-left: 10px;
}

.battops-section-8 .process-list.row .process-box ul {
  margin: 0;
}

.battops-section-8 .process-list.row .process-box li:not(:last-child) {
  margin-bottom: 10px;
}

.battops-section-8 .process-list.row .process-box li {
  list-style: disc;
}

.battops-section-8 .process-list.row .arrow-icon {
  position: absolute;
  top: 50px;
  right: -36px;
  z-index: 10;
}

/* Responsive Styles for BattOps Section 8 */

/* Tablet (1024px) */
@media screen and (max-width: 1024px) {
  .battops-section-8 .section-title h2 {
    font-size: 30px;
  }

  .battops-section-8 .process-list {
    row-gap: 30px;
  }

  /* Hide arrows on even items in tablet 2-column layout */
  @media (min-width: 767px) and (max-width: 1199px) {
    .battops-section-8 .process-list .col-md-6:nth-child(2n) .arrow-icon {
      display: none !important;
    }
  }

  .battops-section-8 .process-box h4 {
    font-size: 20px;
  }
}

/* Mobile (767px and down) */
@media (max-width: 767px) {
  .battops-section-8 {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }

  .battops-section-8 .section-title h2 {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .battops-section-8 .process-list {
    row-gap: 20px;
  }

  .battops-section-8 .process-box {
    padding: 25px 20px;
  }

  .battops-section-8 .process-box h4 {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .battops-section-8 .process-list.row .arrow-icon {
    rotate: 90deg;
    transform-origin: center;
    width: 60px;
    height: 20px;
    right: calc(50% - 30px);
    top: unset;
    bottom: -20px;
  }
}

.battops-section-3 .graph-sec {
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.battops-section-3 .graph-sec-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: auto;
  z-index: 0;
  object-fit: cover;
}

.battops-section-3 .graph-sec .section-title h2 {
  text-align: center;
  font-size: 80px;
  font-family: 'Gilroy-Bold';
  position: relative;
  z-index: 1;
  text-wrap: balance;
}

.battops-section-3-cards .section-title h3 {
  font-size: 36px;
  text-align: center;
  color: #1F202C;
  margin-bottom: 15px;
}

.battops-section-3-cards .track-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.battops-section-3-cards .track-cards .track-card-1 {
  --card-index: 1;
  --card-margin-right: -25px;
  --card-margin-bottom: 50px
}

.battops-section-3-cards .track-cards .track-card-2 {
  --card-index: 2;
  --card-margin-right: -50px;
  --card-margin-bottom: 30px
}

.battops-section-3-cards .track-cards .track-card-3 {
  --card-index: 3;
  --card-margin-right: -30px;
  --card-margin-bottom: 0;
}

.battops-section-3-cards .track-cards .track-card-4 {
  --card-index: 4;
  --card-margin-right: -90px;
  --card-margin-bottom: 30px;
}

.battops-section-3-cards .track-cards .track-card-5 {
  --card-index: 5;
  --card-margin-right: 0;
  --card-margin-bottom: 110px;
}

.track-cards .track-card {
  position: relative;
  z-index: var(--card-index);
  margin-right: var(--card-margin-right);
  margin-top: var(--card-margin-bottom);
}

.track-cards .track-card:hover {
  scale: 1.05;
  z-index: 10;
  transition: all 0.3s ease-in-out;
}


.battops-section-4 {
  color: #000;
}

.battops-section-4 .section-title h2,
.battops-section-4 .profitCascade .section-title h2 {
  font-size: 42px;
  font-family: 'Gilroy-Bold';
  color: #1F202C;
  margin-top: 25px;
  margin-bottom: 60px;
  text-align: center;
  text-wrap: balance;
}

.battops-section-4 .profitCascade .section-title h2 {
  margin-top: 60px;
}

.battops-section-4 .battops-section-4-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.battops-section-4 .battops-section-4-grid .validation-box {
  padding: 40px;
}

.battops-section-4 .battops-section-4-grid .validation-box h3 {
  font-family: 'Gilroy-Medium';
  font-size: 24px;
}

.battops-section-4 .battops-section-4-grid .validation-box:first-child {
  padding-right: 0;
}

.battops-section-4 .battops-section-4-grid .validation-box:not(:first-child) {
  border: 1px solid #AAADD2;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.battops-section-4 .battops-section-4-grid .validation-box:last-child {
  background: #F6F6F6;
}

.battops-section-4 .battops-section-4-grid .validation-box:last-child h3 {
  color: #6C7BD3;
}

.battops-section-4 .battops-section-4-grid .validation-box:not(:first-child) h3 {
  font-family: 'Gilroy-Bold';
}


.battops-section-4 .battops-section-4-grid .validation-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.battops-section-4 .battops-section-4-grid .validation-box li {
  font-size: 20px;
  padding: 24px 0;
  font-family: 'Gilroy-Regular';
}

.battops-section-4 .battops-section-4-grid .validation-box li:last-child {
  padding-bottom: 0;
}

.battops-section-4 .battops-section-4-grid .validation-box li:not(:last-child) {
  border-bottom: 1px solid #AAADD2;
}

.battops-section-4 .profitCascade .profitCascade-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}

.battops-section-4 .profitCascade .profitCascade-grid .profitCascade-box p {
  font-size: 48px;
  color: #807DFB;
  font-family: 'Gilroy-ExtraBold';
  margin-bottom: 5px;
}

.battops-section-4 .profitCascade .profitCascade-grid .profitCascade-box h4 {
  font-size: 20px;
  color: #1F202C;
  font-family: 'Gilroy-Regular';
}


/* ============================================
   BattOps Template Responsive Styles
   ============================================ */

/* Tablet and below (1024px and down) */
@media (max-width: 1024px) {

  /* BattOps Banner */
  .battops-tpl .banner-section .section-title h1 {
    font-size: 52px;
  }

  .battops-tpl .banner-section .section-title p {
    font-size: 20px;
  }

  /* BattOps Section 1 */
  .battops-tpl .battops-section-1 .section-title h2 {
    font-size: 30px;
  }


  .battops-tpl .battops-section-1 .battops-section-1-content .assets-item-box h4 {
    font-size: 20px;
  }

  .battops-tpl .battops-section-1 .battops-section-1-content .assets-item-box ul li {
    font-size: 16px;
  }

  /* BattOps Section 2 */
  .battops-tpl .battops-section-2 .section-title h2 {
    font-size: 30px;
  }

  .battops-tpl .battops-section-2 .section-title p.desc-sec {
    font-size: 20px;
  }

  .battops-tpl .battops-section-2 .battops-section-2-content h3 {
    font-size: 28px;
  }

  .battops-tpl .battops-section-2 .battops-section-2-content .reality-tab .reality-tab-col h4 {
    font-size: 20px;
  }

  .battops-tpl .battops-section-2 .battops-section-2-content .reality-tab .reality-tab-sec li {
    font-size: 18px;
  }

  /* BattOps Section 3 */
  .battops-section-3 .graph-sec .section-title h2 {
    font-size: 36px;
  }

  .battops-section-3-cards .section-title h3 {
    font-size: 28px;
  }

  .battops-section-3-cards .track-cards {
    gap: 20px;
  }

  /* BattOps Section 4 */
  .battops-section-4 .section-title h2,
  .battops-section-4 .profitCascade .section-title h2 {
    font-size: 30px;
  }

  .battops-section-4 .battops-section-4-grid .validation-box h3 {
    font-size: 20px;
  }

  .battops-section-4 .battops-section-4-grid .validation-box li {
    font-size: 18px;
  }

  .battops-section-4 .profitCascade .profitCascade-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .battops-section-4 .profitCascade .profitCascade-grid .profitCascade-box p {
    font-size: 42px;
  }

  .battops-section-4 .profitCascade .profitCascade-grid .profitCascade-box h4 {
    font-size: 18px;
  }

  /* BattOps Section 5 */
  .battops-section-5 .section-title h2 {
    font-size: 30px;
  }

  .battops-section-5 .section-title p.desc-sec {
    font-size: 20px;
  }

  .battops-reality-tab .reality-tab-col h3 {
    font-size: 20px;
  }

  .battops-reality-tab .reality-tab-sec li {
    font-size: 16px;
  }

  .battops-tabs button.battops-tabs-btn {
    font-size: 16px;
  }

  /* BattOps Section 6 */
  .battops-section-6 .section-title h3 {
    font-size: 30px;
  }

  .battops-section-6 .section-title p {
    font-size: 18px;
  }

  .battops-section-6 .work-slide-item p {
    font-size: 16px;
  }

  .battops-section-6 .BattMaaS-custom-pagination {
    margin-bottom: 50px;
  }

  .battops-section-6 .BattMaaS-custom-pagination .swiper-pagination-bullet {
    font-size: 18px;
    padding-bottom: 18px !important;
  }

  /* BattOps Section 7 */
  .battops-section-7 .exploration-title h2 {
    font-size: 30px;
  }

  .battops-section-7 .exploration-row .exploration-left h4 {
    font-size: 28px;
  }

  .battops-section-7 .exploration-row li {
    font-size: 18px;
  }

  /* BattOps Section 8 */
  .battops-section-8 .section-title h2 {
    font-size: 30px;
  }

  .battops-section-8 .process-list {
    row-gap: 30px;
  }

  /* Hide arrows on even items in tablet 2-column layout */
  @media (min-width: 767px) and (max-width: 1199px) {

    .battops-section-8 .process-list .col-md-6:nth-child(2n) .arrow-icon,
    .battops-section-6 .work-slide-item:nth-child(3n) .arrow-icon {
      display: none !important;
    }
  }

  .battops-section-8 .process-box h4 {
    font-size: 20px;
  }

  /* BattOps CTA Section */
  .battops-tpl .cta-section h2 {
    font-size: 36px;
  }
}

/* Mobile and tablet (767px and down) */
@media (max-width: 767px) {

  /* BattOps Banner */
  .battops-tpl .banner-section {
    padding-top: 100px !important;
  }

  .battops-tpl .banner-section .section-title {
    position: static !important;
  }

  .battops-tpl .banner-section .section-title .col-lg-7 {
    width: 100%;
    max-width: 100%;
  }

  .battops-tpl .banner-section .section-title h1 {
    font-size: 42px;
    margin-bottom: 20px;
  }

  .battops-tpl .banner-section .section-title p {
    margin-bottom: 30px;
  }

  .battops-tpl .banner-section .banner-img {
    margin-top: 40px;
  }

  .battops-tpl .banner-section .banner-img img {
    max-height: 400px;
    width: 100%;
    object-fit: contain;
  }

  /* BattOps Section 1 */
  .battops-tpl .battops-section-1 .section-title {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 20px;
  }


  .battops-tpl .battops-section-1 .battops-section-1-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .battops-tpl .battops-section-1 .battops-section-1-content .assets-item-title {
    font-size: 24px;
  }

  .battops-tpl .battops-section-1 .battops-section-1-content .assets-item-box {
    padding: 40px 20px 25px;
  }

  .battops-tpl .battops-section-1 .battops-section-1-content .assets-item-box h4 {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .battops-tpl .battops-section-1 .battops-section-1-content .assets-item-box ul li {
    font-size: 15px;
    padding: 12px 0;
  }

  /* BattOps Section 2 */
  .battops-tpl .battops-section-2 .section-title {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 20px;
  }

  .battops-tpl .battops-section-2 .section-title h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .battops-tpl .battops-section-2 .section-title p.desc-sec {
    font-size: 16px;
  }

  .battops-tpl .battops-section-2 .battops-section-2-content h3 {
    font-size: 24px;
    margin-top: 50px;
    margin-bottom: 30px;
  }

  .battops-tpl .battops-section-2 .battops-section-2-content .reality-tab {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
  }

  .battops-tpl .battops-section-2 .battops-section-2-content .reality-tab .reality-tab-sec {
    padding: 25px 20px;
    padding-top: 70px;
  }

  .battops-tpl .battops-section-2 .battops-section-2-content .reality-tab .reality-tab-col h4 {
    font-size: 20px;
  }

  .battops-tpl .battops-section-2 .battops-section-2-content .reality-tab .reality-tab-col img {
    left: 20px;
    width: 100px;
    height: auto;
    max-width: 100%;
  }

  .battops-tpl .battops-section-2 .battops-section-2-content .reality-tab .reality-tab-sec li {
    font-size: 15px;
    padding: 18px 0;
  }

  /* BattOps Section 3 */
  .battops-section-3 .graph-sec {
    height: auto !important;
    min-height: auto !important;
    padding: 60px 0 !important;
  }

  .battops-section-3 .graph-sec .section-title {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 20px;
  }

  .battops-section-3-cards {
    padding-bottom: 60px;
  }

  .battops-section-3-cards .section-title h3 {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .battops-section-3-cards .track-cards {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 20px;
    justify-content: normal !important;
  }

  .battops-section-3-cards .track-cards .track-card {
    max-width: 100%;
    width: 100%;
    height: 250px;
    margin: 0 auto !important;
  }

  .battops-section-3 .graph-sec-bg-img {
    opacity: 0.3;
    max-width: 100%;
  }

  /* BattOps Section 4 */
  .battops-section-4 .section-title {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 20px;
  }

  .battops-section-4 .section-title h2,
  .battops-section-4 .profitCascade .section-title h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .battops-section-4 .profitCascade .section-title h2 {
    margin-top: 60px;
  }

  .battops-section-4 .battops-section-4-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }

  .battops-section-4 .battops-section-4-grid .validation-box {
    padding: 25px 20px;
  }

  .battops-section-4 .battops-section-4-grid .validation-box:first-child {
    padding: 25px 20px;
  }

  .battops-section-4 .battops-section-4-grid .validation-box h3 {
    font-size: 20px;
  }

  .battops-section-4 .battops-section-4-grid .validation-box li {
    font-size: 16px;
    padding: 12px 5px;
  }

  .battops-section-4 .profitCascade .profitCascade-grid {
    grid-template-columns: 1fr !important;
    gap: 25px;
  }

  .battops-section-4 .profitCascade .profitCascade-grid .profitCascade-box p {
    font-size: 40px;
  }

  .battops-section-4 .profitCascade .profitCascade-grid .profitCascade-box h4 {
    font-size: 16px;
  }

  /* BattOps Section 5 */

  .battops-section-5 .section-title {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 20px;
  }

  .battops-section-5 .section-title h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .battops-section-5 .section-title p.desc-sec {
    font-size: 16px;
  }

  .battops-tabs {
    margin-top: 40px;
    margin-bottom: 40px;
    overflow: hidden;
    overflow-x: scroll;
    justify-content: flex-start;
    scrollbar-width: none;
    -ms-overflow-style: none;

    &::-webkit-scrollbar {
      display: none;
    }
  }

  .battops-tabs button.battops-tabs-btn {
    font-size: 16px;
    padding-bottom: 12px !important;
    border-bottom: 2px solid #BFC3EE !important;
  }

  .battops-tabs button.battops-tabs-btn.active {
    border-bottom-color: #01DEBD !important;
  }

  .battops-reality-tab {
    grid-template-columns: 1fr !important;
    gap: 20px;
    margin-top: 40px;
  }

  .battops-reality-tab .reality-tab-sec {
    padding: 25px 20px;
    padding-top: 70px;
  }

  .battops-reality-tab .reality-tab-col h3 {
    font-size: 20px;
  }

  .battops-reality-tab .reality-tab-col img {
    height: 60px;
    width: auto;
    max-width: 100%;
    left: 20px;
  }

  .battops-reality-tab .reality-tab-sec li {
    font-size: 15px;
    padding: 12px 0;
  }

  .battops-section-5 .electric-vehicles-image {
    margin-top: 40px !important;
  }

  /* BattOps Section 6 */
  .battops-section-6 .section-title {
    margin-bottom: 40px;
  }

  .battops-section-6 .section-title h3 {
    font-size: 28px;
  }

  .battops-section-6 .section-title p {
    font-size: 16px;
  }

  .battops-section-6 .work-slide-item p {
    font-size: 16px;
  }

  .battops-section-6 .work-slide-number {
    font-size: 28px;
  }

  .battops-section-6-swiper .battops-slider-button-next,
  .battops-section-6-swiper .battops-slider-button-prev {
    display: none !important;
  }

  .battops-section-6 .BattMaaS-custom-pagination {
    margin-bottom: 40px;
    overflow: hidden;
    overflow-x: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
  }

  .battops-section-6 .BattMaaS-custom-pagination::-webkit-scrollbar {
    display: none;
  }

  .battops-section-6 .BattMaaS-custom-pagination .swiper-pagination-bullet {
    font-size: 16px;
    padding: 0 15px !important;
    padding-bottom: 15px !important;
    flex: 1 1 auto;
    min-width: fit-content;
  }

  /* BattOps Section 7 */
  .battops-section-7 .exploration-title h2 {
    margin-bottom: 40px;
  }


  .battops-section-7 .exploration-row {
    flex-direction: column !important;
    padding: 50px 0 0 0;
  }

  .battops-section-7 .exploration-row:nth-child(2n+0) {
    flex-direction: column !important;
  }

  .battops-section-7 .exploration-row .exploration-left {
    max-width: 100%;
    padding-bottom: 30px;
  }

  .battops-section-7 .exploration-row .exploration-left h4 {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .battops-section-7 .exploration-row li {
    font-size: 15px;
    margin-bottom: 10px;
  }

  .battops-section-7 .exploration-row .exploration-img {
    max-width: 100%;
  }

  .battops-section-7 .exploration-row .exploration-img img {
    max-height: 400px;
    width: 100%;
    object-fit: contain;
  }

  /* BattOps Section 8 */
  .battops-section-8 .section-title h2 {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .battops-section-8 .process-list {
    row-gap: 20px;
  }

  .battops-section-8 .process-box {
    padding: 25px 20px;
  }

  .battops-section-8 .process-box h4 {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .battops-section-8 .process-box li {
    font-size: 15px;
  }

  /* BattOps CTA Section */
  .battops-tpl .cta-section {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }

  .battops-tpl .cta-section .section-title {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 20px;
  }

  .battops-tpl .cta-section h2 {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .battops-tpl .cta-section .cta-sec-row {
    flex-direction: column;
    gap: 20px;
  }

  .battops-tpl .cta-section .cta-btn {
    width: 100%;
  }

  .battops-tpl .cta-section .cta-btn a {
    width: 100%;
    justify-content: center;
    padding: 15px 30px;
    font-size: 16px;
  }
}

/* Small mobile (480px and down) */
@media (max-width: 480px) {

  /* BattOps Banner */
  .banner-section {
    padding-top: 120px !important;
    padding-bottom: 40px !important;
    justify-content: unset;
    min-height: unset;
  }

  .battops-tpl .banner-section .section-title h1 {
    font-size: 38px;
    margin-bottom: 15px;
  }

  .battops-tpl .banner-section .section-title p {
    margin-bottom: 25px;
  }

  .battops-tpl .banner-section .banner-img {
    margin-top: 30px;
  }

  .battops-tpl .banner-section .banner-img svg {
    height: auto;
    width: 100%;
  }

  /* BattOps Section 1 */

  .battops-tpl .battops-section-1 .battops-section-1-content {
    gap: 30px;
  }

  .battops-tpl .battops-section-1 .battops-section-1-content .assets-item-box {
    padding: 30px 15px;
  }

  .battops-tpl .battops-section-1 .battops-section-1-content .assets-item-box ul li {
    font-size: 16px;
    padding: 10px 0;
  }

  /* BattOps Section 2 */
  .battops-tpl .battops-section-2 .section-title h2 {
    font-size: 26px;
  }

  .battops-tpl .battops-section-2 .section-title p.desc-sec {
    font-size: 16px;
  }

  .battops-tpl .battops-section-2 .battops-section-2-content h3 {
    font-size: 22px;
    margin-bottom: 25px;
  }

  .battops-tpl .battops-section-2 .battops-section-2-content .reality-tab {
    gap: 25px;
  }

  .battops-tpl .battops-section-2 .battops-section-2-content .reality-tab .reality-tab-sec {
    padding: 20px 15px;
    padding-top: 65px;
  }

  .battops-tpl .battops-section-2 .battops-section-2-content .reality-tab .reality-tab-col h4 {
    font-size: 18px;
  }

  .battops-tpl .battops-section-2 .battops-section-2-content .reality-tab .reality-tab-col img {
    width: 100px;
    height: auto;
    max-width: 100%;
    left: 15px;
  }

  .battops-tpl .battops-section-2 .battops-section-2-content .reality-tab .reality-tab-sec li {
    font-size: 16px;
    padding: 15px 0;
  }

  /* BattOps Section 3 */

  .battops-section-3-cards {
    padding-bottom: 50px;
  }

  .battops-section-3-cards .section-title h3 {
    font-size: 22px;
  }

  .battops-section-3-cards .track-cards {
    gap: 15px;
  }

  /* BattOps Section 4 */
  .battops-section-4 .section-title h2,
  .battops-section-4 .profitCascade .section-title h2 {
    font-size: 26px;
  }

  .battops-section-4 .profitCascade .section-title h2 {
    margin-top: 50px;
  }

  .battops-section-4 .battops-section-4-grid {
    gap: 15px;
  }

  .battops-section-4 .battops-section-4-grid .validation-box {
    padding: 20px 15px;
  }

  .battops-section-4 .battops-section-4-grid .validation-box:first-child {
    padding: 20px 15px;
  }

  .battops-section-4 .profitCascade .profitCascade-grid {
    gap: 20px;
  }

  .battops-section-4 .profitCascade .profitCascade-grid .profitCascade-box p {
    font-size: 36px;
  }

  .battops-section-4 .profitCascade .profitCascade-grid .profitCascade-box h4 {
    font-size: 16px;
  }

  /* BattOps Section 5 */
  .battops-section-5 .section-title h2 {
    font-size: 26px;
  }

  .battops-section-5 .section-title p.desc-sec {
    font-size: 16px;
  }

  .battops-tabs {
    margin-top: 35px;
    margin-bottom: 35px;
  }

  .battops-reality-tab {
    gap: 15px;
    margin-top: 35px;
  }

  .battops-reality-tab .reality-tab-sec {
    padding: 20px 15px;
    padding-top: 65px;
  }

  .battops-reality-tab .reality-tab-col h3 {
    font-size: 18px;
  }

  .battops-reality-tab .reality-tab-col img {
    height: 80px;
    width: auto;
    max-width: 100%;
    left: 15px;
  }

  .battops-reality-tab .reality-tab-sec li {
    font-size: 16px;
    padding: 10px 0;
  }

  .battops-section-5 .electric-vehicles-image {
    margin-top: 35px !important;
  }

  /* BattOps Section 6 */
  .battops-section-6 .section-title h3 {
    font-size: 26px;
  }

  .battops-section-6 .section-title p {
    font-size: 16px;
  }

  .battops-section-6 .work-slide-number {
    font-size: 24px;
  }

  .battops-section-6-swiper .battops-slider-button-next,
  .battops-section-6-swiper .battops-slider-button-prev {
    display: none !important;
  }

  .battops-section-6 .BattMaaS-custom-pagination .swiper-pagination-bullet {
    padding-bottom: 12px !important;
  }

  /* BattOps Section 7 */

  .battops-section-7 .exploration-row {
    flex-direction: column !important;
    padding: 40px 0 0 0;
  }

  .battops-section-7 .exploration-row:nth-child(2n+0) {
    flex-direction: column !important;
  }

  .battops-section-7 .exploration-row .exploration-left h4 {
    font-size: 22px;
  }

  .battops-section-7 .exploration-row li {
    font-size: 16px;
  }

  .battops-section-7 .exploration-row .exploration-img img {
    max-height: 300px;
  }

  /* BattOps Section 8 */
  .battops-section-8 .section-title h2 {
    font-size: 26px;
  }

  .battops-section-8 .process-box {
    padding: 20px 15px;
  }

  .battops-section-8 .process-box h4 {
    font-size: 18px;
  }

  .battops-section-8 .process-box li {
    font-size: 16px;
  }

  /* BattOps CTA Section */
  .battops-tpl .cta-section h2 {
    font-size: 26px;
    margin-bottom: 35px;
  }

  .battops-tpl .cta-section .cta-btn a {
    padding: 14px 25px;
    font-size: 15px;
  }
}

/* Footer */
.footerNav ul {
  padding: 0;
  margin: 0;
}

.footerNav ul li {
  margin-bottom: 8px;
}

.footerNav ul li a {
  color: #fff;
}

.footerNav ul li a:hover {
  color: #01DEBD;
}

.footerNav ul li:first-child a {
  color: #01DEBD;
}

.footer_wrap .addressBox {
  color: #01DEBD;
  font-size: 16px;
  margin-bottom: 8px;
}

.footer_wrap .email_telephone a {
  color: #fff;
  font-size: 24px;
  font-family: 'Gilroy-Bold';
}

.footer_wrap .email_telephone a:hover {
  color: #01DEBD;
}

.footer_wrap .f_row .socialbox a:not(:first-child) {
  margin-left: 30px;
}

.gap-20 {
  gap: 80px;
}

.footer_wrap .f_row {
  row-gap: 60px;
}

@media (max-width: 1024px) {
  .gap-20 {
    gap: 40px;
  }
}

@media (max-width: 991px) {
  .gap-20 {
    gap: 60px;
  }
}

@media (max-width: 767px) {
  .email_telephone {
    justify-content: start;
    gap: 10px;
  }

  .gap-20 {
    gap: 40px;
  }
}

/* ============================================
   BattOps Banner SVG Screen Animation
   ============================================ */
.battops-tpl .banner-img .screen {
  opacity: 0;
  transform: scale(0.8);
  transform-origin: center;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.battops-tpl .banner-img .screen.animate-in {
  opacity: 1;
  transform: scale(1);
}