@import url('header.css');
@import url('hero-section.css');
@import url('feature-section.css');
body {
    font-family: 'Poppins', sans-serif;
}


.section-title {
    text-align: center;
    color: #004d25;
    font-weight: 700;
    margin-bottom: 50px;
}

.product-box {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,.1);
    margin-bottom: 30px;
}

.why-us {
    background:
        linear-gradient(
            rgba(0,50,20,.95),
            rgba(0,50,20,.95)
        );
    color: white;
    padding: 80px 0;
}



/* Product CSS */


.products-section {
    background: #f6f6f6;
}

.section-title {
    font-size: 58px;
    font-weight: 700;
    color: #014421;
    margin-bottom: 10px;
}

.title-border {
    width: 70px;
    height: 5px;
    background: #ffc107;
    display: inline-block;
    border-radius: 20px;
}

.product-card {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    height: 100%;
    transition: .3s;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,.12);
}

.product-img {
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
}

.product-img img {
    max-height: 140px;
    object-fit: contain;
}

.product-card h4 {
    font-size: 25px;
    font-weight: 600;
    color: #082b1a;
    margin-bottom: 15px;
    line-height: 1.4;
}

.product-card p {
    color: #555;
    font-size: 18px;
    line-height: 1.8;
    min-height: 95px;
}

.btn-view {
    display: inline-block;
    background: #014421;
    color: #fff;
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
}

.btn-view:hover {
    background: #ffc107;
    color: #000;
}



/* Why choose section  start */ 


.why-choose-section {
    padding: 80px 0;
    background:
        linear-gradient(
            90deg,
            #001e0f,
            #014421,
            #001e0f
        );
    position: relative;
    overflow: hidden;
}

.why-choose-section::after {
    content: "";
    position: absolute;
    right: 80px;
    top: 50px;
    width: 450px;
    height: 250px;
    background:
        radial-gradient(
            rgba(255,255,255,.10),
            transparent 70%
        );
}

.section-heading {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-heading::after {
    content: "";
    display: block;
    width: 70px;
    height: 4px;
    background: #ffc107;
    margin-top: 15px;
}

.why-box {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.icon-box {
    min-width: 65px;
    height: 65px;
    border: 3px solid #ffc107;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-box i {
    color: #ffc107;
    font-size: 30px;
}

.why-box h5 {
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.why-box p {
    color: #d4d4d4;
    font-size: 17px;
    line-height: 1.8;
}

/* Right Side */

.battery-stage {
    position: relative;
    height: 450px;
}

.glow-ring {
    width: 280px;
    height: 280px;
    border: 8px solid #ffc107;
    border-radius: 50%;
    position: absolute;
    right: 80px;
    top: 10px;
    box-shadow:
        0 0 25px #ffc107,
        0 0 60px #ffc107;
}

.battery-group {
    width: 450px;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 10;
}

/* Why choose section end */



/*counter section */


.counter-section {
    background: #fff;
    border-top: 1px solid #ececec;
    border-bottom: 1px solid #ececec;
}

.counter-box {
    min-height: 130px;
    border-right: 1px solid #e6e6e6;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;

    padding: 35px 20px;
}

.counter-icon i {
    font-size: 58px;
    color: #014421;
}

.counter-content h2 {
    font-size: 58px;
    font-weight: 700;
    color: #014421;
    line-height: 1;
    margin-bottom: 10px;
}

.counter-content p {
    font-size: 22px;
    color: #444;
    margin: 0;
    font-weight: 500;
}




.cta-section {
    background:
        linear-gradient(
            90deg,
            #014421 0%,
            #012d16 35%,
            #8d6a00 70%,
            #ffc107 100%
        );

    padding: 35px 0;
    overflow: hidden;
}

.cta-content h2 {
    color: #fff;
    font-size: 52px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 12px;
}

.cta-content h2 span {
    color: #ffc107;
    display: block;
}

.cta-content p {
    color: rgba(255,255,255,.95);
    font-size: 22px;
    margin: 0;
}

/* Button */

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;

    min-width: 360px;
    height: 95px;

    background: #01331c;
    color: #fff;
    text-decoration: none;

    border-radius: 12px;

    font-size: 32px;
    font-weight: 600;

    transition: .3s;
}

.cta-btn i {
    font-size: 28px;
}

.cta-btn:hover {
    background: #002411;
    color: #fff;
    transform: translateY(-3px);
}



.footer-section {
    background:
        linear-gradient(
            90deg,
            #000000,
            #012a17,
            #000000
        );

    border-top: 4px solid #ffc107;
    padding: 60px 0 30px;
}

/* Logo */

.footer-logo {
    width: 270px;
    margin-bottom: 30px;
}

.footer-about {
    color: #d8d8d8;
    font-size: 19px;
    line-height: 1.9;
    margin-bottom: 30px;
}

/* Titles */

.footer-title {
    color: #fff;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 35px;
}

/* Links */

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 18px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 22px;

    display: flex;
    justify-content: space-between;
}

.footer-links a:hover {
    color: #ffc107;
}

/* Contact */

.contact-list {
    list-style: none;
    padding: 0;
}

.contact-list li {
    color: #fff;
    font-size: 21px;
    margin-bottom: 20px;
    display: flex;
    gap: 15px;
    line-height: 1.7;
}

.contact-list i {
    color: #ffc107;
    font-size: 24px;
    min-width: 25px;
}

/* Social */

.social-links {
    display: flex;
    gap: 18px;
}

.social-links a {
    width: 55px;
    height: 55px;

    border: 2px solid rgba(255,255,255,.4);
    border-radius: 50%;

    display: flex;
    justify-content: center;
    align-items: center;

    color: #fff;
    text-decoration: none;
    font-size: 22px;

    transition: .3s;
}

.social-links a:hover {
    background: #ffc107;
    border-color: #ffc107;
    color: #000;
}

/* Copyright */

.footer-bottom {
    display: flex;
    align-items: center;
    margin-top: 60px;
}

.footer-line {
    flex: 1;
    height: 1px;
    background: #0d7b45;
}

.footer-bottom p {
    color: #cfcfcf;
    font-size: 20px;
    margin: 0 30px;
}