* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}


/*animations*/

/*loader css*/

#mainContent{
display:none;
}

#pageLoader{
position:fixed;
top:0;
left:0;
  width: 100%;
height:100vh;
 background: #e17f0e;
z-index:9999;
display:flex;
align-items:center;
justify-content:center;
}



.loader {
  width: fit-content;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
}

.truckWrapper {
  width: 200px;
  height: 100px;
  display: flex;
  flex-direction: column;
  position: relative;
  align-items: center;
  justify-content: flex-end;
  overflow-x: hidden;
}

.truckBody {
  width: 130px;
  height: fit-content;
  margin-bottom: 6px;
  animation: motion 1s linear infinite;
}

@keyframes motion {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(3px);
  }
  100% {
    transform: translateY(0px);
  }
}
/* truck's tires */
.truckTires {
  width: 130px;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 10px 0px 15px;
  position: absolute;
  bottom: 0;
}
.truckTires svg {
  width: 24px;
}

.road {
  width: 100%;
  height: 1.5px;
  background-color: #282828;
  position: relative;
  bottom: 0;
  align-self: flex-end;
  border-radius: 3px;
}


.lampPost {
  position: absolute;
  bottom: 0;
  right: -90%;
  height: 90px;
  animation: roadAnimation 1.4s linear infinite;
}

@keyframes roadAnimation {
  0% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(-350px);
  }
}


/* Floating Buttons Container */
.floating-buttons{
    position:fixed;
    bottom:20px;
    right:20px;
    display:flex;
    flex-direction:column;
    gap:15px;
    z-index:9999;
}

/* Common Button Style */
/* Floating Buttons */
.floating-buttons{
    position:fixed;
    bottom:25px;
    right:25px;
    display:flex;
    flex-direction:column;
    gap:18px;
    z-index:9999;
}

/* Common Style */
.float-btn{
    position:relative;
    width:60px;
    height:60px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    font-size:24px;
    text-decoration:none;
    box-shadow:0 8px 25px rgba(0,0,0,0.3);
    transition:0.3s ease;
    animation:pulse 2s infinite;
}

/* Hover Bounce */
.float-btn:hover{
    transform:translateY(-5px) scale(1.1);
}

/* Ripple Effect */
.float-btn::before{
    content:"";
    position:absolute;
    width:100%;
    height:100%;
    border-radius:50%;
    background:inherit;
    opacity:0.6;
    animation:ripple 2s infinite;
    z-index:-1;
}

#mainContent {
  display: none;
}
.logo p{
  color: #f7931e;
  font-size:20px;
  margin-left: 20px;
}

/* WhatsApp */
.whatsapp{
    background:#25D366;
	color:white;
}
.whatsapp i:hover{
	color:white !important;
}

/* Call */
.call{
    background:#f7931e;
	color:white;
}
.call i:hover{
	color:white !important;
}
/* Pulse Animation */
@keyframes pulse{
    0%{
        box-shadow:0 0 0 0 rgba(0,0,0,0.4);
    }
    70%{
        box-shadow:0 0 0 15px rgba(0,0,0,0);
    }
    100%{
        box-shadow:0 0 0 0 rgba(0,0,0,0);
    }
}

/* Ripple Animation */
@keyframes ripple{
    0%{
        transform:scale(1);
        opacity:0.6;
    }
    100%{
        transform:scale(1.6);
        opacity:0;
    }
}

/* ================= TOP BAR ================= */
.top-bar {
    background: #e9e9e9;
    padding: 10px 60px;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.top-bar a {
    text-decoration: none;
    color: #333;
    margin-left: 0px;
}
.top-bar a:hover{
  color:#f7931e;
}
.links a{
  margin-left:17px;
}

/* ================= HEADER ================= */
.header {
    padding: 20px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-left{
  margin-left: 20px;
}
.logo {
    font-size: 40px;
    font-weight: bold;
}

.logo .ride {
    color: #000;
    margin-left: 20px;
}

.logo .k {
    color: #f7931e;
}

.contact-info {
    display: flex;
    gap: 40px;
}

.info-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-box i {
    font-size: 25px;
    color: #f7931e;
}

.info-box p {
    font-size: 16px;
    color: #000;

	margin-left:10px;
}

.info-box h4 {
    font-size: 16px;
	color:black;
	margin-left:10px;
  font-weight:600;
}

/* ================= NAVBAR ================= */
.navbar {
    background: #f7931e;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 64px;
    position: relative;
    padding-top:0px !important;
  padding-bottom:0px !important;
}

/* Slanted Left Shape */
.navbar::before {
    content: "";
    position: absolute;
    left: -106px;
    top: 0;
    width: 120px;
    height: 100%;
    background: #f7931e;
    transform: skewX(-20deg);
}

/* Nav Links */
.nav-links a{
    position: relative;
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: 0.3s;
    margin-left: 20px;
    font-size: 18px;
}


/* underline animation */
.nav-links a::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0%;
    height: 2px;
    background: #ffffff;
    transition: 0.3s;
}


.nav-links a:hover{
    color: #ffffff;
}



/* Icons */
.nav-icons {
    display: flex;
    gap: 20px;
    color: white;
    font-size: 18px;
}


/* Book Button */
.book-btn {
    background: #f7931e;
    color: white;
    padding: 21px 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease;
   
}
.book-btn a{
    text-decoration: none;
    background: #111;
    color: white;
    padding: 22px 28px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease;
    margin-right: -41px;
}

.book-btn a:hover{
    background: white;
    color: #f7931e;
}
.booking-section{
    display:flex;
    height:400px;
    overflow:hidden;
    font-family: Arial, sans-serif;
}

/* LEFT SIDE */
.left-side{
    width:35%;
    background:#f7931e;
    position:relative;
    display:flex;
    align-items:flex-end;
    justify-content:flex-end;
    overflow:visible;
}

.left-side img{
    width:120%;
    max-width:520px;
    position:absolute;
    right:12px;  
    bottom:0;
}

/* RIGHT SIDE */
.right-side{
    width:65%;
    background:#111;
    color:white;
    padding:50px 70px;
    position:relative;
    z-index:2;
}

/* diagonal cut */
.cut-shape{
    position:absolute;
    top:0;
    right:0;
    width:200px;
    height:120px;
    background:#e5e5e5;
    clip-path: polygon(100% 0, 0 0, 100% 100%);
}

/* heading */
.tag{
    color:#f7931e;
    letter-spacing:2px;
    margin-bottom:10px;
    font-size: 14px;
}

.right-side h1{
    font-size:42px;
    margin-bottom:40px;
}

/* form grid */
.form-grid{
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap:20px;
}

/* input */
.input-box{
    position:relative;
}

.input-box input{
    width:100%;
    padding:16px;
    background:#2b2b2b;
    border:none;
    color:white;
    font-size:16px;
}

.input-box i{
    position:absolute;
    right:15px;
    top:50%;
    transform:translateY(-50%);
    color:#f7931e;
}

/* button */
.book-btn-taxi{
    grid-column: span 1;
    background:#f7931e;
    border:none;
    color:white;
    font-size:18px;
    font-weight:bold;
    cursor:pointer;
    transition:.3s;
}

.book-btn-taxi:hover{
    background: white;
    color: #f7931e;
}
.services{
    width:100%;
    background:#f5f5f5;
    padding:60px 0;
}

.container{
    width:100%;
}
.top-img{
    width:100%;
    border-radius:0;   
    display:block;
}

.services h2{
    font-size:35px;
    margin-bottom:10px;
    margin-top: 30px;
}
.container h2{
  margin-top: 30px;
      font-weight: 600;
    font-size: 35px;
    color: #000;
}
.desc{
      color: #000000;
    line-height: 24px;
    margin-bottom: 25px;
    margin-top: 15px;
    font-size: 17px;
	letter-spacing:0px;
}

.small{
    margin-top:20px;
    margin-left:14px;
}

/* FEATURES */
.features{
    display:grid;
    grid-template-columns: repeat(2,1fr);
    gap:25px;
    margin-top:20px;
}

.feature{
    display:flex;
    gap:15px;
    align-items:flex-start;
}

.feature i{
    font-size:28px;
    color:#f7931e;
    margin-top:5px;
}

.feature h4{
    margin-bottom:5px;
	font-size:17px;
}

.feature p{
    color:#000;
    font-size:14px;
}

/* BOTTOM */
.bottom-section{
    display:flex;
    gap:25px;
    margin-top:30px;
    align-items:center;
}

.bottom-section img{
    width:50%;
    border-radius:6px;
}

/* cards container */
.benefit-cards-home{
    display:grid;
    grid-template-columns: repeat(3,1fr);
    gap:15px;
    margin-top:15px;
}
.benefits-home h3{
  font-size: 35px;
  margin-bottom: 35px;
  color: #000;
  font-weight: 600;
}

/* card design */
.card-home{
    background:white;
    padding:18px;
    border-radius:6px;
    box-shadow:0 4px 10px rgba(0,0,0,0.08);
    text-align:center;
    transition:.3s;
}

.card-home i{
    font-size:28px;
    color:#f7931e;
    margin-bottom:10px;
}

.card-home h4{
    margin-bottom:5px;
    font-size:16px;
    color: #000;
}

.card-home p{
    font-size:14px;
    color:#000000cc;
	margin-top:11px;
}

/* hover effect */
.card-home:hover{
    transform:translateY(-5px);
    box-shadow:0 8px 18px rgba(0,0,0,0.15);
}
.drivers{
    background:#f4f4f4;
    padding:70px 20px;
    text-align:center;
    font-family: Arial, sans-serif;
	margin-top:60px;
}

.tag{
    color:#f7931e;
    font-weight:600;
    margin-bottom:10px;
}

.drivers h2{
    font-size:36px;
    margin-bottom:10px;
	font-weight:600;
  color:black;
}

.subtitle{
    max-width:600px;
    margin:0 auto 40px;
    color:#000;
    line-height: 26px;
}

/* GRID */
.driver-grid{
    display:grid;
    grid-template-columns: repeat(4,1fr);
    gap:25px;
}

/* CARD */
.driver-card{
    position:relative;
    overflow:hidden;
}

.driver-card img{
    width:100%;
    height:320px;
    object-fit:cover;
    clip-path: polygon(0 0, 90% 0, 100% 10%, 100% 100%, 0 100%);
}

/* info box */
.driver-info{
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    text-align:center;
}

/* steering badge */
.steering{
    width:60px;
    height:60px;
    background:#222;
    border-radius:50%;
    color:#f7931e;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto -25px;
    font-size:24px;
    border:4px solid #f7931e;
}

/* name strip */
.driver-info h3{
    background:#f7931e;
    margin:0;
    padding:14px 10px;
    margin-top:10px;
    font-size:18px;
	color:white;
}

/* car label */
.driver-info span{
    display:inline-block;
    background:#222;
    color:white;
    padding:6px 18px;
    margin-top:-8px;
    font-size:13px;
}
/* tablet */
@media (max-width: 992px){
    .driver-grid{
        grid-template-columns: repeat(2,1fr);
    }
}

/* mobile */
@media (max-width: 576px){
    .driver-grid{
        grid-template-columns: 1fr;
    }

    .drivers h2{
        font-size:28px;
    }
}



/* CTA BAR */
.cta-bar{
  width:100%;
  background:#111;
  position:relative;
  overflow:hidden;
}

/* dark texture effect */
.cta-bar::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
      rgba(0,0,0,0.85),
      rgba(0,0,0,0.85)
    ),
    url('img/dark-texture.jpg');  
  background-size:cover;
  background-position:center;
  z-index:0;
}

.cta-container-footer{
  position:relative;
  z-index:1;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:18px 80px;
}

/* LEFT SIDE */
.cta-left{
  display:flex;
  align-items:center;
  gap:40px;
  color:#ccc;
  max-width:65%;
}

.logo{
  font-size:38px;
  font-weight:bold;
  color:white;
}
.logo .ride-footer{
  color:#e5e5e5;
  line-height:39px;
}

.logo .k{
  color:#f7931e;
}

.cta-left p{
  font-size:15px;
  line-height:1.6;
  color:#aaa;
  margin-right:17px;
}

/* RIGHT SIDE */
.cta-right{
  position:relative;
  background:#f7931e;
  padding:18px 60px;
  display:flex;
  align-items:center;
  gap:4px;
  color:#111;
  font-weight:bold;
}

/* Diagonal Shape */
.cta-right::before{
  content:"";
  position:absolute;
  left:-24px;
  top:0;
  width:120px;
  height:100%;
  background:#f7931e;
  transform:skewX(-20deg);
}

.cta-right *{
  position:relative;
  z-index:2;
}

.phone-icon{
  font-size:30px;
}

.small-text-footer{
  display:block;
  font-size:14px;
  margin-left:10px;
  color:white;
}

.cta-right h2{
  margin:0;
  font-size:32px;
  line-height:50px;
  margin-left:10px;
}
/* CTA SECTION */
.call-cta{
  position:relative;
  width:100%;
  background:#111;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:25px 8%;
  overflow:hidden;
}

/* Dark texture overlay */
.call-cta::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
      rgba(0,0,0,0.85),
      rgba(0,0,0,0.85)
    ),
    url('../img/dark-texture.jpg');
  background-size:cover;
  background-position:center;
  z-index:0;
}


/* Content */
.cta-content{
  position:relative;
  z-index:2;
  width:55%;
  color:#fff;
}

.cta-content h1{
  font-size:35px;
  line-height:1.2;
  margin-bottom:20px;
  font-weight:700;
}

.cta-content h1 span{
  color:#f7931e;
  font-size: 35px;
}

.cta-content p{
  color:#ccc;
  max-width:520px;
  line-height:1.7;
  margin-bottom:35px;
}

/* Phone Box */
.cta-phone{
  display:flex;
  align-items:center;
  gap:20px;
}


.phone-icon-contact{
  width:60px;
  height:60px;
  background:#1c1c1c;
  color:#f7931e;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  border-radius:6px;
  transition: 0.3s ease;
}
.phone-icon-home img {
  background-color: black;
    padding: 5px 5px;
    border-radius: 5px;
}
.phone-icon-contact:hover{
  background-color: white;
  color: #ff9f2a;
}
.phone-icon-home img:hover{
  background-color: white;
  color: #ff9f2a;
}
.cta-phone small{
  color:#ccc;
  font-size:14px;
}

.cta-phone h2{
  color:#f7931e;
  font-size:29px;
  margin-top:5px;
}

/* Image Side */
.cta-image{
  position:relative;
  width:45%;
  z-index:2;
  text-align:right;
}

.cta-image img{
  max-width:500px;
  width:95%;
  margin-bottom: 20px;
}

/* White Diagonal Shape */
.call-cta::after{
  content:"";
  position:absolute;
  bottom:0;
  right:0;
  width:350px;
  height:250px;
  background:#f4f4f4;
  clip-path:polygon(100% 0, 0 100%, 100% 100%);
  z-index:1;
}


/* ================== TABLET ================== */
@media (max-width:1024px){

  .cta-container-footer{
    padding:18px 40px;
  }

  .cta-left{
    gap:20px;
    max-width:60%;
  }

  .logo{
    font-size:30px;
  }

  .cta-right{
    padding:15px 40px;
  }

  .cta-right h2{
    font-size:26px;
  }

  .cta-content{
    width:60%;
  }

  .cta-image{
    width:40%;
  }

  .cta-image img{
    max-width:400px;
  }

}


/* ================== MOBILE ================== */
@media (max-width:768px){

  /* CTA BAR */
  .cta-container-footer{
    flex-direction:column;
    align-items:flex-start;
    gap:20px;
    padding:25px 25px;
  }

  .cta-left{
    flex-direction:column;
    align-items:flex-start;
    max-width:100%;
    gap:10px;
  }

  .logo{
    font-size:26px;
  }

  .cta-left p{
    margin-right:0;
  }

  .cta-right{
    width:100%;
    justify-content:flex-start;
    padding:15px 25px;
  }

  .cta-right::before{
    display:none;
  }

  .cta-right h2{
    font-size:24px;
    line-height:35px;
  }


  /* CALL CTA SECTION */

  .call-cta{
    flex-direction:column;
    padding:40px 25px;
    text-align:center;
  }

  .cta-content{
    width:100%;
  }

  .cta-content h1{
    font-size:28px;
  }

  .cta-content p{
    margin:auto;
    margin-bottom:30px;
  }

  .cta-phone{
    justify-content:center;
  }

  .cta-image{
    width:100%;
    text-align:center;
    margin-top:30px;
  }

  .cta-image img{
    max-width:350px;
  }

  .call-cta::after{
    display:none;
  }

}


/* ================== SMALL MOBILE ================== */
@media (max-width:480px){

  .logo{
    font-size:22px;
  }

  .cta-content h1{
    font-size:24px;
  }

  .cta-phone h2{
    font-size:22px;
  }

  .cta-right{
    padding:12px 18px;
  }

  .cta-right h2{
    font-size:20px;
  }

}




/* ================= FOOTER ================= */
.footer{
  position: relative;
  background-image: url('../img/city-skiline.png');
  background-repeat: no-repeat;
  background-position: center center; 
  background-size: cover;  
  padding: 60px 5%;
  color: #fff;
}
.footer::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background: rgb(0 0 0 / 69%);
  z-index:0;
}
.footer-top,
.footer-bottom{
  position:relative;
  z-index:1;
}
.footer-top{
  display:flex;
  flex-wrap:wrap;
  gap:40px;
}

.footer-col{
  flex:1 1 220px;
  min-width:220px;
}
.footer h3{
  margin-bottom:20px;
  position:relative;
  font-size:22px;
}
.footer h3::after{
  content:"";
  width:40px;
  height:3px;
  background:#ffa500;
  position:absolute;
  bottom:-8px;
  left:0;
}

.footer p,
.footer li,
.footer a{
  color:#ffffff;   
  font-size:14px;
  line-height: 27px;
}
.footer ul{
  list-style:none;
}

.footer a{
  color:#ffffff;
  text-decoration:none;
  transition:.3s;
}
.footer a:hover{
  color:#ffa500;
}

/* Newsletter */
.newsletter input{
  width:100%;
  padding:12px;
  border:none;
  outline:none;
  margin-bottom:10px;
}

.newsletter button{
  padding:12px 20px;
  border:none;
  background:#ffa500;
  color:#ffffff;
  font-weight:bold;
  cursor:pointer;
  width:100%;
}

.newsletter button:hover{
    background: white;
    color: #f7931e;
}
/* Bottom Bar */
.footer-bottom{
  display:flex;
  justify-content:center;   
  align-items:center;     
  height:80px;              
  margin-top:50px;
  border-top:1px solid #444;
  font-size:14px;
  color:#ffffff;
  text-align:center;
}


.road{
  position:absolute;
  bottom:0px;
  left:0;
  width:100%;
  height:80px;
  overflow:hidden;
  background-color: #00000026;

}

.taxi{
  position:absolute;
  bottom:0;
  width:80px;
}

.taxi-left{
  animation:moveLeft 12s linear infinite;
}

.taxi-right{
  animation:moveRight 15s linear infinite;
}

.bottom{
  background-color: #ffffff;
}
.taxi-left-1{
   animation:moveLeft 7s linear infinite;
}
.taxi-right-1{
   animation:moveRight 5s linear infinite;
}
.taxi-right-3{
    animation:moveRight 19s linear infinite;
}
@keyframes moveLeft{
  0%{ left:-100px; }
  100%{ left:110%; }
}

@keyframes moveRight{
  0%{ right:-100px; }
  100%{ right:120%; }
}



@media(max-width:768px){
  .footer-top{
    flex-direction:column;
  }
}


/* ================= FOOTER RESPONSIVE ================= */

/* Tablet */
@media (max-width:1024px){

  .footer{
    padding:50px 6%;
  }

  .footer-top{
    gap:30px;
  }

  .footer-col{
    flex:1 1 45%;
  }

  .footer h3{
    font-size:20px;
  }

}


/* Mobile */
@media (max-width:768px){

  .footer{
    padding:45px 20px;
    text-align:center;
  }

  .footer-top{
    display:grid;
    grid-template-columns:1fr;
    gap:35px;
  }

  .footer-col{
    min-width:100%;
  }

  .footer h3::after{
    left:50%;
    transform:translateX(-50%);
  }

  .newsletter input{
    text-align:center;
  }

  .newsletter button{
    max-width:250px;
    margin:auto;
  }

  .footer-bottom{
    height:auto;
    padding:20px 0;
    margin-top:40px;
    font-size:13px;
  }

  /* Road animation smaller */
  .road{
    height:60px;
  }

  .taxi{
    width:60px;
  }

}


/* Small Mobile */
@media (max-width:480px){

  .footer{
    padding:40px 15px;
  }

  .footer h3{
    font-size:18px;
  }

  .footer p,
  .footer li,
  .footer a{
    font-size:13px;
  }

  .newsletter input{
    padding:10px;
  }

  .newsletter button{
    padding:10px;
  }

  .road{
    height:50px;
  }

  .taxi{
    width:50px;
  }

}

/*contact page css*/
.map-section{
  width:100%;
  height:500px;   
  position:relative;
  overflow-x: hidden;
}

.map-section iframe{
  width:100%;
  height:100%;
  border:0;
  display:block;
}

/* CONTACT SECTION */
.contact-section{
  width:100%;
  padding:80px 5%;
 background-image: url('../img/cta-map.png');
  background-size: cover;

  position:relative;
}

/* Light white overlay */
.contact-section::before{
  content:"";
  position:absolute;
  inset:0;
 
}

.contact-container{
  position:relative;
  z-index:2;
  display:flex;
  justify-content:space-between;
  gap:60px;
}

/* LEFT SIDE */
.contact-left{
  flex:1;
}

.contact-left h2{
  font-size:32px;
  margin-bottom:15px;
}

.contact-left p{
  color:#666;
  line-height:1.7;
  margin-bottom:30px;
  max-width:480px;
}

/* Info Items */
.contact-info-contact{
  display:flex;
  flex-direction:column;
  gap:20px;
}

.info-item-contact{
  display:flex;
  gap:15px;
}

.icon-contact{
  width:50px;
  height:50px;
  background:#111;
  color:#f7931e;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
  border-radius:4px;
  transition: 0.3s ease;
}
.icon-contact:hover{
  background-color: white;
  color: #ff9f2a;
}
/* RIGHT SIDE */
.contact-right-contact{
  flex:1;
}

.contact-right-contact  h2{
  font-size:32px;
  margin-bottom:25px;
}

.contact-form{
  display:flex;
  flex-direction:column;
  gap:20px;
}

.form-row-contact{
  display:flex;
  gap:20px;
}

.form-row-contact input{
  flex:1;
}

/* Inputs */
.contact-form input,
.contact-form-contact textarea{
  width:100%;
  padding:15px;
  border:1px solid #ddd;
  background:#f7f7f7;
  font-size:15px;
  outline:none;
  margin: 7px;
}

.contact-form textarea{
  height:140px;
  resize:none;
  margin-left: 10px;
  border: 1px solid #ddd;
}

/* Button */
.contact-form button{
  background:#f7931e;
  color:#fff;
  border:none;
  padding:15px 30px;
  font-size:16px;
  cursor:pointer;
  width:200px;
  transition:.3s;
  margin-left: 9px;
   border: 2px solid #f7931e ;
}

.contact-form button:hover{
  border: 2px solid #f7931e ;
  color:#ff9f2a;
  background-color: #ffffff;
}

/* RESPONSIVE */
@media(max-width:992px){
  .contact-container{
    flex-direction:column;
  }

  .form-row-contact{
    flex-direction:column;
  }

  .contact-form button{
    width:100%;
  }
}



/*login page*/

.login-section{
    display:flex;
    min-height:100vh;
    overflow:hidden;
}

/* LEFT PANEL */
.left-panel{
    flex:1;
   background: linear-gradient(to bottom, #7d7d7d, #f7931e);
    position: relative;
    position:relative;
    padding:80px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.left-content h1{
    font-size:48px;
    font-weight:900;
    color:#111;
}

.left-content p{
    font-size:16px;
    margin-bottom: 80px;
    color:#023047;
}

.taxi-img{
    position:absolute;
    bottom:0;
    left:80px;
    width:420px;
}

/* RIGHT SIDE (NO CUT) */
.right-panel{
    flex:1;
    background:#2f2632;
    display:flex;
    justify-content:center;
    align-items:center;
}

/* LOGIN BOX */
.login-box{
    width:350px;
}

.login-box h2{
    color:#ffd60a;
    margin-bottom:10px;
    font-size: 30px;
}

.login-box p{
    color:#ccc;
    margin-bottom:25px;
    font-size:15px;
}

.login-box input{
    width:100%;
    padding:14px;
    margin-bottom:15px;
    border:none;
    outline:none;
    background:#f2f2f2;
}

.login-box button{
    width:100%;
    padding:16px;
    background:#f7931e;
    border:none;
    font-weight:bold;
    cursor:pointer;
    transition:0.3s;
}

.login-box button:hover{
    background: white;
    color: #f7931e;
}

/* RESPONSIVE */
@media(max-width:1000px){

    .login-wrapper{
        flex-direction:column;
    }

    .left-panel{
        border-radius:0;
        text-align:center;
        padding:50px 20px;
    }

    .taxi-img{
        position:static;
        margin-top:30px;
        width:300px;
    }

    .right-panel{
        padding:50px 20px;
    }
}




/*about page css*/
.hero{
  position:relative;
  height:65vh;
  min-height:350px;
  background:url("../img/page-header.jpg") center/cover no-repeat;
  display:flex;
  align-items:center;
  overflow:hidden;
}

/* dark overlay */
.overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.55);
}

/* text content */
.hero-content{
  position:relative;
  color:white;
  padding-left:8%;
  max-width:600px;
  z-index:2;
}

.tag{
  background:#ff9900;
  padding:6px 14px;
  font-size:14px;
  font-weight:600;
  display:inline-block;
  margin-bottom:15px;
  color:white;
}

.hero h1{
  font-size:46px;
  line-height:1.2;
  margin-bottom:15px;
}

.hero h1 span{
  color:#ff9900;
}

.hero p{
  color:#ddd;
  font-size:17px;
}

/* yellow angled shape */
.yellow-shape{
  position:absolute;
  right:-120px;
  bottom:-120px;
  width:60%;
  height:50%;
  background:#ff9900;
  transform:skew(-35deg);
  z-index:1;
}



/* tablet */
@media(max-width:992px){
  .hero h1{
    font-size:40px;
  }

  .yellow-shape{
    width:70%;
    height:50%;
  }
}

/* mobile */
@media(max-width:600px){
  .hero{
    height:75vh;
  }

  .hero-content{
    padding-left:5%;
    padding-right:5%;
  }

  .hero h1{
    font-size:30px;
  }

  .hero p{
    font-size:16px;
  }

  .yellow-shape{
    width:100%;
    height:35%;
    right:-150px;
    bottom:-80px;
  }
}


.about{
  padding:80px 5%;
  background:#f4f4f4;
}

.about-container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
}

/* LEFT SIDE */
.about-images{
  position:relative;
  width:420px;
  height:420px;
}

.about-images img{
  position:absolute;
  width:260px;
  height:320px;
  object-fit:cover;
  box-shadow:0 10px 25px rgba(0,0,0,0.2);
  margin-bottom: 10px;
}

.img1{
  top:0;
  left:0;
  z-index:2;
}

.img2{
  bottom:0;
  right:0;
}

/* yellow angled shapes */
.shape-top{
  position:absolute;
  top:-30px;
  right:40px;
  width:160px;
  height:120px;
  background:#ff9900;
  transform:skew(-25deg);
  z-index:1;
}

.shape-bottom{
  position:absolute;
  bottom:-40px;
  left:60px;
  width:200px;
  height:140px;
  background:#ff9900;
  transform:skew(-25deg);
}

/* rotating badge */
.badge{
  position:absolute;
  top:120px;
  left:120px;
  width:130px;
  height:130px;
  border-radius:50%;
  background:white;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 8px 20px rgba(0,0,0,0.15);
  animation:spin 8s linear infinite;
  z-index:3;
}

.badge-inner{
  background:#ffcc00;
  width:70px;
  height:70px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:bold;
}
.badge-inner img{
  height:53px;
  width:44px;
}
@keyframes spin{
  100%{ transform: rotate(360deg); }
}

/* RIGHT CONTENT */
.about-content{
  max-width:520px;
}

.small-title{
  color:#000000;
  font-weight:700;
  letter-spacing:1px;
  font-size:15px;
}

.about-content h2{
  font-size:36px;
  margin:15px 0;
  color:#222;
}

.about-content p{
  color:#666;
  line-height:1.6;
}

.about-footer{
  display:flex;
  align-items:center;
  margin-top:30px;
  flex-wrap:wrap;
  gap: 30px;
}

.founder{
  display:flex;
  align-items:center;
  gap:10px;
}

.founder img{
  width:50px;
  height:50px;
  border-radius:50%;
}

.phone span{
  color:#666;
  font-size:14px;
}

.phone h3{
  color:#ff9900;
  font-size:28px;
  margin:5px 0 0;
}




/* ================= ABOUT SECTION RESPONSIVE ================= */

/* Tablet */
@media (max-width:992px){

  .about{
    padding:60px 5%;
  }

  .about-container{
    flex-direction:column;
    text-align:center;
    gap:40px;
  }

  .about-images{
    width:350px;
    height:350px;
  }

  .about-images img{
    width:220px;
    height:270px;
  }

  .badge{
    top:100px;
    left:100px;
    width:110px;
    height:110px;
  }

  .about-content h2{
    font-size:30px;
  }

}


/* Mobile */
@media (max-width:768px){

  .about{
    padding:50px 20px;
  }

  .about-images{
    width:300px;
    height:320px;
    margin:auto;
  }

  .about-images img{
    width:200px;
    height:240px;
  }

  .shape-top,
  .shape-bottom{
    display:none;   /* shapes hide for clean mobile layout */
  }

  .badge{
    top:80px;
    left:80px;
    width:90px;
    height:90px;
  }

  .badge-inner{
    width:55px;
    height:55px;
  }

  .about-content{
    max-width:100%;
  }

  .about-content h2{
    font-size:26px;
  }

  .about-content p{
    font-size:15px;
  }

  .about-footer{
    justify-content:center;
  }

  .phone h3{
    font-size:22px;
  }

}


/* Small Mobile */
@media (max-width:480px){

  .about-images{
    width:260px;
    height:280px;
  }

  .about-images img{
    width:170px;
    height:210px;
  }

  .badge{
    display:none; /* very small screens */
  }

  .about-content h2{
    font-size:22px;
  }

  .small-title{
    font-size:13px;
  }

}









@media(max-width:900px){
  .about-container{
    flex-direction:column;
    text-align:center;
  }

  .about-images{
    margin-bottom:30px;
  }

  .about-footer{
    justify-content:center;
  }
}

@media(max-width:500px){
  .about-images{
    width:300px;
    height:300px;
  }

  .about-images img{
    width:180px;
    height:220px;
  }

  .badge{
    width:90px;
    height:90px;
    top:90px;
    left:90px;
  }

  .badge-inner{
    width:50px;
    height:50px;
    font-size:12px;
  }


  .about-content h2{
    font-size:26px;
  }
}


.taxi-services{
  background:#f7931a;
  position:relative;
  overflow:hidden;
  padding:30px 6%;
}

/* world map overlay */
.taxi-services::before{
  content:"";
  position:absolute;
  inset:0;
  background:url("../img/cta-map.png");
  opacity:0.12;
}

/* container */
.services-container{
  position:relative;
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:40px;
}

/* left content */
.services-left{
  max-width:420px;
  color:white;
}

.small-title{
  font-weight:700;
  letter-spacing:1px;
  background-color:#f7931a;
  padding:6px 12px;
  color:white;
}

.services-left h2{
  font-size:38px;
  margin:15px 0 25px;
  line-height: 51px;
}

.btn{
  color:white;
  border:none;
  padding:14px 28px;
  font-size:16px;
  cursor:pointer;
  transition:.3s;
  background-color: #000;
}
.services-left a{
  text-decoration: none;

}
.btn:hover{
  background:white;
  color:#222;
}

/* features */
.services-features{
  color:white;
  font-size:18px;
  line-height:2.2;
}

.feature{
  display:flex;
  align-items:center;
  gap:12px;
}

.feature span{
  background:#222;
  width:28px;
  height:28px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:14px;
  color:white;
  transition: 0.3s ease;
}
.feature span:hover{
  background:#f7931a;
}
/* right image */
.services-image img{
  max-width:384px;
  transform:translateY(20px);
}


@media(max-width:992px){
  .services-left h2{
    font-size:32px;
  }

  .services-image img{
    max-width:260px;
  }
}

@media(max-width:768px){
  .services-container{
    flex-direction:column;
    text-align:center;
  }

  .services-features{
    text-align:left;
  }

  .services-image img{
    margin-top:20px;
  }
}

@media(max-width:480px){
  .services-left h2{
    font-size:26px;
  }

  .feature{
    font-size:16px;
  }
}
.city-section{
  padding:50px 5%;
}

.container-about{
  display:flex;
  gap:40px;
  align-items:flex-start;
}


.main-content{
  flex:3;
}

.main-img{
  width:100%;
  border-radius:4px;
}

.main-content h2{
  margin-top:15px;
  line-height:28px;
}

.main-content p{
  color:#666;
  line-height:1.6;
  margin-top: 13px;
}


.features{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
  margin:20px 0;
}

.f-box{
  display:flex;
  gap:10px;
  font-size:16px;
  color: #f7931a;
}






.categories h4{
  font-size:33px;
}

.sidebar{
  flex:1;
}

.categories{
  background:white;
  padding:20px;
  margin-bottom:20px;
}

.cat{
  padding:10px;
  border-bottom:1px solid #eee;
  cursor:pointer;
  margin-top: 20px;
  text-decoration: none !important;
  background-color: #f7931a;
  color:white;
  border:2px solid #ff9900b4;
  transition: 0.3s ease;
  
}
.categories a{
  text-decoration: none;
}
.cat:hover{
  background:#ffffffb4;
  border:2px solid #ff9900b4;
  color:#ff9900;
}
.cat.active{
  background:#ff9900;
  color:white !important;
  text-decoration: none !important;
}
.sidebar .promo a{
  text-decoration: none;
  color:white;
}


.promo{
  background:#111;
  color:white;
  text-align:center;
  padding:25px 15px;
}

.promo h2{
  color:#ff9900;
  margin-bottom: 20px;
}
.promo  h3{
  margin:10px 0px 10px 0px;
}
.sidebar .promo a{
  background:#ff9900;
  border:none;
  padding:10px 20px;
  color:white;
  cursor:pointer;
  margin-top: 15px;
  transition: 0.3s ease;
}

.sidebar .promo a:hover{
  color:#f7931a;
  background-color:#ffffff;
}


@media(max-width:900px){
  .container{
    flex-direction:column;
  }

  .sidebar{
    width:100%;
  }
}

@media(max-width:600px){
  .features{
    grid-template-columns:1fr;
  }

  .benefits{
    flex-direction:column;
  }

  .benefits img{
    width:100%;
  }
}
.news-section{
  padding:70px 5%;
  text-align:center;
}

.news-small{
  color:#ff9900;
  font-weight:700;
  letter-spacing:1px;
}

.news-header h2{
  font-size:36px;
  margin:10px 0;
}

.news-header p{
  color:#777;
  max-width:600px;
  margin:auto;
}


.news-grid{
  margin-top:40px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}


.news-card{
  background:white;
  text-align:left;
  transition:0.3s;
  border:1px solid #eee;
}

.news-card:hover{
  transform:translateY(-6px);
  box-shadow:0 10px 25px rgba(0,0,0,0.1);
}

.news-image{
  position:relative;
}

.news-image img{
  width:100%;
  display:block;
}

.news-tag{
  position:absolute;
  bottom:10px;
  left:10px;
  background:#ff9900;
  color:white;
  padding:5px 10px;
  font-size:12px;
  font-weight:600;
}

.news-content{
  padding:20px;
}

.meta{
  font-size:13px;
  color:#999;
  margin-bottom:10px;
}

.news-content h3{
  font-size:18px;
  margin-bottom:10px;
  color:#222;
}

.news-content p{
  color:#666;
  font-size:14px;
  line-height:1.5;
}

.news-content a{
  display:inline-block;
  margin-top:10px;
  color:#ff9900;
  text-decoration:none;
  font-weight:600;
}


@media(max-width:992px){
  .news-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:600px){
  .news-grid{
    grid-template-columns:1fr;
  }

  .news-header h2{
    font-size:28px;
  }
}




/*our taxi*/

.taxi-banner {
    position: relative;
    width: 100%;
    height: 350px;
    background: url("../img/taxi.jpg") center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}
.taxi-banner h1{
  color:white;
  font-size: 36px;
  line-height: 29px;
}
.taxi-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.639);
}


.banner-content {
    position: relative;
    text-align: center;
    color: #fff;
}

.banner-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.breadcrumb {
    font-size: 18px;
    font-weight: 400;
}

.breadcrumb span {
    margin: 0 8px;
}


@media (max-width: 992px) {
    .taxi-banner {
        height: 300px;
    }
    .banner-content h1 {
        font-size: 38px;
    }
}

@media (max-width: 600px) {
    .taxi-banner {
        height: 250px;
        padding: 0 15px;
    }
    .banner-content h1 {
        font-size: 28px;
    }
    .breadcrumb {
        font-size: 14px;
    }
}
.fleet-section{
    padding:60px 0;
    background:#f4f4f4;
    overflow:hidden;
}

.fleet-container{
    width:100%;
    overflow:hidden;
}

.fleet-track{
    display:flex;
    gap:30px;
    animation: scroll 30s linear infinite;
    width:max-content;
}

@keyframes scroll{
    from{ transform:translateX(0); }
    to{ transform:translateX(-50%); }
}

.fleet-card{
    width:320px;             
    background:#fff;
    position:relative;
    overflow:hidden;
    box-shadow:0 4px 10px rgba(0,0,0,0.1);
    flex-shrink:0;         
    cursor:pointer;
}
.fleet-top{
    height:180px;
    background:#f7931a; 
    position:relative;
    overflow:hidden;
}

.fleet-top img{
    position:absolute;
    bottom:32px;
    left:50%;
    transform:translateX(-50%);
    width:220px;
}

.fleet-content{
    padding:40px 20px 25px;
    text-align:center;
}

.fleet-location{
    font-size:13px;
    margin:10px 0 20px;
    color:#666;
}

.fleet-row{
    display:flex;
    justify-content:space-between;
    background:#f1f1f1;
    padding:10px 15px;
    margin-bottom:35px;
    font-size:14px;
}

.fleet-btn{
    padding:10px;
    background:none;
    margin-top:15px;
    cursor:pointer;
    transition:.3s;
    color:white;
    font-weight: 500;
    border:none;
    background-color: #f7931a;
    transition: 0.3s ease;
    border:2px solid #f7931a;
    text-decoration: none;
}

.fleet-btn:hover{
    background:#ffffff;
    color:#f7931a;
    border:2px solid #f7931a;
}

.fleet-overlay{
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    height:0;
    background:black;
    transition:.5s ease;
    z-index:2;
}

.fleet-card.active .fleet-overlay{
    height:100%;
}



@media(max-width:768px){
    .fleet-card{
        width:260px;
    }
}

@media(max-width:480px){
    .fleet-card{
        width:220px;
    }
}



/* cta-SECTION */
html, body {
    overflow-x: hidden;
}
.car-section{
    padding:80px 60px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
    overflow-x: hidden !important;
}


.car-left{
    position:relative;
    flex:1;
    display:flex;
    justify-content:center;
    
}


.orange-bg{
    width:300px;
    height:450px;
    background:#ff9800;
    position:absolute;
    left:40px;
    clip-path: polygon(0 0,100% 0,100% 100%,0 85%);
    z-index:1;
     overflow: hidden;
}


.car-left img{
    width:520px;
    position:relative;
    z-index:2;
    width: 100%;
    overflow: hidden;
}


.price-tag{
    position:absolute;
    top:-26px;
    right:110px;
    background:#111;
    color:#fff;
    padding:15px 25px;
    font-weight:bold;
    z-index:3;
}


.car-right{
    flex:1;
}

.sub-title{
  
    color: #ffffff;
    font-weight: bold;
    letter-spacing: 1.5px;
    width: 186px;
    margin-bottom: 15px;
    padding: 6px 12px;
    background-color: #ff9800;
}

.car-right h1{
    font-size:42px;
    margin-bottom:20px;
    line-height:1.2;
}

.car-right p{
    color:#666;
    line-height:1.7;
    margin-bottom:30px;
}

.features{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px 40px;
    margin-bottom:30px;
}

.feature{
    display:flex;
    align-items:center;
    gap:10px;
    color:#444;
}

.feature i{
    color:#ff9800;
}

.book-btn-our{
    background:#ff9800;
    border:none;
    padding:15px 30px;
    font-size:16px;
	color:white;
    cursor:pointer;
     border:2px solid #ff9800;
     transition: 0.3s ease;
     text-decoration: none;
     margin-top: 13px;
}
.book-btn-our:hover{
  color:#ff9800;
  background-color: white;
  border:2px solid #ff9800;
}

@media(max-width:992px){
    .car-section{
        flex-direction:column;
        text-align:center;
    }

    .car-left img{
        width:100%;
        max-width:450px;
    }

    .orange-bg{
        left:50%;
        transform:translateX(-50%);
    }

    .features{
        grid-template-columns:1fr;
    }
}




/* ================= RESPONSIVE FIX ================= */

/* Tablet */
@media (max-width:1024px){

.car-section{
    flex-direction:column;
    padding:60px 30px;
    gap:40px;
}

.car-left,
.car-right{
    width:100%;
}

.car-left{
    justify-content:center;
}

.car-left img{
    max-width:420px;
}

.orange-bg{
    left:50%;
    transform:translateX(-50%);
}

.price-tag{
    right:50%;
    transform:translateX(50%);
}

.car-right{
    text-align:center;
}

.car-right h1{
    font-size:32px;
}

.features{
    justify-content:center;
}

}


/* Mobile */
@media (max-width:768px){

.car-section{
    padding:50px 20px;
}

.car-left img{
    max-width:300px;
}

.orange-bg{
    width:220px;
    height:320px;
}

.price-tag{
    top:-15px;
    padding:10px 16px;
    font-size:14px;
}

.car-right h1{
    font-size:26px;
}

.car-right p{
    font-size:15px;
}

.features{
    grid-template-columns:1fr;
    gap:12px;
    text-align:left;
}

}


/* Small Mobile */
@media (max-width:480px){

.car-section{
    padding:40px 15px;
}

.car-left img{
    max-width:240px;
}

.orange-bg{
    width:180px;
    height:260px;
}

.car-right h1{
    font-size:22px;
}

.car-right p{
    font-size:14px;
}

.book-btn-our{
    padding:12px 20px;
    font-size:14px;
}

}








.blog-card{
    max-width:900px;
    margin:auto;
    background:#fff;
    box-shadow:0 4px 10px rgba(0,0,0,0.08);
}

.blog-image{
    position:relative;
}

.blog-image img{
    width:100%;
    display:block;
    margin-top: 35px;
}

.category{
    position:absolute;
    bottom:20px;
    left:20px;
    background:#ff9800;
    color:#fff;
    padding:10px 18px;
    font-size:14px;
    font-weight:500;
}

.blog-content{
    padding:30px;
}

.meta{
    font-size:14px;
    color:#999;
    display:flex;
    gap:20px;
    align-items:center;
    margin-bottom:15px;
}

.meta i{
    color:#ff9800;
    margin-right:6px;
}


.blog-content h2{
    font-size:28px;
    margin-bottom:15px;
}


.blog-content p{
    color:#666;
    line-height:1.7;
    margin-bottom:25px;
}
.blog-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
    border-top:1px solid #eee;
    padding-top:20px;
    font-size:15px;
}

.read-more{
       color: #ffffff;
    font-weight: 500;
    text-decoration: none;
    background-color: #ff9800;
    padding: 6px 12px;
}

.read-more i{
    margin-left:5px;
}

.comments{
    color:#999;
}

.comments i{
    color:#ff9800;
    margin-right:5px;
}
@media(max-width:768px){
    .blog-content h2{
        font-size:22px;
    }

    .blog-bottom{
        flex-direction:column;
        gap:10px;
        align-items:flex-start;
    }
}