* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;

}



.top-bar span {
  margin-left: 25px;
}



.logo img {
  width: 101px;
}

.nav-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 15px;
}

nav ul li {
  position: relative;
}

nav ul li a {
  text-decoration: none;
  color: #000;
  font-weight: bold;
  font-size: 16px;
  padding: 10px;
  display: inline-block;
  position: relative;
  transition: color 0.3s ease;
}

nav ul li a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #f26522;
  transition: width 0.3s ease;
}

nav ul li a:hover {
  color: #f26522;
}

nav ul li a:hover::after {
  width: 100%;
}

nav ul li ul {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  padding: 5px 0;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  display: none;
  width: max-content;
  border-radius: 6px;
  z-index: 1000;
  transition: all 0.3s ease;
}

nav ul li:hover > ul {
  display: block;
}

nav ul li ul li a {
  font-size: 15px;
  padding: 10px 15px;
  display: block;
  /* font-weight: 500; */
  color: #333;
}

nav ul li ul li a:hover {
  background: #f8f8f8;
  color: #f26522;
}

@media (max-width: 768px) {
  .fleet-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  .main-img {
    height: 220px !important;}
  .nav-toggle {
    display: block;
    color: #000;
  }

  nav {
    width: 100%;
  }

  nav ul {
    flex-direction: column;
    align-items: flex-start;
    background: #fff;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease;
  }

  nav ul.navs.active {
    max-height: 1000px;
    padding: 10px 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }

  nav ul li {
    width: 100%;
  }

  nav ul li ul {
    display: none;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  nav ul li.show > ul {
    width: max-content;
    background: antiquewhite;
    display: block;
    opacity: 1;
    max-height: 500px;
    padding-top: 10px;
  }
  

}


.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 98%;
  background-size: 100% 98%;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 0;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.nav-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  font-size: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
}

.nav-left {
  left: 20px;
}

.nav-right {
  right: 20px;
}

.vehicles {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 15px;
  flex-wrap: wrap;
  padding: 20px;
  background: #fff;
}

.vehicles img {
  max-height: 160px;
}

@media (max-width: 768px) {
  .custom-lightbox img {
    max-width: 90%;
  max-height: 90%;
    border-radius: 10px;
  }
  nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .vehicles {
    flex-direction: column;
    align-items: center;
  }

  .nav-button {
    width: 40px;
    height: 40px;
    font-size: 24px;
  }

  nav ul li ul {
    position: static;
    box-shadow: none;
  }
}

.slide1 {
  background-image: url('./images/slider-2.jpg');
}

.slide2 {
  background-image: url('./images/slider-4.jpg');
}

.slide3 {
  background-image: url('./images/slider-3.jpg');
}

.slide4 {
  background-image: url('./images/slider-1.jpg');
}

.slide5 {
  background-image: url('./images/slider-5.jpg');
}

.slide6 {
  background-image: url('./images/slder-7.jpg');
}

.slide7 {
  background-image: url('./images/slider-6.jpg');
}






.icon-div-inner:hover {
  transform: translateY(-15px);
}


.icon-div-inner h6 {
  color: #094174;
  font-size: 17px;
  font-weight: 600;
  margin: 5px 0;
}

.margin-top {
  margin-top: 35px !important;
}

.text-left {
  text-align: left;
}
.fade-in-on-scroll {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.fade-in-on-scroll.show {
  opacity: 1;
  transform: translateY(0);
}
.d-align {
  gap: 20px;
  display: flex;
}

.col-og {
  color: #fe7524 !important;
}
.float-icon {
  animation: float 2.5s ease-in-out infinite;
  
}


@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.slider-wrapper {
  overflow: hidden;
  width: 100%;
  background: #fff;
  padding: 40px 0;
}

.slider-wrapper:hover .slider-track {
  animation-play-state: paused;
}

.slider-track {
  display: flex;
  width: max-content;
  animation: scroll 30s linear infinite;
}

.place-card {
  border: 2px solid #fe7524;
  text-align: left;
  background: #ffffff;
  border-radius: 15px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;    }

.place-card .content {
  padding: 18px;

}
.place-card:hover{
transform: translateY(-10px);
box-shadow: 0 12px 20px rgba(0, 123, 255, 0.285); 
}
.place-card img {
  border-radius: 15px 15px 0 0;

  object-fit: cover;
  width: 100%;
  height: 250px;
}

.place-card h5 {
  font-family: "Source Serif Pro", serif;

  border-bottom: 3px;
  color: #094174;
  display: inline-block;
  font-size: 20px;
  font-weight: 600;
  line-height: 29px;
  margin-left: 0;
  transition: .3s;

}



.card-content h4:hover {
  color: #fe7524;

}





a {
  text-decoration: none;
}



.card:hover {
  transform: translateY(-10px);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.stats-section {
  padding: 60px 0;
  border-top: 2px solid orange;
  border-bottom: 2px solid orange;
  background: #fff;
}

.stats-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #094174;
}

.stats-label {
  font-family: "Source Serif Pro", serif;

  font-size: 0.9rem;
  color: orange;
  margin-bottom: 10px;
}

.stats-title {
  font-family: "Source Serif Pro", serif;

  font-size: 1.1rem;
  color: #666;
  font-weight: 500;
}

.counter {
  display: block;
}

.img-text-overlay-left {
  font-family: "Source Serif Pro", serif;

  position: absolute;
  bottom: 0px;
  left: 0px;
  background-color: rgba(255, 255, 255, 0.7);
  align-items: center;
  justify-content: space-around;
  display: flex;
  width: 150px;
  height: 150px;
  font-size: 20px;
  color: #003366;
  font-weight: 500;
}

.img-text-overlay-right {
  font-family: "Source Serif Pro", serif;

  position: absolute;
  bottom: 0px;
  right: 0px;
  background-color: rgba(255, 255, 255, 0.7);
  justify-content: space-around;
  align-items: center;
  display: flex;
  width: 150px;
  height: 150px;
  font-size: 20px;
  color: #003366;
  font-weight: 500;
}

.img-text-overlay-top {
  font-family: "Source Serif Pro", serif;

  position: absolute;
  top: 0;
  left: 0px;
  background-color: rgba(255, 255, 255, 0.7);
  justify-content: space-around;
  align-items: center;
  display: flex;
  width: 150px;
  height: 150px;
  font-size: 20px;
  color: #003366;
  font-weight: 500;
}

.img-container {
  position: relative;
  overflow: hidden;
}

.img-container img {
  transition: transform 0.5s ease;
  width: 100%;
  height: auto;
  display: block;
}
.img-container img:hover {
  transform: scale(1.05);
}

.right-image {
  height: 50%;
  object-fit: cover;
}

.side-img {
  height: 340px;
  object-fit: cover;
}

.main-img {
  height: 95%;
  object-fit: cover;
}


.img-container:hover .img-text-overlay-top,.img-container:hover .img-text-overlay-left,.img-container:hover .img-text-overlay-right {
  background-color: rgb(239 151 19 / 70%);}


.testimonial-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 22%);
  z-index: 3;
}

.div-container p{
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
}

.testimonial-slide p {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 30px;
}
.div-container h4 {
  font-family: "Source Serif Pro", serif;

  font-size: 28px;

  font-weight: bold;
  color: #000;
  margin: 0 0 10px;
}
.testimonial-slide h4 {
  font-family: "Source Serif Pro", serif;

  font-size: 18px !important;

  font-weight: bold;
  color: #000;
  margin: 0 0 10px;
}

.stars {
  color: #fe7524;

  font-size: 20px;
}

.swiper-pagination-bullet {
  background-color: #ccc;
  width: 10px;
  height: 10px;
  margin: 0 4px !important;
}

.swiper-pagination-bullet-active {
  background-color: #0066ff !important;
}


.banner-top::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.6); 
  z-index: 0;
}


.term-item {
  display: flex
;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 25px;
}
.term-container h3 {
  font-weight: 600;
  display: block;
  font-size: 18px;
  color: #ff5722;
  margin-bottom: 6px;
}
.term-container h5 {
  text-align: left;
  font-weight: 600;
  display: block;
  font-size: 22px;
  color: #000000;
  margin-bottom: 18px;
}
.term-number {
  min-width: 35px;
  height: 35px;
  background-color: #ff5722;
  color: white;
  font-weight: bold;
  font-size: 16px;
  border-radius: 50%;
  display: flex
;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.term-content {
  text-align: left;
  flex: 1;
}
.contact-section {
  background-color: #ffffff;
  padding: 30px 30px;
  max-width: 700px;
  margin: 50px auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.contact-section h2 {
  color: #e63900;
  font-size: 32px;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.contact-info span {
  font-weight: bold;
  color: #111;
}

.contact-info a {
  color: #e63900;
  text-decoration: none;
  transition: 0.3s;
}

.contact-info a:hover {
  text-decoration: underline;
}

.icon {
  margin-right: 8px;
  color: #e63900;
}



@media(max-width: 767px) {
  .place-card img {
    border-radius: 15px 15px 0 0;
    object-fit: cover;
    width: 100%;
    height: 215px !important;
}
.img-text-overlay-left, .img-text-overlay-right, .img-text-overlay-top {
  width: max-content !important;
  height: max-content !important;
  padding: 20px !important;
}
  .term-container h5 {
    text-align: center;
    font-weight: 600 !important;
    font-size: 20px !important;
  }
  .contact-section {
    background-color: #ffffff;
    padding: 20px 20px !important;}
  .card {
    box-shadow: 0 5px 8px rgb(10 128 255 / 41%);
    flex: 0 0 auto;
    width: 280px;
    margin: 0 15px;
    background: #ffffff;
    border-radius: 15px;
    transition: transform 0.3s ease;
  }
  
  .card img {
    border: 3px solid #fe7524;
    width: 100%;
    border-radius: 15px 15px 0 0;
    height: 200px;
    object-fit: cover;
  }
  .icon-div {
    align-items: center;
    /* background: #f7f8fa; */
    border-radius: 50%;
    /* display: flex;
    height: 196px; */
    justify-content: center;
    position: relative;
    text-align: center;
    transition: .3s;
    height: 150px;
    /* width: 80px; */
  }
  
  .icon-div-inner {
    transition: transform 0.4s ease;
    gap: 59px;
    display: flex;
    background: #fff;
    border: 1px solid #f7f7f7;
    border-radius: 50%;
    box-shadow: 0 4px 15px #cdcdcd0d;
    height: 104px;
    line-height: 104px;
    margin: 0 auto 10px;
    width: 104px;
    flex-wrap: wrap;
    justify-content: space-around;
  }
  .icon-div-img {
    height: 45px;
    margin: 0 auto;
    width: 63px;
  }
  .float-div{
    text-align: left;
  }
  .hero-slider {
    position: relative;
    width: 100%;
    height: 30vh;
    overflow: hidden;
  }
  
.top-bar {

  background-color: rgb(254, 117, 36);
  /* display: flex; */
  color: white;
  padding: 8px 10px;
  text-align: left;
  font-size: 15px;
  justify-content: flex-start;
  font-weight: 700;
}
  .top-bar span{
    align-items: center;
    display: flex;
    gap: 10px;
  }
  
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  background: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 10;
}
.div-container {
  text-align: center;
  padding: 30px 30px;
}

.div-container h6 {
  font-family: "Source Serif Pro", serif;

  color: #333;
  font-size: 1.25rem;

}

.div-container h2 {
  font-family: "Source Serif Pro", serif;

  color: #094174;
  font-size: 28px;
  font-weight: 700;
  line-height: 46px;
}
.card-content div {
  text-decoration: none;
  color: #fe7524;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
}
.card-content h4 {
  font-family: "Source Serif Pro", serif;

  color: #094174;
  display: inline-block;
  font-size: 25px !important;
  font-weight: 600;
  line-height: 42px;
  margin: 10px 0;
  transition: .3s;
}
.card-content {
  display: flex;
  min-height: 169px;
  padding: 24px 30px 17px 30px;
  text-align: center;
  justify-content: space-between;
  flex-direction: column;
}

.testimonial-left {
  z-index: 5;
  border-radius: 0 30px 0px 0;
  position: absolute;
  bottom: 0;
  padding: 30px 40px;
  width: 100%;
  background: white;
}
.testimonial-section {
  position: relative;
  background-image: url('./images/testimonial-bg.jpg');
  background-size: cover;
  background-position: center;
  min-height: 600px;

}
.stats-section {
  padding: 24px 0 !important;}
.stats-number {
  font-size: 30px !important;
  font-weight: 700;
  color: #094174;
}
.testimonial-left h3 {
  font-family: "Source Serif Pro", serif;

  color: #fe7524;
  font-weight: bold;
  font-size: 22px;
  margin-bottom: 5px;
}
.place-card{
  margin-bottom: 20px;
}
.testimonial-left h2 {
  font-family: "Source Serif Pro", serif;

  font-weight: 600;
  font-size: 28px;
  color: #094174;
  margin: 10px 0 20px;
}
.banner-top {
  position: relative;
  height: 220px;
  background-image: url('./images/top-banner.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.banner-top h1 {
  font-family: "Source Serif Pro", serif;

  position: relative;
  z-index: 1;
  font-size: 30px;
  font-weight: 500;
}
.term-container{
  text-align: left;
  margin: auto;
    background: #fff;
    padding: 20px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.div-img{
  height: 180px;
  object-fit: cover;
  width: 100%;
}
.gallery-img{
  width: 100%;
  padding: 6px;
    height: 190px;
    object-fit: cover;
    border-radius: 6px;
    transition: transform 0.3s;
}
.side-contact-section {
  /* margin: 20px; */
  border: 2px dotted orangered;
  padding: 20px;
  max-width: 400px;
}
.custom-gallery-container {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 15px;
  padding: 20px;
}
.contact-section-new {
  /* display: flex; */
  justify-content: center;
  gap: 0;
  margin: 10px auto;
  max-width: 1000px;
}
.map-container iframe {
  width: 100%;
  height: 250px;
  border: 0;
}
}

@media(min-width: 768px) and (max-width: 900px)  {
  .contact-section-new {
    display: flex;
    justify-content: center;
    gap: 0;
    margin: 10px auto;
    max-width: 1000px;
  }
  .custom-lightbox img {
    object-fit: cover;
    width: 50%;
  height: 70%;
    border-radius: 10px;
  }
  .custom-gallery-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 20px;
  }
  .fleet-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  .side-contact-section {
    margin: 20px;
    border: 2px dotted orangered;
    padding: 20px;
    max-width: 400px;
  }
  .card-content div {
    text-decoration: none;
    color: #fe7524;
    font-size: 24px;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
  }
  .card {
    box-shadow: 0 5px 8px rgb(10 128 255 / 41%);
    flex: 0 0 auto;
    width: 380px;
    margin: 0 15px;
    background: #ffffff;
    border-radius: 15px;
    transition: transform 0.3s ease;
  }
  
  .card img {
    border: 3px solid #fe7524;
    width: 100%;
    border-radius: 15px 15px 0 0;
    height: 250px;
    object-fit: cover;
  }
  .div-container {
    text-align: center;
    padding: 50px 50px;
  }
  
  .div-container h6 {
    font-family: "Source Serif Pro", serif;
  
    color: #333;
    font-size: 1.25rem;
  
  }
  
  .div-container h2 {
    font-family: "Source Serif Pro", serif;
  
    color: #094174;
    font-size: 40px;
    font-weight: 700;
    line-height: 46px;
  }
  
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  background: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 10;
}
  .hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
  }
  
.top-bar {

  background-color: rgb(254, 117, 36);
  display: flex;
  color: white;
  padding: 8px 50px;
  text-align: right;
  font-size: 15px;
  justify-content: flex-start;
  font-weight: 700;
}
.float-div{
  margin-left: 100px;
  text-align: left;
}
.icon-div {
  align-items: center;
  background: #f7f8fa;
  border-radius: 50%;
  display: flex;
  height: 196px;
  justify-content: center;
  position: relative;
  text-align: center;
  transition: .3s;
  height: 180px;
  width: 180px;
}

.icon-div-inner {
  transition: transform 0.4s ease;
  gap: 59px;
  display: flex;
  background: #fff;
  border: 1px solid #f7f7f7;
  border-radius: 50%;
  box-shadow: 0 4px 15px #cdcdcd0d;
  height: 104px;
  line-height: 104px;
  margin: 0 auto 10px;
  width: 104px;
  flex-wrap: wrap;
  justify-content: space-around;
}
.icon-div-img {
  height: 45px;
  margin: 0 auto;
  width: 63px;
}
.card-content h4 {
  font-family: "Source Serif Pro", serif;

  color: #094174;
  display: inline-block;
  font-size: 32px !important;
  font-weight: 600;
  line-height: 42px;
  margin: 10px 0;
  transition: .3s;
}
.card-content {
  display: flex;
  min-height: 199px;
  padding: 24px 32px 17px 32px;
  text-align: center;
  justify-content: space-between;
  flex-direction: column;
}
.testimonial-left {
  z-index: 5;
  border-radius: 0 30px 0px 0;
  position: absolute;
  bottom: 0;
  padding: 50px 60px;
  width: 800px;
  background: white;
}
.testimonial-section {
  position: relative;
  background-image: url('./images/testimonial-bg.jpg');
  background-size: cover;
  background-position: center;
  min-height: 600px;

}
.testimonial-left h3 {
  font-family: "Source Serif Pro", serif;

  color: #fe7524;
  font-weight: bold;
  font-size: 22px;
  margin-bottom: 5px;
}

.testimonial-left h2 {
  font-family: "Source Serif Pro", serif;

  font-weight: 600;
  font-size: 30px;
  color: #094174;
  margin: 10px 0 20px;
}
.banner-top {
  position: relative;
  height: 300px;
  background-image: url('./images/top-banner.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.banner-top h1 {
  font-family: "Source Serif Pro", serif;

  position: relative;
  z-index: 1;
  font-size: 2.8rem;
  font-weight: 500;
}
.term-container{
  text-align: left;
  margin: auto;
    background: #fff;
    padding: 30px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.div-img{
  height: 370px;
  object-fit: cover;
  width: 100%;
}
.gallery-img{
  width: 100%;
  padding: 6px;
    height: 90px;
    object-fit: cover;
    border-radius: 6px;
    transition: transform 0.3s;
}
.map-container iframe {
  width: 100%;
  height: 400px;
  border: 0;
}
 
}

@media (min-width: 901px) {
  .map-container iframe {
    width: 100%;
    height: 400px;
    border: 0;
  }
  .contact-section-new {
    display: flex;
    justify-content: center;
    gap: 0;
    margin: 10px auto;
    max-width: 1000px;
  }
  .custom-lightbox img {
    object-fit: cover;
    width: 50%;
  height: 70%;
    border-radius: 10px;
  }
  .custom-gallery-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 20px;
  }
  .fleet-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  .div-img{
    height: 370px;
    object-fit: cover;
    width: 100%;
  }

  .card-content h4 {
    font-family: "Source Serif Pro", serif;
  
    color: #094174;
    display: inline-block;
    font-size: 32px !important;
    font-weight: 600;
    line-height: 42px;
    margin: 10px 0;
    transition: .3s;
  }
  .card-content div {
    text-decoration: none;
    color: #fe7524;
    font-size: 24px;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
  }
  .card {
    box-shadow: 0 5px 8px rgb(10 128 255 / 41%);
    flex: 0 0 auto;
    width: 380px;
    margin: 0 15px;
    background: #ffffff;
    border-radius: 15px;
    transition: transform 0.3s ease;
  }
  
  .card img {
    border: 3px solid #fe7524;
    width: 100%;
    border-radius: 15px 15px 0 0;
    height: 250px;
    object-fit: cover;
  }
  .div-container {
    text-align: center;
    padding: 50px 100px;
  }
  
  .div-container h6 {
    font-family: "Source Serif Pro", serif;
  
    color: #333;
    font-size: 1.25rem;
  
  }
  
  .div-container h2 {
    font-family: "Source Serif Pro", serif;
  
    color: #094174;
    font-size: 40px;
    font-weight: 700;
    line-height: 46px;
  }
  
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  background: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 10;
}
  .hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
  }
  
.top-bar {

  background-color: rgb(254, 117, 36);
  display: flex;
  color: white;
  padding: 8px 50px;
  text-align: right;
  font-size: 15px;
  justify-content: flex-start;
  font-weight: 700;
}
.float-div{
  margin-left: 100px;
  text-align: left;
}
.icon-div {
  align-items: center;
  background: #f7f8fa;
  border-radius: 50%;
  display: flex;
  height: 196px;
  justify-content: center;
  position: relative;
  text-align: center;
  transition: .3s;
  height: 180px;
  width: 180px;
}

.icon-div-inner {
  transition: transform 0.4s ease;
  gap: 59px;
  display: flex;
  background: #fff;
  border: 1px solid #f7f7f7;
  border-radius: 50%;
  box-shadow: 0 4px 15px #cdcdcd0d;
  height: 104px;
  line-height: 104px;
  margin: 0 auto 10px;
  width: 104px;
  flex-wrap: wrap;
  justify-content: space-around;
}
.icon-div-img {
  height: 45px;
  margin: 0 auto;
  width: 63px;
}
.card-content {
  display: flex;
  min-height: 199px;
  padding: 24px 32px 17px 32px;
  text-align: center;
  justify-content: space-between;
  flex-direction: column;
}
.testimonial-left {
  z-index: 5;
  border-radius: 0 30px 0px 0;
  position: absolute;
  bottom: 0;
  padding: 50px 60px;
  width: 800px;
  background: white;
}
.testimonial-section {
  position: relative;
  background-image: url('./images/testimonial-bg.jpg');
  background-size: cover;
  background-position: center;
  min-height: 600px;

}
.testimonial-left h3 {
  font-family: "Source Serif Pro", serif;

  color: #fe7524;
  font-weight: bold;
  font-size: 22px;
  margin-bottom: 5px;
}

.testimonial-left h2 {
  font-family: "Source Serif Pro", serif;

  font-weight: 600;
  font-size: 30px;
  color: #094174;
  margin: 10px 0 20px;
}
.banner-top {
  position: relative;
  height: 300px;
  background-image: url('./images/top-banner.jpg'); 
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.banner-top h1 {
  font-family: "Source Serif Pro", serif;

  position: relative;
  z-index: 1;
  font-size: 2.8rem;
  font-weight: 500;
}
.term-container{
  text-align: left;
  margin: auto;
    background: #fff;
    padding: 30px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.gallery-img{
  width: 100%;
  padding: 6px;
    height: 90px;
    object-fit: cover;
    border-radius: 6px;
    transition: transform 0.3s;
}
.side-contact-section {
  margin: 20px;
  border: 2px dotted orangered;
  padding: 20px;
  max-width: 400px;
}
}

.detail-div{
  text-align: left;
}
.og{
  font-size: 20px;
  font-weight: 600;
  color: rgb(255, 65, 1) !important;
}
.detail-div h5{
  font-family: "Source Serif Pro", serif;

  margin-top: 15px;
  font-size: 22px;
  color: rgb(255, 65, 1);
  text-shadow: rgba(255, 255, 255, 0.7) 5px 5px 10px;
  font-weight: bold;;
}
.detail-div h1{
  font-family: "Source Serif Pro", serif;

  margin-top: 15px;
  font-size: 27px !important;
  color: rgb(255, 65, 1);
  text-shadow: rgba(255, 255, 255, 0.7) 5px 5px 10px;
  font-weight: bold;;
}
.detail-div h2{
  font-family: "Source Serif Pro", serif;

  margin-top: 15px;
  font-size: 22px !important;
  color: rgb(0, 0, 0);
  text-shadow: rgba(255, 255, 255, 0.7) 5px 5px 10px;
  font-weight: 500;;
}
.sidebar {
  padding-left: 20px;
}
.sidebar-item:hover, .side-contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.sidebar-item {
   transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-bottom: 2px solid #ff4101;
  margin-bottom: 10px;
  padding-bottom: 10px;
}
.sidebar-item .left{
  height: 60px;
  width: 30%;
}
.sidebar-item .left img{
  object-fit: cover;
  
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.sidebar-item .right{
  width: 80%;
  
}
.sidebar-item .right p{
 padding: 0 20px;
 text-decoration: none;
  
}

.side-contact-section h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}
.side-contact-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;

  background-color: orangered;
  color: white;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 15px;
  text-align: center;
}
.side-contact-card h4 {
  font-size: 24px;

  margin-bottom: 10px;
  font-weight: bold;
}
.side-contact-card i {
  color: #000;
  font-size: 30px;
  margin: 10px 0;
  display: block;
}

.gallery-title{
  font-size: 25px !important;
  color: black !important;
}
.gallery-item img{
  transition: transform 0.4s ease;
}
.gallery-item img:hover{
  transform: scale(1.1);
}
.gallery-container{
  padding: 20px;
}
.table-head{
  background-color: rgb(255, 65, 1); color: white; padding: 8px; border: 1px solid rgb(221, 221, 221);

}
.table-og{
  width: 100%; border-collapse: collapse; margin: 20px auto;

}
.table-row-bg{
  background-color: rgb(242, 242, 242);

}
.table-row td,.table-row-bg td{
  padding: 8px; border: 1px solid rgb(221, 221, 221); text-align: center;

}
.table-row td button:hover,.table-row-bg td button:hover{
  transform: scale(1.05);
}
.table-row td button,.table-row-bg td button{
  transition: transform 0.3s ease, box-shadow 0.3s ease;

  cursor: pointer; background-color: rgb(255, 65, 1); padding: 10px; border-radius: 8px; color: white;
  border: none;
}
.table-row:hover{
  background-color: rgb(242, 242, 242);


}
.accordion-header{
  font-family: 'Arial', sans-serif;
  font-weight: 600 !important;
  font-size: 22px !important;
  line-height: normal !important;
  margin: 0 !important;
  background: gray !important;
}
.accordion-button{
  padding: 22px;
  background: #cfe2ff;
  font-family: 'Arial', sans-serif;
color: #26266c;
  font-weight: 600 !important;
  font-size: 20px !important;
  line-height: normal !important;

}
.accordion{
  margin-top: 20px;
}
.test-card{
  text-align: center !important;
  margin-top: 20px;
  width: 100% !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  padding: 10px 20px !important;

}
footer {
  padding: 50px;
  background-color: #212529;
  color: #f1f1f1;
}
footer h5 {
  font-family: "Source Serif Pro", serif;
  font-weight: 600;
font-size: 18px;
  color:#fe7524;
}
.list-unstyled li{
  display: flex;
}
footer h4 {
  font-size: 25px;
  font-family: "Source Serif Pro", serif;
font-weight: 600;
  color:#ffffff;
}
footer ul li {
  margin-bottom: 8px;
}
footer ul li  a{
  color: #ffffff;
}
.fa-car {
  color: #fe7524;
}
.fleet-card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  
}

.fleet-card {
  border: 3px solid #fe7524;

  overflow: hidden;
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fleet-card:hover img {
  transform: scale(1.05);
}
.category{
  font-weight: 600;
  font-size: 18px;
  color: #fe7524;
}
.fleet-title{
  margin-top: 10px;
  font-weight: 600;
  font-size: 23px;
  font-family: "Source Serif Pro", serif;

}
.fleet-card-content{
  padding: 25px;
}

.custom-gallery-item {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 10px;
}
.custom-gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.custom-gallery-item:hover img {
  transform: scale(1.1);
}
.custom-gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 76%);;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}
.custom-gallery-item:hover .custom-gallery-overlay {
  opacity: 1;
}
.custom-plus-icon {
  font-size: 40px;
  color: white;
}
.custom-lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 76%);;

  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.custom-lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}


.contact-box-new {
  flex: 1;
  border: 2px solid orange;
  text-align: center;
  padding: 30px 20px;
}
.contact-box-new i {
  font-size: 40px;
  color: #006be6;
  margin-bottom: 10px;
}
.contact-box-new h3 {
  font-family: "Source Serif Pro", serif;

  font-size:25px;
  color: #fe7524;
  margin-bottom: 10px;
}
.contact-box-new p {
  margin: 5px 0;
  color: #000;
}
.map-container {
  margin-top: 20px;

  border-top: none;
}
.form-section-new {
  background: #fe7524; 
  padding: 40px;
}
.form-section-new h2 {
  font-family: "Source Serif Pro", serif;

  text-align: center;
  color: white;
  margin-bottom: 20px;
}
.form-section-new form {
  max-width: 900px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px 30px;
}
.form-section-new label {
  font-weight: 500;
  color: rgb(0, 0, 0);
  font-size: 16px;
  display: block;
  margin-bottom: 5px;
}
.form-section-new input, .form-section-new select, .form-section-new textarea {
  width: 100%;
  padding: 10px;
  border: none;
  font-size: 14px;
  outline: none;
}
.form-section-new textarea {
  width: 100%;
  grid-column: span 2;
  height: 150px;
}
.form-section-new .submit-btn {
  grid-column: span 2;
  text-align: center;
}
.form-section-new .submit-btn button {
  background: white;
  color: black;
  padding: 9px 20px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
}
.form-section-new .submit-btn button:hover {
  background: black;
  color: white;
}
@media (max-width: 768px) {
  .form-section-new form {
      grid-template-columns: 1fr;
  }
  .form-section-new textarea {
      grid-column: span 1;
  }
  .form-section-new .submit-btn {
      grid-column: span 1;
  }
}
.whatsapp-float {
  z-index: 1000;

  position: fixed;
  bottom: 20px;
  left: 0px;
  background: #48b737;
  color: white;
  height: 60px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  box-shadow: 0px 4px 6px rgba(0,0,0,0.3);
  transition: width 0.5s ease;
  overflow: hidden;
  white-space: nowrap;
  width: 60px; 
}
.whatsapp-float i {
  font-size: 28px;
  min-width: 60px; 
  text-align: center;
  transition: transform 0.4s ease; 
}
.whatsapp-float span {
  opacity: 0;
  transition: opacity 0.5s ease;
  padding-right: 15px;
}
.whatsapp-float:hover {
  width: 190px; 
}
.whatsapp-float:hover span {
  opacity: 1;
}
.whatsapp-float:hover i {
  transform: rotate(360deg); 
}
.call-float {
  z-index: 1000;
  position: fixed;
  bottom: 20px;
  right: 0px;
  background: #fe7524;
  color: white;
  height: 60px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  box-shadow: 0px 4px 6px rgba(0,0,0,0.3);
  transition: width 0.5s ease;
  overflow: hidden;
  white-space: nowrap;
  width: 60px; 
}
.call-float i {
  font-size: 28px;
  min-width: 60px; 
  text-align: center;
  transition: transform 0.4s ease; 
}
.call-float span {
  opacity: 0;
  transition: opacity 0.5s ease;
  padding-left: 15px;
}
.call-float:hover {
  width: 190px; 
}
.call-float:hover span {
  opacity: 1;
}
.call-float:hover i {
  transform: rotate(360deg);
}