/* Header Styles */

.navbar{
  position: relative;
  padding: 100px 0;
  border-bottom: 2px solid #ddd;
}
.navbar .nav-link {
  color: #000;
  transition: color 0.3s ease;
  padding: 10px 15px;
  border-radius: 4px;
  text-decoration: none; 
}

.navbar .nav-link:hover {
  color: #18B2D3;
  background-color: rgba(24, 178, 211, 0.1); 
}


.navbar .nav-link.active {
  color: #18B2D3;
  border-bottom: 2px solid #18B2D3; 
  background-color: rgba(24, 178, 211, 0.1);
}

.navbar .nav-item {
  margin-left: 15px;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  padding: 0.5rem 0;
  margin: 0;
  background-color: #ffffff;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
}

.dropdown-item {
  display: block;
  padding: 0.25rem 1.5rem;
  color: #212529;
  text-decoration: none;
}

.dropdown-item:hover {
  background-color: #f8f9fa;
}

.nav-item:hover .dropdown-menu {
  display: block;
}

.active-tab .nav-link {
  background-color: #e63946!important;
  color: white !important;
  border-radius: 5px;
}

/* Footer Styles */
ul {
  margin: 0px;
  padding: 0px;
}

.footer-section {
  background: #151414;
  position: relative;
}

.footer-cta {
  border-bottom: 1px solid #373636;
}

.single-cta i {
  color: #e63946;
  font-size: 30px;
  float: left;
  margin-top: 8px;
}

.cta-text {
  padding-left: 15px;
  display: inline-block;
}

.cta-text h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 2px;
}

.cta-text span {
  color: #757575;
  font-size: 15px;
}

.footer-content {
  position: relative;
  z-index: 2;
}

.footer-pattern img {
  position: absolute;
  top: 0;
  left: 0;
  height: 330px;
  background-size: cover;
  background-position: 100% 100%;
}

.footer-logo h2 {
  margin-bottom: 30px;
  color: #e63946;
}

.footer-logo img {
  max-width: 200px;
}

.footer-text p {
  margin-bottom: 14px;
  font-size: 14px;
  color: #7e7e7e;
  line-height: 28px;
}

.footer-social-icon span {
  color: #fff;
  display: block;
  font-size: 20px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 20px;
}

.footer-social-icon a {
  color: #fff;
  font-size: 16px;
  margin-right: 15px;
}

.facebook-bg {
  background: #3B5998;
}

.instagram-bg {
  background: #E4405F;
}

.whatsapp-bg {
  background: #25D366;
}

.twitter-bg {
  background: #000;
}

.linkedin-bg {
  background: #0077B5;
}

.footer-social-icon i {
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 38px;
  border-radius: 50%;
  color: #fff;
  margin-right: 15px;
}

.footer-widget-heading h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 40px;
  position: relative;
}

.footer-widget-heading h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  height: 2px;
  width: 50px;
  background: #e63946;
}

.footer-widget ul li {
  display: inline-block;
  width: 50%;
  margin-bottom: 12px;
}

.footer-widget ul li a:hover {
  color: #e63946;
}

.footer-widget ul li a {
  color: #878787;
  text-transform: capitalize;
}

.subscribe-form {
  position: relative;
  overflow: hidden;
}

.subscribe-form input {
  width: 100%;
  padding: 14px 28px;
  background: #2E2E2E;
  border: 1px solid #2E2E2E;
  color: #fff;
}

.subscribe-form button {
  position: absolute;
  right: 0px;
  background: #e63946;
  padding: 13px 20px;
  border: 1px solid #e63946;
  top: 8px;
}

.subscribe-form button i {
  color: #fff;
  font-size: 22px;
  transform: rotate(-6deg);
}

.copyright-area {
  background: #202020;
  padding: 25px 0;
}

.copyright-text p {
  margin: 0;
  font-size: 14px;
  color: #878787;
}

.copyright-text p a {
  color: #e63946;
}

.footer-menu li {
  display: inline-block;
  margin-left: 20px;
}

.footer-menu li:hover a {
  color: #e63946;
}

.footer-menu li a {
  font-size: 14px;
  color: #878787;
}

/* Home Styles */

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

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #333;
  background-color: #fff;
  margin: 0;
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

html {
  font-size: 100%;
  overflow-x: hidden;
}

p {
  margin-bottom: 0px !important;
}

@media (max-width: 768px) {
  html {
    font-size: 90%;
  }
}

@media (max-width: 576px) {
  html {
    font-size: 85%;
  }
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
  padding: 0;
}

button:focus {
  outline: none;
}

input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  border: 1px solid #ccc;
  padding: 0.5em;
  margin: 0.5em 0;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #007bff;
}

.odd_bg {
  background-color: #fff;
}

.even_bg {
  background-color: #e1f1f9;
}

.how-it-works,
.trending,
.adventure,
.choose_us,
.customer_say {
  padding: 50px 0;
  text-align: center;
}

.homeBanner .slick-slide {
  padding: 0;
}

.homeBanner .homeBannerImage {
  width: 100%;
}

.bannerContainerBox {
  background-color: #fff;
  position: relative;
  bottom: 100px;
  max-width: 1400px;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 0 20px 0 #00000029;
}

.bannerContainerText h2 {
  color: #AD161B;
  font-weight: 700;
  font-size: 35px;
  margin-bottom: 20px;
}

.bannerContainerText span {
  color: #012353;
}

.bannerContainerText p {
  line-height: 45px;
  color: #333333;
  font-size: 18px;
  font-weight: 400;
}

.bannerContainerButton .btn {
  width: 100%;
  height: 50px;
  border-radius: 10px;
  background-color: #AD161B;
  color: #fff;
  font-weight: 500;
  font-size: 20px;
  border: none;
  transition: all 0.3s ease-in-out;
}

.banner h2,
.how-it-works h2,
.trending h2,
.adventure h2,
.choose_us h2,
.customer_say h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.banner p,
.how-it-works p,
.trending p,
.adventure p,
.choose_us p,
.customer_say p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: #000;
}

footer {
  padding: 50px 0;
}

.copyright p {
  margin: 0;
}

.form-group.home-input input {
  padding: 0.375rem 0.75rem !important;
  border-radius: 0px !important;
}

.error {
  color: red;
}

.banner {
  position: relative;
}

.banner-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.banner h1 {
  font-size: 2.5rem;
  font-weight: 300;
}

.banner p {
  font-size: 1.2rem;
  margin: 20px 0;
}

.banner .btn {
  margin: auto;
  width: max-content;
}

.banner-content .button-group {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 400px;
  margin-left: 50px;
}

.banner-content .btn-tariffe,
.banner-content .btn-faq {
  background-color: #e63946;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.banner-content .btn-tariffe:hover,
.banner-content .btn-faq:hover {
  background-color: #613420;
}


@media (max-width: 768px) {
  .banner-image {
    background-size: cover;
    background-position: center;
    height: 60vh;
  }

  .banner-content {
    padding: 10px;
  }

  .banner-content .button-group{
    margin-top: 245px;
    margin-left: 0;
  }
}

.unique-advantages-section {
  background-color: #fafafa;
  padding: 60px 30px;
}

.advantage-section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 50px;
}

.advantages-timeline {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.advantage-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  position: relative;
  transition: transform 0.3s ease;
  padding: 20px;
  
  border-radius: 8px;
  z-index: 2;
}

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

.left-column {
  justify-self: flex-end;
}

.right-column {
  justify-self: flex-start;
}

.advantages-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  height: 100%;
  width: 2px;
  background-color: #e0e0e0;
  z-index: 1;
}

.icon-container {
  flex: 0 0 80px;
  height: 80px;
  background-color: #e63946;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.advantage-icon {
  color: white;
  width: 32px;
}

.text-container {
  flex: 1;
}

.text-container h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}

.text-container p {
  font-size: 1rem;
  color: #212529;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .advantages-timeline {
    grid-template-columns: 1fr;
  }

  .advantages-timeline::before {
    left: 20px;
  }

  .advantage-item {
    justify-self: center;
    flex-direction: row;
  }

  .left-column, .right-column {
    justify-self: center;
  }
}

.tabs-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 20px 0;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 100%;
  gap: 7px;
}

.tab {
  padding: 10px 20px;
  border: 2px solid #e63946;
  border-radius: 20px;
  background-color: #f1f1f1;
  color: #333;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.tab.active {
  background-color: #333;
  color: #fff;
}

@media (max-width: 599px) {
  .tabs-wrapper {
    width: 100%;
  }

  .tab {
    font-size: 12px;
    padding: 8px 16px;
  }
}

@media (min-width: 600px) {
  .tab {
    font-size: 14px;
    padding: 10px 20px;
  }
}

@media (min-width: 900px) {
  .tab {
    font-size: 15px;
    padding: 10px 15px;
  }
}

.testimonials {
  position: relative;
  overflow: hidden;
  background-color: #e1f1f9;
}
.testimonials .item {
  position: relative;
  padding: 40px 40px 0px;
  border-radius: 20px 20px 20px 0;
  background: #fff;
}
.testimonials .item .stars {
  position: absolute;
  top: 0;
  right: 0;
  padding: 10px 20px 10px 20px;
  border-radius: 0 0 0 20px;
  color: #e63946;
  background: #e1f1f9;
}
.testimonials .item .stars i {
  font-size: 10px;
}
.testimonials .item .stars .shap-left-top {
  position: absolute;
  top: -2px;
  left: -20px;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.testimonials .item .stars .shap-left-top svg {
  width: 24px;
  height: 24px;
}
.testimonials .item .stars .shap-right-bottom {
  position: absolute;
  bottom: -25px;
  right: -2px;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.testimonials .item .stars .shap-right-bottom svg {
  width: 24px;
  height: 24px;
}
.testimonials .item i.fa-quote-left {
  color: #e63946;
  font-size: 45px;
  margin-bottom: 10px;
}
.testimonials .item .text h5 {
  border-radius: 20px;
  font-family: "Outfit", sans-serif;
  color: #e63946;
  font-weight: 700;
  font-size: 14px;
}
.client_text .text {
  min-height: 130px;
}
.testimonials .item .text p {
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.95em;
  color: #000;
  margin-bottom: 15px;
}
.testimonials .item .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: -40px;
}
.testimonials .item .info .img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
}
.testimonials .item .info .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.testimonials .item .info h6 {
  font-family: "Outfit", sans-serif;
  color: #1b1b1b;
  font-weight: 400;
  font-size: 14px;
  margin-bottom: 0;
  margin-left: 15px;
}
.testimonials .item .info p {
  font-family: "Outfit", sans-serif;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.5em;
  color: #000;
  margin-bottom: 0;
  margin-left: 15px;
}
.testimonials .item .img-curv {
  position: relative;
  padding: 15px;
  border-radius: 0 40px 0 0;
  background: #e1f1f9;
}
.testimonials .item .img-curv .shap-left-top {
  position: absolute;
  top: -23px;
  left: -4px;
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}
.testimonials .item .img-curv .shap-left-top svg {
  width: 24px;
  height: 20px;
}
.testimonials .item .img-curv .shap-right-bottom {
  position: absolute;
  bottom: -2px;
  right: -22px;
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}
.testimonials .item .img-curv .shap-right-bottom svg {
  width: 24px;
  height: 24px;
}

.testimonials .text {
  min-height: 120px;
}

.scroll-top.show {
  display: block;
}

.scroll-top {
  position: fixed;
  right: 10px;
  bottom: 28px;
  background-color: #e63946;
  height: 50px;
  width: 50px;
  border-radius: 10px;
  display: none;
  cursor: pointer;
  z-index: 10;
}

.scroll-top:hover {
  background-color: #963840;
}

.scroll-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  height: 100%;
  width: 100%;
}

.banner-slider {
  width: 100%;
}

.banner-slide {
  position: relative;
  height: auto
}

.banner-image {
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.banner-content {
  color: white;
  padding: 20px;
  max-width: 500px;
}

.banner-content h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.banner-content p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.banner-content button {
  padding: 10px 20px;
  background-color: #ff5733;
  color: white;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.banner-content button:hover {
  background-color: #c63d22;
}

@media (max-width: 768px) {
  .banner-slide {
    height: auto;
  }

  .banner-content h1 {
    font-size: 1.8rem;
  }

  .banner-content p {
    font-size: 1rem;
  }

  .banner-content {
    padding: 10px;
  }
  .scroll-top {
    height: 35px;
    width: 35px;
    right: 10px;
  }
}

.all-faq-section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 30px;
  background: linear-gradient(135deg, #f3f3f3 50%, #e5e5e5 100%);
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.all-title {
  text-align: center;
  font-size: 34px;
  font-weight: bold;
  color: #1a1a1a;
  margin-bottom: 30px;
}

.all-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.all-faq-item {
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.all-faq-item:hover {
  transform: scale(1.02);
  background: linear-gradient(135deg, #fff, #f0f0f0);
}

.all-faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  color: #333;
  position: relative;
}

.all-faq-icon {
  font-size: 24px;
  font-weight: bold;
  transition: transform 0.3s ease;
  color: #666;
}

.all-active .all-faq-icon {
  transform: rotate(45deg);
}

.all-faq-answer {
  margin-top: 15px;
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  max-height: 200px;
  opacity: 1;
  transition: all 0.4s ease;
}

.all-faq-item:before {
  content: '';
  position: absolute;
  width: 6px;
  height: 100%;
  background: #e63946;
  top: 0;
  left: 0;
  border-radius: 5px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.all-active:before {
  transform: scaleX(1);
}

.all-active .all-faq-answer {
  opacity: 1;
  max-height: 500px;
}

.all-faq-answer p {
  margin: 0;
}

@media (max-width: 768px) {
  .all-faq-grid {
    grid-template-columns: 1fr;
  }
}

.car-card-container {
  display: flex;
  flex-wrap: wrap; 
  justify-content: flex-start;
  gap: 20px;
  margin: 50px auto;
}

.car-card {
  background-color: #faf8f5;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 20px;
  width: calc(33.333% - 20px);
  transition: transform 0.3s, box-shadow 0.3s;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 350px;
}

.car-card:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}

.car-card img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.car-card h3 {
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  color: #333;
  margin-top: 15px;
}

.car-card .stars {
  color: #d4af37;
  margin: 10px 0;
}

.car-card p {
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  color: #000;
  margin: 10px 0;
  flex-grow: 1;
}
.car-rating-line hr {
  border: 2px solid #d4af37;
  width: 50%;
  margin: 10px 0;
  align-self: center;
}
.car-description{
  margin-bottom: 10px;
}

.car-card .car-price {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0;
  color: #333;
}

.car-card button {
  background: none;
  border: 1px solid #d4af37;
  color: #333;
  padding: 10px 20px;
  border-radius: 5px;
  font-family: 'Sora', sans-serif;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.car-card button:hover {
  background: #d4af37;
  color: white;
}


@media (max-width: 768px) {
  .car-card {
      width: calc(50% - 20px);
  }
}

@media (max-width: 480px) {
  .car-card {
      width: 100%;
  }
  .car-card:hover {
    transform: scale(1.01);
  }
}

.car-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 15px;
}

.details-btn {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.details-btn:hover {
  background-color: #0056b3;
}

.whatsapp-btn {
  background-color: #25D366;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
  display: flex;
  align-items: center;
  gap: 5px;
}

.whatsapp-btn i {
  font-size: 18px;
}

.whatsapp-btn:hover {
  background-color: #128C7E;
}

/* About Styles */

.about-hero-section {
    background-color: #f8f9fa;
    background-image: linear-gradient(135deg, #E6F7FE, #FEEDE5);
    position: relative;
    text-align: center;
}

.about-hero-image-desktop {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 100%;
    margin: 0 auto;
    filter: brightness(40%);
}

.about-hero-image-mobile {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 100%;
    margin: 0 auto;
    filter: brightness(40%);
}

.banner-container {
    position: relative;
    min-height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    font-size: 36px;
    font-weight: bold;
    z-index: 2;
}


.banner-text p {
    font-size: 10px;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.banner-text h1 {
    font-size: 48px;
    filter: brightness(100%);
    font-weight: bold;
    color: black;
}

.banner-text h1 span {
    color: #963840;
}

.our-company-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
}

.our-company-section {
    padding: 50px 0;
}

.our-company-section .fw-bold {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #18B2D3;
}

.our-company-section p {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #000;
}

.our-company-section .btn-primary {
    background-color: #e63946;
    padding: 10px 20px;
    border-radius: 30px;
    margin-bottom: 25px
}

.our-company-section .btn-primary:hover {
    background-color: #831f27;
}

.our-company-section .row {
    display: flex;
    align-items: stretch;
}

.our-company-section .col-md-6 {
    display: flex;
    align-items: center;
    justify-content: center;
}

.our-company-section .image-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.what-we-do-section .img-fluid {
    width: 500px;
}

.text-left {
    text-align: left;
}

.mt-auto {
    margin-top: auto;
}

.col-md-6 p {
    margin-bottom: 20px;
}

.col-md-6 h2 {
    margin-bottom: 20px;
}

.col-md-6 a {
    align-self: flex-start;
}


.what-we-do-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
}

.what-we-do-section {
    background-color: #f9f9f9;
    padding: 50px 0;
}

.what-we-do-section .fw-bold {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #18B2D3;
}

.what-we-do-section p {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #000;
}

.what-we-do-section .btn-primary {
    background-color: #e63946;
    padding: 10px 20px;
    border-radius: 30px;
}

.what-we-do-section .btn-primary:hover {
    background-color: #831f27;
}

.what-we-do-section .row {
    display: flex;
    align-items: stretch;
}

.what-we-do-section .col-md-6 {
    display: flex;
    align-items: center;
    justify-content: center;
}

.what-we-do-section .image-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.text-left {
    text-align: left;
}

.mt-auto {
    margin-top: auto;
}

.col-md-6 p {
    margin-bottom: 20px;
}

.col-md-6 h2 {
    margin-bottom: 20px;
}

.col-md-6 a {
    align-self: flex-start;
}


.why-us-section {
    background-color: #fff;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    color: #000;
    margin-bottom: 50px;
    font-size: 24px;
}

.service-box {
    text-align: center;
    padding: 20px;
}

.service-icon {
    font-size: 50px;
    color: #18B2D3;
    margin-bottom: 20px;
}

.service-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #0e1e38;
    margin-bottom: 15px;
}

.service-description {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #6c757d;
}


.form-section {
    background-color: #f8f8f8;
}

.form-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #1f1f1f;
    margin-bottom: 20px;
}

.form-box .form-control {
    border-radius: 5px;
    border: 1px solid #c9a870;
    padding: 10px;
    font-size: 1rem;
    margin-bottom: 15px;
    background-color: #fff;
    color: #000;
}

.form-box .form-control::placeholder {
    color: #b0b0b0;
}

.btn-send {
    background-color: #000;
    color: #fff;
    border-radius: 0;
    padding: 10px 20px;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    width: 100%;
}

.btn-send:hover {
    background-color: #333;
}

.car-container {
    position: relative;
    overflow: hidden;
    height: auto;
    width: 100%;
}

.car-animation {
    position: relative;
    animation: drive 5s linear infinite;
}

@keyframes drive {
    0% {
        left: 100%;
    }

    100% {
        left: -100%;
    }
}

.car-animation:hover {
    animation-play-state: paused;
}

@media (max-width: 992px) {
    .form-section .row {
        flex-direction: column;
    }

    .car-image {
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .reverse {
        flex-direction: column-reverse;
    }

    .banner-container {
        min-height: 100px;
    }
}

/* Fleet Styles */

.custom-filters {
  padding: 20px;
  background-color: #f8f9fa;
  justify-content: flex-end;
}

.filter-label {
  font-size: 14px;
  font-weight: bold;
  color: #333;
  margin-bottom: 5px;
  display: block;
}

.filter-label i {
  color: #d4af37;
  margin-right: 8px;
}

.form-select {
  font-size: 16px;
  border: 2px solid #ddd;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  font-family: 'Sora', sans-serif;
}

.unique-card {
  background-color: #faf8f5;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s, box-shadow 0.3s;
}

.unique-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.unique-card-image {
  height: 180px;
  object-fit: contain;
}

.unique-card-title {
  font-size: 18px;
  font-weight: bold;
  color: #333;
}

.unique-stars {
  color: #ffd700;
}

.unique-card-price {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
}

.unique-more-details {
  background: none;
  border: 1px solid #d4af37;
  color: #333;
  padding: 10px 20px;
  border-radius: 5px;
  font-family: 'Sora', sans-serif;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.car-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
}

.whatsapp-btn i {
  margin-right: 5px;
  color: green;
}

/* Services Styles */

.section-hero-section {
  background-color: #f8f9fa;
  background-image: linear-gradient(135deg, #e6f7fe, #feede5);
  position: relative;
  text-align: center;
}

.section-banner-container {
    position: relative;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  max-height: 100%;
  margin: 0 auto;
  filter: brightness(40%);
}

.banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  font-size: 36px;
  font-weight: bold;
  z-index: 2;
}

.banner-text p {
  font-size: 10px;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.banner-text h1 {
  font-size: 48px;
  filter: brightness(100%);
  font-weight: bold;
}

.banner-text h1 span {
  color: #f13141;
}


.stats-section {
  background-color:#e63946 ;
}

.stat-box {
  background: linear-gradient(180deg, #ffffff 0%, #f0f4fb 100%);
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.stat-title {
  font-size: 18px;
  color: #000;
  margin-bottom: 10px;
}

.stat-number {
  font-size: 36px;
  font-weight: bold;
  color: #e63946;
  margin: 0;
}

.plus-sign {
  color: #f9b668;
  font-size: 36px;
}

@media (max-width: 768px) {
  .stat-box {
    margin-bottom: 15px;
  }
}

.services-container {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  padding: 60px 15px;
}

.image-container img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.content {
  flex: 1;
}

.content h6 {
  font-size: 1.8rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
}

.content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #000;
  margin-bottom: 20px;
  text-align: justify;
}

.content ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.content ul li {
  list-style-type: disc;
  font-size: 1rem;
  margin-bottom: 10px;
  color: #555;
}

.buttons {
  margin-top: 20px;
}

.btn {
  background-color: #e63946;
  color: #fff;
  padding: 12px 30px;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  border: none;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #0056b3;
  cursor: pointer;
}

.highlights {
  padding-left: 20px;
}

.highlights li {
  list-style-type: disc;
  margin-bottom: 10px;
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

.large-img {
  width: 100%;
  max-width: 600px;
  height: auto;
  margin: 0 auto;
}

@media (max-width: 768px) {

  .content {
    margin-top: 20px;
  }

  .btn {
    width: 100%;
    margin-top: 10px;
  }
  .reverse {
    flex-direction: column-reverse;
  }
}

.booking-section {
  background-color: #dddddd;
}

.booking-section h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1f1f1f;
}

.booking-section .highlight {
  color: #e63946;
}

.booking-section p {
  font-size: 1rem;
  color: #000;
}

.booking-section .contact-info {
  font-size: 1.2rem;
  font-weight: 500;
  color: #1f1f1f;
  margin-top: 20px;
}

.form-background {
  background-color: #f4f4f4;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.form-background .form-control {
  border: none;
  border-radius: 0;
  border-bottom: 2px solid #ddd;
  padding: 15px;
  font-size: 1rem;
}

.form-background .form-control:focus {
  border-bottom: 2px solid #e63946;
  box-shadow: none;
}

.btn-book {
  background-color: #e63946;
  color: #fff;
  padding: 10px;
  font-size: 1.2rem;
  border-radius: 4px;
}

.btn-book:hover {
  background-color: #1596a7;
}

@media (max-width: 767px) {
  .booking-section h2 {
    font-size: 2rem;
  }

  .form-background {
    padding: 20px;
  }
  .section-banner-container {
    min-height: 100px;
  }
}

.landing-section .row {
  margin-bottom: 25px;
}

.landing-section img {
  width: 100%;
}

.landing-section h6 {
  font-size: 2rem;
  margin-top: 10px;
}

.landing-section p {
  margin-bottom: 15px;
}

.read-more-btn{
  background-color: #506070;
  width: 100px;
  height: 28px;
  font-size: 12px;
  color: #fff;
  padding: 6px 20px;
  border-radius: 10px;
  border: none;
  transition: background-color 0.3s ease;
}

/* Service Details Style */

.serviceTitle h2 {
    font-size: 40px;
    font-weight: bold;
    color: #e63946;
    margin-bottom: 15px;
}

.serviceContent p {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
    text-align: justify;
}

.serviceSubTitle h2 {
    font-size: 30px;
    font-weight: bold;
    color: #e63946;
    margin: 15px 0 10px 0;
}

/* Tariff Style */

.tariff-hero-section {
  background-color: #f8f9fa;
  background-image: linear-gradient(135deg, #E6F7FE, #FEEDE5);
  position: relative;
  text-align: center;
}


.hero-image-desktop {
  width: 100%;
  height: auto;
  object-fit: contain;
  max-height: 100%;
  margin: 0 auto;
  filter: brightness(40%);
}
.hero-image-mobile {
  width: 100%;
  height: auto;
  object-fit: contain;
  max-height: 100%;
  margin: 0 auto;
  filter: brightness(40%);
}

.banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  font-size: 36px;
  font-weight: bold;
  z-index: 2;
}

.banner-text p {
  font-size: 10px;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.banner-text h1 {
  font-size: 48px;
  filter: brightness(100%);
  font-weight: bold;
}

.banner-text h1 span {
  color: #f13141;
}

.tariff-section {
    background-color: #f9f9f9;
  }
  
  .table th {
    background-color: #333;
    color: #fff;
    text-align: center;
    font-weight: bold;
  }
  
  .table td {
    text-align: center;
    vertical-align: middle;
  }
  
  .tariff-car-image {
    width: 200px;
    margin-right: 10px;
  }
  
  .btn-tariff {
    background-color: #1b9dc5;
    color: #fff;
    font-weight: bold;
    border-radius: 5px;
  }
  
  .btn-tariff:hover {
    background-color: #0f7c97;
  }
  
  @media (max-width: 767px) {
    .tariff-car-image {
      max-width: 100px;
    }
  
    .table th, .table td {
      font-size: 1.08rem;
    }
  }

.modal-content {
  padding: 20px;
}

.modal-header {
  border-bottom: none;
}

.modal-body {
  padding-top: 0;
}

.form-group {
  margin-bottom: 1.5rem;
}

.hidden {
  display: none;
}

.confirmation-message {
  text-align: center;
  font-size: 1.2rem;
  font-weight: bold;
  color: green;
}

.tarrif-car-name{
  font-weight:bold;
}

.vehicle-name:hover {
  text-decoration: underline;
  cursor: pointer;
  color: #e63946;
}

@media screen and (max-width: 768px) {
  .hero-image-desktop {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .hero-image-mobile {
    display: none;
  }
}



/*  tariff inside page */
.rental-hero-section {
    background-color: #f8f9fa;
    background-image: linear-gradient(135deg, #E6F7FE, #FEEDE5);
    position: relative;
    text-align: center;
}

.hero-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 100%;
    margin: 0 auto;
    filter: brightness(40%);
}

.banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    font-size: 36px;
    font-weight: bold;
    z-index: 2;
  }
  
  .banner-text p {
    font-size: 10px;
    margin-bottom: 10px;
    letter-spacing: 2px;
  }
  
  .banner-text h1 {
    font-size: 48px;
    filter: brightness(100%);
    font-weight: bold;
  }
  
  .banner-text h1 span {
    color: #f13141;
  }
  
  .car-rental-card.custom-card {
    border: 2px dashed #ccc;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.card-body.custom-body {
    padding: 15px;
    background-color: #566e7822;
    flex: 1;
}

.card-footer.custom-footer {
    background-color: #f8f9fa;
    padding: 10px;
}

.card-img-top {
    width: 416px;
}

.feature-box {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 5px 10px;
    background-color: #f8f9fa;
    font-size: 14px;
}

.custom-card {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.custom-card:hover {
    transform: scale(1.05);
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
}

@media (max-width: 576px) {
    .feature-box {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .table-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .table {
        width: 100%;
        border-collapse: collapse;
        margin: 0 auto;
    }

    .table th,
    .table td {
        padding: 10px;
        text-align: left;
        border: 1px solid #ddd;
        white-space: nowrap;
    }
}

.table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #ddd;
    margin-bottom: 20px;
}

.table th,
.table td {
    text-align: left;
    padding: 10px;
}

.table thead th {
    text-align: left;
}

.table tbody td {
    padding: 8px;
    border: 1px solid #ddd;
}

.table-wrapper {
    overflow-x: auto;
}

.pricing-section, .self-vehicle-overview-section {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.pricing-table, .pricing-image, .vehicle-overview-content, .terms-section {
    flex: 1;
    min-width: 300px;
}

.pricing-image {
    flex: 1;
    text-align: center;
}

.car-detail-image {
    width: 100%;
    height: 250px;
    border-radius: 10px;
}

.vehicle-overview p {
    line-height: 1.8;
}

.suggested-vehicles {
    flex: 1;
    padding-left: 20px;
}

.suggested-title {
    color: #963840;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: bold;
}

.suggested-vehicles-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 200px;
    padding-bottom: 35px;
}

.suggested-vehicle-card {
    flex: 1 1 calc(33.333% - 20px);
    max-width: 300px;
    display: flex;
    flex-direction: column;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    align-items: center;
}

.suggested-vehicle-card:hover {
    transform: scale(1.03);
    border-color: #963840;
}

.vehicle-image {
    width: 100%;
    height: 255px;
    object-fit: contain;
}

.vehicle-info {
    padding: 15px;
    text-align: center;
}

.vehicle-name {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

.vehicle-price {
    font-size: 16px;
    color: #555;
    margin: 0;
}

.vehicle-name {
    margin: 10px 0 5px;
    font-size: 20px;
    font-weight: bold;
}

.vehicle-price {
    margin: 0;
    font-size: 16px;
    color: #555;
}

.gallery-hero-section {
    background-color: #f8f9fa;
    background-image: linear-gradient(135deg, #E6F7FE, #FEEDE5);
    position: relative;
    text-align: center;
  }
  
  .hero-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 100%;
    margin: 0 auto;
    filter: brightness(40%);
  }
  
  .banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    font-size: 36px;
    font-weight: bold;
    z-index: 2;
  }
  
  .banner-text p {
    font-size: 10px;
    margin-bottom: 10px;
    letter-spacing: 2px;
  }
  
  .banner-text h1 {
    font-size: 48px;
    filter: brightness(100%);
    font-weight: bold;
  }
  
  .banner-text h1 span {
    color: #f13141;
  }

.self-drive-content-section {
    padding: 40px 0;
    background-color: #ffffff;
}

.content-left h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #e63946;
    border-bottom: 2px solid #e63946;
    display: inline-block;
    margin-bottom: 20px;
}

.content-left p {
    font-size: 1rem;
    color: #000;
}

.content-left ul {
    list-style-type: none;
    padding: 0;
}

.content-left ul li {
    font-size: 1rem;
    color: #555;
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.content-left ul li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: #e63946;
}

.download-link {
    color: #e63946;
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    display: inline-block;
}

.download-link:hover {
    text-decoration: underline;
}

.content-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.rental-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.self-drive-pricing-section {
    background-color: #f9f9f9;
    padding: 40px 0;
}

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

.table th, .table td {
    padding: 15px;
    border: 1px solid #ddd;
}

.table th {
    background-color: #333;
    color: #fff;
}

.table td {
    background-color: #f7f7f7;
}

.note {
    font-size: 0.9rem;
    color: #555;
    margin-top: 10px;
}

@media (max-width: 768px) {

    .banner-text h1 {
        font-size: 2rem;
    }

    .content-left h2 {
        font-size: 1.5rem;
    }

    .table th, .table td {
        font-size: 1.08rem;
        padding: 10px;
    }
}

.faq-section {
    padding: 60px 0;
    background-color: #fff;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 40px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.faq-item.active {
    background-color: #e63946;
    color: #fff;
}

.faq-item:not(.active):hover {
    background-color: #f1f1f1;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 600;
}

.faq-toggle-icon {
    font-size: 1.5rem;
    font-weight: 700;
}

.faq-columns {
    display: flex;
    justify-content: space-between;
}

.faq-column {
    width: 48%;
}

.charges-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.charges-table th, 
.charges-table td {
    border: 1px solid #18B2D3; 
    padding: 10px;
    text-align: left;
}

.charges-table th {
    background-color: black;
    font-weight: bold;
}

.charges-table tr:hover {
    background-color: #050303; 
}


@media (max-width: 768px) {
    .faq-title {
        font-size: 2rem;
    }

    .faq-question {
        font-size: 1.1rem;
    }

    .faq-answer {
        font-size: 0.95rem;
    }
}

.terms-section {
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .section-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
    color: #333;
  }
  
  .terms-list {
    list-style-type: none;
    padding: 0;
  }
  
  .term-item {
    font-size: 1.1rem;
    margin-bottom: 15px;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    color: #555;
  }
  
  .term-icon {
    color: #963840;
    margin-right: 10px;
    font-size: 1.2rem;
    margin-top: 3px;
  }
  
  @media (max-width: 768px) {
    .terms-section {
      padding: 20px;
    }
  
    .section-title {
      font-size: 1.8rem;
    }
  
    .term-item {
      font-size: 1rem;
    }
  }

@media screen and (max-width: 768px) {
    .pricing-section, .self-vehicle-overview-section {
        flex-direction: column;
    }

    .pricing-table {
        flex: 1 1 100%;
        padding: 10px;
        margin-bottom: 20px;
    }

    .pricing-image {
        flex: 1 1 100%;
        text-align: center;
    }

    .pricing-image img {
        max-width: 100%;
        height: auto;
    }

    .car-detail-image {
        height: 300px;
    }

    .table th,
    .table td {
        padding: 8px;
    }

    h2 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .suggested-vehicles-container {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-bottom: 20px;
        padding: 0px;
    }

    .suggested-vehicle-card {
        width: 250px;
        height: 270px;
    }

    .self-vehicle-overview-section {
        flex-direction: column;
    }

    .faq-columns {
        flex-direction: column;
    }

    .faq-item {
        width: 300px;
    }
}

/* Gallery Styles */

.gallery-hero-section {
  background-color: #f8f9fa;
  background-image: linear-gradient(135deg, #E6F7FE, #FEEDE5);
  position: relative;
  text-align: center;
}

.hero-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  max-height: 100%;
  margin: 0 auto;
  filter: brightness(40%);
}

.banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  font-size: 36px;
  font-weight: bold;
  z-index: 2;
}

.banner-text p {
  font-size: 10px;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.banner-text h1 {
  font-size: 48px;
  filter: brightness(100%);
  font-weight: bold;
}

.banner-text h1 span {
  color: #f13141;
}

.services2 {
  position: relative;
  margin-top: 50px;
  margin-left: 75px;
  right: 30px;
}
.services2 .item {
  position: relative;
  border-radius: 20px 20px 20px 0;
  overflow: hidden;
  margin-bottom: 15px;
  isolation: isolate;
}
.services2 .item img {
  width: 100%;
  transform: scale(1);
  transition: transform 500ms ease;
}
.services2 .item:hover img {
  transform: scale(1.05);
}
.services2 .item .title {
  position: absolute;
  bottom: 0px;
  padding: 30px 15px 30px 110px;
  width: 100%;
  text-align: right;
}
.services2 .item .title h4 {
  color: #fff;
  font-size: 21px;
  margin-bottom: 0;
  text-align: left;
}
.services2 .item .curv-butn {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 90px;
  height: 90px;
  line-height: 90px;
  text-align: center;
  border-radius: 0 40px 0 0;
}
.services2 .item .curv-butn .vid {
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-radius: 100%;
  background: transparent;
  color: #fff;
}

.services2 .item .curv-butn .icon {
  font-size: 15px;
  font-weight: 700;
  font-style: normal;
  
}
.services2 .item .curv-butn .br-left-top {
  position: absolute;
  top: -24px;
  left: -1px;
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
  line-height: 1;
}
.services2 .item .curv-butn .br-left-top svg {
  width: 24px;
  height: 24px;
}
.services2 .item .curv-butn .br-right-bottom {
  position: absolute;
  bottom: -1px;
  right: -24px;
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
  line-height: 1;
}
.services2 .item .curv-butn .br-right-bottom svg {
  width: 24px;
  height: 24px;
}
.services2 .item .curv-butn .icon {
  width: 60px;
  height: 60px;
  line-height: 60px;
  color: #1b1b1b;
  border: 1px solid #e63946;
  background: #e63946;
  border-radius: 100%;
}
.services2 .item:hover .curv-butn .icon {
  background-color: #1b1b1b;
   border: 1px solid #1b1b1b;
  color: #fff;
  border-radius: 100%;
}
.bottom-fade {
  width: 100%;
  top: 41%;
  height: 60%;
  float: left;
  position: absolute;
  background: linear-gradient(to top, #000000 0%, rgba(0, 0, 0, 0.738) 19%, rgba(0, 0, 0, 0.541) 34%, rgba(0, 0, 0, 0.382) 47%, rgba(0, 0, 0, 0.278) 56.5%, rgba(0, 0, 0, 0.194) 65%, rgba(0, 0, 0, 0.126) 73%, rgba(0, 0, 0, 0.075) 80.2%, rgba(0, 0, 0, 0.042) 86.1%, rgba(0, 0, 0, 0.021) 91%, rgba(0, 0, 0, 0.008) 95.2%, rgba(0, 0, 0, 0.002) 98.2%, transparent 100%);
}
span, a, a:hover {
  display: inline-block;
  text-decoration: none;
  color: inherit;
}
.icon-bg {
  background: #fff !important;
}
img, svg {
  vertical-align: middle;
}

#fullImgBox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#fullImgBox span {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
  z-index: 10000;
}

#fullImg {
  max-width: 80%;
  max-height: 80%;
  border-radius: 10px;
}

.contact-hero-section {
    background-color: #f8f9fa;
    background-image: linear-gradient(135deg, #E6F7FE, #FEEDE5);
    position: relative;
    text-align: center;
}

.contact-hero-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 100%;
    margin: 0 auto;
    filter: brightness(40%);
}

.contact-banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    font-size: 36px;
    font-weight: bold;
    z-index: 2;
  }
  
  .contact-banner-text p {
    font-size: 10px;
    margin-bottom: 10px;
    letter-spacing: 2px;
  }
  
  .contact-banner-text h1 {
    font-size: 48px;
    filter: brightness(100%);
    color: black;
  }
  
  .contact-banner-text h1 span {
    color: #e63946;
  }

  .contact-banner {
    position: relative;
    padding: 50px 0;
}

.contact-info-boxes {
    position: absolute;
    bottom: -90px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}

.contact-box {
    background-color: white;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-box:hover {
    transform: translateY(-10px);
    background-color: #e63946;
    color: #fff;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.contact-box h5, .contact-box p {
    margin: 10px 0;
}

.contact-box .icon {
    font-size: 40px;
    margin-bottom: 15px;
    color: #333;
}

.contact-box .icon::after{
    color: #ffffff;
}

.contact-section {
    padding: 50px 0;
    background-color: #E1F1F9;
}

.contact-form, 
.contact-map {
    padding: 20px;
}

.contact-form h2,
.contact-map h2 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: left;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form-group {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form-group input {
    width: 100%;
    padding: 15px;
    border-radius: 25px;
    border: 1px solid #ddd;
    outline: none;
    font-size: 16px;
}

textarea {
    padding: 15px;
    border-radius: 25px;
    border: 1px solid #ddd;
    outline: none;
    font-size: 16px;
    height: 150px;
    resize: none;
}

button {
    padding: 15px;
    border: none;
    background-color: #e63946;
    color: #fff;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    background-color: #0c6e85;
}

.contact-map iframe {
    border-radius: 20px;
}

.contact_list p{
    min-height:50px;

}

@media only screen and (max-width:550px){
    .contact-banner-text{
        display: none;
    }

}

/* Whats App Styles */

.btn-whatsapp-pulse {
	background: #25d366;
	color: white;
	position: fixed;
	bottom: 90px;
	right: 5px;
	font-size: 35px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 0;
	height: 0;
	padding: 31px;
	text-decoration: none;
	border-radius: 50%;
	animation-name: pulse;
	animation-duration: 1.5s;
	animation-timing-function: ease-out;
	animation-iteration-count: infinite;
	z-index: 9999;
}

.parent-container {
	overflow: visible !important;
}

@keyframes pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
	}

	80% {
		box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
	}
}

.btn-whatsapp-pulse-border {
	bottom: 120px;
	right: 20px;
	animation-play-state: paused;
}

.btn-whatsapp-pulse-border::before {
	content: "";
	position: absolute;
	border-radius: 50%;
	padding: 25px;
	border: 5px solid #25d366;
	opacity: 0.75;
	animation-name: pulse-border;
	animation-duration: 1.5s;
	animation-timing-function: ease-out;
	animation-iteration-count: infinite;
}

@keyframes pulse-border {
	0% {
		padding: 25px;
		opacity: 0.75;
	}

	75% {
		padding: 50px;
		opacity: 0;
	}

	100% {
		opacity: 0;
	}
}

@media screen and (max-width: 767px) {
	.btn-whatsapp-pulse {
		font-size: 20px;
		padding: 20px;
	}

	.btn-whatsapp-pulse{
		bottom: 75px;
	}
}

/* Car details */

.hero-section {
    width: 100%;
    max-width: 1920px;
    height: 550px;
    position: relative;
    overflow: hidden;
}

.banner-image img {
    width: 100%;
    height: 550px;
    object-fit: cover;
}

.black-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Black overlay with 50% opacity */
    z-index: 1; /* Sits on top of the image */
}

.image-text {
    z-index: 2; /* Sits on top of the black overlay */
    color: white;
}

.bus-model-text {
    font-size: 4vw;
    color: #FFFFFF;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7); /* Adds a shadow to make text stand out */
}

.pricing-box:hover {
    transform: scale(1.05);
    box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.2);
}

.card{
    border: none;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    transition: 0.3s;
    width: 80%;
    margin-left: 40px;
    margin-top: 30px;
}