/* ==========================================
   EV GREEN - STYLE.CSS
========================================== */

:root{

    --primary:#00C853;
    --secondary:#1565C0;
    --dark:#1f2937;
    --light:#f8fafc;
    --white:#ffffff;
    --text:#64748b;
    --border:#e5e7eb;

    --shadow:
    0 10px 30px rgba(0,0,0,.08);

    --radius:16px;

}

/* ==========================================
   GLOBAL
========================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;
    overflow-x:hidden;
    background:#fff;
    color:var(--dark);

}

a{
    text-decoration:none;
}

img{
    max-width:100%;
}

.section-padding{
    padding:100px 0;
}

.section-title{

    font-size:42px;
    font-weight:700;
    color:var(--dark);

}

.section-subtitle{

    max-width:700px;
    margin:auto;
    color:var(--text);

}

.section-text{

    color:var(--text);
    line-height:1.9;

}

.section-tag{

    background:#e8fff1;
    color:var(--primary);
    padding:8px 18px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;

}

.section-tag-white{

    background:rgba(255,255,255,.15);
    color:#fff;
    padding:8px 18px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;

}

/* ==========================================
   NAVBAR
========================================== */

.custom-navbar{

    padding:15px 0;
    transition:.3s;

}

.logo-text{

    color:var(--primary);
    font-weight:600;
    font-size:22px;

}

.navbar .nav-link{

    color:var(--dark);
    font-weight:500;
    margin-left:15px;

}

.navbar .nav-link:hover{

    color:var(--primary);

}

/* ==========================================
   BUTTONS
========================================== */

.btn-green{

    background:var(--primary);
    color:#fff;
    border:none;
    padding:12px 28px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;

}

.btn-green:hover{

    background:#00a844;
    color:#fff;
    transform:translateY(-2px);

}

.btn-outline-green{

    border:2px solid var(--primary);
    color:var(--primary);
    border-radius:50px;
    padding:12px 28px;
    font-weight:600;

}

.btn-outline-green:hover{

    background:var(--primary);
    color:#fff;

}

/* ==========================================
   HERO SECTION
========================================== */

.hero-section{

    min-height:100vh;
    display:flex;
    align-items:center;
    padding-top:80px;
    background:#fff;

}

.hero-badge{

    display:inline-block;
    background:#ecfff4;
    color:var(--primary);
    padding:10px 20px;
    border-radius:50px;
    font-weight:600;

}

.hero-title{

    font-size:65px;
    font-weight:800;
    line-height:1.1;
    margin-top:25px;

}

.hero-title span{

    color:var(--primary);

}

.hero-desc{

    margin-top:25px;
    font-size:18px;
    color:var(--text);
    line-height:1.8;

}

.hero-features{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin-top:30px;

}

.hero-features div{

    color:var(--dark);
    font-weight:500;

}

.hero-features i{

    color:var(--primary);
    margin-right:8px;

}

.hero-buttons{

    display:flex;
    gap:15px;
    flex-wrap:wrap;

}

/* ==========================================
   FLOATING IMAGE
========================================== */

.floating-image{

    animation:float 4s ease-in-out infinite;

}

@keyframes float{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-20px);
    }

    100%{
        transform:translateY(0px);
    }

}

/* ==========================================
   COUNTERS
========================================== */

.counter-section{

    padding:80px 0;
    background:#f8fafc;

}

.counter-card{

    background:#fff;
    text-align:center;
    padding:40px 20px;
    border-radius:var(--radius);
    box-shadow:var(--shadow);
    transition:.3s;

}

.counter-card:hover{

    transform:translateY(-10px);

}

.counter-icon{

    width:70px;
    height:70px;
    background:#ecfff4;
    color:var(--primary);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto;
    font-size:28px;

}

.counter-number{

    margin-top:20px;
    font-size:42px;
    color:var(--primary);
    font-weight:700;

}

/* ==========================================
   ABOUT
========================================== */

.about-image img{

    border-radius:20px;

}

.feature-list{

    list-style:none;
    padding-left:0;

}

.feature-list li{

    margin-bottom:12px;
    color:var(--dark);

}

.feature-list i{

    color:var(--primary);
    margin-right:8px;

}

/* ==========================================
   SERVICES
========================================== */

.service-card{

    background:#fff;
    padding:35px;
    border-radius:var(--radius);
    box-shadow:var(--shadow);
    transition:.4s;
    height:100%;

}

.service-card:hover{

    transform:translateY(-12px);

}

.service-icon{

    width:80px;
    height:80px;
    background:#ecfff4;
    color:var(--primary);
    font-size:32px;
    border-radius:20px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:25px;

}

.service-card p{

    color:var(--text);

}

/* ==========================================
   PRODUCTS
========================================== */

.product-card{

    background:#fff;
    padding:30px;
    border-radius:var(--radius);
    box-shadow:var(--shadow);
    transition:.4s;
    height:100%;

}

.product-card:hover{

    transform:translateY(-10px);

}

.product-capacity{

    color:var(--primary);
    font-weight:700;
    margin:15px 0;

}

.product-card ul{

    padding-left:20px;

}

.product-card ul li{

    margin-bottom:10px;
    color:var(--text);

}

/* ==========================================
   WHY US
========================================== */

.why-us-section{

    background:linear-gradient(
    135deg,
    var(--primary),
    var(--secondary));

    padding:100px 0;

}

.why-card{

    background:rgba(255,255,255,.15);
    backdrop-filter:blur(10px);
    text-align:center;
    padding:40px 20px;
    border-radius:20px;
    color:#fff;

}

.why-card i{

    font-size:45px;
    margin-bottom:20px;

}

/* ==========================================
   SOFTWARE
========================================== */

.software-list{

    display:grid;
    gap:15px;
    margin-top:30px;

}

.software-list div{

    font-weight:500;

}

.software-list i{

    color:var(--primary);
    margin-right:10px;

}

/* ==========================================
   INDUSTRIES
========================================== */

.industry-card{

    background:#fff;
    box-shadow:var(--shadow);
    padding:30px;
    border-radius:20px;
    transition:.3s;

}

.industry-card:hover{

    transform:translateY(-8px);

}

.industry-card i{

    font-size:40px;
    color:var(--primary);
    margin-bottom:15px;
    display:block;

}

/* ==========================================
   PROCESS
========================================== */

.process-section{

    background:var(--dark);
    padding:100px 0;

}

.process-card{

    background:#fff;
    border-radius:20px;
    text-align:center;
    padding:30px;

}

.process-card span{

    width:60px;
    height:60px;
    border-radius:50%;
    background:var(--primary);
    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    margin:auto auto 15px;
    font-weight:700;

}

/* ==========================================
   CTA
========================================== */

.cta-section{

    padding:80px 0;

    background:
    linear-gradient(
    135deg,
    var(--primary),
    var(--secondary));

    color:#fff;

}

/* ==========================================
   CONTACT
========================================== */

.contact-section{

    padding:100px 0;
    background:#f8fafc;

}

.contact-form{

    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:var(--shadow);

}

.form-control{

    height:55px;
    border-radius:12px;

}

textarea.form-control{

    height:auto;

}

.contact-info{

    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:var(--shadow);
    min-height: 100%;

}

.contact-info p{

    margin-bottom:20px;

}

.contact-info i{

    color:var(--primary);
    margin-right:10px;

}

/* ==========================================
   FAQ
========================================== */

.accordion-item{

    border:none;
    margin-bottom:15px;
    border-radius:15px !important;
    overflow:hidden;
    box-shadow:var(--shadow);

}

.accordion-button{

    font-weight:600;

}

/* ==========================================
   FOOTER
========================================== */

.footer{

    background:#111827;
    color:#fff;
    padding:70px 0 20px;

}

.footer-links{

    list-style:none;
    padding-left:0;

}

.footer-links li{

    margin-bottom:10px;

}

.footer-links a{

    color:#cbd5e1;

}

.footer-links a:hover{

    color:var(--primary);

}

.social-links a{

    width:45px;
    height:45px;

    background:#1f2937;
    color:#fff;

    border-radius:50%;

    display:inline-flex;
    align-items:center;
    justify-content:center;

    margin-right:10px;

}

.social-links a:hover{

    background:var(--primary);

}

/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:991px){

    .hero-title{

        font-size:48px;

    }

    .section-title{

        font-size:34px;

    }

}

@media(max-width:768px){

    .hero-title{

        font-size:38px;

    }

    .hero-buttons{

        flex-direction:column;

    }

    .hero-features{

        grid-template-columns:1fr;

    }

    .section-padding{

        padding:70px 0;

    }

}

@media(max-width:576px){

    .hero-title{

        font-size:32px;

    }

    .counter-number{

        font-size:32px;

    }

    .section-title{

        font-size:28px;

    }

}

/* Back To Top */

.back-to-top{

    position:fixed;
    bottom:25px;
    right:25px;

    width:45px;
    height:45px;

    background:linear-gradient(
    135deg,
    #00C853,
    #1565C0);

    color:#fff;

    border:none;
    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:22px;

    cursor:pointer;

    box-shadow:
    0 10px 25px rgba(0,0,0,.15);

    opacity:0;
    visibility:hidden;

    transition:.3s;

    z-index:9999;

}

.back-to-top.show{

    opacity:1;
    visibility:visible;

}

.back-to-top:hover{

    transform:translateY(-5px);

}

/* WhatsApp Floating Button */

.whatsapp-float{

    position:fixed;

    left:20px;
    bottom:25px;

    background:#25D366;

    color:#fff;

    border-radius:50px;

    padding:6px 9px;

    display:flex;
    align-items:center;
    gap:10px;

    font-weight:500;

    box-shadow:
    0 10px 25px rgba(37,211,102,.35);

    z-index:9999;

    transition:.3s;

}

.whatsapp-float i{

    font-size:22px;

}

.whatsapp-float:hover{

    color:#fff;

    transform:translateY(-5px);

    box-shadow:
    0 15px 35px rgba(37,211,102,.45);

}

/* Pulse Animation */

.whatsapp-float::before{

    content:'';

    position:absolute;

    inset:0;

    border-radius:50px;

    background:#25D366;

    z-index:-1;

    animation:whatsappPulse 2s infinite;

}

@keyframes whatsappPulse{

    0%{
        transform:scale(1);
        opacity:.6;
    }

    70%{
        transform:scale(1.15);
        opacity:0;
    }

    100%{
        opacity:0;
    }

}

/* Mobile */

@media(max-width:576px){

    .whatsapp-float span{

        display:none;

    }

    .whatsapp-float{

        width:60px;
        height:60px;

        border-radius:50%;

        justify-content:center;

        padding:0;

    }

}