/****************************************
*****************************************
challenges Section
*****************************************
****************************************/

.challenges-section {
  position: sticky;
  top: 0;
  z-index: 2;
  width: 90vw;
  background-color: #fff;
  padding: 8vw 4vw 5vw;
  box-sizing: border-box;
  max-width: 1920px;
  margin: 0 auto;
  margin-top: 60px;
  border-radius: 10px 10px 0px 0px;
}

.challenges-container {
  text-align: center;
  width: 100%;
}

.challenges-container h2 {
  color: #f9435a;
  font-size: 24px;
  margin-bottom: 40px;
  font-weight: 700;
}

.challenges-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 92%;
  margin: 0 auto;
}

.challenges-card {
  background-color: transparent;
  border-right: 1px solid #ddd;
  padding: 0 1.5vw;
  text-align: left;
}

.challenges-card:last-child {
  border-right: none;
}

.challenges-card span img {
  height: 40px;
  margin-bottom: 20px;
}

.challenges-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #000;
}

.challenges-card p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 15px;
  color: #333;
}

.challenges-card a {
  color: #f9435a;
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
}

.challenges-card a:hover {
  text-decoration: underline;
}

@media (max-width: 1080px) {
  .challenges-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .challenges-card {
    border-right: 1px solid #fff;
  }
}

@media (max-width: 768px) {
  .challenges-grid {
    grid-template-columns: repeat(1, 1fr);
    max-width: 500px;
    margin: 0px auto;
  }
  .challenges-section {
    position: relative;
    width: 100vw;
    padding: 8vw 4vw 5vw;
    box-sizing: border-box;
    max-width: 1920px;
    margin: 0 auto;
    border-radius: 0px;
  }
}

/****************************************
*****************************************
Capabilities Section
*****************************************
****************************************/
.capabilities-section {
  color: #000;
  background-color: #f2f2f2;
  padding: 50px 30px;
}

.capabilities-container {
  max-width: 1920px;
  margin: 0 auto;
}

.capabilities-container h2 {
  text-align: center;
  color: var(--Secondary_Black_75, #342e2e);
  margin-bottom: 60px;
}

.capabilities-cards {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.capabilities-card {
  width: 300px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-items: center;
  flex-direction: column;
  gap: 10px;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
}

.capabilities-card img {
  width: 50px;
  height: 50px;
}

.capabilities-card p {
  font-size: 16px;
  text-align: center;
}

/****************************************
*****************************************
Maximize Battery Section
*****************************************
****************************************/
.battery-section {
  position: relative;
  color: #fff;
  overflow: hidden;
}

/* Overlay Effect */
.battery-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  backdrop-filter: blur(2px); /* optional */
  /* Black tint overlay */
  z-index: 1;
}

.battery-container {
  position: relative;
  z-index: 2; /* Makes sure content sits above the overlay */
  padding: 40px 0px 50px 150px;
  background-image: url("../pages/images/maximize-battery-image.png");
  background-size: cover;
  background-position: center;
}

.battery-container h1 {
  font-weight: 400;
  font-size: 32px;
  line-height: 1.7;
}

.battery-container h1 strong {
  font-weight: 700;
}

.battery-table {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
  max-width: 450px;
}

.battery-row {
  display: flex;
  gap: 20px;
  align-items: center;
}

.battery-row p {
  font-size: 19px;
}

.hr-line-full {
  height: 1px;
  background-color: #fff;
}

@media (max-width: 1080px) {
  .battery-container {
    padding-left: 40px;
  }
}

@media (max-width: 768px) {
  .battery-container {
    padding-left: 20px;
  }
  .battery-container h1 {
    text-align: center;
  }
}

@media (max-width: 610px) {
  .battery-container h1 {
    text-align: center;
  }
}

/****************************************
*****************************************
Trust us for battery management Section
*****************************************
****************************************/

.book-call-container {
  background: var(--Primary_Red_10, #fee8ea);
  padding: 40px 0px;
}
.book-call {
  max-width: 1080px;
  margin: 0px auto;
}

.book-call h2 {
  color: var(--Primary_Red_100, #f3182c);
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 30px;
}
