/* Banner page */

.commercial-hero-section {
    min-height: 534px;
    background-image: url('https://evstations.uni-info.co.in/wp-content/themes/evstations/assets/img/commercial-ev-charger/banner-image.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-title {
    color: #333;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero-title .text-success {
    color: #6EB51C !important;
}

.hero-description p {
    color: #323232;
    margin-bottom: 30px;
    letter-spacing: 0.3px;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* second section */
.why-install-section {
    padding: 50px 0;
    background-color: #F1F1F1;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header .title {
    color: #111111;
    letter-spacing: -0.5px;
}

/* Hero Image */
.hero-image-container {
    margin-bottom: 25px;
    text-align: center;
}

.hero-image-container img {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

/* Card Styles */

.why-install-section .feature-card h6{font-size:20px; font-weight: 600;}

.feature-card {
    background: white;
    border-radius: 12px;
    padding: 22px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0px 0px 15px 0px #0000001A;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 13px 20px rgba(0, 0, 0, 0.096);
}

/* Icon Styles */
.icon-box {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    margin-bottom: 10px;
}

.icon-box-green {
    background-color: #00B77B;
}

.icon-box-blue {
    background-color: #0049D7;
}

.icon-box-teal {
    background-color: #00A1CD;
}

/* Card Heading */
.card-heading {
    color: #111111;
    margin-bottom: 15px;
}

/* Card Description */
.card-description,
.card-description p {
    color: #323232;
    margin-bottom: 0;
}

/* CTA Button */
.cta-container {
    text-align: center;
    margin-top: 50px;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

.fade-in-up:nth-child(1) {
    animation-delay: 0.1s;
}

.fade-in-up:nth-child(2) {
    animation-delay: 0.2s;
}

.fade-in-up:nth-child(3) {
    animation-delay: 0.3s;
}

/* third section */
/* .process-header h2 span {
    border-bottom: 2px solid #6EB51C;
    padding-bottom: 5px;
} */

/* Process Cards */
/* section css in style.css  */

/* fourth section */
.section-wrapper {
    background: #f5f5f5;
    border-radius: 12px;
    padding: 40px;
}

.feature-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.feature-list li {
    font-size:18px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.feature-list li::before {
    content: "";
    background-image: url('https://evstations.uni-info.co.in/wp-content/themes/evstations/assets/img/commercial-ev-charger/checkbox.svg');
    background-size: cover;
    background-repeat: no-repeat;
    min-width: 20px;
    min-height: 20px;
    margin-right: 10px;
}

.img-box-ev img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
}

/* copy section */
.feature-section-img {
    background-image: url("https://evstations.uni-info.co.in/wp-content/themes/evstations/assets/img/commercial-ev-charger/commerce-uni-Info.png");
    background-size: cover;
    background-position: center;
}

/* contact us */
.modified-contact-us .contact-inner {
    grid-template-columns: repeat(1, 1fr);
    margin: 0 248px;
}

.fixed-search-bar {
    position: fixed;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    /* responsive width */
    max-width: 900px;
    z-index: 100;
}

.fixed-search-bar form {
    position: relative;
    width: 100%;
}

.fixed-search-bar form input {
    width: 100%;
    height: 54px;
    padding: 12px 50px 12px 30px;
    /* leave right space for icons */
    border-radius: 8px;
    border: 1px solid #6EB51C;
    backdrop-filter: blur(100px);
    color: #323232;
    font-size: 16px;
}

.fixed-search-bar .icon-wrapper {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    display: flex;
    gap: 10px;
}

.fixed-search-bar .icon-wrapper img {
    width: 30px;
    height: 30px;
    cursor: pointer;
}

/* booking section */
/* .book-installation .container {
    background-color: #6EB51C;
    border: 1px solid #2D55000D;
} */

/* media queries */

@media (max-width: 768px) {
    .hero-section {
        background-size: cover;
        background-position: center;
        min-height: 80vh;
    }

    .hero-section::before {
        display: none;
    }

    .hero-title {
        font-size: 32px !important;
    }

    .why-install-section {
        padding: 40px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .feature-card {
        padding: 30px 20px;
        margin-bottom: 25px;
    }

    .section-wrapper {
        padding: 25px;
    }


    .process-title {
        font-size: 28px !important;
    }


    .card-content {
        padding: 20px;
    }

    .card-title {
        font-size: 16px !important;
    }

}

@media (max-width: 576px) {
    .hero-section {
        min-height: 100%;
    }

    .hero-title {
        font-size: 28px !important;
    }

    .btn-request {
        padding: 10px 24px;
        font-size: 14px;
        width: 100%;
        text-align: center;
    }

    .why-install-section {
        padding: 40px 0;
    }

    .section-header {
        margin-bottom: 30px;
    }

    .feature-card {
        padding: 25px 15px;
        margin-bottom: 20px;
    }


    .icon-box {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .btn-book-installation {
        padding: 12px 35px;
        font-size: 14px;
    }

    .process-title {
        font-size: 22px !important;
    }

    .process-cards-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .card-content {
        padding: 18px;
    }

    .card-title {
        font-size: 15px !important;
    }
    
    .modified-contact-us .contact-inner{
        margin: 0;
    }

}