*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
color:#222;
line-height:1.6;
}

/* NAVBAR */

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 8%;
background:#fff;
position:sticky;
top:0;
z-index:1000;
box-shadow:0 2px 10px rgba(0,0,0,0.05);
}

.logo img{
height:60px;
display:block;
}

.nav-links{
display:flex;
gap:28px;
align-items:center;
}

.nav-links a{
text-decoration:none;
color:#333;
font-weight:500;
}

.partner-btn{
border:2px solid #19c37d;
padding:8px 18px;
border-radius:30px;
color:#19c37d;
}

.hamburger{
display:none;
font-size:26px;
cursor:pointer;
}

/* HERO WITH BACKGROUND IMAGE */



.hero{
position:relative;
min-height:90vh;

/* zoom out + shift left */
background-image:url("images/Gemini_Generated_Image_s02e27s02e27s02e.png");
background-size: 80%;      /* zoom level (increase = zoom in, decrease = zoom out) */
background-position: 140% center; /* move image left */
background-repeat:no-repeat;

display:flex;
align-items:center;
justify-content:center;
color:#333;
}


.hero::before{
content:"";
position:absolute;
inset:0;
}

.hero-container{
position:relative;
z-index:2;
display:flex;
align-items:center;
gap:40px;
flex-wrap:wrap;
width:100%;
padding:0 8%;
}

.hero-text{
max-width:520px;
}

.trust-hero{
height:100vh; /* full screen */
background:url("images/wal.png") center/cover no-repeat;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
position:relative;
color:#fff;
}

/* dark overlay */
.trust-hero::before{
content:"";
position:absolute;
inset:0;
background:rgba(53, 52, 52, 0.6);
}

/* content */
.trust-overlay{
position:relative;
z-index:2;
max-width:900px;
padding:20px;
}

.trust-hero h2{
font-size:54px;
font-weight:700;
margin-bottom:20px;
letter-spacing:1px;
}

.trust-hero p{
font-size:22px;
line-height:1.7;
}


.tagline{
font-family:'Allura',cursive;
font-size:42px;
margin-bottom:10px;
}

.brand{
font-size:60px;
color:#000000;
font-weight:700;
}

.hero-text p{
margin-top:10px;
font-size:18px;
}

.btn{
display:inline-block;
margin-top:25px;
padding:14px 32px;
border-radius:30px;
background:#19c37d;
color:#000000;
text-decoration:none;
font-weight:600;
}

/* SECTIONS */
.stats-section{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:30px;
padding:60px 8%;
background:#f7f7f7;
}

.stat-card{
background:#fff;
padding:28px 30px;
width:260px;
border-radius:16px;
text-align:center;
transition:0.3s ease;
box-shadow:0 8px 25px rgba(25,195,125,0.25);
border:1px solid rgba(25,195,125,0.15);
}

.stat-card h3{
color:#444;
font-size:28px;
margin-bottom:8px;
}

.stat-card p{
font-size:15px;
color:#444;
}

/* hover effect */
.stat-card:hover{
transform:translateY(-6px);
box-shadow:0 15px 35px rgba(25,195,125,0.45);
}

.section{
padding:70px 8%;
}

.center{
text-align:center;
}

.stats{
display:flex;
justify-content:center;
gap:40px;
flex-wrap:wrap;
padding:40px 10%;
background:#f3f3f3;
text-align:center;
}

.stat h3{
color:#19c37d;
font-size:28px;
}

.cards{
display:flex;
gap:30px;
flex-wrap:wrap;
justify-content:center;
}

.card{
background:#fff;
padding:30px;
width:300px;
border-radius:18px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
text-align:center;
}

.highlight{
border:4px solid transparent;
background:linear-gradient(#fff,#fff) padding-box,
linear-gradient(135deg,#19c37d,#0a7f4f) border-box;
}

.footer{
background:#111;
color:#fff;
text-align:center;
padding:30px;
margin-top:40px;
}

/* MOBILE */

@media(max-width:768px){

.nav-links{
display:none;
flex-direction:column;
position:absolute;
top:70px;
right:0;
background:#fff;
width:200px;
padding:20px;
}

.nav-links.active{
display:flex;
}

.hamburger{
display:block;
}

.hero-container{
flex-direction:column;
text-align:center;
}

.brand{
font-size:44px;
}

.tagline{
font-size:34px;
}
}
/* ===== IMPACT SECTION (TEXT + CARDS ON BG IMAGE) ===== */

.impact-section{
position:relative;
padding:100px 8%;
background:url("images/wallp.png") center/cover no-repeat;
text-align:center;
color:#444;
}

/* overlay */
.impact-section::before{
content:"";
position:absolute;
inset:0;
background:rgba(255, 255, 255, 0.65);
}

.impact-content{
position:relative;
z-index:2;
max-width:850px;
margin:auto;
margin-bottom:50px;
}

.impact-content h2{
font-size:48px;
font-weight:700;
margin-bottom:15px;
letter-spacing:1px;
}

.impact-content p{
font-size:20px;
opacity:0.9;
}

/* cards container */
.impact-stats{
position:relative;
z-index:2;
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:28px;
}

/* cards */
.impact-section .stat-card{
background:rgba(255,255,255,0.95);
color:#222;
/* box-shadow:0 10px 30px rgba(0, 0, 0, 0.35); */
}

/* hover glow */
.impact-section .stat-card:hover{
box-shadow:0 18px 45px rgba(0, 0, 0, 0.65);
transform:translateY(-8px);
}

.footer{
background:#0e0e0e;
color:#fff;
padding:60px 8% 30px;
}

.footer-container{
display:flex;
flex-wrap:wrap;
justify-content:space-between;
gap:40px;
margin-bottom:40px;
}

.footer h3{
color:#19c37d;
margin-bottom:10px;
}

.footer h4{
margin-bottom:12px;
color:#fff;
}

.footer p,
.footer a{
color:#ffffff;
font-size:14px;
text-decoration:none;
display:block;
margin-bottom:8px;
transition:0.3s;
}

.footer a:hover{
color:#c9ffd8;
}

/* team button */
.team-btn{
display:inline-block;
margin-top:10px;
padding:10px 20px;
border-radius:25px;
background:#19c37d;
color:#000000;
font-weight:600;
}

/* bottom bar */
.footer-bottom{
text-align:center;
border-top:1px solid rgba(255,255,255,0.1);
padding-top:20px;
font-size:13px;
color:#888;
}

/* mobile */
@media(max-width:768px){
.footer-container{
flex-direction:column;
}
}

/* PAGE HERO (used in inner pages) */

.page-hero{
height:40vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
 background:linear-gradient(rgba(0, 0, 0, 0.5),rgba(0, 0, 0, 0.5)), 
url("images/head.png") center/cover no-repeat;
color:#ffffff;
}

.page-hero h1{
/* margin-top: -110px; move upward */
font-size:48px;
letter-spacing:1px;
}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,0.08);
  margin-top:30px;
  padding-top:18px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size:14px;
  color:#aaa;
}

.legal-links{
  display:flex;
  align-items:center;
  gap:8px;
  white-space:nowrap; /* keeps in one line */
}

.footer-bottom a{
  color:#aaa;
  text-decoration:none;
  transition:0.3s;
}

.footer-bottom a:hover{
  color:#19c37d;
}

/* mobile */
@media(max-width:600px){
  .footer-bottom{
    flex-direction:column;
    gap:10px;
    text-align:center;
  }
}



.contact-section{
padding:80px 20px;
background:#f9fdfb;
}

.contact-container{
max-width:1100px;
margin:auto;
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
align-items:center;
}

.contact-info h2{
font-size:32px;
margin-bottom:15px;
}

.contact-info p{
color:#555;
margin-bottom:25px;
line-height:1.6;
}

.info-item{
margin-bottom:12px;
font-weight:500;
}

.contact-social a{
display:inline-block;
margin-right:15px;
margin-top:10px;
color:#19c37d;
font-weight:600;
text-decoration:none;
}

.contact-form form{
display:flex;
flex-direction:column;
gap:15px;
}

.contact-form input,
.contact-form textarea{
padding:14px;
border-radius:8px;
border:1px solid #ddd;
font-family:Poppins;
}

.contact-form button{
padding:14px;
border:none;
border-radius:8px;
background:#19c37d;
color:white;
font-weight:600;
cursor:pointer;
transition:0.3s;
}

.contact-form button:hover{
background:#14a76c;
}

@media(max-width:768px){
.contact-container{
grid-template-columns:1fr;
}
}


/* CHARGERS SECTION */
.chargers-section {
  padding: 80px 8%;
  background: #f9fbfd;
}

.section-title {
  text-align: center;
  font-size: 34px;
  margin-bottom: 10px;
}

.section-subtitle {
  text-align: center;
  color: #555;
  max-width: 700px;
  margin: 0 auto 50px;
}

.charger-row {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
}

.charger-row.reverse {
  flex-direction: row-reverse;
}

.charger-image img {
  width: 320px;
  max-width: 100%;
}

.charger-info h3 {
  font-size: 26px;
  margin-bottom: 10px;
}

.charger-info ul {
  margin-top: 15px;
  padding-left: 20px;
}

.charger-info li {
  margin-bottom: 8px;
}

.charger-features {
  text-align: center;
  margin-top: 40px;
}

.charger-features ul {
  columns: 2;
  max-width: 600px;
  margin: 20px auto 0;
  text-align: left;
}

/* MOBILE */
@media(max-width:768px){
  .charger-row {
    flex-direction: column;
    text-align: center;
  }

  .charger-row.reverse {
    flex-direction: column;
  }

  .charger-features ul {
    columns: 1;
  }
}
/* ===== CHARGER PAGE ===== */

.map-section{
  padding:80px 8%;
  text-align:center;
}

.section-title{
  font-size:32px;
  margin-bottom:30px;
}

#map{
  width:100%;
  height:500px;
  border-radius:20px;
  margin-top:20px;
}

/* HERO MOBILE FIX */
@media (max-width: 768px) {

.hero{
    padding-top:120px;
    padding-bottom:80px;
    height:auto;
    background-size:cover;
    background-position:center;
}

.hero-container{
    flex-direction:column;
    text-align:center;
}

.hero-text{
    width:100%;
    padding:0 20px;
}

.brand{
    font-size:40px;
}

.tagline{
    font-size:22px;
}

.hero-text p{
    font-size:16px;
}

}

/* TEAM HEADER */

.team-header{
text-align:center;
padding:100px 10%;
}

.team-header h1{
font-size:40px;
margin-bottom:10px;
}

.team-header p{
color:#666;
font-size:16px;
}


/* TEAM SECTION */

.team-section{
padding:60px 10%;
background:#f9f9f9;
}


/* GRID LAYOUT */

.team-grid{
display:grid;
grid-template-columns:repeat(6,1fr);
gap:40px;
justify-items:center;
}


/* TEAM CARD */

.team-card{
grid-column:span 2;
background:#fff;
padding:30px;
border-radius:15px;
text-align:center;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
transition:0.3s;
max-width:300px;
}

.team-card:hover{
transform:translateY(-8px);
}


/* FIRST TWO CARDS CENTERED */

.team-card:nth-child(1){
grid-column:2 / span 2;
}

.team-card:nth-child(2){
grid-column:4 / span 2;
}


/* IMAGE */

.team-card img{
width:120px;
height:120px;
border-radius:50%;
object-fit:cover;
margin-bottom:15px;
}


/* TEXT */

.team-card h3{
font-size:20px;
margin-bottom:5px;
}

.role{
color:#16a34a;
font-weight:600;
margin-bottom:10px;
}

.bio{
font-size:14px;
color:#555;
}


/* MOBILE RESPONSIVE */

@media (max-width:768px){

.team-grid{
grid-template-columns:1fr;
}

.team-card{
grid-column:auto;
width:100%;
max-width:320px;
margin:auto;
}

}

/* WHY EV PUMP */

.why-section{
padding:90px 8%;
background:#f8f9fb;
text-align:center;
}

.section-title{
font-size:34px;
margin-bottom:10px;
}

.why-sub{
color:#666;
max-width:700px;
margin:auto;
margin-bottom:50px;
line-height:1.6;
}

/* GRID */

.why-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
gap:30px;
}

/* CARD */

.why-card{
background:white;
padding:35px 25px;
border-radius:14px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
transition:0.3s;
}

.why-card:hover{
transform:translateY(-8px);
box-shadow:0 15px 35px rgba(0,0,0,0.12);
}

/* ICON */

.why-icon{
width:60px;
height:60px;
display:flex;
align-items:center;
justify-content:center;
margin:auto;
margin-bottom:15px;
font-size:26px;
border-radius:50%;
background:#e8f5e9;
}

/* TEXT */

.why-card h3{
font-size:18px;
margin-bottom:8px;
}

.why-card p{
font-size:14px;
color:#555;
line-height:1.6;
}


/* MOBILE */

@media(max-width:768px){

.why-section{
padding:70px 6%;
}

.section-title{
font-size:28px;
}

}

/* NETWORK SECTION */

.network-section{
padding:90px 8%;
background:#f7f9fb;
text-align:center;
}

.network-header h2{
font-size:34px;
margin-bottom:10px;
}

.network-header p{
color:#666;
max-width:600px;
margin:auto;
}


/* GRID */

.network-cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
gap:30px;
margin-top:50px;
}


/* CARD */

.network-card{
background:white;
padding:35px 25px;
border-radius:14px;
box-shadow:0 8px 20px rgba(0,0,0,0.06);
transition:0.3s;
}

.network-card:hover{
transform:translateY(-8px);
box-shadow:0 14px 30px rgba(0,0,0,0.12);
}


/* ICON */

.icon{
font-size:40px;
margin-bottom:15px;
}


/* TITLE */

.network-card h3{
margin-bottom:8px;
font-size:20px;
}


/* TEXT */

.network-card p{
font-size:15px;
color:#666;
}


/* INTRO SECTION */

.intro-section{
padding:90px 8%;
background:#f8f9fb;
}

.intro-container{
display:flex;
align-items:center;
justify-content:space-between;
gap:60px;
flex-wrap:wrap;
}


/* INTRO TEXT */

.intro-text{
flex:1;
max-width:520px;
}

.intro-text h2{
font-size:36px;
margin-bottom:15px;
}

.intro-text p{
font-size:17px;
color:#555;
line-height:1.7;
margin-bottom:15px;
}


/* VISION MISSION GRID */

.vision-mission{
flex:1;
display:grid;
grid-template-columns:1fr 1fr;
gap:25px;
}


/* CARDS */

.vm-card{
background:white;
padding:30px;
border-radius:14px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
transition:0.3s;
}

.vm-card:hover{
transform:translateY(-8px);
box-shadow:0 15px 35px rgba(0,0,0,0.12);
}


/* ICON */

.vm-icon{
font-size:36px;
margin-bottom:10px;
}


/* TITLE */

.vm-card h3{
margin-bottom:8px;
font-size:20px;
}


/* TEXT */

.vm-card p{
font-size:15px;
color:#555;
line-height:1.6;
}


/* MOBILE */

@media(max-width:768px){

.intro-container{
flex-direction:column;
text-align:center;
}

.vision-mission{
grid-template-columns:1fr;
}

}


/* TECHNOLOGY SECTION */

.tech-section{
padding:90px 8%;
background:#f8f9fb;
text-align:center;
}

.section-title{
font-size:34px;
margin-bottom:40px;
}

.tech-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
}

.tech-card{
background:white;
padding:35px;
border-radius:14px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
transition:0.3s;
}

.tech-card:hover{
transform:translateY(-8px);
box-shadow:0 15px 40px rgba(0,0,0,0.12);
}

.tech-icon{
font-size:40px;
margin-bottom:12px;
}

.tech-card h3{
margin-bottom:10px;
}

.tech-card p{
color:#555;
line-height:1.6;
}



/* DEPLOYMENT SECTION */

.deployment-section{
padding:90px 8%;
text-align:center;
}

.deploy-sub{
color:#666;
margin-bottom:40px;
}

.deploy-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:35px;
max-width:900px;
margin:auto;
}

/* DEPLOYMENT CARDS */

.deploy-card{
padding:40px;
border-radius:14px;
color:white;
transition:0.3s;
}

/* CAPEX */

.capex{
background:linear-gradient(135deg,#1db954,#00a86b);
}

/* OPEX */

.opex{
background:linear-gradient(135deg,#1c7ed6,#364fc7);
}

.deploy-card:hover{
transform:translateY(-8px);
}

.deploy-card h3{
font-size:24px;
margin-bottom:12px;
}

.deploy-card p{
line-height:1.6;
}



/* MOBILE */

@media(max-width:768px){

.deploy-grid{
grid-template-columns:1fr;
}

}

/* CHARGERS SECTION */

.chargers-section{
padding:100px 8%;
background:#f7f9fb;
}

.section-title{
text-align:center;
font-size:36px;
margin-bottom:10px;
}

.section-subtitle{
text-align:center;
color:#666;
max-width:700px;
margin:auto;
margin-bottom:70px;
line-height:1.6;
}


/* CHARGER ROW */

.charger-row{
display:flex;
align-items:center;
gap:60px;
margin-bottom:80px;
flex-wrap:wrap;
}

.charger-row.reverse{
flex-direction:row-reverse;
}


/* CHARGER IMAGE */

.charger-image img{
width:320px;
border-radius:14px;
box-shadow:0 15px 35px rgba(0,0,0,0.15);
transition:0.3s;
}

.charger-image img:hover{
transform:scale(1.05);
}


/* CHARGER INFO */

.charger-info{
max-width:520px;
}

.charger-info h3{
font-size:26px;
margin-bottom:10px;
}

.charger-info p{
color:#555;
margin-bottom:15px;
line-height:1.6;
}

.charger-info ul{
list-style:none;
padding:0;
}

.charger-info li{
margin-bottom:10px;
padding-left:25px;
position:relative;
color:#444;
}

/* custom bullet */

.charger-info li::before{
content:"⚡";
position:absolute;
left:0;
}


/* FEATURES BOX */

.charger-features{
margin-top:80px;
background:white;
padding:50px;
border-radius:16px;
box-shadow:0 15px 40px rgba(0,0,0,0.08);
max-width:900px;
margin-left:auto;
margin-right:auto;
}

.charger-features h3{
text-align:center;
margin-bottom:30px;
font-size:24px;
}


/* FEATURES GRID */

.charger-features ul{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:15px;
list-style:none;
padding:0;
}

.charger-features li{
background:#f4f6f8;
padding:12px 15px;
border-radius:8px;
font-size:14px;
}


/* MOBILE */

@media(max-width:768px){

.charger-row{
flex-direction:column;
text-align:center;
}

.charger-row.reverse{
flex-direction:column;
}

.charger-image img{
width:260px;
}

.charger-features ul{
grid-template-columns:1fr;
}

.section-title{
font-size:30px;
}

}

/* FLOAT DOWNLOAD BUTTON */

.app-download-wrapper{
position:fixed;
bottom:30px;
right:30px;
z-index:9999;
font-family:'Poppins',sans-serif;
display:flex;
flex-direction:column;
align-items:flex-end;
}

/* MAIN BUTTON */

.download-btn{
background:linear-gradient(135deg,#22c17a,#1fa463);
color:white;
border:none;
padding:14px 24px;
border-radius:40px;
font-size:15px;
font-weight:600;
cursor:pointer;
box-shadow:0 12px 30px rgba(0,0,0,0.25);
transition:0.3s;
}

.download-btn:hover{
transform:translateY(-2px);
box-shadow:0 16px 35px rgba(0,0,0,0.35);
}

/* DROPDOWN */

.app-dropdown{
display:flex;
flex-direction:column;
gap:12px;
margin-bottom:12px;
opacity:0;
transform:translateY(10px);
pointer-events:none;
transition:0.3s;
}

.app-download-wrapper:hover .app-dropdown{
opacity:1;
transform:translateY(0);
pointer-events:auto;
}

/* STORE BUTTON */

.store-option{
display:flex;
align-items:center;
gap:12px;
background:white;
padding:10px 16px;
border-radius:12px;
text-decoration:none;
box-shadow:0 8px 20px rgba(0,0,0,0.2);
transition:0.2s;
}

.store-option:hover{
transform:translateY(-2px);
}

/* ICON */

.store-option img{
width:26px;
height:26px;
}

/* TEXT */

.small{
font-size:11px;
color:#666;
display:block;
}

.big{
font-size:15px;
font-weight:600;
color:#111;
}

/* MOBILE */

@media(max-width:768px){

.download-btn{
padding:12px 20px;
font-size:14px;
}

.store-option{
padding:8px 14px;
}

.big{
font-size:14px;
}

}

.form-success{
display:none;
margin-top:20px;
padding:15px 20px;
background:#e8f8f0;
border-left:5px solid #22c17a;
border-radius:8px;
font-weight:500;
color:#155724;
}
