* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
  }
  html {
  scroll-behavior: smooth;
}
  body {
    background-color: #fff;
    color: #222;
     margin-top: 160px; 
  }
  .container {
    max-width: 1400px;  
    margin: 0 auto;     
    padding: 0 20px;     
  }
  /* Top Bar */
  .top-bar {
  background-color: #000;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 53px;
  font-size: 16.5px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.3px;
  
}
.top-bar p,
.top-bar span {
  margin: 0;
}
.top-bar span {
  color:white;
  font-weight: 600;
}

  /* Header */
  header {
    position: fixed;
    top: 30px;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 5px #2b3490;
    z-index: 1000;   
  } 
  .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
  } 
  .logo {
    display: flex;
    align-items: center;
  }  
  .logo img {
    height: 90px;
    margin-right: 10px;
    margin-top: 10px;
  }
  .logo-contact{
    display: flex;
    align-items:center;
  }
  .logo-contacts{
    display: flex;
    align-items:center;
    margin: 20px;
  }  
  .logo h1 {
    font-size: 22px;
    font-weight: bold;
  } 
  .logo span {
    color: #2b3490;
  }
   nav ul {
    list-style: none;
    display: flex;
    gap: 28px;
  } 
  nav a {
    text-decoration: none;
    color:#2b3490;
    font-weight: 500;
    font-size: 19.5px;
  } 
  nav a:hover {
    color:  #f08523 ;
    text-decoration: underline;
  }
 .call-btn {
    background: #f08523;
    padding: 8px 20px;
    border-radius: 20px;
    color:white;
    font-weight: bold;
    text-decoration: none;
  }  
  .burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}
.burger .line {
  width: 28px;
  height: 3px;
  background-color: #2b3490;
  border-radius: 2px;
}

  /* Banner Section */
  .hero {
  background: 
    linear-gradient(
      rgba(46, 56, 253, 0.7), 
      rgba(105, 111, 239, 0.7)
    ),
    url("Image/RideTaxi.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  padding: 60px 0;
}
  .hero-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
  } 
  .hero-text {
    flex: 1;
  }  
  .hero-text h1 {
    font-size: 33px;
    margin-bottom: 20px;
    margin-top: 10px;
    font-weight: bold;
  } 
  .hero-text span {
    color:#f08523;
  } 
  .hero-text p {
    font-size: 25px;
    margin-bottom: 50px;
  } 
  .btn {
    background:#f08523;
    color: white;
    padding: 10px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    font-size: 20px;   
  }
  .call-button .btn span {
  color:#f08523; 
}
  .call-button{
    margin-bottom: 50px;
  }
  .stats {
    display: flex;
    gap: 70px;
    margin-top: 20px;
    margin-bottom: 60px;
    font-size: 18px;
  }
  .stats strong{
    color:#f08523;
    font-size: 30px;
  }
  /*Booking Form */
  .booking-form {
    flex: 1;
    background: #ffffff;
    color: #000;
    border-radius: 40px;
    border: 2px solid #2b3490;
    padding: 20px;
    /* box-shadow: 0 0 15px #f08523; */
  }
  .booking-form h3 {
    text-align: center;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 22px;
  } 
  
  .trip-type {
    display: flex;
    gap: 15px;
    /* padding-top: 5px; */
    font-weight: 600;
  }
  .trip-details{
    display: flex;
    justify-content: space-between;
    align-items: baseline;
  }
  .trip-btn {
  background-color: #ffffff;
  border: 1px solid #2b3490;
  color: #2b3490;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 25px;
  cursor: pointer;
  margin-bottom: 10px;
  font-size: 17px;
  transition: all 0.3s ease;
}
.trip-btn:hover {
  background-color: #2b3490;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(43, 52, 144, 0.2);
}

.trip-btn.active {
  background-color: #f08523;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(43, 52, 144, 0.3);
}
  .trip-type label {
    cursor: pointer;
    font-size: 17px;
  } 
  .text-box {
    display: flex;
    gap: 20px;
    /* margin-bottom: 10px; */
  } 
  .input-row {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
  } 
  .input-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
  }
  .input-group label {
    font-weight: 600;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 18px;
  } 
  .input-group label span {
    font-size: 16px;
  } 
  .booking-form input[type="text"],
  .booking-form input[type="tel"],
  .booking-form input[type="date"],
  .booking-form input[type="time"] ,
  .booking-form input[type="number"],
  .booking-form select{
    padding: 8px 12px;
    border: 1px solid #f08523;
    border-radius: 6px;
    font-size: 14px;
    outline-color: #f08523;
    transition: border-color 0.3s ease;
  } 
  .booking-form input[type="text"]:focus,
  .booking-form input[type="tel"]:focus,
  .booking-form input[type="date"]:focus,
  .booking-form input[type="time"]:focus,
  .booking-form input[type="number"]:focus {
    border-color:#2b3490;
  } 
  .booking-form .btn {
    width: 100%;
    padding: 12px;
    background-color: #f08523;
    border: none;
    color: white;
    font-weight: 700;
    font-size: 16px;
    border-radius: 10px;
    cursor: pointer;
    margin-top: 15px;
    transition: background-color 0.3s ease;
  } 
  .booking-form .btn:hover {
    background-color: #f08523;
  }
  .note {
    font-size: 15px;
    color: gray;
    text-align: center;
    margin-top: 5px;
  }
  .form-h3{
    /* padding-bottom: 5px; */
    color: #f08523;
  }
  .form-h2{
    text-align: center;
    padding-bottom: 5px;
    color: #2b3490;
  }
  .input-group {
    margin-bottom: 5px;
  }
  .hidden {
    display: none;
  }
  .submit-btn {
  background-color: #2b3490;
  border: none;
  color: white;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 10px;
  cursor: pointer;
  margin-top: 10px;
  font-size: 16px;
  /* transition: all 0.3s ease; */
}

.submit-btn:hover {
  background-color: #f08523;
}

  /* tariff us section */
  .triff-section{
    padding:45px 0px;
  }
  .triff-h2{
    text-align: center;
    font-size: 34px;
    padding: 0px 0px 10px 0px;
    color:#2b3490;
    /* font-family: 'Times New Roman', Times, serif; */
    font-weight: bold;
  }
  .triff-h2:hover{
    text-decoration: underline;
    color:#2b3490;
  }
  .triff-p{
    color:gray;
    font-size: 22px;
    text-align: center;
    padding-bottom: 20px;
  }
  /* Car Box */
  .car-container {
  display: grid;
  grid-template-columns: repeat(3,  1fr);
  gap: 5px;
  justify-items: center;
}
  .car-box {
    width: 420px;     
    border: 2.5px solid #2b3490;
    border-radius: 20px;
    overflow: hidden;    
    /* box-shadow: 0 0 35px rgba(0,0,0,0.2); */
    margin: 20px;
    padding: 20px 20px 5px 20px;
    background: #fff;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.car-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 35px rgba(0,0,0,0.3);
}
.car-box:hover .car-content h3 {
  color: #f08523;
}
.car-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.car-content {
  padding: 15px;
  text-align: center;
}

.car-content h3 {
  margin: 5px 0 5px;
  color: #2b3490;
  font-size: 24px;
  /* font-family: 'Times New Roman', Times, serif; */
}
.car-content h4 {
  color: #2b3490;
  font-size: 20px;
  padding :10px 0px 15px 0px;
}
.car-content p {
  color: #555;
  font-size: 0.95em;
  margin-bottom: 7px;
}
.car-content span{
  color:#f08523;
  font-weight: 500;
}
.car-content h3{
  font-weight: bold;
  padding-bottom: 10px;
}
.car-content button {
  background-color: #2b3490;
  color: white;
  border: none;
  font-size: 16px;
  padding: 8px 24px;
  border-radius: 5px;
  cursor: pointer;
  /* margin-bottom: 20px 0px; */
  /* transition: background 0.3s; */
}

.car-content button:hover {
  background-color: #f08523;
}
     /* About Us Section */
.about-us{
    /* text-align: center; */
    font-size: 36px;
    padding: 25px 0px 25px 25px;
    color:#2b3490;
    /* font-family: 'Times New Roman', Times, serif; */
} 
.about-us:hover{
  text-decoration: underline;
  /* color: white; */
}
.about-container{
    display: grid;
    grid-template-columns: repeat(2,  1fr);
    gap: 10px;
}
.about-container p{
  font-size: 22px;
  color:white;
  padding: 20px ;
  line-height: 1.6;       
  word-wrap: break-word;  
  white-space: normal;    
  text-align: justify;
}
.man-image {
  width: 100%;
  margin: 25px 0px;
  height: 500px;
  object-fit: cover;
  border-radius: 30px;
}
           /* small box */
.stats-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  /* max-width: 1000px; */
  margin: 0 auto;
  text-align: center;
}

.stat-box {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  padding: 30px 20px;
  transition: all 0.3s ease;
  border:1.5px solid #f08523;
}

.stat-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px #2b3490;
}

.stat-box .icon {
  font-size: 36px;
  color: #2b3490;
  background: #f9f4ee;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.stat-box h3 {
  font-size: 28px;
  font-weight: 700;
  color: #f08523;
  margin: 0;
}

.stat-box h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 10px 0 5px;
}

.stat-box p {
  font-size: 14px;
  color: #555;
  margin: 0;
}
           /* routes */
.routes-name{
    text-align: center;
    font-size: 30px;
    padding: 50px 0px 25px 0px;
    color:#2b3490;
    /* font-family: 'Times New Roman', Times, serif; */
}
.carousel-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.routes-name:hover{
  text-decoration: underline;
}
.routes-section {
  background-color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.routes-title {
  font-size: 28px;
  color: #2b3490;
  margin-bottom: 40px;
}
 .routes-container {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px;
  scrollbar-width: none;
}
 .route-card {
  flex: 0 0 300px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.route-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}
.route-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.route-info {
  padding: 15px 20px;
}

.route-info h3 {
  font-size: 18px;
  color: #f08523;
  margin-bottom: 8px;
}

.route-info p {
  font-size: 14px;
  color:gray;
}
.route-info span{
  color: #2b3490;
  font-size: 18px;
  font-weight: bold;
}
.book-btn {
  background-color: #f08523;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 8px 16px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.book-btn:hover {
  background-color: #2b3490;
}
.price {
  font-size: 18px;
  font-weight: 600;
  color: #2b3490;
}
.route-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px 18px 20px;
  border-top: 1px solid #eee;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #2b3490;
  color: #fff;
  border: none;
  padding: 10px 15px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
  z-index: 10;
}
.carousel-btn:hover {
  background-color: #f08523;
}
.carousel-btn.prev {
  left: 10px;
}
.carousel-btn.next {
  right: 10px;
}
/* dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  gap: 8px;
}
.carousel-dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background-color:#f5c69a;
  cursor: pointer;
  /* transition: background 0.3s; */
}
.carousel-dots button.active {
  background-color: #f08523;
}

                /* Footer section */
.footer {
  /* background-color:#2b3490; */
  border-top: 2px solid #f0f0f0;
  padding: 60px 0px 30px 0px;
  font-family: 'Poppins', sans-serif;
  /* margin-top: 100px; */
}

.footer-container {
  display: grid;
   grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
  align-items: start;
  /* flex-wrap: wrap; */
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-logo img {
  width: 130px;
  height: 80px;
}

.footer-logo h2 {
  color: #f08523;
  font-size: 25px;
  margin: 0;
}

.footer-logo span {
  background: #f08523;
  color: #fff;
  padding: 5px 8px;
  border-radius: 4px;
  font-size: 12px;
  text-transform: uppercase;
}

.footer-about p {
  color:white;
  font-size: 19px;
  line-height: 1.6;
  margin-top: 22px;
}
/* footer links */
.footer-links h3 {
  color: #f08523;
  font-size: 23px;
  /* margin-bottom: 10px; */
  padding: 10px 0px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  padding: 6px 0;
}

.footer-links ul li a {
  color:white;
  text-decoration: none;
  transition: 0.3s;
  font-size: 18px;
}

.footer-links ul li a:hover {
  color: #f08523;
}
/* service links */
.service-links h3 {
  color: #f08523;
  font-size: 23px;
  padding: 10px 0px;
}

.service-links ul {
  list-style: none;
  padding: 0;
}

.service-links ul li {
  padding: 6px 0;
}

.service-links ul li a {
  color:white;
  text-decoration: underline;
  transition: 0.3s;
  font-size: 18px;
}

.service-links ul li a:hover {
  color: #f08523;
}

.footer-contact {
  flex: 1 1 250px;
}

.footer-contact h3 {
  color: #f08523;
  font-size: 23px;
  padding: 15px 0px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px;
}

.contact-item i {
  color:#f08523;
  font-size: 20px;
  /* margin-top: 5px; */
}

.contact-item h4 {
  margin: 0;
  font-size: 15px;
  color:white;
}

.contact-item p {
  margin: 2px 0 0;
  color:#f08523 ;
  font-size: 15px;
}
.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 15px;
  margin-left: 5px;
}

.social-icons a {
  color:white;
  font-size: 20px;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  color: #f08523;
  transform: scale(1.2);
}
.copy-text{
  padding-bottom: 20px;
}
.copy-text p{
   color: white;
   font-size: 14px;
   text-align: center;
  }
.copy-text span {
  color:#f08523
}
.copy-text span:hover {
  cursor: pointer;
  text-decoration: underline;
}
  /* Mobile Devices (up to 600px) */
@media (max-width: 600px) {
  /* Top bar */
  .top-bar {
    flex-direction: column;
    text-align: center;
    font-size: 14px;
    padding: 8px 15px;
  }
  .top-bar span {
    margin-top: 5px;
  }
  /* Header Menu */
  /* .header-menus{
    display: flex;
    justify-content: flex-start;
    align-items: center;
  } */
    header {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 5px #2b3490;
    z-index: 1000;   
  } 
   .burger {
    display: flex;
  }
  .logo-contact {
    position: fixed;
    top: 70px;
    right: -100%;
    background-color: white;
    width: 200px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transition: right 0.4s ease;
  }
  .logo-contact.show {
    right: 0;
  }
  .logo-contacts {
    display: flex;
    align-items: center;
    /* margin: 20px; */
}
  .logo-contact nav ul {
    flex-direction: column;
    gap: 15px;
    margin: 30px 0px;
  }
  .logo-contact a {
    color: #2b3490;
    font-size: 18px;
  }
   .logo img {
    height: 70px;
  }
  nav ul {
    flex-direction: column;
    gap: 15px;
    margin-top: 10px;
  }
  nav a {
    font-size: 17px;
  }
  .call-btn {
    font-size: 15px;
    padding: 6px 14px;
  }
  .header-content {
    display: flex;
    flex-direction: row-reverse; 
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
  }
  /* Banner View */
  .hero {
    padding: 30px 10px;
  }
   .hero-flex {
    flex-direction: column;
    text-align: center;
  }
  .hero-text h1 {
    font-size: 22px;
    line-height: 1.3;
  }
  .hero-text p {
    font-size: 16px;
  }
   .btn {
    font-size: 16px;
    padding: 8px 15px;
  }
  .car-container {
    grid-template-columns: 1fr;
  }
  .booking-form {
    width: 100%;
    border-radius: 15px;
    padding: 15px;
  }
  .stats {
    flex-direction: column;
    gap: 15px;
    font-size: 15px;
  }
  .trip-btn {
    font-size: 15px;
    padding: 6px 14px;
  }
  .input-group label {
    font-size: 15px;
  }
  .booking-form input,
  .booking-form select {
    font-size: 13px;
    padding: 6px 10px;
  }
.submit-btn {
    font-size: 15px;
    padding: 8px 16px;
  }
  .form-h2 {
    font-size: 20px;
  }
  .form-h3 {
    font-size: 18px;
  }
  .note {
    font-size: 13px;
  }
  .trip-details{
    display:block;
    justify-content: space-between;
    align-items: baseline;
  }
  .input-row {
    flex-direction: column;
  }
  .text-box {
    flex-direction: column;
  }

  /* Tariff Section */
  .triff-section {
    padding: 35px 0;
  }
  .triff-h2 {
    font-size: 25px;
  }
  .triff-p {
    font-size: 16px;
    padding: 0 15px 10px 15px;
  }
   .car-box {
    width: 90%;
   padding: 15px;
  }
  .car-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
 .car-image {
    height: 160px;
  }
  .car-content h3 {
    font-size: 20px;
  }
 .car-content h4 {
    font-size: 17px;
  }
  .car-content p {
    font-size: 14px;
  }
  .car-content button {
    font-size: 14px;
    padding: 6px 16px;
  }
  
      /*About us  */
  .about-us {
    font-size: 26px;
    text-align: center;
    padding: 15px 0;
  }
  .about-container {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .about-container p {
    font-size: 15px;
    line-height: 1.5;
    padding: 10px 15px;
    text-align: justify;
  }
  .man-image {
    width: 95%;
    height: 250px;
    border-radius: 15px;
    margin: 0 auto 20px auto;
  }
       /* Small Box */
  .stats-container {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 0 15px;
  }
  .stat-box {
    padding: 18px 10px;
    border-radius: 10px;
  }
  .stat-box .icon {
    width: 50px;
    height: 50px;
    font-size: 28px;
  }
  .stat-box h3 {
    font-size: 22px;
  }
  .stat-box h4 {
    font-size: 15px;
  }
  .stat-box p {
    font-size: 12.5px;
  }
   
  /* Routes Section */
  .routes-name {
    font-size: 22px;
    padding: 30px 0 15px 0;
  }
  .routes-container {
    gap: 15px;
    padding: 10px;
  }
  .route-card {
    flex: 0 0 85%;
    margin: 0 auto;
  }
  .route-card img {
    height: 150px;
  }
  .route-info {
    padding: 10px 15px;
  }
   .route-info h3 {
    font-size: 15px;
  }
  .route-info p {
    font-size: 12.5px;
  }
  .route-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .price {
    font-size: 15px;
  }
  .book-btn {
    font-size: 13px;
    padding: 6px 10px;
    align-self: flex-end;
  }
  .carousel-btn {
    display: none;
  }
  .carousel-dots {
    margin-top: 20px;
    gap: 6px;
  }
  .carousel-dots button {
    width: 10px;
    height: 10px;
  }

  /* Footer Section */
  .footer {
    padding: 40px 0 25px 0;
  }
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  .footer-logo {
    justify-content: center;
  }
  .footer-logo img {
    width: 90px;
    height: 60px;
  }
  .footer-logo h2 {
    font-size: 18px;
  }
  .footer-about p {
    font-size: 14.5px;
  }
  .footer-links h3,
  .service-links h3,
  .footer-contact h3 {
    font-size: 18px;
  }
  .footer-links ul li a,
  .service-links ul li a {
    font-size: 14px;
  }
  .contact-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .contact-item h4,
  .contact-item p {
    font-size: 13px;
  }
  .social-icons {
    justify-content: center;
  }
  .social-icons a {
    font-size: 17px;
  }
  .copy-text p {
    font-size: 12px;
  }
}

/* Tablet Devices (601px - 992px) */
@media (min-width: 601px) and (max-width: 992px) {
  /* top bar */
  .top-bar {
    padding: 9px 53px;
    font-size: 16.5px;
  }
  /* Header Menu */
    header {
    position: fixed;
    top: 30px;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 5px #2b3490;
    z-index: 1000;   
  } 
  .header-content {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
  nav ul {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
  nav a {
    font-size: 18px;
  }
  .logo img {
    height: 75px;
  }
  /* Banner Section */
   .hero {
    padding: 40px 20px;
  }
  .hero-flex {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .hero-text h1 {
    font-size: 26px;
    margin-top: 40px;
  }
  .hero-text p {
    font-size: 18px;
    margin-bottom: 30px;
  }
  .stats {
    flex-direction: column;
    gap: 20px;
    align-items: center;
    font-size: 16px;
  }
  .stats strong {
    font-size: 25px;
  }
  .booking-form {
    width: 90%;
    padding: 15px;
    border-radius: 20px;
  }
  .trip-details {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .input-row {
    flex-direction: column;
  }
  .text-box {
    flex-direction: column;
    gap: 10px;
  }
  .input-group label {
    font-size: 16px;
  }
  .booking-form input,
  .booking-form select {
    font-size: 14px;
  }
  .submit-btn {
    width: 100%;
  }
  
  /* Traiff Section */
  .car-container {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .car-box {
    width: 85%;
    margin: 0 auto;
  }
  .car-content h3 {
    font-size: 22px;
  }
  .car-content p {
    font-size: 15px;
  }
  .car-content h4 {
    font-size: 18px;
  }
  .car-content button {
    font-size: 15px;
    padding: 8px 20px;
  }
 .triff-p {
    font-size: 18px;
    line-height: 1.5;
  }

   /* About Us */
    .about-us {
    text-align: center;
    font-size: 30px;
    padding: 20px 0;
  }
  .about-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .about-container p {
    font-size: 17px;
    padding: 10px 20px 20px 20px;
  }
  .man-image {
    width: 90%;
    height: 350px;
    border-radius: 20px;
    margin: 0 auto 25px auto;
  }

  /* Small Box */

   .stats-container {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 0 10px;
  }
  .stat-box {
    padding: 20px 10px;
  }
  .stat-box .icon {
    width: 55px;
    height: 55px;
    font-size: 30px;
  }
  .stat-box h3 {
    font-size: 24px;
  }
  .stat-box h4 {
    font-size: 16px;
  }
  .stat-box p {
    font-size: 13px;
  }

  /* Routes Section */

 .routes-name {
    font-size: 24px;
    padding: 35px 0 15px 0;
  }
  .routes-container {
    gap: 20px;
    padding: 10px;
  }
  .route-card {
    flex: 0 0 240px;
  }
  .route-card img {
    height: 160px;
  }
  .route-info h3 {
    font-size: 16px;
  }
  .route-info p {
    font-size: 13px;
  }
  .carousel-btn {
    padding: 8px 12px;
  }
  .carousel-dots {
    margin-top: 25px;
  }
 /* footer Section */

 .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 25px;
  }
   .footer-logo {
    justify-content: center;
  }
   .footer-logo img {
    width: 100px;
    height: 65px;
  }
  .footer-logo h2 {
    font-size: 20px;
  }
  .footer-about p {
    font-size: 15.5px;
    margin-top: 15px;
  }
  .footer-links,
  .service-links,
  .footer-contact {
    margin-top: 10px;
  }
  .footer-links h3,
  .service-links h3,
  .footer-contact h3 {
    font-size: 20px;
  }
  .footer-links ul li a,
  .service-links ul li a {
    font-size: 15px;
  }
  .contact-item i {
    font-size: 18px;
  }

  .contact-item h4 {
    font-size: 14px;
  }

  .contact-item p {
    font-size: 14px;
  }

  .social-icons {
    justify-content: center;
    margin-top: 10px;
  }

  .social-icons a {
    font-size: 18px;
  }

  .copy-text p {
    font-size: 13px;
    line-height: 1.4;
  }
  .contact-item {
    display: flex;
    justify-content: center;
  }
  .copy-text p {
    font-size: 18px;
  }
}

/*Laptop Devices (993px - 1400px) */
@media (min-width: 993px) and (max-width: 1400px) {
  /* header Menu */
    header {
    position: fixed;
    top: 30px;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 5px #2b3490;
    z-index: 1000;   
  } 
  .container {
    max-width: 1200px;
  }
  nav a {
    font-size: 19px;
  }
  .logo img {
    height: 90px;
  }
  /* Banner Section */
  .hero-flex {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .hero-text {
    width: 100%;
  }
  .hero-text h1 {
    font-size: 30px;
  }
  .hero-text p {
    font-size: 20px;
  }
    .booking-form {
    width: 80%;
  }
  .stats {
    justify-content: center;
    gap: 50px;
  }
   /* triff Section */
 .car-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .car-box {
    width: 90%;
    margin: 10px auto;
  }
  .triff-h2 {
    font-size: 30px;
  }
  .triff-p {
    font-size: 20px;
    padding: 0 20px 15px 20px;
  }
  /* About us */
  .about-us {
    font-size: 32px;
    padding-left: 15px;
    text-align: center;
  }
  .about-container {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 20px;
  }
  .about-container p {
    font-size: 18px;
    padding: 10px 15px;
  }
  .man-image {
    height: 400px;
    border-radius: 25px;
  }
  /* Small Box */

   .stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  .stat-box {
    padding: 25px 15px;
  }
  .stat-box h3 {
    font-size: 26px;
  }
  .stat-box h4 {
    font-size: 17px;
  }
  .stat-box p {
    font-size: 13.5px;
  }

  /* Routes Section */

.routes-name {
    font-size: 26px;
    padding: 40px 0 20px 0;
  }
  .route-card {
    flex: 0 0 270px;
  }
 .route-card img {
    height: 180px;
  }
  .route-info h3 {
    font-size: 17px;
  }
  .route-info p {
    font-size: 13.5px;
  }
  .price {
    font-size: 16px;
  }
  .book-btn {
    font-size: 13px;
    padding: 7px 12px;
  }

/* Footer Section */

 .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .footer-logo img {
    width: 110px;
    height: 70px;
  }
  .footer-logo h2 {
    font-size: 22px;
  }

  .footer-links h3,
  .service-links h3,
  .footer-contact h3 {
    font-size: 21px;
  }
  .footer-links ul li a,
  .service-links ul li a,
  .contact-item p {
    font-size: 16px;
  }
  .footer-about p {
    font-size: 16.5px;
  }
  .social-icons a {
    font-size: 18px;
  }
}
