/* EV Charger Types Section */
.ev-charger-types-section {
    background: #012152;
    color: #ffffff;
    position: relative;
    padding: 80px 0;
}

/* Decorative Element */
.decorative-circles {
    position: absolute;
    top: -106px;
    right: -59px;
    width: auto;
    height: auto;
    max-width: 300px;
    max-height: 300px;
    z-index: 1;
    pointer-events: none;
    overflow: visible;
}

.decorative-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    margin-top: -40px;
    margin-right: -40px;
}

/* Section Title */
.ev-charger-types-title {
    color: #ffffff;
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}


/* Charger Type Card */
.charger-type-card {
    display: flex;
    gap: 30px;
    padding: 30px;
    align-items: flex-start;
    transition: transform 0.3s ease;
}

.charger-type-card:hover {
    transform: translateY(-5px);
}

/* Charger Number */
.charger-number {
    font-family: "Public Sans", sans-serif;
    font-size: 69.17px;
    font-weight: 800;
    font-style: normal;
    color: #FFFFFF;
    line-height: 69.17px;
    letter-spacing: 0;
    text-align: center;
    vertical-align: middle;
    flex-shrink: 0;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Charger Content */
.charger-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

/* Charger Title */
.charger-title {
    font-family: "Public Sans", sans-serif;
    font-size: 28px;
    font-weight: 700; /* Bold */
    line-height: 100%;
    letter-spacing: 0;
    color: #ffffff;
    margin-bottom: 15px;
}

/* Charger Description */
.charger-description {
    font-family: "Public Sans", sans-serif;
    font-size: 16px;
    font-weight: 500; /* Medium */
    line-height: 24px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

/* Read More Link */
.charger-read-more {
    font-family: "Public Sans", sans-serif;
    color: #ffffff;
    text-decoration: none; /* underline handled on inner span to avoid inline-flex issues */
    font-size: 16px;
    font-weight: 700;
    font-style: normal;
    line-height: 24px;
    letter-spacing: 0;
    vertical-align: middle;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Visible underline for the text label */
.charger-read-more-text {
    text-decoration: underline;
    text-decoration-style: solid;
    text-decoration-thickness: 2px; /* make underline visible */
    text-underline-offset: 3px;     /* add space between text and underline */
    text-decoration-skip-ink: auto;
}

.charger-read-more .arrow {
    width: 21px;
    height: 12px; /* explicit height to avoid 0px rendering quirks */
    object-fit: contain;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .ev-charger-types-section {
        padding: 60px 0;
    }

    .ev-charger-types-title {
        font-size: 32px;
        margin-bottom: 40px;
        margin-top: 0;
    }

    .decorative-circles {
        display: none;
    }

    .charger-type-card {
        gap: 20px;
        padding: 20px;
    }

    .charger-number {
        font-size: 48px;
    }

    .charger-title {
        font-size: 24px;
    }

    .charger-description {
        font-size: 14px;
    }

    .charger-read-more {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .ev-charger-types-title {
        font-size: 28px;
    }

    .charger-type-card {
        gap: 15px;
        padding: 15px;
    }

    .charger-number {
        font-size: 36px;
    }

    .charger-title {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .charger-description {
        font-size: 13px;
        margin-bottom: 15px;
    }
}

  /* Info Section */
  .info-section {
    background: #f3f3f6;
    padding: 96px 0;
  }
  
  .info-articles {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    max-width: 1040px;
    margin: 0 auto;
  }
  
  .info-article {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }
  
  .info-article h3 {
    font-weight: 700;
    color: #012152;
    font-size: 30px;
    text-align: center;
    line-height: normal;
  }
  
  .info-article p {
    width: 100%;
    background: linear-gradient(180deg, rgba(1, 33, 82, 1) 0%, rgba(243, 243, 246, 1) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    /* white-space: pre-line; */
  }
  .read-more-dark {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-family: "Public Sans", sans-serif;
    font-weight: 700;
    color: #012152;
    font-size: 16px;
    line-height: 24px;
    text-decoration: none; /* underline applied on inner span */
    white-space: nowrap;
    transition: transform 0.3s;
  }

  .read-more-dark-text {
    text-decoration: underline;
    text-decoration-style: solid;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
    text-decoration-skip-ink: auto;
  }



    /* Services Section */
    .services-section {
        padding: 48px 0;
      }
      
      .text-dark {
        color: #012152;
      }
      
      .text-blue {
        color: #377ffe;
      }

      .section-title {
        text-align: center;
        font-weight: 600;
        color: #012152;
        font-size: 50px;
        line-height: 60px;
        margin-bottom: 44px;
      }

      .info-section .section-title {
        text-align: left;
        max-width: 1040px;
        margin-left: auto;
        margin-right: auto;
      }

      .info-section {
        background: #f3f3f6;
        padding: 96px 0;
      }
      
      .info-articles {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 60px;
        max-width: 1040px;
        margin: 0 auto;
      }
      
      .info-article {
        display: flex;
        flex-direction: column;
        gap: 16px;
        width: 100%;
      }
      
      .info-article h3 {
        font-weight: 700;
        color: #012152;
        font-size: 30px;
        text-align: left;
        line-height: normal;
      }
      
      .info-article p {
        width: 100%;
        background: linear-gradient(180deg, rgba(1, 33, 82, 1) 0%, rgba(243, 243, 246, 1) 100%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        font-weight: 500;
        font-size: 16px;
        line-height: 24px;
        /* white-space: pre-line; */
      }
    