/* Power Up Solar Battery Section */
.solar-battery-powerup-section {
  background: #fff;
  padding: 48px 0 32px 0;
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.solar-battery-powerup-content {
  max-width: 900px;
  margin: 0 auto;
}

.solar-battery-powerup-more {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
  margin-top: 20px;
}

.solar-battery-powerup-more.expanded {
  max-height: 1000px;
}

.solar-battery-powerup-more ul {
  list-style-type: none;
  padding: 0;
  margin: 20px 0;
}

.solar-battery-powerup-more ul li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: #333;
}

.solar-battery-powerup-more ul li:before {
  content: "✓";
  color: #e62429;
  position: absolute;
  left: 0;
}

.solar-battery-powerup-more p {
  margin: 16px 0;
  line-height: 1.6;
  color: #333;
}
.solar-battery-powerup-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 24px;
  color: #222;
}
.solar-battery-powerup-desc {
  font-size: 1.15rem;
  color: #333;
  text-align: center;
  max-width: 900px;
  margin-bottom: 32px;
  line-height: 1.6;
}
.solar-battery-powerup-btn {
  background: #e62429;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  border: none;
  border-radius: 28px;
  padding: 16px 40px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
}
.solar-battery-powerup-btn:hover {
  background: #c51c23;
}
/* Solar Battery Product Cards Section */
.solar-battery-products-section {
  background: #fff;
  padding: 40px 0 30px 0;
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.solar-battery-products-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 32px;
  color: #222;
}
.solar-battery-products-title .highlight {
  background: #e62429;
  color: #fff;
  padding: 0 8px;
  border-radius: 4px;
}
.solar-battery-products-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-bottom: 24px;
}
.solar-battery-product-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
  width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 18px 18px 18px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
.solar-battery-product-card:hover {
  box-shadow: 0 8px 32px rgba(34, 34, 34, 0.18), 0 1.5px 8px rgba(230, 36, 41, 0.08);
  transform: scale(1.04);
}
.solar-battery-bis {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #e62429;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  padding: 2px 16px;
  border-radius: 8px;
}
.solar-battery-product-card img {
  width: 120px;
  height: auto;
  margin-bottom: 18px;
}
.solar-battery-product-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.solar-battery-product-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #222;
  text-align: center;
  margin-bottom: 6px;
}
.solar-battery-product-model {
  font-size: 1rem;
  color: #e62429;
  font-weight: 700;
  margin-bottom: 10px;
}
.solar-battery-product-features {
  display: flex;
  gap: 18px;
  font-size: 1rem;
  color: #222;
  margin-bottom: 8px;
}
.solar-battery-product-price {
  font-size: 1rem;
  color: #888;
  margin-bottom: 12px;
}
.solar-battery-product-btn {
  background: #fff;
  color: #e62429;
  font-size: 1.1rem;
  font-weight: 700;
  border: 2px solid #e62429;
  border-radius: 24px;
  padding: 8px 28px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, color 0.2s;
  margin-bottom: 8px;
}
.solar-battery-product-btn:hover {
  background: #e62429;
  color: #fff;
}
.solar-battery-products-actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  margin-top: 10px;
}
.solar-battery-view-more-btn, .solar-battery-download-btn {
  background: #e62429;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  border-radius: 24px;
  padding: 12px 32px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
}
.solar-battery-view-more-btn:hover, .solar-battery-download-btn:hover {
  background: #c51c23;
}

.solar-battery-view-less-btn, .solar-battery-download-btn {
  background: #e62429;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  border-radius: 24px;
  padding: 12px 32px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
}
.solar-battery-view-less-btn:hover, .solar-battery-download-btn:hover {
  background: #c51c23;
}

.solar-battery-product-card.hidden {
  display: none;
}
.solar-battery-range-card {
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(20px);
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 1;
}
.solar-battery-range-card[style*="display: flex"] {
  opacity: 1;
  transform: translateY(0);
  position: relative;
  z-index: 2;
}
.solar-battery-range-section {
  position: relative;
  min-height: 480px;
}
/*solar  overview  */

@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;800&display=swap");


/* Feature Cards Carousel Section */
/* Solar Battery Range Section */
.solar-battery-range-section {
  background: #fff;
  padding: 40px 0 30px 0;
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.solar-battery-range-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 32px;
  color: #222;
}
.solar-battery-range-title .highlight {
  background: #e62429;
  color: #fff;
  padding: 0 8px;
  border-radius: 4px;
}
.solar-battery-range-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 32px 24px;
  max-width: 900px;
  width: 100%;
  margin-bottom: 18px;
}
.solar-battery-image {
  flex: 0 0 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 32px;
}
.solar-battery-image img {
  width: 220px;
  height: auto;
  object-fit: contain;
}
.solar-battery-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.solar-battery-info h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 6px;
}
.solar-battery-model {
  font-size: 1.1rem;
  color: #e62429;
  font-weight: 700;
  margin-bottom: 10px;
}
.solar-battery-desc {
  font-size: 1rem;
  color: #888;
  margin-bottom: 18px;
}
.solar-battery-desc .read-more {
  color: #e62429;
  text-decoration: underline;
  font-weight: 500;
}
.solar-battery-features {
  display: flex;
  gap: 32px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.solar-battery-features .feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: #222;
}
.solar-battery-features .icon {
  width: 36px;
  height: 36px;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
}
.icon.warranty { background-image: url('../assets/images/banner/bettry/chose your bettry/warranty-icon.png'); }
.icon.capacity { background-image: url('../assets/images/banner/bettry/chose your bettry/capacity-icon.png'); }
.icon.weight { background-image: url('../assets/images/banner/bettry/chose your bettry/weight-icon.png'); }
.icon.certification { background-image: url('../assets/images/banner/bettry/chose your bettry/certification-icon.png'); }
.explore-product-btn {
  background: #e62429;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  border-radius: 24px;
  padding: 12px 32px;
  cursor: pointer;
  margin-top: 10px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
}
.explore-product-btn:hover {
  background: #c51c23;
}
.solar-battery-range-carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 10px;
}
.solar-battery-prev, .solar-battery-next {
  background: #fff;
  border: 2px solid #e62429;
  color: #e62429;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.solar-battery-prev:hover, .solar-battery-next:hover {
  background: #e62429;
  color: #fff;
}
.solar-battery-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.solar-battery-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
  display: inline-block;
  transition: background 0.2s, transform 0.2s;
}
.solar-battery-dots .dot.active {
  background: #e62429;
  transform: scale(1.18);
}
.feature-cards-section {
  background: #fff;
  padding: 50px 0 30px 0;
  width: 100vw;
  overflow-y: hidden;
}

.feature-cards-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  position: relative;
  max-width: 1500px;
  margin: 0 auto;
}

.feature-cards-track {
  display: flex;
  gap: 32px;
  overflow-x: hidden;
  scroll-behavior: smooth;
  padding: 10px 20px;
  width: 1400px;
  max-width: 80vw;
}

.feature-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
  min-width: 340px;
  max-width: 340px;
  height: 410px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 32px 18px 24px 18px;
  transition: box-shadow 0.2s, transform 0.2s;
  cursor: pointer;
}

.feature-card:hover {
  box-shadow: 0 8px 32px rgba(34, 34, 34, 0.18), 0 1.5px 8px rgba(230, 36, 41, 0.08);
  transform: scale(1.04);
}

.feature-card-icon {
  width: 180px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.feature-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.feature-card-title {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  text-align: center;
  margin-bottom: 12px;
}

.feature-card-desc {
  font-size: 1rem;
  color: #888;
  text-align: center;
  margin-bottom: 0;
}

.feature-cards-prev,
.feature-cards-next {
  background: #fff;
  border: 2px solid #222;
  color: #222;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  z-index: 2;
  margin: 0 8px;
  transition: background 0.2s, color 0.2s;
}

.feature-cards-prev:hover,
.feature-cards-next:hover {
  background: #e62429;
  color: #fff;
}

.feature-cards-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}

.feature-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
  display: inline-block;
  transition: background 0.2s, transform 0.2s;
}

.feature-dot.active {
  background: #222;
  transform: scale(1.18);
}

@media (max-width: 1000px) {
  .feature-cards-track {
    max-width: 98vw;
    width: 98vw;
    gap: 18px;
  }

  .feature-card {
    min-width: 260px;
    max-width: 260px;
    height: 340px;
    padding: 18px 8px 14px 8px;
  }

  .feature-card-title {
    font-size: 1.2rem;
  }

  .feature-card-desc {
    font-size: 1rem;
  }

  .feature-card-icon {
    width: 110px;
    height: 80px;
  }
}

/* Dealer and Switch Section Styles */
.dealer-switch-section {
  background: url('../assets/liquid-marbling-paint-texture-background-fluid-painting-abstract-texture-intensive-color-mix-wallpaper.jpg') center center/cover no-repeat;
  position: relative;
  z-index: 1;
  height: 400px;
}

.dealer-switch-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.dealer-switch-grid {
  position: relative;
  z-index: 3;
}

.dealer-switch-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 70px;
  justify-content: center;
  align-items: flex-start;
  padding-top: 60px;

}

.dealer-card-box {
  flex: 1 1 250px;
  max-width: 600px;
  min-width: 200px;
  background: #fffefe;
  border-radius: 50px;
  box-shadow: 0 20px 16px rgba(0, 0, 0, 0.04);
  padding: 40px 32px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: all 1s;
  cursor: pointer;
}

.dealer-card-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #000000;
  transition: all 0.3s ease-in-out;
}

.dealer-card-desc {
  font-size: 1.5rem;
  color: #000000;
  margin-bottom: 24px;
  transition: all 0.3s ease-in-out;
}

.dealer-card-btn {
  background: #ff0404;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  transition: all 0.3s ease-in-out;
}

.dealer-card-btn:hover {
  background: #0a0a0a;
}

.dealer-card-box:hover {
  transform: scale3d(1.05, 1.05, 1);
}

.dealer-card-box:hover .dealer-card-title {
  transform: scale3d(1.1, 1.1, 1);
}

.dealer-card-box:hover .dealer-card-desc {
  transform: scale(1.1);
}





/* Dealer and Switch Section Styles end */
.modern-product-card,
.modern-product-featured {
  transition: transform 0.35s cubic-bezier(0.4, 0.2, 0.2, 1), box-shadow 0.35s cubic-bezier(0.4, 0.2, 0.2, 1), filter 0.35s;
  box-shadow: 0 2px 12px black;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  position: relative;
  z-index: 1;
}

.modern-product-card:hover,
.modern-product-featured:hover {
  transform: scale(1.045) rotateZ(0.1deg);
  box-shadow: 0 8px 32px rgba(34, 34, 34, 0.18), 0 1.5px 8px rgba(230, 36, 41, 0.08);
  filter: brightness(1.04) saturate(1.1);
  z-index: 2;
}

.modern-product-card img,
.modern-product-featured img {
  transition: transform 0.4s cubic-bezier(0.4, 0.2, 0.2, 1), filter 0.4s;
  border-radius: 0 0 12px 12px;
}

.modern-product-card:hover img,
.modern-product-featured:hover img {
  transform: scale(1.08) rotateZ(2deg);
  filter: brightness(1.08) contrast(1.08);
}

.modern-product-info {
  transition: color 0.3s;
}

.modern-product-card:hover .modern-product-info,
.modern-product-featured:hover .modern-product-info {
  background: linear-gradient(90deg, #fff 60%, #ffeaea 100%);
  color: #e62429;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* Navbar Styles */
header {
  background-color: #fff;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
}

/* Navbar container */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  /* max-width: 1400px; */
  margin: 0 auto;
}

/* Logo */
.navbar .logo img {
  height: 45px;
  cursor: pointer;
}

/* Menu links */
.navbar ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.navbar ul li a {
  text-decoration: none;
  color: #222;
  font-size: 22px;
  transition: 0.3s ease;
  font-weight: 500;
}

.navbar ul li a:hover {
  color: #ff0000;

}

/* Dropdown wrapper */

.dropdown {
  position: relative;
}

/* Dropdown button */
.lang-dropdown {
  background: #e60000;
  color: #fff;
  border: none;
  padding: 8px 15px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.lang-dropdown:hover {
  background: #c70000;
}

/* Dropdown menu */
.dropdown-menu {
  /* display: none; */
  position: absolute;
  right: 0;
  margin-top: 18px;
  background: #fff;
  border: 1px solid #ff0000;
  border-radius: 8px;
  list-style: none;
  min-width: 120px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 1002;
}

.dropdown-menu li {
  border-bottom: 1px solid #eee;
}

.dropdown-menu li:last-child {
  border-bottom: none;
}

.dropdown-menu li a {
  display: block;
  padding: 10px;
  text-decoration: none;
  color: #222;
  font-size: 14px;
}

.dropdown-menu li a:hover {
  background: #f4f4f4;
}

/* Nav bar submenu specific styles (for main navigation) */
.navbar ul li {
  position: relative;
}

.nav-submenu {
  display: none;
  /* hidden by default */
  position: absolute;
  left: 0;
  top: calc(100% + 8px);
  min-width: 200px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  padding: 6px 0;
  z-index: 1001;
}

.nav-submenu li a {
  padding: 8px 14px;
  font-size: 15px;
  color: #222;
}

/* Show submenu on hover for desktop */
.navbar ul li.has-dropdown:hover>.nav-submenu {
  display: block;
}

/* On small screens stack the nav and make submenu static */
@media (max-width: 900px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  /* Inverter Features Section */
  .inverter-features {
    padding: 40px 20px 60px;
    max-width: 1200px;
    margin: 0 auto 40px;
  }

  .inverter-features .section-title {
    font-size: 30px;
    font-weight: 800;
    color: #fff;
    display: inline-block;
    background: #e62429;
    /* red label like reference */
    padding: 8px 18px;
    border-radius: 2px;
  }

  .inverter-features .features-row {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-top: 24px;
  }

  .inverter-features .feature-text h3 {
    font-size: 28px;
    font-weight: 700;
    color: #2b2b2b;
    margin-bottom: 12px;
  }

  .inverter-features .feature-text p {
    color: #6b6b6b;
    font-size: 16px;
    line-height: 1.7;
  }

  .inverter-features .inverter-card {
    background: linear-gradient(180deg, #171717 0%, #0f0f0f 100%);
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  }

  .inverter-features .inverter-card img {
    width: 100%;
    display: block;
    border-radius: 8px;
  }

  .inverter-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
  }

  .inverter-controls .nav-circle {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
  }

  .inverter-controls .nav-circle:hover {
    background: #f4f4f4;
  }

  .inverter-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    background: #ddd;
    transition: all .2s;
  }

  .inverter-dots .dot.active {
    background: #333;
    transform: scale(1.12);
  }

  @media (max-width: 900px) {
    .inverter-features .features-row {
      flex-direction: column-reverse;
      text-align: left;
    }

    .inverter-features .feature-text,
    .inverter-features .feature-media {
      max-width: 100%;
    }

    .inverter-features .section-title {
      font-size: 24px;
    }
  }

  .navbar ul {
    flex-direction: column;
    gap: 6px;
    width: 100%;
  }

  .nav-submenu {
    position: static;
    display: none;
    width: 100%;
    box-shadow: none;
    border: none;
    padding-left: 18px;
  }

  .navbar ul li.has-dropdown.open>.nav-submenu {
    display: block;
  }
}

/* slider section start here  */
.container {
  /* if you only give width, all dimensions will be correct */
  width: 100%;
  height: auto;
  /*aspect-ratio: 23 / 9;*/
  margin: 0px auto;
  position: relative;
}

.slider {
  width: 100%;
  height: 100%;
  aspect-ratio: 23 / 9;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}


.slider img {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
  transform: translateX(100%);
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}


.slider img.active {
  opacity: 1;
  transform: translateX(0);
}

.slider img.previous {
  transform: translateX(-100%);
}

/* slider section end here  */
.navigation-button {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
}

.line {
  cursor: pointer;
  height: 10px;
  width: 10px;
  margin: 0 5px;
  background-color: #777;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s, transform 0.3s;
}

.line.active {
  background-color: #040404;
  transform: scale(1.2);
}

.nav-button {
  position: absolute;
  top: 50%;
  background-color: rgba(134, 129, 129, 0.5);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  padding: 15px;
  z-index: 10;
  transition: background-color 0.3s, transform 0.3s;
  transform: translateY(-50%);
}

.nav-button:hover {
  background-color: rgba(0, 0, 0, 0.5);
}

.prev {
  left: 15px;
}

.next {
  right: 15px;
}

@media (max-width: 890px) {
  .nav-button {
    font-size: 22px;
    padding: 11px;
  }

  .navigation-button {
    bottom: 12px;
  }

  .line {
    height: 9px;
    width: 9px;
  }
}

@media (max-width: 700px) {

  .container {
    width: 90%;
  }

  .navigation-button {
    bottom: 10px;
  }

  .line {
    height: 7px;
    width: 7px;
  }

  .nav-button {
    font-size: 14px;
    padding: 7px;
  }

}

/* About Unique Wrapper Styles  yes*/
.about-unique-wrapper {
  background: #eff0f0;
  padding: 45px 83px 60px 30px;
}

.about-unique-wrapper-1 {
  background: #ffffff;
  padding: 45px 83px 60px 30px;
}

.about-unique-title {
  text-align: center;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #222;
  letter-spacing: -1px;
}

.about-unique-title .highlight-red {
  color: #e62429;
}

/*About Unique Section Styles */
/*About Unique Section (two-column)*/
.about-unique-section {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  /* padding-left:20px; */
  /* margin: 0 auto; */
  gap: 140px;

}


.about-unique-content {
  flex: 1 1 55%;
  max-width: 1200px;
  font-weight: bold;
}

.about-unique-desc {
  font-size: 1.5rem;
  color: black;
  line-height: 1.3;
  text-shadow: 1px 2px 6px #e0e0e0;
  margin: 17px;
  transition: all 0.3s ease;
}



.about-unique-image {
  /* flex: 1 1 35%; */
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-unique-image img {
  max-width: 800px;
  width: 100%;
  /* box-shadow: 10px 12px 40px rgba(243, 90, 95, 100); */
  border-radius: 8px;
  background: #fff;
  transition: all 0.3s ease;
}

.about-unique-image img:hover {
  transform: scale(1.05);
  box-shadow: 10px 12px 40px rgba(230, 36, 41, 0.5);

}


@media (max-width: 900px) {
  .about-unique-section {
    flex-direction: column;
    gap: 24px;
    padding: 0;
  }

  .about-unique-content,
  .about-unique-image {
    max-width: 100%;
    flex: 1 1 100%;
  }

  .about-unique-title {
    font-size: 2rem;
  }

  .about-unique-desc {
    font-size: 1.1rem;
  }

  .about-unique-image img {
    max-width: 90vw;
  }

  .about-unique-wrapper {
    padding: 30px 5px 20px 5px;
  }
}

/* About Unique Wrapper Styles  end */


/* Energy Solutions Section  start*/
.energy-solutions-section {
  background: radial-gradient(ellipse at center, #1a1a1a 60%, #000 100%);
  padding: 60px 0 40px 0;
  color: #fff;
  margin-top: 0;
}

.energy-solutions-header h2 {
  text-align: center;
  font-size: 2.7rem;
  font-weight: 700;
  margin-bottom: 40px;
  line-height: 1.1;
}

.energy-white {
  color: #fff;
}

.energy-red {
  color: #e62429;
}

/* Suggestions section (added) */
.suggestions-section {
  background: #fafbfc;
  padding: 40px 0 60px;
}

.suggestions-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.suggestions-title {
  font-size: 2.6rem;
  font-weight: 400;
  margin-bottom: 6px;
  color: #222;
}

.suggestions-title .label-red {
  display: inline-block;
  background: #e62429;
  color: #fff;
  padding: 6px 10px;
  border-radius: 15px;
}

.suggestions-sub {
  display: block;
  font-size: 1.4rem;
  color: #444;
  margin-top: 6px;
}

.suggestions-select {
  margin-top: 18px;
  font-size: 1.05rem;
  color: #666;
}

.suggestions-types {
  display: inline-flex;
  gap: 12px;
  margin-top: 18px;
}

.type-btn {
  background: #fff;
  border: 1px solid rgba(255, 0, 0, 0.06);
  padding: 12px 22px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 700;
  color: #444;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

.type-btn.active {
  background: #e62429;
  color: #fff;
  box-shadow: 0 8px 28px rgba(230, 36, 41, 0.12);
}

.suggestions-icons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 18px;
  border: none;
}

.small-icon {
  text-align: center;
  color: #666;
}

.icon-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  font-size: 22px;
}

.icon-label {
  margin-top: 8px;
  font-size: 0.95rem;
}

.suggestions-card {
  margin-top: 28px;
  background: #fff;
  border-radius: 10px;
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  max-height: 410px;
}

.card-left img {
  max-width: 520px;
  width: 50%;
  display: block;
  height: 200px;
}

.card-left {
  text-align: left;
  padding: 8px 18px;
  max-height: 900px;
}

.card-type {
  color: #e62429;
  font-weight: 800;
  margin-top: 8px;
}

.card-model {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.card-desc {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 18px;
}

.explore-btn {
  display: inline-block;
  background: #e62429;
  color: #fff;
  padding: 10px 22px;
  border-radius: 24px;
  text-decoration: none;
  font-weight: 700;
}

.card-right {
  padding: 8px 18px;
}

.specs-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  overflow: hidden;
}

.specs-list li {
  display: flex;
  justify-content: space-between;
  padding: 18px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  font-weight: 700;
  color: #666;
  background: #fff;
}

.specs-list li:last-child {
  border-bottom: none;
}

.specs-list .val {
  color: #111;
  font-weight: 600;
}

.suggestions-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 18px;
}

.nav-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 20px;
}

.dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ddd;
  display: inline-block;
}

.dot.active {
  background: #333;
  transform: scale(1.1);
}

@media (max-width: 900px) {
  .suggestions-card {
    grid-template-columns: 1fr;
  }

  .card-left {
    text-align: center;
  }

  .card-left img {
    margin: 0 auto 12px;
    max-width: 60%;
  }

  .suggestions-inner {
    padding: 0 12px;
  }
}

.energy-solutions-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 30px;
}

.energy-solutions-cards {
  display: flex;
  gap: 24px;
}

/* Duplicated chooser section styles */
.inverter-chooser {
  background: #fafbfc;
  padding: 40px 0 60px 0;
}

.inverter-section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.inverter-section-inner .inverter-chooser-grid ul {
  padding-top: 230px;
}

.inverter-section-title {
  text-align: center;
  font-size: 2.7rem;
  font-weight: 1000;
  margin-bottom: 40px;
}


.inverter-section-title .label-red,
.label-red {
  display: inline-block;
  background: #e62429;
  color: #fff;
  padding: 6px 12px;
  border-radius: 15px;
}

.inverter-chooser-grid {
  display: grid;
  grid-template-columns: 0px 1fr;
  gap: 1px;
  align-items: start;
}

.inverter-left-criteria ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.inverter-left-criteria .criteria-item {
  padding: 30px 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  color: #6b6b6b;
  font-size: 1.5rem;
  font-weight: 700
}

.inverter-cards-row {
  display: flex;
  gap: 30px;
  justify-content: center;
}

.inverter-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  padding: 26px;
  width: 460px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.inverter-card-img {
  max-width: 200px;
  width: 100%;
  display: block;
  margin-bottom: 12px;
}

.inverter-card-title {
  font-size: 1.7rem;
  font-weight: 700;
  color: #ff0000;
  width: 10%;
  text-align: center;
  margin-bottom: 8px;
}



.inverter-card-desc {
  font-size: 0.98rem;
  color: #555;
  line-height: 1.6;
  text-align: center;
}

@media (max-width: 900px) {
  .inverter-chooser-grid {
    grid-template-columns: 1fr;
  }

  .inverter-left-criteria {
    order: 2;
    padding-top: 12px;
  }

  .inverter-cards-row {
    flex-direction: column;
    gap: 18px;
    align-items: center;
  }

  .inverter-card {
    width: 95%;
  }
}

.energy-card {
  background: #fff;
  color: #222;
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  width: 570px;
  min-height: 20px;
  display: flex;
  flex-direction: column;
  border: 2px solid transparent;
  transition: border 0.3s;
}

.energy-card.active {
  border: 2px solid #a7a6ff;
}

.energy-card-img {
  width: 100%;
  height: 160px;
  /* background: #222; */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.energy-card-img img {
  width: 100%;
  height: 140%;
  /* object-fit: cover; */
  padding-top: 20px;
}

.energy-card-content {
  padding: 18px 18px 12px 18px;
}

.energy-card-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.energy-card-content p {
  font-size: 1rem;
  color: #444;
}

.carousel-arrow {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  padding: 0 40px;
  transition: color 0.2s;
}

.carousel-arrow:hover {
  color: #e62429;
}

.energy-solutions-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.page-dot {
  display: inline-block;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #222;
  color: #fff;
  text-align: center;
  line-height: 32px;
  font-size: 1rem;
  cursor: pointer;
  opacity: 0.7;
  transition: background 0.2s, opacity 0.2s;
}

.page-dot.active {
  background: #e62429;
  opacity: 1;
}

@media (max-width: 900px) {
  .energy-solutions-cards {
    flex-direction: column;
    gap: 18px;
  }

  .energy-card {
    width: 95vw;
    min-width: 0;
    max-width: 400px;
    margin: 0 auto;
  }

  .energy-solutions-section {
    padding: 40px 0 20px 0;
  }
}

/* Modern Product Grid Section  start */
.modern-product-section {
  background: #fff;
  padding: 48px 0 48px 0;
}

.modern-product-heading {
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 32px;
  margin-left: 36px;
  padding-left: 130px;
}

.modern-product-grid {
  display: grid;
  grid-template-columns: 2fr 1.1fr;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.modern-product-featured {
  background: #f7f7f7;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 480px;
  cursor: pointer;
}

.modern-product-featured img {
  width: 100%;
  height: 435px;
  object-fit: cover;
  display: block;
}

.modern-product-info {
  padding: 24px 24px 18px 24px;
}

.modern-product-title {
  font-size: 1.18rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.modern-product-desc {
  font-size: 1rem;
  color: #666;
  margin-bottom: 8px;
}

.modern-product-price {
  font-size: 1.08rem;
  font-weight: 700;
  color: #111;
}

.modern-product-side {
  display: flex;
  flex-direction: column;
  gap: 24px;
  cursor: pointer;
}

.modern-product-card {
  background: #f7f7f7;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 180px;
}

.modern-product-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.modern-product-card .modern-product-info {
  padding: 18px 18px 12px 18px;
}

@media (max-width: 900px) {
  .modern-product-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .modern-product-side {
    flex-direction: row;
    gap: 18px;
  }

  .modern-product-card {
    min-width: 0;
    flex: 1 1 50%;
  }
}

@media (max-width: 600px) {
  .modern-product-heading {
    font-size: 1.2rem;
    margin-left: 10px;
  }

  .modern-product-featured img {
    height: 180px;
  }

  .modern-product-card img {
    height: 80px;
  }
}

/* Load Calculator Section  start */
.load-calculator-section {
  margin: 0;
  padding: 0;
}

.load-calc-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  background: #e74a4a;
  padding: 2px 0 0 0;
  height: 250px;
  cursor: pointer;
}

.load-calc-top-left {
  flex: 1 1 60%;
  padding-left: 24px;
  padding-bottom: 18px;
}

.load-calc-top-title {
  font-size: 3.25rem;
  font-weight: 700;
  color: #222;
  line-height: 1.3;
}

.load-calc-top-title .highlight-red {
  color: #fff;
  font-weight: 700;
}

.load-calc-top-right {
  flex: 1 1 40%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  padding-right: 32px;
}

.load-calc-top-right img {
  padding-top: 100px;
  max-width: 300px;
  width: 100%;
  margin-top: -10px;
  transition: all 0.3s;
  cursor: pointer;
  padding-right: 35px;
}

.load-calc-top:hover .load-calc-top-right img {
  /* transform:translateX(-100px); */
  transform: scale(1.6);
}



.load-calc-bottom {
  background: #ededed;
  padding: 28px 0 28px 0;
}

.load-calc-bottom-text {
  font-size: 2.5rem;
  color: #222;
  font-weight: 700;
  text-align: center;
  line-height: 2.2;
}

@media (max-width: 900px) {
  .load-calc-top {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 0 0 0;
  }

  .load-calc-top-left {
    padding-left: 12px;
    padding-bottom: 10px;
  }

  .load-calc-top-right {
    padding-right: 12px;
    margin-top: 10px;
  }

  .load-calc-bottom-text {
    font-size: 1.2rem;
    padding-left: 8px;
    padding-right: 8px;
  }
}

/* 3-Column Image Gallery Section */
.three-col-gallery-section {
  padding: 50px 0 90px 0;
  height: 300px;
}

.three-col-gallery {
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: flex-start;
  max-width: 1300px;
  margin: 0 auto;
  cursor: pointer;
}

/* 3-Column Image Gallery Section  end */

/* add some cool effects the card section start  */
.card h2 {
  font-size: 1.5rem;
  color: #000;
  font-weight: bold;
  font-family: sans-serif;
  padding-left: 0px;
}

.card p {
  font-size: 1rem;
  font-family: sans-serif;
}

.arrow {
  display: flex;
  justify-content: flex-end;
  position: absolute;
  top: 0;
  right: 0;
  color: #fff;
  margin-top: 5px;
  margin-right: 8px;
  z-index: 1;
  cursor: pointer;
}

.card {
  position: relative;
  overflow: hidden;
  width: 350px;
  height: 200px;
  background: #fff;
  display: flex;
  /* align-items: center; */
  justify-content: center;
  flex-direction: column;
  padding: 1rem 0.5rem;
  box-shadow: 0 1px 1px rgba(235, 232, 232, 0.1), 0 2px 2px rgba(220, 215, 215, 0.1),
    0 4px 4px rgba(240, 239, 239, 0.1), 0 8px 8px rgb(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.card:hover {
  transform: scale(1.05);
}

.card:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  background: #e74a4a;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  transition: width 0.3s ease, height 0.3s ease;
  z-index: 0;
}

.card:hover:before {
  width: 200%;
  height: 200%;
  z-index: -1;
}

.card:hover h2 {
  color: #fff;
  transition: all 0.3s ease;
}

.card:hover p {
  color: #f1f1f1;
  transition: all 0.3s ease;
}

/* add some cool effects the card section start  */

/* Load Calculator Banner Section (custom for background image) */
.load-calculator-banner-section {
  position: relative;
  background: url('../assets/images/our-inverter-bg.webp') center center/cover no-repeat;
  min-height: 500px;
  display: flex;
  align-items: center;
  color: #fff;
  padding: 0;
  /* margin-bottom: 40px; */
}

.load-calculator-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: rgba(30, 30, 30, 0.55); */
  z-index: 1;
}

.load-calculator-banner-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin-left: 60px;
}

.load-calculator-banner-title {
  font-size: 3.5rem;
  font-weight: 600;
  margin-bottom: 18px;
  line-height: 1.2;
}

.load-calculator-banner-desc {
  font-size: 1.5rem;
  margin-bottom: 28px;
  color: #fff;
}

/* 
.load-calculator-banner-btn {
  background: #ff5a5a;
  color: #fff;
  border: none;
  border-radius: 22px;
  padding: 10px 28px;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}


.load-calculator-banner-btn:hover {
  background: #e74a4a;
}

@media (max-width: 700px) {
  .load-calculator-banner-content {
    margin-left: 18px;
    max-width: 95vw;
  }

  .load-calculator-banner-title {
    font-size: 1.5rem;
  }
} */


/* Choose Your Inverter Section */
.inverter-section {
  background: #fafbfc;
  padding: 40px 0 30px 0;
}


.inverter-section-title {
  text-align: center;
  font-size: 2.7rem;
  font-weight: 700;
  margin-bottom: 70px;
  color: #111;
}


.inverter-cards-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.inverter-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  padding: 28px 22px 22px 22px;
  width: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s;
  cursor: pointer;
}

.inverter-card:hover {
  transform: translateY(-18px);
}

.inverter-card:hover .inverter-card-img {
  transform: scale(1.9);
}

.inverter-card:hover .inverter-card-title {
  padding-top: 40px;
}

.inverter-card-img {
  max-width: 180px;
  width: 100%;
  margin-bottom: 10px;
  display: block;
  transition: all 0.3s;
}

.inverter-card-title {
  font-size: 1.7rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #ec0b0b;
  text-align: center;
  width: 100%;
  transition: all 0.3s;
}

.inverter-card-desc p {
  font-size: 0.98rem;
  color: #444;
  margin-bottom: 22px;
  text-align: center;
  width: 100%;
  transition: all 0.3s;
}

.inverter-card-btn {
  background: #ff5a5a;
  color: #fff;
  border: none;
  border-radius: 22px;
  padding: 8px 28px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}

.inverter-card-btn:hover {
  background: #e74a4a;
}

.inverter-viewall-row {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.inverter-viewall-btn {
  background: #ff5a5a;
  color: #fff;
  border: none;
  border-radius: 22px;
  padding: 10px 36px;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}

.inverter-viewall-btn:hover {
  background: #e74a4a;
}

@media (max-width: 1100px) {
  .inverter-cards-row {
    flex-direction: column;
    align-items: center;
    gap: 28px;
  }
}

/* Choose Your Inverter Section end */


/* Testimonial Carousel Section */
.testimonial-carousel-section {
  background: #ebeaea;
  padding: 60px 0 60px 0;
  position: relative;
  overflow: hidden;
}

.testimonial-carousel-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 40px;
  letter-spacing: -1px;
}

.testimonial-carousel-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 16px;
}

.testimonial-carousel-track {
  display: flex;
  gap: 40px;
  min-width: 100vw;
}

.testimonial-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.10);
  padding: 48px 36px 36px 36px;
  min-width: 540px;
  max-width: 600px;
  height: 350px;
  flex: 0 0 540px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  cursor: pointer;
}

.testimonial-text {
  font-size: 1.35rem;
  color: #222;
  text-align: center;
  margin-bottom: 32px;
  font-weight: 400;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #e0e0e0 url('data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\' viewBox=\'0 0 32 32\'><circle cx=\'16\' cy=\'12\' r=\'8\' fill=\'%23bdbdbd\'/><ellipse cx=\'16\' cy=\'26\' rx=\'12\' ry=\'6\' fill=\'%23bdbdbd\'/></svg>') center/60% no-repeat;
  margin: 0 auto 18px auto;
}

.testimonial-author {
  font-size: 1.25rem;
  font-weight: 700;
  color: #222;
  text-align: center;
  margin-top: 0;
}

@media (max-width: 1200px) {
  .testimonial-card {
    min-width: 340px;
    max-width: 90vw;
    padding: 32px 12px 24px 12px;
  }

  .testimonial-carousel-track {
    gap: 18px;
  }
}

@media (max-width: 700px) {
  .testimonial-carousel-title {
    font-size: 1.3rem;
  }

  .testimonial-card {
    min-width: 90vw;
    padding: 18px 4vw 18px 4vw;
  }
}

/* FAQ Section start here  */
.faq-section {
  background: #fff;
  padding: 48px 0 48px 0;
}

.faq-container {
  display: flex;
  gap: 32px;
  max-width: 1400px;
  margin: 0 auto;
  align-items: flex-start;
  justify-content: space-between;
}

.faq-left {
  flex: 1 1 60%;
}

.faq-heading {
  font-size: 2.7rem;
  font-weight: 700;
  margin-bottom: 32px;
  margin-left: 8px;
  line-height: 1.1;
}

.faq-red {
  color: #e62429;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #fafbfc;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.faq-item.open {
  box-shadow: 0 6px 24px rgba(231, 74, 74, 0.13);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  font-size: 1.13rem;
  font-weight: 500;
  color: #222;
  text-align: left;
  padding: 18px 18px 18px 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.2s;
}

.faq-icon {
  font-size: 1.5rem;
  color: #888;
  margin-left: 12px;
  font-weight: 700;
}

.faq-answer {
  background: #fff;
  color: #444;
  font-size: 1.05rem;
  padding: 0 18px 0 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-answer {
  padding: 0 18px 18px 18px;
}

.faq-right {
  flex: 1 1 70%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 70px;
}

.faq-illustration {
  max-width: 650px;
  width: 100%;
  height: 100%;
  border-radius: 0;
  display: block;
}

@media (max-width: 1100px) {
  .faq-container {
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
  }

  .faq-right {
    justify-content: flex-start;
    margin-top: 18px;
  }

  .faq-illustration {
    max-width: 95vw;
  }
}

@media (max-width: 700px) {
  .faq-heading {
    font-size: 1.3rem;
    margin-left: 0;
  }
}



/* Copyright Bar */
.copyright-bar {
  background: #ed232a;
  color: #fff;
  text-align: center;
  font-size: 1.15rem;
  padding: 12px 0 10px 0;
  letter-spacing: 0.01em;
  width: 100%;

}

/* Footer Section */
.main-footer {
  position: relative;
  background: #181818;
  color: #fff;
  padding: 0;
  margin: 0;
  overflow: hidden;
}

.footer-bg {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: url('../assets/images/footer-bg.png') left center/cover no-repeat, #181818;
  opacity: 0.85;
  z-index: 1;
}

.footer-content {
  position: relative;
  z-index: 2;
  max-width: 1600px;
  margin: 0 auto;
  padding: 60px 40px 40px 40px;
  display: flex;
  flex-direction: column;
}

.footer-cols {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  justify-content: flex-start;
  align-items: flex-start;
}

.footer-col {
  min-width: 220px;
  flex: 1 1 220px;
}

.footer-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 1.08rem;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: #e62429;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 320px;
  flex: 1 1 320px;
}

.footer-logo {
  width: 160px;
  margin-bottom: 18px;
}

.footer-company {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: #fff;
}

.footer-company-title {
  font-weight: 700;
  color: #fff;
  font-size: 1.1rem;
}

.footer-contact {
  font-size: 1.08rem;
  margin-bottom: 18px;
}

.footer-icon {
  margin-right: 8px;
  font-size: 1.1rem;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social-icon {
  display: inline-block;
  background: #222;
  border-radius: 6px;
  padding: 7px 10px 5px 10px;
  transition: background 0.2s;
}

.footer-social-icon:hover {
  background: #e62429;
}

.footer-social-icon img {
  width: 22px;
  height: 22px;
  display: block;
}

@media (max-width: 1100px) {
  .footer-cols {
    flex-direction: column;
    gap: 32px;
  }

  .footer-content {
    padding: 40px 10px 20px 10px;
  }
}

.testimonial-carousel-wrapper::-webkit-scrollbar {
  display: none;
}

.testimonial-carousel-wrapper {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Batteries Details Section */
.batteries-details-section {
  background: #fafbfc;
  padding: 50px 0 30px 0;
}

.section-header h4 {
  text-align: center;
  font-size: 2.7rem;
  font-weight: 800;
  margin-bottom: 50px;
  color: #111;
}




.batteries-details-title {
  text-align: center;
  font-size: 2.7rem;
  font-weight: 700;
  margin-bottom: 60px;
  color: #111;
  transition: all 0.3s;
}

.batteries-details-title .highlight-red {
  color: #e74a4a;
}

.batteries-cards-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.battery-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.10);
  padding: 28px 22px 22px 22px;
  width: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s;
  cursor: pointer;
}

.battery-card:hover {
  transform: translateY(-18px);
  background-color: #000;
}

.battery-card:hover .battery-card-title {
  color: white;
}

.battery-card:hover p {
  padding: 20px;
  color: white;
  transition: all 0.7s ease;
}

.battery-card:hover h2 {
  color: rgb(255, 255, 255);
}

.battery-card:hover .battery-card-desc {
  color: white;
}

.battery-card:hover .battery-card-img {
  background-color: white;
  border-radius: 20px;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2);
  transform: translateY(-10px);
}


.battery-card:hover {
  box-shadow: 0 6px 24px rgba(231, 74, 74, 0.13);
}

.battery-card-img {
  max-width: 180px;
  width: 100%;
  margin-bottom: 18px;
  display: block;
  transition: all 0.3s;
}

.battery-card-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
  text-align: left;
  width: 100%;
}

.battery-card-desc {
  font-size: 0.98rem;
  color: #444;
  margin-bottom: 22px;
  text-align: left;
  width: 100%;
}

.battery-card-btn {
  background: #ff5a5a;
  color: #fff;
  border: none;
  border-radius: 22px;
  padding: 8px 28px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}

.battery-card-btn:hover {
  background: #e74a4a;
}



.batteries-viewall-row {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.batteries-viewall-btn {
  background: #ff5a5a;
  color: #fff;
  border: none;
  border-radius: 22px;
  padding: 10px 36px;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}

.batteries-viewall-btn:hover {
  background: #e74a4a;
}

@media (max-width: 1100px) {
  .batteries-cards-row {
    flex-direction: column;
    align-items: center;
    gap: 28px;
  }
}

/* Remove any red underline from cards */
.energy-card {
  border-bottom: none !important;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
}

.energy-solutions-cards-scroll {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
  scrollbar-width: thin;
  scrollbar-color: #444 #222;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  box-sizing: border-box;
}

.energy-solutions-cards-scroll::-webkit-scrollbar {
  height: 10px;
}

.energy-solutions-cards-scroll::-webkit-scrollbar-thumb {
  background: #444;
  border-radius: 6px;
}

.energy-solutions-cards-scroll::-webkit-scrollbar-track {
  background: #222;
  border-radius: 6px;
}

.energy-card {
  min-width: 410px;
  max-width: 420px;
  flex: 0 0 410px;
}

/* Energy Solutions Section */
.energy-solutions-section {
  background: radial-gradient(ellipse at center, #1a1a1a 60%, #000 100%);
  padding: 60px 0 40px 0;
  color: #fff;
  margin-top: 0;
}

.energy-solutions-header h2 {
  text-align: center;
  font-size: 2.7rem;
  font-weight: 700;
  margin-bottom: 40px;
  line-height: 1.1;
}

.energy-white {
  color: #fff;
}

.energy-red {
  color: #e62429;
}

.energy-solutions-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 30px;
}

.energy-solutions-cards {
  display: flex;
  gap: 24px;
}

.energy-card {
  background: #fff;
  color: #222;
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  width: 570px;
  min-height: 20px;
  display: flex;
  flex-direction: column;
  border: 2px solid transparent;
  transition: border 0.3s;
}

.energy-card.active {
  border: 2px solid #a7a6ff;
}

.energy-card-img {
  width: 100%;
  height: 160px;
  /* background: #222; */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.energy-card-img img {
  width: 100%;
  height: 140%;
  /* object-fit: cover; */
  padding-top: 20px;
}

.energy-card-content {
  padding: 18px 18px 12px 18px;
}

.energy-card-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.energy-card-content p {
  font-size: 1rem;
  color: #444;
}

.carousel-arrow {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  padding: 0 40px;
  transition: color 0.2s;
}

.carousel-arrow:hover {
  color: #e62429;
}

.energy-solutions-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.page-dot {
  display: inline-block;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #222;
  color: #fff;
  text-align: center;
  line-height: 32px;
  font-size: 1rem;
  cursor: pointer;
  opacity: 0.7;
  transition: background 0.2s, opacity 0.2s;
}

.page-dot.active {
  background: #e62429;
  opacity: 1;
}

@media (max-width: 900px) {
  .energy-solutions-cards {
    flex-direction: column;
    gap: 18px;
  }

  .energy-card {
    width: 95vw;
    min-width: 0;
    max-width: 400px;
    margin: 0 auto;
  }

  .energy-solutions-section {
    padding: 40px 0 20px 0;
  }
}


/* all butons css here start  */
.button-container {
  /* margin: 6px auto 0; */
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;

  @media screen and (max-width: 930px) {
    flex-direction: column;
  }
}

.button {
  position: relative;
  color: rgb(254, 254, 254);
  background-color: #fd0000;
  text-decoration: none;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1px;
  /* border: 2px solid rgb(0, 0, 0); */
  border-radius: 100px;
  padding: 10px 20px;
  margin: 10px;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.15);
  transition: .5s all ease-in-out;

  &:hover {
    cursor: pointer;
    background: rgb(255, 255, 255);
    color: #000000;
  }
}

.button-pulse {
  animation: pulse 1.5s infinite 3s cubic-bezier(0.25, 0, 0, 1);
  box-shadow: 0 0 0 0 rgb(234, 19, 19);
}

@keyframes pulse {
  to {
    box-shadow: 0 0 0 18px rgba(255, 255, 255, 0);
  }
}

/* all butons css here end   */
/* <!-- social media links with live feed start --> */
.tabs-section {
  padding: 3rem 1rem;
  background: linear-gradient(to right, #000000, #e62429);
  font-family: 'Segoe UI', sans-serif;
  width: 100%;
}

.tabs-container {
  max-width: 1400px;
  margin: 0 auto;
  background: #ffffffdd;
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

/* Tab nav */
.tabs-nav {
  display: flex;
  background: #1877F2;
  background: linear-gradient(90deg, #000000, #e62429);
  list-style: none;
  margin: 0;
  padding: 0;
}

/* removed empty .tab1 rule */
.tab {
  flex: 1;
  text-align: center;
  padding: 1rem;
  cursor: pointer;
  color: #ffffff;
  font-weight: 800;
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 25px;
}

.tab1 {
  background-color: #1877F2;
}

.tab2 {
  background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
}

.tab svg {
  width: 20px;
  height: 20px;
  fill: #ffffff;
}

.tab {
  /* background-color:#1877F2; */
  font-weight: 600;
  font-size: 30px;
}

/* Content panes */
.tabs-content {
  padding: 1rem;
  background-color: #fff;
}

.tab-pane {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.tab-pane.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.container-social {
  max-width: 1400px;
  /* margin: 0 auto; */
  padding: 0px 5px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 40px;
}


@media screen and (max-width: 900px) {
  .container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 600px) {
  .container {
    grid-template-columns: 1fr;
  }
}

/* nav bar dropdown links  */




/* inverter section css  start here */

/* lightweight background image section used on this page */
.bg-image-section {
  background-color: white;
  background-size: cover;
  background-position: center;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  position: relative;
}

.bg-image-section::after {
  /* subtle dark overlay for text readability */
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  /* background: rgba(0, 0, 0, 0.35); */
}

.bg-image-section .bg-overlay {
  position: relative;
  z-index: 1;
  text-align: center;
}

.bg-image-section h1 {
  margin: 0 0 8px 0;
  font-size: 3.2rem;
  color: #000;
  font-weight: 700;
}

.bg-image-section p {
  margin: 0;
  font-size: 1.4rem;
  color: #000000;
  font-weight: 400;
}


/* feature  card section slide start here */

/* Carousel Section Styles */
.carousel-section {
  max-width: 1100px;
  margin: 0 auto 60px;
  padding: 10px 20px 40px;
}

.carousel-inner {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 28px;
  scroll-behavior: smooth;
  overflow-x: auto;
  padding-bottom: 10px;
  scrollbar-width: none;
  /* firefox */
}


.carousel-track::-webkit-scrollbar {
  display: none;
}

.card-inverter {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
  min-width: 480px;
  flex: 0 0 48%;
  display: flex;
  flex-direction: column;
}

.card-media {
  height: 200px;
  overflow: hidden;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-body {
  padding: 18px;
  font-family: 'Segoe UI', Roboto, Arial, sans-serif;
}

.card-body h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.card-body p {
  margin: 0;
  color: #666;
  line-height: 1.5;
}

.carousel-dots {
  text-align: center;
  margin-top: 18px;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #d3d3d3;
  border: 0;
  margin: 0 6px;
  display: inline-block;
  cursor: pointer;
}

.carousel-dot.active {
  background: #d82b38;
}

/* Responsive tweaks */
@media (max-width:900px) {
  .card-inverter {
    min-width: 320px;
    flex: 0 0 70%;
  }
}

@media (max-width:520px) {
  .card-inverter {
    min-width: 260px;
    flex: 0 0 88%;
  }

  .card-media {
    height: 160px;
  }
}

/* main body */
body {
  /* allow horizontal scrolling for carousels and tracks */
  overflow-x: hidden;
}


/*product-feature for bettry section start here*/


/* Product feature card */
.product-feature .product-grid {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 28px;
  align-items: center;
  background: #fff;
  border-radius: 12px;
  padding: 22px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease-in-out;
}

.product-feature .product-media img {
  width: 100%;
  height: 270px;
  object-fit: contain;
  display: block;
  padding: 0px;
  transition: all 0.5s ease-in-out;
  cursor: pointer;
}

.product-feature .muted {
  color: #e94b4b;
  font-weight: 700;
  margin: 0 0 8px;
}

.product-feature .product-title {
  margin: 0 0 10px;
  font-size: 28px;
}

.product-feature .lead {
  color: #666;
  line-height: 1.6;
  margin: 0 0 14px;
}

.specs-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 28px;
  margin: 14px 0 0;
}

.specs-table dt {
  font-weight: 600;
  color: #444;
}

.specs-table dd {
  margin: 0;
  text-align: right;
  color: #333;
}

.specs-table div {
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}

.btn-primary {
  display: inline-block;
  background: linear-gradient(90deg, #f26b6b, #e83a3a);
  color: #fff;
  padding: 12px 22px;
  border-radius: 26px;
  text-decoration: none;
  font-weight: 700;
}

@media (max-width:900px) {
  .product-feature .product-grid {
    grid-template-columns: 1fr;
  }

  .product-feature .product-media img {
    height: 260px;
    object-fit: cover;
  }

  .specs-table {
    grid-template-columns: 1fr;
  }

  .specs-table dd {
    text-align: left;
  }
}


/* drop down menu nav bar  */

/* nav bar dropdown links  */
.navbar a {
  text-decoration: none;
  color: #333;
  display: block;

}

/* .navbar ul li a {
  font-size: 100%;
  font-weight: 700;
} */

.navbar>ul>li {
  position: relative;

}

.navbar>ul>li:last-child {
  border-bottom: none;

}

.submenu-dropdown {
  display: block;
  position: absolute;
  top: 200%;
  left: 0%;
  /* min-width: 120px; */
  background-color: rgb(255, 253, 253);
  border: 1px solid #c7c3c3;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 1010;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: transform 0.3s;
  border-radius: 10px;
  min-width: max-content;
  max-height: 0;
  transition: max-height 1s;
}

ul.dropdown-menu li a {
  font-weight: 500;
  font-size: 14px;
}

ul.dropdown-menu li a:hover {
  color: red;
  border-radius: 5px;
  background-color: rgb(226, 209, 209);
  padding-left: 20px;
  border-left: 3px solid red;
  transition: all 0.3s ease;
}

ul.submenu-dropdown li a {
  display: block;
  padding: 8px 14px;
  white-space: nowrap;
  color: black;
  font-weight: 500;
  font-size: 14px;
}

ul.submenu-dropdown li a:hover {
  background-color: rgb(226, 209, 209);
  border-radius: 5px;
}

.navbar>ul>li:focus-within .submenu-dropdown {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  max-height: 200px;
}

.navbar ul li a {
  font-size: 100%;
  font-weight: 600;
}

ul li ul li a:hover {
  padding-left: 20px;
  border-left: 3px solid red;
  transition: all 0.3s ease;
}

/* lithium x section start here the whole website */

.features-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.features-header {
  text-align: center;
  margin-bottom: 40px;
}

.revolutionary-title {
  color: #e62429;
  font-size: 2.5em;
  margin-bottom: 10px;
  font-weight: 700;
}

.never-backs-title {
  color: white;
  font-size: 2em;
  margin-top: 0;
}

.features-flex-container {
  display: flex;
  gap: 40px;
  align-items: center;
}

.product-image {
  flex: 0 0 40%;
  max-width: 500px;
}

.feature-product-img {
  width: 100%;
  height: 53vh;
  border-radius: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.feature-product-img:hover {
  transform: translateY(-10px);
}

.features-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  padding: 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.feature-item:hover {
  transform: translateY(-10px);
}

.feature-icon {
  font-size: 24px;
  margin-right: 15px;
  color: #e62429;
  min-width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(230, 36, 41, 0.1);
  border-radius: 50%;
}

.feature-content h4 {
  color: #2c3e50;
  margin: 0 0 10px 0;
  font-size: 1.2em;
}

.feature-content p {
  color: #666;
  margin: 5px 0;
  font-size: 0.9em;
}

/* Responsive Design */
@media (max-width: 992px) {
  .features-flex-container {
    flex-direction: column;
  }

  .product-image {
    flex: 0 0 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .revolutionary-title {
    font-size: 2em;
  }

  .never-backs-title {
    font-size: 1.5em;
  }

  .product-image {
    max-width: 100%;
  }
}




/* core-benefits-lithium-x */
.core-benefits-lithium-x {
  background-color: #fff;
  padding: 60px 20px;
}

/* Section-level background and overlay */
.features-section {
  position: relative;
  background-image: url('/assets/c6da456d723f15ce21a4f06e4a883d7b.jpg');
  background-color: #2b2b2b;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 0;
  color: #fff;
}

/* Dark overlay to improve text contrast */
.features-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 0;
  pointer-events: none;
}

/* Keep inner content above overlay */
.features-section .features-container {
  position: relative;
  z-index: 1;
}

/* Product image box (keeps requested 50vh width) */
.features-section .product-image {
  width: 100%;
  height: 400px;
  min-width: 320px;
  background-image: url('https://livguard.b-cdn.net/livguard/ess/residential/ess_top.png?quality=85');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  /* margin: 0 20px; */
  transition: transform 0.3s ease;
}

.features-section .product-image :hover {
  transform: scale(1.9);
}




/* Responsive tweak */
@media (max-width: 992px) {
  .features-flex-container {
    flex-direction: column;
    align-items: center;
  }

  .features-section {
    padding: 40px 0;
  }

  .features-section .product-image {
    width: 60vh;
    height: 40vh;
    max-width: 90%;
  }
}





/* Feature slider styles */
.feature-carousel {
  max-width: 1000px;
  margin: 10px auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 10 0px 30px rgba(0, 0, 0, 0.08);
  background: #fff;
}

.feature-carousel .viewport {
  overflow: hidden;
  width: 100%;
}

.feature-carousel .slides {
  display: flex;
  transition: transform 400ms ease;
  width: 100%;
}

.feature-carousel .slide {
  min-width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.feature-carousel .slide-left {
  background: #000;
  color: #fff;
  padding: 48px 56px;
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 20px;
}

.feature-carousel .slide-left h3 {
  color: #b78eff;
  margin: 0 0 12px;
  font-size: 28px;
  letter-spacing: 1px;
}

.feature-carousel .slide-left p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

.feature-carousel .slide-right {
  background: #fff;
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.feature-carousel .slide-right .icon {
  font-size: 120px;
}

.feature-carousel .controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 16px 0;
  background: transparent;
}

.feature-carousel .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #bdbdbd;
  display: inline-block;
  cursor: pointer;

}

.feature-carousel .dot.active {
  background: #333;
}

.feature-carousel .btn {
  background: #fff;
  border: 1px solid #e6e6e6;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

@media (max-width: 900px) {
  .feature-carousel .slide-left h3 {
    font-size: 20px;
  }

  .feature-carousel .slide-right .icon {
    font-size: 72px;
  }

  .feature-carousel {
    margin: 20px;
  }

  .feature-carousel .slide-left {
    padding: 24px;
  }
}

/*solar  overview  */
.news-slider {
  width: 100%;
  padding: 60px 0;
  background-color: #ffffff;
}

.swiper {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.swiper-wrapper {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.news__item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  transition: all 0.5s ease;
  border: 2px solid transparent;
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
}

.news__item:hover {
  transform: translateY(-8px);
  border-color: #ff0000;
  box-shadow: 0 10px 30px rgba(255, 0, 0, 0.2);
}

.news__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.news__item:hover .news__img img {
  transform: scale(1.2);
}

.news__content {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
  color: #fff;
  padding: 25px;
  transition: bottom 0.6s ease;
}

.news__item:hover .news__content {
  bottom: 0;
}

.news__content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  transform: translateY(15px);
  opacity: 0;
  transition: all 0.6s ease;
}

.news__content p {
  font-size: 0.9rem;
  margin-bottom: 10px;
  line-height: 1.4;
  transform: translateY(15px);
  opacity: 0;
  transition: all 0.6s ease 0.1s;
}


.news__item:hover .news__content h3,
.news__item:hover .news__content p,
.news__item:hover .news__content .read-more {
  transform: translateY(0);
  opacity: 1;
}


/* Video + Key Features section styles (small, safe additions) */
.video-features-section {
  padding: 8px 10px;
  max-width: 1400px;
  margin: 40px auto;
}

.vf-grid {
  display: flex;
  gap: 32px;
  align-items: flex-start
}

.vf-left {
  flex: 1;
  min-width: 180px
}

.vf-right {
  flex: 1;
  min-width: 260px
}

.vf-left video {
  width: 100%;
  height: 310px;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  background: #000
}

.key-features {
  background: #fff;
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.04)
}

.key-features h3 {
  font-size: 34px;
  margin: 6px 0 18px;
  color: #2b3950
}

.features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f6f9fb;
  padding: 12px;
  border-radius: 10px;
  border-left: 4px solid #7be6b0
}

.feature-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04)
}

.feature-label {
  font-weight: 600;
  color: #334155
}

.feature-item.color-2 {
  border-left-color: #9f7cff
}

.feature-item.color-3 {
  border-left-color: #7fb0ff
}

.feature-item.color-4 {
  border-left-color: #ffb36b
}

@media (max-width:900px) {
  .vf-grid {
    flex-direction: column
  }

  .features-list {
    grid-template-columns: 1fr
  }
}


/* Why Livguard Solar 360? */
.process-steps {
  height: 300px;
}


/* solar-overview section again start here */
/* Hero overview section styles (added) */
.hero-overview {
  max-width: 1400px;
  margin-left: 80px;
  /* margin: 20px ; */
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.hero-inner {
  display: flex;
  align-items: stretch;
  gap: 0;
  background: #000;
  position: relative;
  height: 500px;
}

.hero-left {
  width: 230px;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.45), transparent);
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.hero-left .option {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 14px 18px;
  border-radius: 28px;
  cursor: pointer;
  text-align: center;
  font-weight: 600;
}


.hero-left .option.active {
  background: #e62429;
  box-shadow: 0 6px 18px rgba(230, 36, 41, 0.25);
}


.hero-slider-wrap {
  flex: 1;
  position: relative;
  min-height: 420px;
}


.hero-slider {
  height: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.hero-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: opacity .6s ease;
}

.hero-slider img.show {
  opacity: 1;
}

.hero-pin {
  position: absolute;
  color: #fff;
  font-weight: 700;
  right: 120px;
  top: 40%;
  transform: translateY(-50%);
  text-align: right;
}

.hero-pin small {
  display: block;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
}

.hero-controls {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 18px;
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}

.hero-dot.active {
  background: #e62429;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  pointer-events: none;
}

.hero-nav button {
  pointer-events: auto;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  border: 0;
  padding: 10px 14px;
  border-radius: 6px;
  cursor: pointer;
}

.hero-nav .prev {
  position: absolute;
  left: 12px;
}

.hero-nav .next {
  position: absolute;
  right: 12px;
}

@media (max-width:900px) {
  .hero-left {
    display: none;
  }

  .hero-overview {
    border-radius: 12px;
  }

  .hero-pin {
    right: 20px;
  }
}



/* App showcase section */
.app-showcase {
  background: #e62429;
  padding: 60px 20px;
  color: #fff;
}

.app-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
}

.app-phone {
  flex: 1 0 260px;
  display: flex;
  justify-content: center;
}

.app-phone img {
  /* width: 120px; */
  max-width: 100%;
  border-radius: 24px;
}

.app-content {
  flex: 1;
}

.app-content h2 {
  font-size: 44px;
  margin: 0 0 8px;
  font-weight: 800;
}

.app-content p {
  margin: 0 0 24px;
  font-size: 18px;
  opacity: 0.95;
}

.app-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.app-feature {
  background: rgba(142, 56, 56, 0.55);
  color: #fff;
  padding: 22px 28px;
  border-radius: 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease;
}

.app-feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.app-feature .icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.app-feature.active {
  background: rgba(0, 0, 0, 0.75);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.5);
}

@media (max-width:900px) {
  .app-container {
    flex-direction: column;
    text-align: center;
  }

  .app-phone {
    order: 1;
  }

  .app-content {
    order: 2;
  }
}



/* e-mobility page */

.ecard-section {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  padding: 40px;
  flex-wrap: wrap;
  /* responsive support */
  background: rgba(255, 0, 0, 0)
}

.ecard {
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: 300px;
  height: 55vh;
  text-align: center;
  transition: transform 0.3s ease;
  overflow: hidden;
}

.ecard:hover {
  transform: translateY(-10px);
}

.ecard img {
  width: 100%;
  height: 200px;
}

.ecard h3 {
  margin: 15px 0 10px;
  font-size: 20px;
  color: #333;
}

.ecard p {
  padding: 0 15px;
  color: #555;
  font-size: 14px;
}

.ecard a {
  display: inline-block;
  margin: 15px 0 20px;
  padding: 10px 20px;
  background: red;
  color: #fff;
  border-radius: 25px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.ecard a:hover {
  background: #0056b3;
}

/* Section Styling */
.info-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 35px;
  padding: 50px 20px;
  /* background-color: #f5f7fa; */

}

/* Card Container */
.info-card {
  display: flex;
  align-items: center;
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: 1400px;
  height: 50vh;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-right: 5px solid red;

}

/* Image Section */
.info-image {
  width: 40%;
  margin-left: 20px;

}

.info-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-right: 5px solid red;
  border-radius: 20px;
}

/* Content Section */
.info-content {
  width: 60%;
  padding: 25px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.info-content h2 {
  font-size: 1.6rem;
  color: #222;
  margin: 0;
}

.info-content p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* Button */
.info-btn {
  align-self: flex-start;
  padding: 10px 20px;
  background-color: red;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.info-btn:hover {
  background-color: #0056b3;
}

/* Hover Effect */
.info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

/* 📱 Responsive Design */
@media (max-width: 768px) {
  .info-card {
    flex-direction: column;
    text-align: center;
  }

  .info-image {
    width: 100%;
  }

  .info-image img {
    height: 220px;
    border-right: none;
    border-bottom: 5px solid #007bff;
  }

  .info-content {
    width: 100%;
    align-items: center;
  }

  .info-btn {
    align-self: center;
  }
}

.loop-slider-container {
  position: relative;
  width: 90%;
  margin: 60px auto;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.loop-slider-wrapper {
  overflow: hidden;
  width: 100%;
}

.loop-slider {
  display: flex;
  transition: transform 0.6s ease-in-out;
  margin-bottom: 30px;
}

.loop-card {
  flex: 0 0 calc(33.33% - 20px);
  margin: 0 10px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  padding: 25px;
  text-align: center;
}

.loop-card img {
  width: 70px;
  height: 70px;
  margin-bottom: 15px;
}

.loop-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #333;
}


.loop-card h3 span {
  color: #e41b17;
}

.loop-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.4;
}

.loop-prev-btn,
.loop-next-btn {
  background: #e41b17;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.loop-prev-btn:hover,
.loop-next-btn:hover {
  background: #b51410;
}

.loop-prev-btn {
  margin-right: 15px;
}

.loop-next-btn {
  margin-left: 15px;
}

@media (max-width: 900px) {
  .loop-card {
    flex: 0 0 100%;
  }
}



.drive-section {
  text-align: center;
  padding: 60px 5%;
  font-family: "Poppins", sans-serif;
  height: 70vh;
}

.drive-section h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 40px;
  line-height: 1.4;
}

.drive-section h2 span {
  background-color: #e41b17;
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
}

.drive-card-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.drive-card {
  background: #fff;
  flex: 1 1 calc(25% - 20px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: 25px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.drive-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.drive-card h3 {
  font-size: 1.3rem;
  color: #222;
  position: relative;
  margin-bottom: 15px;
  border-bottom: 2px solid #222;
  display: inline-block;
  padding-bottom: 3px;
}

.drive-card h3 span {
  color: #e41b17;
  font-weight: bold;
}

.drive-card p {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.5;
}

.drive-card img {
  width: 100%;
  max-width: 180px;
  height: auto;
  align-self: center;
  margin-top: auto;
}

@media (max-width: 992px) {
  .drive-card {
    flex: 1 1 calc(50% - 20px);
  }
}

@media (max-width: 600px) {
  .drive-card {
    flex: 1 1 100%;
  }

  .drive-section h2 {
    font-size: 1.6rem;
  }
}

.press-news-section {
  width: 85%;
  margin: 70px auto;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

.press-news-heading {
  font-size: 28px;
  margin-bottom: 40px;
}

.press-news-heading span {
  background: #ff3b30;
  color: #fff;
  padding: 5px 10px;
  border-radius: 4px;
}

.press-news-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: 1.5px solid #eae0e0;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 25px 15px;

}

.press-news-slider {
  display: flex;
  transition: transform 0.6s ease-in-out;
  width: 100%;

}

.press-news-slide {
  min-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding: 30px 40px;
  box-sizing: border-box;

}

.press-news-image img {
  width: 350px;
  height: 30vh;
  border-radius: 8px;
  background-color: rgb(243, 191, 191);
}

.press-news-text {
  max-width: 500px;
  text-align: left;
}

.press-news-text p {
  font-size: 25px;
  font-weight: 500;
  color: #333;
  line-height: 1.6;
}

.press-news-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.dot {
  width: 10px;
  height: 10px;
  background: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background 0.3s;
}

.active-dot {
  background: #ff3b30;
  transform: scale(1.2);
}

.press-news-btn {
  border: 2px solid #000;
  border-radius: 50%;
  background: transparent;
  color: #000;
  font-size: 22px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  display: none;
}

.press-news-btn:hover {
  background: #000;
  color: #fff;
}

@media (max-width: 768px) {
  .press-news-slide {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .press-news-text {
    text-align: center;
  }
}

/* 2-wheeler solution */

.ecard-section1 {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  padding: 40px;
  flex-wrap: wrap;
  /* responsive support */
  background: #f8f9fa;


}

.ecard1 {
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: 300px;
  height: 55vh;
  text-align: center;
  transition: transform 0.3s ease;
  overflow: hidden;
  cursor: pointer;
}

.ecard1:hover {
  transform: translateY(-10px);
}

.ecard1 img {
  width: 80%;
  height: 200px;
  /* object-fit: cover; */
}

.ecard1 h3 {
  margin: 15px 0 10px;
  font-size: 20px;
  color: #333;
}

.ecard1 p {
  padding: 0 15px;
  color: #555;
  font-size: 16px;
}


/* Styles for Understanding Solar section */
.solar-section {
  padding: 80px 20px;
  background: #fff;
  color: #222;
  font-family: inherit
}

.solar-container {
  max-width: 1200px;
  margin: 0 auto
}

.solar-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 90px;
  margin-bottom: 48px
}

.solar-intro {
  flex: 1;
  animation: fadeInUp .8s ease both
}

.solar-title {
  font-size: 32px;
  margin: 0 0 12px;
  font-weight: 800
}

.solar-title .accent {
  background: #e62429;
  color: #fff;
  padding: 6px 10px;
  border-radius: 3px
}

.solar-lead {
  color: #666;
  line-height: 1.7
}

.solar-side-img {
  width: 520px;
  flex: 0 0 520px;
  text-align: right;
  animation: scaleIn .9s ease .15s both
}

.solar-side-img img {
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 20);
}

.solar-main {
  display: flex;
  /* align-items: center; */
  gap: 90px
}

.solar-image-wrap {
  position: relative;
  flex: 0 0 320px
}

.frame-red {
  position: absolute;
  left: -20px;
  top: 20px;
  width: 95%;
  height: 85%;
  background: #e73b36;
  border-radius: 20px;
  z-index: 1
}

.solar-main-img {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(26, 1, 1, 0.56);
  transform: translateY(-12px);
  z-index: 2;
  animation: floatImage 1.2s ease .2s both
}

.solar-content {
  flex: 1;
  animation: fadeInUp .9s ease .2s both
}

.solar-heading {
  font-size: 26px;
  margin: 0 0 12px;
  font-weight: 800
}

.solar-heading .accent {
  background: #e62429;
  color: #fff;
  padding: 6px 10px;
  border-radius: 3px
}

.solar-content p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px
}

.solar-cards {
  display: flex;
  gap: 40px;
  margin-top: 8px;
}

.card {
  cursor: pointer;
  background: #fff;
  border-radius: 10px;
  padding: 18px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  flex: 1;
  position: relative;
  min-height: 110px;
  animation: cardPop .7s ease both
}

/* add vertical gap when cards stack and a small spacing by default */
.card {
  margin-bottom: 18px;
}

.card-num {
  position: absolute;
  left: 8px;
  top: 1px;
  background: #fff;
  color: #e62429;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08)
}

.card h4 {
  margin: 12px 0 8px;
  font-size: 18px
}

.card p {
  color: #666;
  margin: 0;
  line-height: 1.6
}

/* Simple responsive */
@media (max-width:900px) {
  .solar-top {
    flex-direction: column-reverse;
    align-items: flex-start
  }

  .solar-side-img {
    width: 100%;
    text-align: left
  }

  .solar-main {
    flex-direction: column
  }

  .solar-image-wrap {
    width: 100%;
  }

  .frame-red {
    left: -10px;
    top: 20px;
    height: 78%
  }

  .solar-cards {
    flex-direction: column
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(18px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(.98)
  }

  to {
    opacity: 1;
    transform: scale(1)
  }
}

@keyframes floatImage {
  0% {
    transform: translateY(-6px) scale(.99)
  }

  50% {
    transform: translateY(0) scale(1)
  }

  100% {
    transform: translateY(-6px) scale(.99)
  }
}

@keyframes cardPop {
  from {
    opacity: 0;
    transform: translateY(10px) scale(.995)
  }

  to {
    opacity: 1;
    transform: none
  }
}



/* Small utility */
.solar-section .accent {
  display: inline-block
}


/* Panel Types Section */
.panel-types-section {
  padding: 30px 10px;
  /* background: #f8f9fa; */
}

.panel-types-section .section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  font-weight: 700;
}

.panel-types-section .accent {
  background: #e62429;
  color: #fff;
  padding: 6px 12px;
  border-radius: 4px;
  display: inline-block;
}

.panel-types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 30px;
}

.panel-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  animation: fadeInUp 0.8s ease both;
  cursor: pointer;
}

.panel-card:hover {
  transform: translateY(-15px);
}

.panel-image {
  position: relative;
  padding-top: 90%;
  background: #f8f9fa;
  overflow: hidden;
}

.panel-image img {
  position: absolute;
  top: 0;
  left: 0;

  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.panel-card:hover .panel-image img {
  transform: scale(1.05);
}

.panel-card h3 {
  padding: 20px 20px 10px;
  margin: 0;
  font-size: 20px;
  color: #222;
  font-weight: 600;
}

.panel-card p {
  padding: 0 20px 20px;
  margin: 0;
  color: #666;
  line-height: 1.6;
  font-size: 15px;
}

/* Animation delays for cards */
.panel-card:nth-child(2) {
  animation-delay: 0.1s;
}

.panel-card:nth-child(3) {
  animation-delay: 0.2s;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* Responsive Design */
@media (max-width: 900px) {
  .panel-types-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .panel-types-section {
    padding: 40px 20px;
  }

  .panel-types-section .section-title {
    font-size: 26px;
  }
}

/* Styles for the Solar Power Experience section (matching the provided screenshot) */
.solar-power-section {
  padding: 60px 0;
  background: transparent;
}

.solar-container.power-experience {
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px;
  background: #f3f3f3;
  /* light gray surrounding area */
  border-radius: 14px;
}

.power-title {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  color: #222;
  margin: 8px 0 28px;
  line-height: 1.5;
}

.power-highlight {
  background: #e62429;
  /* red highlight */
  color: #fff;
  padding: 6px 12px;
  border-radius: 4px;
  display: inline-block;
}

.power-card-1 {
  display: flex;
  gap: 30px;
  align-items: center;
  background: #fff;
  /* white inner card */
  padding: 32px;
  border-radius: 12px;
}

.power-card-2 {
  display: flex;
  gap: 30px;
  align-items: center;
  background: #fff;
  /* white inner card */
  padding: 32px;
  border-radius: 12px;
}
.power-card-3 {
  display: flex;
  gap: 30px;
  align-items: center;
  background: #fff;
  /* white inner card */
  padding: 32px;
  border-radius: 12px;
}


/* add spacing between the two power cards */
.power-card-1,
.power-card-2 {
  margin-bottom: 22px;
}


.power-image-card {
  flex: 0 0 44%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.power-image-card img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.power-text {
  flex: 1;
  color: #666;
  font-size: 16px;
  line-height: 1.7;
}

.power-text h3 {
  color: #222;
  font-size: 22px;
  margin: 0 0 18px;
}

.power-text p {
  margin: 0 0 14px
}

/* Responsive adjustments */
@media (max-width:900px) {
  .power-card {
    flex-direction: column;
    padding: 20px
  }

  .power-image-card {
    flex-basis: auto;
    width: 100%
  }

  .power-title {
    font-size: 28px
  }
}



/* automative solution */

.smooth-slider-container {
  position: relative;
  width: 100%;
  height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #ffffff;
  margin-top: -100px;
}

.smooth-slider-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.6s ease-in-out;
  width: 95%;
  height: 100%;
  margin-top: 60px;
}

.smooth-slide-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 60%;
  height: 400px;
  margin-left: 40px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgb(130, 121, 121);
  opacity: 0.5;
  transform: scale(0.9);
  transition: all 0.5s ease-in-out;

}

.smooth-slide-card.active-slide {
  opacity: 1;
  transform: scale(1);
  
}




/* .smooth-slide-img {
 width: 80%;
  height: 80%;
} */

 .smooth-slide-img img {
  width: 100%; 
   height: 100%; 
  /* object-fit: cover; */
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
} 


.smooth-slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  gap: 15px;
}

.smooth-prev-btn,
.smooth-next-btn {
  background: #d51c1c;
  color: #fff;
  border: none;
  padding: 10px 16px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  transition: background 0.3s;
  /* display: none; */
  margin-bottom: 40px;
}

.smooth-prev-btn:hover,
.smooth-next-btn:hover {
  background: #555;
}

.smooth-slider-dots {
  display: flex;
  gap: 8px;
  margin-bottom: 40px;
}

.smooth-slider-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #bbb;
  cursor: pointer;
  transition: background 0.3s;
}

.smooth-slider-dots button.active-dot {
  background: #333;
}


.smooth-slide-info {
  /* flex: 1; */
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 14px;
  
}

.smooth-slide-info h2 {
  font-size: 22px;
  margin-bottom: 5px;
  color: #ed1b1b;
}

.smooth-slide-info p {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 10px;
}

/* Column arrangement for specs */
.smooth-slide-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 5px;
}

.smooth-detail-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
  font-size: 15px;
  color: #333;
  line-height: 1.4;
}

.smooth-detail-label {
  font-weight: 600;
  min-width: 100px;
}

.smooth-explore-btn {
  align-self: flex-start;
  margin-top: 15px;
  background: #1c1213;
  color: #fff;
  padding: 8px 18px;
  border: 2px solid #d62828;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s;
}

.smooth-explore-btn:hover {
  background: #d62828;
  transform: translateY(-2px);
}


/* passenger wheeler */

.bp-category-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 20px;
  background-color: #fff;
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid #ddd;
}

.bp-cat-btn {
  background: #fff;
  border: 1px solid #ccc;
  padding: 10px 22px;
  border-radius: 25px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
}

.bp-cat-btn:hover {
  background: #e60000;
  color: #fff;
  border-color: #e60000;
}


.pro-cab-section {
  padding: 40px;
  padding-left: 80px;
  width: 1600px;;
}

.pro-cab-title {
  font-size: 28px;
  font-weight: 600;
  color: #222;
  margin-bottom: 20px;
}

.pro-cab-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
 
}

.pro-cab-left {
  flex: 1;
  display: flex;
  justify-content: center;
}

.car-img {
  width: 90%;
  max-width: 500px;
}

.pro-cab-right {
  flex: 1;
  position: relative;
  overflow: visible;
  /* width: 1000px; */
}



.pro-cab-card {
  /* width: 320px; */
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  padding: 20px;
  margin: 0 10px;
  text-align: center;
  margin-left: 200px;
  margin-right: 200px;
}

.pro-cab-card img {
  width: 100px;
  margin-bottom: 10px;
}

.pro-cab-card button {
  background: #ff2b2b;
  color: white;
  border: none;
  padding: 8px 15px;
  border-radius: 6px;
  cursor: pointer;
}

.pro-cab-card button:hover {
  background: #e02020;
}

/* nested dropdown */


.has-nested {
  position: relative;
  list-style: none;
  
}


.has-nested .nested-items {
  display: none;
  position: absolute;
  top: 0;
  left: 100%; 
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  padding: 8px 12px;
  min-width: 160px;
  flex-direction: column;
  gap: 6px;
  z-index: 10;
  
}


.has-nested:hover .nested-items {
  display: flex;
}


.has-nested .nested-items a {
  font-size: 13px;
  color: #333;
  padding: 6px 0;
  text-decoration: none;
  display: block;
}

.has-nested .nested-items a:hover {
  color: #e60000;
  padding-left: 5px;
  transition: 0.3s;
}


.has-nested > a {
  color: #e60000;
  font-weight: bold;
  text-decoration: none;
}

/* on-grid inverter */

.fyf-container {
  width:90%;
  max-width:1200px;
  margin: 0 auto;
  padding:60px 0;
  text-align:center;
}
.fyf-title {
  font-size:2rem;
  margin-bottom:24px;
}
.fyf-buttons {
  display:flex;
  justify-content:center;
  gap:16px;
  margin-bottom:32px;
}
.fyf-btn {
  padding:12px 28px;
  border:2px solid #d7dbe0;
  background:transparent;
  border-radius:50px;
  font-weight:600;
  cursor:pointer;
  transition: all .3s;
}
.fyf-btn.active {
  background:red;
  color:#fff;
  border-color:black;
  box-shadow:0 6px 18px rgba(15,124,255,0.14);
}

/* slider container */
.fyf-slider {
  position:relative;
  overflow:visible;
}
.fyf-track-wrapper {
  overflow:hidden;
  position: relative;
}
.fyf-track {
  display:flex;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
}
.fyf-slide {
  flex:0 0 100%;
  padding:0 12px;
  box-sizing:border-box;
}
.fyf-card {
  background:#fff;
  border-radius:12px;
  box-shadow:0 6px 20px rgba(21,30,41,0.06);
  border:1px solid #e6e9ee;
  height: 450px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.2rem;
  font-weight:700;
  margin:0 auto;
  max-width:800px;
  margin-top: 30px;
  margin-bottom: 30px;
}

/* arrows */
.fyf-arrow {
  position:absolute;
  top:50%;
  transform: translateY(-50%);
  border:none;
  background:rgba(255,255,255,0.9);
  font-size:2rem;
  width:44px;
  height:44px;
  border-radius:50%;
  cursor:pointer;
  box-shadow:0 4px 10px rgba(0,0,0,0.1);
  opacity: 0.5;
  transition: opacity 0.3s;
  z-index: 10;
}
.fyf-arrow.prev { left:10px; }
.fyf-arrow.next { right:10px; }
.fyf-arrow:hover {
  background:red;
  color:#fff;
}

/* dots */
.fyf-dots {
  display:flex;
  justify-content:center;
  gap:10px;
  margin-top:24px;
}
.fyf-dot {
  width:12px;
  height:12px;
  border-radius:50%;
  background:#d7dbe0;
  cursor:pointer;
  transition: transform .3s;
  border: none;
}
.fyf-dot.active {
  background:black;
  transform:scale(1.2);
}
.fyf-arrow.active {
  opacity: 1;
}

/* responsive */
@media(max-width:768px){
  .fyf-card {
    max-width:320px;
    height:200px;
    font-size:1rem;
  }
  .fyf-arrow {
    width:36px;
    height:36px;
    font-size:1.6rem;
  }
}


/* product section  */

.solar-battery-products-section1 {
  background: #fff;
  padding: 40px 0 30px 0;
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.solar-battery-products-title1 {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 32px;
  color: #222;
}
.solar-battery-products-title1 .highlight {
  background: #e62429;
  color: #fff;
  padding: 0 8px;
  border-radius: 4px;
}
.solar-battery-products-grid1 {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-bottom: 24px;
}
.solar-battery-product-card1 {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
  width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 18px 18px 18px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
.solar-battery-product-card1:hover {
  box-shadow: 0 8px 32px rgba(34, 34, 34, 0.18), 0 1.5px 8px rgba(230, 36, 41, 0.08);
  transform: scale(1.04);
}

.solar-battery-product-card1 img {
  width: 120px;
  height: auto;
  margin-bottom: 18px;
}
.solar-battery-product-info1 {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.solar-battery-product-title1 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #222;
  text-align: center;
  margin-bottom: 6px;
}
.solar-battery-product-model1 {
  font-size: 1rem;
  color: #e62429;
  font-weight: 700;
  margin-bottom: 10px;
}
.solar-battery-product-features1 {
  display: flex;
  gap: 18px;
  font-size: 1rem;
  color: #222;
  margin-bottom: 8px;
}
.solar-battery-product-price1 {
  font-size: 1rem;
  color: #888;
  margin-bottom: 12px;
}
.solar-battery-product-btn1 {
  background: #fff;
  color: #e62429;
  font-size: 1.1rem;
  font-weight: 700;
  border: 2px solid #e62429;
  border-radius: 24px;
  padding: 8px 28px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, color 0.2s;
  margin-bottom: 8px;
}
.solar-battery-product-btn1:hover {
  background: #e62429;
  color: #fff;
}
.solar-battery-products-actions1 {
  display: flex;
  gap: 18px;
  justify-content: center;
  margin-top: 10px;
}

.solar-battery-view-more-btn1, .solar-battery-download-btn1 {
  background: #e62429;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  border-radius: 24px;
  padding: 12px 32px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
}
.solar-battery-view-more-btn1:hover, .solar-battery-download-btn1:hover {
  background: #c51c23;
}
.solar-battery-view-less-btn1, .solar-battery-download-btn1 {
  background: #e62429;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  border-radius: 24px;
  padding: 12px 32px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
}
.solar-battery-view-less-btn1:hover, .solar-battery-download-btn1:hover {
  background: #c51c23;
}
.solar-battery-product-card.hidden1 {
  display: none;
}
