/* ================= HERO BACKGROUND STYLE ================= */

.tw-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url("images/home-page.jpg") no-repeat right center;
    background-size: contain;
    background-color: #111;
    display: flex;
    align-items: center;
    padding: 0 8%;
    overflow: hidden;
}

/* Dark Gradient Overlay */
.tw-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.85) 40%,
        rgba(0,0,0,0.5) 70%,
        rgba(0,0,0,0.1) 100%
    );
}

/* TEXT CONTENT */
.tw-hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    color: #fff;
}

.tw-hero-content h1 {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.2;
}

.tw-hero-content h1 span {
    color: #f4b400;
}

.tw-hero-content p {
    margin: 20px 0 35px;
    font-size: 18px;
    color: #ddd;
    line-height: 1.6;
}

/* BUTTONS */
.tw-hero-buttons {
    display: flex;
    gap: 20px;
}

.btn-primary {
    background: #f4b400;
    color: #000;
    padding: 14px 32px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-primary:hover {
    background: #ffcc33;
    transform: translateY(-3px);
}

.btn-outline {
    border: 2px solid #f4b400;
    color: #f4b400;
    padding: 14px 32px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-outline:hover {
    background: #f4b400;
    color: #000;
}

/* ================= THREE WHEELER SECTION ================= */

.three-ev-performance {
  padding: 100px 20px;
  background: linear-gradient(to bottom, #fff8e1,#ffffff );
}

.container {
  max-width: 1200px;
  margin: auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .badge {
  display: inline-block;
  background: #ffcc00;
  color: #000;
  padding: 6px 16px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 50px;
  margin-bottom: 15px;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #111;
}

.section-header p {
  max-width: 700px;
  margin: auto;
  color: #555;
  font-size: 16px;
  line-height: 1.6;
}

/* Grid */
.three-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* Cards */
.three-feature-card {
  background: #ffffff;
  padding: 35px 25px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid #f0f0f0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  
}

.three-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Icon */
.three-feature-card .icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px auto;
  background: #ffcc00;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 26px;
  color: #000;
  transition: 0.3s ease;
}

.three-feature-card:hover .icon {
  background: #000;
  color: #ffcc00;
}

.three-feature-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #111;
}

.three-feature-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .section-header h2 {
    font-size: 28px;
  }

  .three-ev-performance {
    padding: 70px 15px;
  }
}




/* KYC SECTION */

.kyc-section{
padding:80px 20px;
background: linear-gradient(to bottom, #ffffff,#fff8e1);
}

.kyc-container{
max-width:1300px;
margin:auto;
text-align:center;
}

/* Header */

.kyc-header h2{
font-size:38px;
margin-bottom:10px;
}

.kyc-header p{
color:#666;
max-width:600px;
margin:auto;
margin-bottom:70px;
line-height:1.6;
}
.kyc-header span{
color:#f4b400;
}

/* Flow Layout */

.kyc-flow{
display:flex;
align-items:center;
justify-content:center;
flex-wrap:wrap;
gap:25px;
}


/* Step Card */

.kyc-step{
width:180px;
background:white;
padding:30px 20px;
border-radius:20px;
box-shadow:0 15px 40px rgba(0,0,0,0.08);
transition:all 0.35s ease;
border:1px solid #eee;
}

.kyc-step:hover{
transform:translateY(-8px);
box-shadow:0 25px 60px rgba(0,0,0,0.15);
}


/* Icon Circle */

.kyc-icon{
width:65px;
height:65px;
margin:auto;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
background:linear-gradient(135deg,#f4b400,#ffcc33);
margin-bottom:12px;
}

.kyc-icon svg{
color:white;
width:30px;
height:30px;
}

.kyc-icon.success{
background:linear-gradient(135deg,#22c55e,#4ade80);
}


/* Step Text */

.kyc-step h3{
font-size:18px;
margin-bottom:6px;
}

.kyc-step p{
font-size:14px;
color:#666;
line-height:1.5;
}


/* Arrow Connector */

.kyc-arrow{
width:30px;
height:3px;
background:linear-gradient(90deg,#f4b400,#ffcc33);
position:relative;
}

.kyc-arrow::after{
content:"";
position:absolute;
right:-3px;
top:-2px;
border-left:6px solid #ffcc33;
border-top:4px solid transparent;
border-bottom:4px solid transparent;
}


/* Responsive */

@media(max-width:900px){

.kyc-flow{
flex-direction:column;
}

.kyc-arrow{
width:3px;
height:40px;
}

.kyc-arrow::after{
display:none;
}

}





/* SECTION */

.battery-premium{
padding:100px 20px;
background: linear-gradient(to bottom,#fff8e1,#ffffff);
}


/* HEADER */

.battery-header{
text-align:center;
max-width:720px;
margin:auto;
margin-bottom:90px;
}

.battery-header h2{
font-size:36px;
font-weight:700;
margin-bottom:12px;
}



.battery-header h3{
    font-size: 20px;
}


.battery-header p{
color:#666;
line-height:1.6;
font-size:17px;
}



.battery-header span{
color:#f4b400;
}

/* LAYOUT */

.battery-layout{
max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:1fr 1fr;
gap:90px;
align-items:center;
}


/* FEATURES GRID */

.battery-features{
display:grid;
grid-template-columns:1fr 1fr;
gap:25px;
}


/* CARD */

.battery-card{
background:white;
padding:28px;
border-radius:18px;
box-shadow:0 15px 40px rgba(0,0,0,0.06);
transition:all .35s ease;

display:flex;
flex-direction:column;
align-items:center;
text-align:center;
}

.battery-icon{
width:60px;
height:60px;
background:linear-gradient(#f4b400,#ffcc33);
border-radius:14px;
display:flex;
align-items:center;
justify-content:center;
margin-bottom:12px;
}

.battery-icon svg{
color:black;
width:32px;
height:32px;
}

.battery-card h3{
margin-bottom:8px;
}

.battery-card p{
color:#666;
font-size:15px;
line-height:1.6;
}
/* PRODUCT IMAGE */

.battery-product{
display:flex;
justify-content:center;
}

.battery-product img{
width:400px;
height: 520px;
border-radius:20px;
box-shadow:0 35px 90px rgba(0,0,0,0.18);
}


/* RESPONSIVE */

@media(max-width:900px){

.battery-layout{
grid-template-columns:1fr;
gap:50px;
text-align:center;
}

.battery-features{
grid-template-columns:1fr;
}

}




.ev-section {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background:linear-gradient(to bottom,#ffffff,#fff8e1);
}



/* SECTION */
.ev-section {
  padding: 100px 20px;
  text-align: center;
}

/* CONTAINER */
.ev-container {
  max-width: 950px;
  margin: auto;
}

/* HEADER */
.ev-header h2 {
  font-size: 46px;
  font-weight: 700;
  color: #111;
}

.ev-header span {
  background: linear-gradient(90deg, #f4b400);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ev-header p {
  color: #777;
  margin-top: 10px;
}

/* SLIDER */
.slider-box {
  margin: 60px auto;
}

.slider-label {
  color: #888;
  font-size: 14px;
}

.slider-value {
  font-size: 28px;
  font-weight: 600;
  margin: 10px 0;
}

input[type="range"] {
  width: 100%;
  height: 6px;
  border-radius: 10px;
  background: linear-gradient(to right, #00c896, #ddd);
  outline: none;
}

input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 20px;
  height: 20px;
  background: #00c896;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 15px rgba(0,200,150,0.5);
}

/* RESULT */
.result-box {
  margin: 40px 0;
}

.result-box h1 {
  font-size: 70px;
  color: #00a86b;
  margin: 10px 0;
}

.result-box p {
  color: #777;
}

.profit-tag {
  display: block;
  margin-top: 10px;
  color: #00a86b;
  font-size: 18px;
}

/* GRID */
.card-grid {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
}

/* CARD */
.card {
  flex: 1;
  min-width: 320px;
  background: #FCFCFC;
  padding: 30px;
  border-radius: 20px;
  text-align: left;
  border: 1px solid #eee;
  transition: 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

/* COLORS */
.petrol {
  border-top: 6px solid #ff4d4d;
}

.ev {
  border-top: 6px solid #f4b400;
}

/* TEXT */
.card h3 {
  margin-bottom: 15px;
}

.line {
  height: 2px;
  background: #eee;
  margin: 15px 0;
}

.card p {
  display: flex;
  justify-content: space-between;
  margin: 15px 0;
  color: #444;
}

.total {
  font-weight: 600;
  margin-top: 18px;
}

/* RESPONSIVE */
@media(max-width: 768px) {
  .result-box h1 {
    font-size: 42px;
  }

  .card-grid {
    flex-direction: column;
  }
}





