*{
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;
}

}