* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Segoe UI;
}
html {
  scroll-behavior: smooth;
}
body {
  background: #f4f7fb;
  overflow-x: hidden;
  padding-top: 80px;
}

/* #navMenu{
  border: 4px solid red;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 50px;
} */

/* NAVBAR */
.navbar {
  display: flex;
  /* justify-content: space-between; */
  padding: 20px 8%;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  align-items: center;
}

/* nav{
 
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 400px;
} */
 
/* .navbar nav a {
  margin: 0 12px;
  text-decoration: none;
  color: #333;
} */
.btn-orange {
  background: #ff5a2c;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  margin-left: 50px;
  transition: 0.3s;
}
.btn-orange:hover {
  background: #ff4b2b;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 90, 44, 0.3);
}

/* #navMenu .btn-orange {
  background: #ff5a2c;
  color: #fff;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  margin-bottom: 20px;
  transition: 0.3s;
  
} */

.btn-orange:hover {
  background: #ff4b2b;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 90, 44, 0.3);
}

.logo img {
  position: relative;
  top: 20px;
  height: 80px;
  border-radius: 15px;
 
}

/* #navMenu   font-family: 'Inter', sans-serif} */


#main{
  background-image: url("./IMAGE/bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
 
}





/* input///////////////////////////////// */

.ride-card{
width:568px;
height: 400px;
background:#fff;
padding:35px;
border-radius:10px;
box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

.ride-card h3{
font-size:24px;
margin-bottom:20px;
padding-bottom:15px;
border-bottom:1px solid #eee;
}

/* layout */

.ride-form{
display:flex;
gap:12px;
margin-bottom:20px;
}

/* icon column */

.icon-line{
display:flex;
flex-direction:column;
align-items:center;
margin-top:8px;
}

.pickup{
color:#2b3a67;
font-size:18px;
}

.drop{
color:#ff4b2b;
font-size:18px;
margin-top:6px;
}

/* dashed line */

.dashed-line{
height:40px;
border-left:2px dashed #ccc;
margin:4px 0;
}

/* inputs */

.inputs{
flex:1;
display:flex;
flex-direction:column;
gap:32px;
}

.inputs input{
background:#f3f4f6;
border:1px solid #e5e7eb;
padding:12px 14px;
border-radius:8px;
outline:none;
font-size:14px;
}



nav{
display:flex;
align-items:center;
gap:30px;
}

.hamburger{
display:none;
}
/* button */

.book-btn{
width: 95%;
margin-left: 24px;
margin-top: 30px;
background:#ff4b2b;
color:#fff;
border:none;
padding:14px;
border-radius:6px;
font-size:15px;
cursor:pointer;
transition:0.3s;
}

.book-btn:hover{
background:#e33f1f;
}


/* input end////////////// */

/* HERO */
.hero{
  display: flex;
  justify-content: center;
  padding: 100px 8%;
  /* height: 100vh; */
  /* margin-top: 30px;  */

  background:
  linear-gradient(
    40deg,
    rgba(255,120,70,0.35) 0%,
    rgba(255,255,255,0.4) 40%,
    rgba(255,255,255,0) 70%
  );
}
.hero-left h1 {
  font-size: 45px;
  background: linear-gradient(#F34B1C, #183263);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-left h1{
  font-size:45px;
  font-weight:700;

  background: linear-gradient(
  90deg,
  #ff4b2b,
  #2b3a67
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-form {
  background: #fff;
  padding: 60px;
  width: 540px;
  border-radius: 6 px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-form h3 {
  margin-bottom: 20px;
}

.input-box {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 8px;
}
.input-box input {
  border: none;
  outline: none;
  width: 100%;
  margin-left: 10px;
}
.full {
  width: 100%;
}

.hero-form {
  height: 350px;
}



.hero {
  height: 70vh;
}
.hero-icons {
  display: flex;
  gap: 30px;
  margin-left: 15px;
  margin-top: 30px;
}

.hero-icons ::marker {
  color: orangered;
  font-size: 20px;
}




.center {
  font-weight: 700;
  font-style: Bold;
  font-size: 40px;
  color:#183263;
  text-align: center;
  margin-bottom: 10px;
}

.services p{
  text-align: center;
  margin-bottom: 10px;
}

.service-grid {
  padding: 30px 80px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-card {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  border-top: 4px solid #f45a0c;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
   justify-content: flex-start;
  gap: 12px;
}
.service-card {
  text-align: left; /* ✅ add this */
}

.service-card img {
  height: 100px;        /* ✅ fixed height */
  object-fit: contain;  /* image stretch nahi hogi */
  display: block;
  margin-bottom: 10px;
}
.service-card:hover {
  transform: translateY(-8px);
}

.service-card img {
  width: 180px;
  margin-bottom: 4px;
}
.bike img{
  width: 60px;
}
.service-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: #1d2b53;
  margin: 0;
}

.service-card p {
  color: #5b5b5b;
  font-size: 14px;
  line-height: 1.6;
  display: flex;

  /* margin-right: 30px; */
}


.service-card ul {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-card li {
  padding: 0 0 0 22px;
  color: #5b5b5b;
  list-style: none;
  font-size: 14px;
  position: relative;
}
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.modal-box {
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  width: 90%;
  max-width: 800px;
}

.close-btn {
  float: right;
  cursor: pointer;
  font-size: 22px;
}

.sub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px,1fr));
  gap: 15px;
  margin-top: 20px;
}

.sub-card {
  background: #f9f9f9;
  padding: 15px;
  border-radius: 12px;
  text-align: center;
  cursor: pointer;
  transition: 0.3s;
}

.sub-card:hover {
  transform: translateY(-5px);
}

.sub-card img {
  height: 80px;
  object-fit: contain;
}
.service-card li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #ff4b2b;
  font-size: 13px;
}
.services {
  padding-top: 30px;
   background:
  linear-gradient(
    140deg,
    rgba(255,120,70,0.35) 0%,
    rgba(255,255,255,0.4) 40%,
    rgba(255,255,255,0) 70%
  );
}

/* STEPS */
.steps {
  padding: 50px  8%;
  text-align: center;
}
.steps-container {
  display: flex;
  justify-content: space-between;
  /* flex-wrap: wrap; */
}
.circle {
  width: 60px;
  height: 60px;
  background: linear-gradient(90deg, #142952, #3166C9);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto; 
  margin-bottom: 15px;
}

/* WHY */

.why-section {
  padding: 80px 8%;
  background: linear-gradient(135deg, #F34B1C, #1C3C78);
  color: white;
}

.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
 
}

.container1 {
  padding: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* //////////////////////////////////////////////////////////////////// */

/* TITLE */
.how-section h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #183263;
}
.subtitle { 
  /* opacity: 0.9; */
  animation: fadeDown 1.4s ease forwards;
}

/* STEPS LAYOUT */
/* FINAL HOW IT WORKS FIX */

/* .how-section{
text-align:center;
padding:80px 8%;
} */

.steps{
display:flex;
justify-content:center;
gap:40px;

}

.step{
max-width:250px;
text-align:center;
}

.circle{
width:90px;
height:90px;
font-size:28px;
margin:0 auto 20px;
/* transform: scale(1.1); */
  /* box-shadow: 0 0 0 8px rgba(3, 8, 180, 0.2); */
}




/* //////// inspiration page css//////// */

/* Inspirations Page */
.insp-hero{
  background:#E0E9F0;
  text-align:center;
  padding:60px 0;
}

.insp-hero h1 {
  font-size: 45px;
  background: linear-gradient(#F34B1C, #183263);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.insp-hero h1{
  font-size:45px;
  font-weight:700;

  background: linear-gradient(
  90deg,
  #ff4b2b,
  #2b3a67
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Active menu */
/* .navbar nav .active{
  color:#ff4b2b;
  font-weight:bold;
} */


/* Hide hamburger desktop */
.hamburger{
  display:none;
  font-size:28px;
  cursor:pointer;
}




/* ///////////////////// */



/* Hide burger in desktop */
.hamburger{
  display:none;
  font-size:26px;
  cursor:pointer;
}

/* ===== MOBILE ===== */
@media(max-width:768px){

  .hamburger{
    display:block;
  }

  
}

/* //////// inspiration page css//////// */



@media (max-width:768px){

.steps{
flex-direction:column;
gap:30px;
 transform: scale(1.1);

}

.step{
width:100%;
max-width:320px;
margin:auto;
/* background:#fff; */
padding:25px;
border-radius:15px;
margin-bottom: 50px;
/* box-shadow:0 10px 25px rgba(0,0,0,0.08); */
}

/* .circle{
width:70px;
height:70px;
font-size:22px;

} */
 .icon img {
 /* border: 4px solid black; */
 display: block;
}
}


/* HOVER GLOW EFFECT */
 .circle:hover {
  transform: scale(1.1);
  box-shadow: 0 0 0 8px rgba(133, 136, 215, 0.2);
  transition: 0.9;
}

/* TEXT */
.step h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #183263;
}

.step p {
  font-size: 14px;
  opacity: 0.85;
  line-height: 1.5;
  color: #5B5B5B;
}

/* ARROW */
.arrow {
  display: block;
  font-size: 50px;
  font-weight: 400;
  opacity: 0.7;
  animation: fadeUp 1.5s ease forwards;
  transition: transform 0.3s ease;
  /* margin-top: -100px; */
  color: #00000033;
}

.arrow:hover {
  transform: translateX(5px);
}

/* Left Side */
.left-content {
  width: 55%;
}

.left-content h1 {
  font-size: 38px;
  margin-bottom: 40px;
  font-weight: 700;
}

.feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  gap: 20px;
}

.icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.icon img{
  padding: 10px;
}

.feature h3 {
  font-size: 18px;
  margin-bottom: 5px;
}

.feature p {
  font-size: 14px;
  color: #e2e8f0;
  line-height: 1.5;
}

/* Right Side Card */
.stats-card {
  width: 40%;
  height: 100%;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: 5px;
  display: grid;
  gap: 10px;
  background: transparent;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.stat {
  padding: 70px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color:#FFFFFF1A;
}

.stat h2 {
  font-size: 30px;
  margin-bottom: 10px;
}

.stat p {
  font-size: 14px;
  color: #d1d5db;
}

/* Responsive */
@media (max-width: 900px) {
  .container {
    flex-direction: column;
  }

  .left-content,
  .stats-card {
    width: 100%;
  }

  .stats-card {
    margin-top: 40px;
  }
}
/* OVERLAY */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(5px); /* 🔥 glass effect */
  z-index: 9999;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease;
}

/* BOX */
.modal-box {
  background: #fff;
  width: 90%;
  max-width: 900px;
  border-radius: 20px;
  padding: 20px 25px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
  animation: slideUp 0.3s ease;
}

/* HEADER */
.modal-box {
  background: #fff;
  width: 90%;
  max-width: 900px;
  border-radius: 20px;
  padding: 20px 25px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);

}
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

/* Close Button Styling */
.close-btn {
  font-size: 30px;        /* 🔥 size bada */
  font-weight: bold;
  cursor: pointer;
  position: absolute;
  right: 5px;   
  top: -15px;               /* 🔼 thoda upar */
  color: #333;
  transition: 0.3s;
}

.close-btn:hover {
  color: red;
  transform: scale(1.2);
}

/* GRID */
.sub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 18px;
}

/* CARD */
.sub-card {
  background: #f9f9f9;
  border-radius: 16px;
  padding: 15px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid transparent;
}

/* HOVER EFFECT 🔥 */
.sub-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  border-color: #f45a0c;
}

/* IMAGE */
.sub-card img {
  height: 80px;
  object-fit: contain;
  margin-bottom: 10px;
}

/* TEXT */
.sub-card h4 {
  font-size: 15px;
  margin-bottom: 5px;
}

.sub-card p {
  font-size: 13px;
  color: #666;
}

/* ANIMATIONS */
@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* APP */

.app {
  display: flex;
  align-items: center;
  justify-content: space-around;
 margin-left: 40px
}
/* Left Section */

.app-left {
  max-width: 520px;
  padding: 40px;

}

/* Heading */
.app-left h2 {
  font-size: 34px;
  font-weight: 700;
  color: #1d2b53;
  margin-bottom: 15px;
}

.icon img {
  height: 50px;
 
}

.icon{
  padding: 40px;
}
.app-left h2 span {
  color: #ff4b2b;
}

/* Paragraph */
.sub-text {
  font-size: 16px;
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* Store Buttons */
.stores {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f0f0f0;
  padding: 0px 18px;
  border-radius: 10px;
  height:80px;
  cursor: pointer;
  transition: 0.3s ease;
  border: 1px solid transparent;
  position: relative;
}

.store-btn small {
  display: block;
  font-size: 11px;
  color: #555;
}

.store-btn strong {
  font-size: 15px;
  color: #555;
}

.store-btn .icon {
  font-size: 22px;
}

/* Hover Effect */
.store-btn:hover {
  background: white;
  border: 1px solid #ff4b2b;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.store-btn .play-dropdown {
  top: calc(100% + 10px);
  left: 0;
  right: auto;
  min-width: 220px;
  text-align: left;
}

.store-btn .play-dropdown::before {
  left: 28px;
  right: auto;
}

.store-btn .play-dropdown a {
  min-height: 42px;
}

/* Features Card */
.features-card {
  background:rgb(238, 236, 234);
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.features-card h4 {
  margin-bottom: 15px;
  font-size: 18px;
  color: #1d2b53;
}

.features-card ul {
  list-style: none;
  padding: 0;
}

.features-card li {
  margin-bottom: 10px;
  font-size: 14px;
  color: #555;
  /* position: relative; */
  padding-left: 20px;
}

.features-card li::before {
  content: "✔";
  position: absolute;
  left: 55px;
  color: #ff4b2b;
  font-size: 13px;
}

/* Fade Animation */
.fade-up {
  animation: fadeUp 1s ease forwards;
}
 
/* app//// */

.app-right img {
  width: 200px;
  margin: 10px;
} 

/* ///////////////////////////////////////////////////////// */

/* Container Style */
.app-right {
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: center;
  padding: 30px;
}

/* Image Style */
.app-right img {
  width: 320px;
  height: 630px;
  
  object-fit: cover;
  border-radius: 20px;
  /* Gradient Border */
  overflow: auto;
  border: 12px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, #A0453F, #FFFFFF) border-box;

  /* Shadow */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);

  transition: all 0.5s ease;
  cursor: pointer;
}
.IMGG img{
  padding:10px ;
}



/* opecity */  

/* Hover Effect */
.app-right img:hover {
  transform: translateY(-12px) scale(1.05);
  box-shadow: 0 20px 40px rgb(12, 12, 12);
}

/* Fade Up Animation */
.fade-up {
  animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* /////////////////////////////////////////////////////////////// */

/* TESTIMONIAL */
/* Section */
.testimonial {
  padding: 80px 8%;
  background: #F7F8FA;
  text-align: center;
  background-color: #f3f4f7;
  /* border: 2px solid red; */
}

/* Title */
.section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #1d2b53;
  margin-bottom: 10px;
}

.section-title span {
  color: #ff4b2b;
}

.section-sub {
  text-align: center;
  color: #5B5B5B;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 50px;
}

/* Grid */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */
.testimonial-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  text-align: left;
  position: relative;
  transition: 0.4s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  border-bottom: 4px solid #ff4b2b;
}

/* Hover */
.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

/* Stars */
.stars {
  color: #ffa500;
  font-size: 18px;
  margin-bottom: 15px;
}

/* Review Text */
.review {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 25px;
  font-style: italic;
}

/* User Info */
.user {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Avatar */
.avatar {
  width: 45px;
  height: 45px;
  background: #ff4b2b;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

/* Name */
.user h4 {
  margin: 0;
  font-size: 15px;
  color: #1d2b53;
}

.user small {
  color: #888;
  font-size: 12px;
}

/* Animation */
.fade-up {
  animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* FOOTER */
.footer {
  background: #1f3b6f;
  color: #cfd8e3;
  padding: 50px 8% 20px;
  font-family: "Poppins", sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-left {
  max-width: 260px;
}

.footer-right {
  display: flex;
  justify-content: space-between;
  flex: 1;
  gap: 60px;
  flex-wrap: wrap;
}

.footer-col {
  min-width: 160px;
}

.footer-col h4 {
  color: #ffffff;
  margin-bottom: 16px;
  font-size: 15px;
  font-weight: 600;
}

.footer-col a {
  display: block;
  text-decoration: none;
  color: #cfd8e3;
  font-size: 14px;
  margin-bottom: 10px;
  transition: 0.3s;
}

.footer-col a:hover {
  color: #ff4b2b;
  padding-left: 4px;
}

.footer-logo {
  width: 130px;
  margin-bottom: 16px;
}

.footer-left p {
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #b0bec5;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons i {
  width: 36px;
  height: 36px;
  background: #2b4c85;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s ease;
  color: white;
  font-size: 14px;
}

.social-icons i:hover {
  background: #ff4b2b;
  transform: translateY(-3px);
}

.footer hr {
  border: none;
  height: 1px;
  background: #ffffff30;
  margin-bottom: 20px;
}

.footer-bottom {
  text-align: center;
  font-size: 13px;
  color: #aab6c4;
}
/* ANIMATION */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: 1s;
}
.fade-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: 1s;
}
.fade-right {
  opacity: 0;
  transform: translateX(40px);
  transition: 1s;
}
.show {
  opacity: 1;
  transform: translate(0);
}

/* ================= NAVBAR ================= */

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 8%;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

#header-placeholder {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

/* NAV LINKS */
.navbar nav {
  /* border: 2px saddlebrown; */
  /* margin-left: 210px; */
  /* display: flex; */
  align-items: center;
  transition: all 0.4s ease;
}

.navbar nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  position: relative;
}

/* Underline Hover Animation */
.navbar nav-m a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 2px;
  background: #ff5a2c;
  transition: 0.3s;
}

.navbar nav a:hover::after {
  width: 100%;
}

.nav-m .as:hover{
border-bottom: 1px solid orangered;
}
.nav-m a.active {
  color: #ff4b2b;
  font-weight: 600;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  transition: 0.3s;
}
.fa-bars {
  font-size: 40px;
}
.hamburger span {
  width: 28px;
  height: 3px;
  background: #333;
  margin: 3px 0;
  border-radius: 2px;
  transition: 0.4s ease;
}

/* Burger Animation */
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ================= BLOGS ================= */


/* blog---pooup img section  */



/* ///////////////////////////////////// */



.blogs-section {
  padding: 70px 8%;
  background: #f4f7fb;
  text-align: center;
  /* margin-bottom: 140px; */
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: left;
  margin-top: 40px;
}

.blog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.07);
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-break: break-word;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.blog-img-wrap {
  position: relative;
}

.blog-img-wrap img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.blog-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #ff4b2b;
  color: #fff;
  font-size: 12px;
  padding: 4px 20px;
  border-radius: 20px;
  font-weight: 600;
}

.blog-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow: hidden;
  word-break: break-word;
  min-width: 0;
  gap: 6px;
}

.blog-meta {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: #888;
  margin: 0;
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.blog-body h3 {
  font-size: 16px;
  font-weight: 700;
  color: #242424;
  margin: 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-body p { font-size: 13px; color: #666; line-height: 1.6; margin: 0 0 16px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

.blog-read-more {
  font-size: 13px;
  color: #ff4b2b;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: 0.3s;
  margin-top: auto;
}

.blog-read-more:hover {
  gap: 10px;
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonial-grid{
    display: flex;
    flex-direction: column;
  }

  .stats-card{
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .arrow{
    display:none ;
  }
}

.blog-body p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-body h3 {
  white-space: normal;
}


/* ===== MOBILE FIX ===== */
@media(max-width:768px){

  /* SHOW BURGER */
  .hamburger{
    display:block;
    font-size:28px;
    cursor:pointer;
  }


  
  /* HIDE MENU */
  #navMenu{
    display:none;
    flex-direction:column;
    position:absolute;
    top:70px;
    background:#fff;
    padding:20px 0;
  }

  /* SHOW MENU WHEN ACTIVE */
  #navMenu.active{
    display:flex;
  
  }

  /* LINKS COLUMN */
  .nav-links{
    flex-direction:column;
    align-items:center;
  }

  /* BUTTON CENTER IN MOBILE */
  .btn-orange{
    position:static;
    margin-top:10px;
  }

  .hero-left p{

  
  text-align: center;      /* center align */
  line-height: 1.6;        /* line spacing */
  max-width: 400px;       /* width control (important 🔥) */
  margin: auto;
  position: relative; 
  right: 40px;          /* center block */

  
  }
}


#navMenu{
  display:flex;
  justify-content:flex-end;
  align-items:center;
  gap:32px;
  flex:1;
}

.nav-links-wrap{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:28px;
  flex-wrap:wrap;
}


.hero-left p{
  border-bottom: 0.3px solid #d8cbcb;
  padding: 30px 6px;
  margin-left: 80px;
  /* background: #c52828; */
  max-width:fit-content;
  border-width: 0.3px;
}

.service-card .truck-ace img{
  height: 45px;
}

.service-card p{
  text-align: start;
  /* border: 2px solid red; */

}

.service-card ul li{
  padding: 10px 20px; 
  /* border: 2px solid red; */
}


.service-card li::before{
  margin-right: 20px;
  /* border: 2px solid red; */
}

.features-card ul li::before{
  margin-top: 4px;
  margin-left: 7px;
}


#navMenu{
  display:flex;
  align-items:center;
  gap:30px;
}

#navMenu .nav-links-wrap{
  display:flex;
  align-items:center;
  gap:24px;
}

#navMenu .nav-links-wrap a{
  text-decoration:none;
  color:#333;
  font-weight:500;
  font-size:14px;
  white-space:nowrap;
}



.btn-view{
  background:#ff4b2b;
  color:#fff;
  border:none;
  padding:10px 25px;
  font-size:14px;
  border-radius:5px;
  cursor:pointer;
  transition:0.3s ease;
}

/* HOVER EFFECT */
.btn-view:hover{
  background:#e63e1f;
  transform:translateY(-2px);
}





/* Active nav link */
.nav-links-wrap a.nav-active {
  color: #ff4b2b !important;
  font-weight: 600;
  border-bottom: 2px solid #ff4b2b;
  padding-bottom: 3px;
}

/* Active nav link highlight */
.nav-links-wrap a.nav-active {
  color: #ff4b2b !important;
  font-weight: 600 !important;
  border-bottom: 2px solid #ff4b2b;
  padding-bottom: 3px;
}

/* Google Play dropdown */
.download-dropdown-wrap {
  display: inline-block;
  position: relative;
}

.play-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  padding: 7px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(255, 75, 43, 0.22);
  box-shadow: 0 16px 35px rgba(18, 31, 53, 0.18);
  min-width: 190px;
  z-index: 999;
  overflow: hidden;
}

.play-dropdown::before {
  content: "";
  position: absolute;
  top: -6px;
  right: 28px;
  width: 12px;
  height: 12px;
  background: #fff;
  border-left: 1px solid rgba(255, 75, 43, 0.22);
  border-top: 1px solid rgba(255, 75, 43, 0.22);
  transform: rotate(45deg);
}

.download-dropdown-wrap .play-dropdown {
  left: auto;
  right: 0;
}

.play-dropdown.open {
  display: block;
  animation: dropdownFade 0.18s ease;
}

.play-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  box-sizing: border-box;
  padding: 11px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #243047;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.play-dropdown a i,
.play-dropdown a .play-dropdown-icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 6px;
  background: #fff0eb;
  color: #ff4b2b;
}

.play-dropdown a:hover {
  background: #ff4b2b;
  color: #fff;
  transform: translateX(2px);
}

.play-dropdown a:hover i,
.play-dropdown a:hover .play-dropdown-icon {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

#navMenu .play-dropdown a {
  display: flex !important;
  width: 100% !important;
  box-sizing: border-box;
  margin: 0 !important;
  padding: 11px 12px !important;
}

#navMenu .play-dropdown a:hover,
#navMenu .play-dropdown a:focus {
  background: #ff4b2b !important;
  color: #fff !important;
}

@keyframes dropdownFade {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* .play-dropdown:hover{
  background: #ff4b2b;
  color: white;
} */

/* Blog card body overrides */
.blog-body p {
  margin: 0 !important;
  list-style: none !important;
}

.blog-body ul, .blog-body ol, .blog-body li {
  display: none !important;
}

.blog-read-more {
  margin-top: auto;
}



/* publication /////////////// */

