:root{
  --primary:Yellow;
  --green:green;
  --dark:#0f172a;
  --glass:rgba(255,255,255,0.92);
}

html {
  scroll-behavior: smooth;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins',sans-serif;
}

body{
  color:#0f172a;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 30px;
  background: #000;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 22px;
  font-weight: 700;
  color: #FFD700;
}

/* Nav Links */
.nav-menu {
  display: flex;
  gap: 22px;
  align-items: center;
}

.nav-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s;
}

.nav-menu a:hover {
  color: #FFD700;
}

/* Button */
.nav-btn {
  padding: 10px 18px;
  background: #FFD700;
  color: #000;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.nav-btn:hover {
  background: #fff;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: #FFD700;
  transition: 0.3s;
}

/* Hamburger Animation */
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile */
.mobile-btn {
  display: none;
}

@media (max-width: 992px) {
  .desktop-btn {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #111;
    flex-direction: column;
    gap: 5px;
    padding: 25px 0;
    display: none;
  }

  .nav-menu.active {
    display: flex;
  }

  .mobile-btn {
    display: inline-block;
    margin-top: 10px;
  }
}
/* HERO */
.hero{
  min-height:100vh;
  background:
    linear-gradient(rgba(0,0,0,.3), rgba(0,0,0,.3)),
    url("/assets/herosection.png");
  background-size:cover;
  background-position:center;
  display:flex;
  align-items:center;
  padding:120px 6% 60px;
}

.hero-box{
  background:var(--glass);
  max-width:560px;
  padding:38px 40px;
  border-radius:28px;
}

.badge{
  background:#e8f8ef;
  color:#15803d;
  padding:8px 14px;
  border-radius:30px;
  font-size:13px;
  font-weight:600;
  margin-bottom:18px;
  display:inline-block;
}

.hero-box h1{
  font-size:42px;
  line-height:1.2;
  margin-bottom:14px;
}

.hero-box h1 span{
  color:var(--green);
}

.hero-box p{
  font-size:15px;
  color:#334155;
  margin-bottom:26px;
}

.partner-btn{
  background:var(--blue);
  color:green;
  padding:14px 26px;
  border-radius:10px;
  text-decoration:none;
  font-weight:600;
  display:inline-block;
}

.full-btn{
  width:max-content;
}

/* ================= MOBILE ================= */
@media(max-width:900px){

  nav{
    position:absolute;
    top:70px;
    left:0;
    width:100%;
    background:#fff;
    flex-direction:column;
    display:none;
    box-shadow:0 10px 30px rgba(0,0,0,.1);
  }

  nav a{
    padding:14px;
    border-bottom:1px solid #eee;
  }

  nav.active{
    display:flex;
  }

  .hamburger{
    display:flex;
  }

  .desktop-btn{
    display:none;
  }

  .hero{
    justify-content:center;
    text-align:center;
    padding:110px 20px 50px;
  }

  .hero-box{
    padding:30px 22px;
  }

  .hero-box h1{
    font-size:30px;
  }

  .full-btn{
    width:100%;
    text-align:center;
  }
}

/* EXTRA SMALL */
@media(max-width:480px){
  .hero-box h1{
    font-size:26px;
  }
}


/* LIVE FLEET STATS */
.fleet-stats{
  background:#f3f8ff;
  padding:80px 6%;
}

.fleet-stats .container{
  max-width:1200px;
  margin:auto;
  text-align:center;
}

.fleet-stats h2{
  font-size:34px;
  font-weight:700;
  margin-bottom:10px;
}

.fleet-stats .subtitle{
  color:#64748b;
  margin-bottom:50px;
}

.stats-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.stat-card{
  background:#fff;
  border-radius:18px;
  padding:30px;
  text-align:left;
  position:relative;
  box-shadow:0 20px 40px rgba(0,0,0,.05);
}

.stat-card h3{
  font-size:34px;
  margin:18px 0 6px;
}

.stat-card span{
  color:#475569;
  font-size:15px;
}

.icon{
  width:48px;
  height:48px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
}

.icon.blue{
  background:#e8f0ff;
  color:#2563eb;
}

.icon.green{
  background:#e8f8ef;
  color:#16a34a;
}

.live{
  position:absolute;
  top:20px;
  right:20px;
  font-size:13px;
  color:#22c55e;
  font-weight:600;
}

/* RESPONSIVE */
@media(max-width:900px){
  .stats-grid{
    grid-template-columns:1fr;
  }

  .stat-card{
    text-align:center;
  }

  .icon{
    margin:auto;
  }

  .live{
    position:static;
    margin-top:10px;
  }
}

/* WHATSAPP FLOAT */
.whatsapp-float{
  position:fixed;
  bottom:22px;
  right:22px;
  width:56px;
  height:56px;
  background:#25d366;
  color:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:26px;
  text-decoration:none;
  box-shadow:0 10px 30px rgba(0,0,0,.25);
  z-index:999;
}


/* TRACKING SYSTEM */
.tracking-section{
  background:#f3f8ff;
  padding:80px 6%;
}

.tracking-section .container{
  max-width:1200px;
  margin:auto;
  text-align:center;
}

.tracking-section h2{
  font-size:34px;
  font-weight:700;
  margin-bottom:50px;
}

.tracking-section h2 span{
  color:#2563eb;
}

.tracking-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.tracking-card{
  position:relative;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 20px 40px rgba(0,0,0,.08);
  cursor:pointer;
}

.tracking-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  filter:grayscale(20%);
}

.play-btn{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  width:70px;
  height:70px;
  background:#2563eb;
  color:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  transition:.3s;
}

.tracking-card:hover .play-btn{
  transform:translate(-50%,-50%) scale(1.1);
}

/* MODAL */
.video-modal{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.7);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:999;
}

.video-box{
  width:90%;
  max-width:800px;
  background:#000;
  border-radius:12px;
  position:relative;
  overflow:hidden;
}

.video-box iframe{
  width:100%;
  height:450px;
  border:none;
}

.close-btn{
  position:absolute;
  top:10px;
  right:15px;
  color:#fff;
  font-size:28px;
  cursor:pointer;
}

/* RESPONSIVE */
@media(max-width:900px){
  .tracking-grid{
    grid-template-columns:1fr;
  }

  .video-box iframe{
    height:280px;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

.investment-section {
  padding: 80px 20px;
  background: #f7faff;
}

.container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.subtitle {
  color: #555;
  margin-bottom: 50px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.card {
  background: #fff;
  padding: 25px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  text-align: left;
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
}

.step {
  width: 40px;
  height: 40px;
  background: #22c55e;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-bottom: 15px;
}

.card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.card h3 span {
  color: #22c55e;
}

.card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.card img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

/* 🔹 Responsive */
@media (max-width: 1024px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  h2 {
    font-size: 28px;
  }
  .cards {
    grid-template-columns: 1fr;
  }
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

.why-partner {
  padding: 60px 20px;
  background: #ffffff;
}

.why-container {
  max-width: 900px;
  margin: auto;
  background: linear-gradient(90deg, #f0fff6, #f7fffb);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
}

.icon {
  width: 40px;
  height: 40px;
  background: #22c55e;
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.header h3 {
  color: black;
  font-size: 22px;
}

.points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.points li {
  background: #ffffff;
  padding: 15px 18px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.points li:hover {
  transform: translateX(6px);
}

.dot {
  width: 10px;
  height: 10px;
  background: #22c55e;
  border-radius: 50%;
  flex-shrink: 0;
}

/* 🔹 Responsive */
@media (max-width: 600px) {
  .header h3 {
    font-size: 18px;
  }
  .points li {
    font-size: 14px;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

.fleet-section {
  padding: 60px 20px;
  background: #ffffff;
  overflow: hidden;
}

.fleet-header {
  text-align: center;
  margin-bottom: 30px;
}

.fleet-header h2 {
  font-size: 32px;
  font-weight: 600;
}

.fleet-header h2 span {
  color: #22c55e;
}

.fleet-header p {
  color: #666;
  margin-top: 8px;
}

.fleet-slider {
  width: 100%;
  overflow: hidden;
}

.fleet-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scroll 30s linear infinite;
}

.fleet-track img {
  width: 220px;
  height: 380px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.fleet-track img:hover {
  transform: scale(1.05);
}

/* Auto scroll animation */
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* 🔹 Responsive */
@media (max-width: 768px) {
  .fleet-header h2 {
    font-size: 24px;
  }
  .fleet-track img {
    width: 160px;
    height: 300px;
  }
}

@media (max-width: 480px) {
  .fleet-track img {
    width: 140px;
    height: 260px;
  }
}

/* SECTION */
.why-ev {
  position: relative;
  background: url("/assets/ozo\ scooty.png") center/cover no-repeat;
  padding: 80px 20px;
  overflow: hidden;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.85);
  z-index: 1;
}

.container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: auto;
}

/* TITLE */
.section-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
  font-weight: 700;
}

.section-title span {
  color: #19b36b;
  position: relative;
}

.section-title span::after {
  content: "";
  width: 60%;
  height: 3px;
  background: #19b36b;
  position: absolute;
  bottom: -8px;
  left: 20%;
}

/* CONTENT */
.content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* LEFT GRID */
.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  flex: 1;
}

.info-card {
  background: #fff;
  padding: 22px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

.icon {
  font-size: 26px;
  margin-bottom: 10px;
}

.info-card h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}

.info-card p {
  font-size: 14px;
  color: #555;
}

/* RIGHT IMAGE */
.image-area {
  flex: 1;
  text-align: right;
}

.image-area img {
  max-width: 100%;
  height: auto;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .content {
    flex-direction: column;
  }

  .image-area {
    text-align: center;
  }
}

@media (max-width: 600px) {
  .info-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 28px;
  }
}

/* SECTION */
.investment {
  padding: 80px 20px;
}

.container {
  max-width: 1100px;
  margin: auto;
}

.title {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 40px;
}

.title span {
  color: #19b36b;
}

/* CARD */
.investment-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #cfe6ff;
  padding: 30px;
}

/* ROW */
.investment-row {
  display: flex;
  align-items: center;
  gap: 30px;
}

.investment-row.reverse {
  flex-direction: row-reverse;
}

.image-box img {
  width: 260px;
  border-radius: 12px;
  object-fit: cover;
}

/* CONTENT */
.content-box h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.desc {
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* STATS */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 15px;
}

.stats.small {
  grid-template-columns: repeat(3, 1fr);
}

.stats h4 {
  color: #19b36b;
  font-size: 18px;
}

.stats span {
  font-size: 12px;
  color: #666;
}

/* LINK */
.link {
  font-size: 14px;
  color: #0d6efd;
  text-decoration: none;
  font-weight: 500;
}

hr {
  margin: 30px 0;
  border: none;
  border-top: 1px solid #eee;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .investment-row,
  .investment-row.reverse {
    flex-direction: column;
    text-align: center;
  }

  .image-box img {
    width: 100%;
    max-width: 320px;
  }

  .stats,
  .stats.small {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 500px) {
  .title {
    font-size: 26px;
  }
}

.partners {
  padding: 70px 20px;
  background: #fff;
  text-align: center;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.title {
  font-size: 32px;
  font-weight: 700;
}

.title span {
  color: #19b36b;
}

.subtitle {
  font-size: 14px;
  color: #666;
  margin: 10px 0 40px;
}

/* MARQUEE */
.marquee {
  overflow: hidden;
  width: 100%;
}

.marquee-track {
  display: flex;
  width: fit-content;
  animation: marquee 20s linear infinite;
}

/* LOGO CARD */
.logo {
  flex: 0 0 auto;
  width: 180px;
  height: 80px;
  margin: 0 10px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e5e5e5;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.logo img {
  max-width: 120px;
  max-height: 70px;
  object-fit: contain;
}

/* 🔥 PERFECT INFINITE LOOP */
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .logo {
    width: 140px;
    height: 70px;
  }

  .title {
    font-size: 26px;
  }
}

.projection {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.badge {
  display: inline-block;
  background: #eaf2ff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
}

h2 {
  margin: 15px 0 30px;
}
h2 span { color: #2563eb; }

.card {
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.card-title {
  background: #f1f5ff;
  padding: 12px;
  border-radius: 10px;
  font-weight: 600;
}

.sliders {
  margin: 20px 0;
}

.slider-group {
  margin-bottom: 15px;
}

.slider-group label {
  display: block;
  text-align: left;
  font-size: 14px;
}

.slider-group input {
  width: 100%;
}

.output {
  text-align: right;
  font-weight: 600;
}

.table {
  margin-top: 20px;
}

.thead, .trow {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  align-items: center;
  padding: 12px;
}

.thead {
  background: #f4f8ff;
  font-weight: 600;
}

.trow {
  border-bottom: 1px solid #eee;
}

.speed { color: #16a34a; }

.yes { color: green; }
.no { color: red; }
.low { color: green; }
.high { color: red; }

.highlight {
  background: #f0fff7;
  font-weight: 600;
}

.note {
  font-size: 12px;
  margin-top: 10px;
  color: #555;
}

/* Responsive */
@media(max-width:768px) {
  .thead, .trow {
    grid-template-columns: 1fr;
    gap: 6px;
    text-align: left;
  }
}

.investment-section {
  background: #f4f9ff;
  padding: 60px 15px;
  font-family: 'Poppins', sans-serif;
}

.card {
  max-width: 1100px;
  margin: auto;
  background: #fff;
  padding: 35px;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,.08);
}

.badge {
  display: inline-block;
  background: #eaf3ff;
  color: #0066ff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 10px;
}

h2 {
  font-size: 28px;
  margin-bottom: 25px;
}
h2 span { color: #0066ff; }

/* Controls */
.controls {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.control label {
  font-size: 14px;
  color: #555;
}

.range-wrap {
  display: flex;
  align-items: center;
  gap: 15px;
}

input[type=range] {
  width: 100%;
}

.value-box {
  background: #f0f4ff;
  padding: 8px 14px;
  border-radius: 10px;
  font-weight: 600;
  white-space: nowrap;
}

/* Table */
.table {
  border-radius: 14px;
  overflow: hidden;
}

.row {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  text-align: center;
  padding: 14px;
  border-bottom: 1px solid #eee;
  font-size: 14px;
}

.row.header {
  background: #f6faff;
  font-weight: 600;
}

.ev {
  color: #18a558;
  font-weight: 600;
}

.yes { color: green; }
.no { color: red; }
.low { color: green; }
.high { color: red; }

.note {
  margin-top: 12px;
  font-size: 12px;
  color: #777;
}

/* Responsive */
@media(max-width: 768px) {
  .controls {
    grid-template-columns: 1fr;
  }

  .row {
    font-size: 12px;
  }
}


.investment-box {
  max-width: 900px;
  margin: 40px auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  overflow: hidden;
}

.header {
  background: yellow;
  color: #fff;
  padding: 18px 25px;
  display: flex;
  justify-content: space-between;
}

.body {
  padding: 25px;
}

.slider-row {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 25px;
}

.slider-area {
  flex: 1;
}

label {
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
}

input[type="range"] {
  width: 100%;
}

.scale {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: #666;
}

.principal {
  min-width: 200px;
  text-align: right;
}

.principal h2 {
  color: #2563eb;
}

.data-list {
  list-style: none;
  padding: 0;
}

.data-list li {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid #eee;
  font-size: 14px;
}

.highlight {
  color: #2563eb;
  font-weight: 700;
}

.footer {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.footer button {
  background: #eaf1ff;
  color: #2563eb;
  border: none;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
}

@media(max-width: 768px) {
  .slider-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .principal {
    text-align: left;
  }
}

.partner-cta {
  width: 100%;
  padding: 60px 16px;
  background: linear-gradient(135deg, #eef9ff, #f6fbff);
  display: flex;
  justify-content: center;
  align-items: center;
}

.partner-btn {
  background: linear-gradient(135deg, green);
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(47, 128, 255, 0.3);
  transition: all 0.3s ease;
  text-align: center;
  white-space: nowrap;
}

.partner-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(47, 128, 255, 0.4);
}

/* 📱 Mobile Responsive */
@media (max-width: 768px) {
  .partner-btn {
    width: 100%;
    max-width: 320px;
    font-size: 16px;
    padding: 14px 24px;
  }
}

.how-start {
  padding: 80px 16px;
  background: #f8fafc;
}

.how-start .container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.how-start h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 10px;
}

.how-start .subtitle {
  font-size: 16px;
  color: #6b7280;
  margin-bottom: 50px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Card */
.step-card {
  background: #f1f7ff;
  border-radius: 16px;
  padding: 24px;
  text-align: left;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.step-number {
  width: 44px;
  height: 44px;
  background: #2f80ff;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.step-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 14px;
  color: #4b5563;
  margin-bottom: 18px;
  line-height: 1.5;
}

.step-card img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

/* 📱 Responsive */
@media (max-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .how-start h2 {
    font-size: 26px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .step-card {
    padding: 20px;
  }
}

.partners {
  padding: 80px 16px;
  background: #f4f8ff;
}

.partners-container {
  max-width: 1100px;
  margin: auto;
}

.partners h2 {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 50px;
}

/* Card Layout */
.partner-box {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 32px;
  border-radius: 26px;
  margin-bottom: 28px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.logo-left img {
  width: 120px;
  height: 120px;
  object-fit: contain;
}

.logo-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.logo-right img {
  max-width: 90px;
  object-fit: contain;
}

/* Text */
.partner-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.partner-content p {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.6;
}

/* Background Variants */
.partner-box.peach {
  background: #fff2e8;
}

.partner-box.green {
  background: #eefbf3;
}

.partner-box.blue {
  background: #eaf3ff;
}

/* 📱 Responsive */
@media (max-width: 900px) {
  .partner-box {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .logo-left img {
    margin: auto;
  }

  .logo-right {
    flex-direction: row;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .partners h2 {
    font-size: 24px;
  }

  .partner-content h3 {
    font-size: 16px;
  }

  .partner-content p {
    font-size: 13px;
  }
}

.testimonial-section {
  padding: 80px 20px;
  text-align: center;
  background: #fff;
}

.testimonial-section h2 {
  font-size: 36px;
  font-weight: 700;
}

.testimonial-section h2 span {
  color: #22c55e;
}

.subtitle {
  margin-top: 10px;
  color: #6b7280;
}

.testimonial-wrapper {
  margin-top: 50px;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  gap: 30px;
  animation: scroll 35s linear infinite;
}

.testimonial-wrapper:hover .testimonial-track {
  animation-play-state: paused;
}

.testimonial-card {
  min-width: 320px;
  max-width: 320px;
  border: 2px solid #3b82f6;
  border-radius: 20px;
  padding: 30px;
  text-align: left;
  background: #fff;
}

.quote {
  font-size: 40px;
  color: #22c55e;
  font-weight: bold;
}

.testimonial-card p {
  color: #374151;
  line-height: 1.6;
  margin: 15px 0 25px;
}

.user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.user img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
}

.user h4 {
  margin: 0;
  font-size: 15px;
}

.user span {
  font-size: 12px;
  color: #22c55e;
  font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .testimonial-card {
    min-width: 280px;
  }
}

.fleet-section {
  padding: 80px 20px;
  background: #ffffff;
}

.fleet-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 50px;
}

.fleet-content {
  flex: 1;
}

.fleet-content h2 {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 700;
}

.fleet-content h2 span {
  color: #3b82f6;
}

.fleet-content p {
  margin: 20px 0 30px;
  color: #6b7280;
  max-width: 480px;
}

.fleet-btn {
  padding: 14px 28px;
  background: #3b82f6;
  color: #fff;
  border: none;
  border-radius: 30px;
  font-size: 15px;
  cursor: pointer;
  align-items: center;
}

.fleet-card {
  flex: 1;
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: 320px;
}

.fleet-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fleet-overlay {
  position: absolute;
  inset: 0;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.1)
  );
  color: #fff;
}

.fleet-top {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  text-transform: uppercase;
}

.phase {
  color: #22c55e;
  font-weight: 600;
}

.fleet-count {
  margin: 12px 0 10px;
  font-size: 14px;
}

.fleet-count strong {
  font-size: 20px;
}

.progress-bar {
  width: 100%;
  height: 6px;
  background: rgba(255,255,255,0.3);
  border-radius: 10px;
}

.progress-bar span {
  display: block;
  width: 27%;
  height: 100%;
  background: #22c55e;
  border-radius: 10px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .fleet-container {
    flex-direction: column;
    text-align: center;
  }

  .fleet-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .fleet-content h2 {
    font-size: 32px;
  }

  .fleet-card {
    width: 100%;
  }
}

.city-section {
  padding: 70px 20px;
  background: #ffffff;
  max-width: 1200px;
  margin: auto;
}

.city-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 40px;
}

.city-title span {
  color: green;
}

.city-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.city-card {
  background: #fff;
}

.city-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 18px;
}

.city-card.large img {
  height: 200px;
}

.city-card h3 {
  margin: 14px 0 6px;
  font-size: 15px;
  font-weight: 700;
}

.city-info {
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 6px;
}

.progress {
  height: 4px;
  background: #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
}

.progress span {
  display: block;
  height: 100%;
  background: green;
}

.spots-left {
  font-size: 12px;
  color: black;
  margin-top: 6px;
  font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .city-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .city-grid {
    grid-template-columns: 1fr;
  }

  .city-title {
    font-size: 24px;
  }
}

.fleet-section {
  padding: 60px 20px;
  background: #ffffff;
}

.fleet-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.fleet-container h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

.fleet-container h2 span {
  color: #1db954;
}

.fleet-container p {
  color: #555;
  max-width: 720px;
  margin: 0 auto 25px;
  font-size: 16px;
  line-height: 1.6;
}

.fleet-btn {
  display: inline-block;
  padding: 12px 30px;
  background: #1db954;
  color: #fff;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.fleet-btn:hover {
  background: #17a74a;
}

/* Gallery */
.fleet-gallery {
  margin-top: 40px;
}

.fleet-main img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
}

/* Grid */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 15px;
}

.fleet-grid img {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 900px) {
  .fleet-container h2 {
    font-size: 28px;
  }

  .fleet-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .fleet-grid {
    grid-template-columns: 1fr;
  }

  .fleet-container h2 {
    font-size: 24px;
  }

  .fleet-container p {
    font-size: 14px;
  }
}

.partners-section {
  padding: 80px 20px;
  background: #f6f6f6;
  text-align: center;
}

.partners-section h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.partners-section p {
  font-size: 16px;
  color: #666;
  margin-bottom: 40px;
}

.logo-marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.logo-track {
  display: flex;
  width: max-content;
  animation: scrollLogos 20s linear infinite;
}

.logo-item {
  min-width: 180px;
  height: 80px;
  background: #ffffff;
  border-radius: 14px;
  margin-right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.logo-item img {
  max-width: 140px;
  max-height: 40px;
  object-fit: contain;
}

/* Infinite smooth scroll */
@keyframes scrollLogos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* 📱 Mobile */
@media (max-width: 768px) {
  .partners-section h2 {
    font-size: 24px;
  }
  .logo-item {
    min-width: 140px;
    height: 70px;
  }
}

.stats-section {
  background: #f8f9f5;
  padding: 80px 20px;
}

.stats-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.stat-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 35px 25px;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-6px);
}

/* brackets */
.stat-card::before,
.stat-card::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  border: 3px solid #ffcc00;
}

.stat-card::before {
  top: 18px;
  left: 18px;
  border-right: none;
  border-bottom: none;
}

.stat-card::after {
  bottom: 18px;
  right: 18px;
  border-left: none;
  border-top: none;
}

.icon {
  font-size: 36px;
  color: #ffcc00;
  margin-bottom: 10px;
}

.number {
  font-size: 42px;
  font-weight: 800;
  color: #111;
}

.label {
  margin-top: 6px;
  font-size: 16px;
  color: #333;
  font-weight: 600;
}

.label span {
  font-size: 13px;
  font-weight: 500;
  color: #777;
}

/* big last card */
.stat-card.wide {
  grid-column: span 3;
  background: linear-gradient(135deg, #111, #222);
}

.stat-card.wide .number,
.stat-card.wide .label,
.stat-card.wide .icon {
  color: #ffcc00;
}

/* Responsive */
@media (max-width: 992px) {
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-card.wide {
    grid-column: span 2;
  }
}

@media (max-width: 576px) {
  .stats-container {
    grid-template-columns: 1fr;
  }
  .stat-card.wide {
    grid-column: span 1;
  }
}

.faq-section {
  padding: 80px 20px;
}

.faq-section h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
}

.faq-container {
  max-width: 900px;
  margin: auto;
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.faq-item {
  border-bottom: 1px solid #e5e7eb;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 15px;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question .icon {
  font-size: 22px;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 15px;
  font-size: 16px;
  color: #555;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

/* Active state */
.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 15px 20px;
}

.faq-item.active .icon {
  transform: rotate(180deg);
}

/* Responsive */
@media (max-width: 600px) {
  .faq-section h2 {
    font-size: 28px;
  }
  .faq-question {
    font-size: 16px;
  }
}

.site-footer {
  background: #f3f6fb;
  padding: 60px 20px 30px;
  color: #333;
  font-family: "Segoe UI", sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-col h4 {
  font-size: 16px;
  margin-bottom: 15px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-col ul li a {
  color: #333;
  text-decoration: none;
}

.footer-col ul li a:hover {
  text-decoration: underline;
}

.footer-col .highlight {
  color: #1e6bff;
  font-weight: 600;
}

/* Brand */
.footer-col.brand img {
  margin-bottom: 12px;
}

.footer-col.brand .tagline {
  font-size: 14px;
  margin-bottom: 15px;
}

.footer-col.brand .company {
  font-size: 13px;
  line-height: 1.6;
}

.footer-col.brand .gst {
  font-size: 13px;
  margin-top: 8px;
}

.footer-col.brand .note {
  margin-top: 10px;
  font-size: 12px;
  opacity: 0.7;
}

/* Contact */
.footer-col .contact li {
  font-size: 14px;
}

/* Bottom */
.footer-bottom {
  border-top: 1px solid #dcdfe6;
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  font-size: 14px;
}

.footer-bottom small {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  opacity: 0.7;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}

/* ===== CONTACT FORM ===== */

.ozo-form-wrap{
  padding:90px 20px;
  background:#f6f8fb;
  display:flex;
  justify-content:center;
}

.ozo-form-card{
  width:100%;
  max-width:420px;
  background:#111;
  padding:35px;
  border-radius:18px;
  box-shadow:0 20px 60px rgba(0,0,0,0.25);
  text-align:center;
}

.ozo-form-card h2{
  color:#fff;
  margin-bottom:6px;
}

.ozo-form-card p{
  color:#bbb;
  font-size:14px;
  margin-bottom:20px;
}

.ozo-form-card input,
.ozo-form-card select{
  width:100%;
  padding:12px;
  margin:8px 0;
  border:none;
  border-radius:8px;
  background:#1e1e1e;
  color:#fff;
}

.ozo-form-card button{
  width:100%;
  padding:13px;
  margin-top:12px;
  border:none;
  border-radius:8px;
  background:#00c853;
  color:white;
  font-weight:600;
  cursor:pointer;
}

.ozo-form-card button:hover{
  background:#00e676;
}
