/* ==============================================
banner
================================================== */

.page-banner {
  position: relative;
  background: url("../images/about/about-banner.webp") center center/cover
    no-repeat !important;
  min-height: 400px;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

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

.banner-content h1 {
  color: #fff;
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 25px;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 24px;
}

.breadcrumb a {
  color: #fff;
  text-decoration: none;
}

.breadcrumb i {
  font-size: 16px;
}

.breadcrumb span:last-child {
  font-weight: 600;
}

/* ===================================
tablet
==================================== */

@media (max-width: 992px) {
  .page-banner {
    min-height: 350px;
  }

  .banner-content h1 {
    font-size: 52px;
  }

  .breadcrumb {
    font-size: 20px;
  }
}

/* ======================================
mobile
======================================== */
@media (max-width: 768px) {
  .page-banner {
    /* margin-top: 30px; */
    min-height: 450px;
    padding: 20px 20px;
  }

  .banner-content h1 {
    font-size: 38px;
    margin-bottom: 15px;
  }

  .breadcrumb {
    font-size: 16px;
    gap: 8px;
    flex-wrap: wrap;
  }

  .breadcrumb i {
    font-size: 12px;
  }
  .banner-content {
    font-size: 15px;
    margin-top: 56px;
  }
}

/* =================================
small devices
=================================== */
@media (max-width: 480px) {
  .page-banner {
    min-height: 450px;
  }

  .banner-content h1 {
    font-size: 25px;
  }

  .breadcrumb {
    font-size: 14px;
  }
}

/* ================================================
about-us
=================================================== */

.about-section {
  padding: 35px 30px;
  background: #fff;
}

.about-container1 {
  max-width: 1400px;
  margin: auto;

  display: flex;
  align-items: center;
  /* gap: 20px !important; */
}

.about-image {
  flex: 1;
}

.about-image1 img {
  margin-bottom: 155px;
  height: 500px !important;
  width: 90% !important;
  border-radius: 15px;
  display: block;
}

.about-content {
  flex: 1;
}
.about-content span {
  color: #007bff;
}

.about-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.about-heading i {
  color: #d71920;
  font-size: 28px;
}

.about-heading span {
  font-size: 18px;
  font-weight: 700;
  color: #000;
}

.about-content h3 {
  text-align: justify;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
  color: #111;
  margin-bottom: 25px;
}

.about-content p {
  font-size: 14px;
  line-height: 1.9;
  color: #151515;
  margin-bottom: 18px;
  text-align: justify;
}

.about-btn {
  display: inline-block;
  margin-top: 10px;
  background: #d71920;
  color: #fff;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 600;
  transition: 0.3s;

  /* text-align: left; */
}

.about-btn:hover {
  background: #b8141b;
}

/* ========================================
tablet
========================================= */

@media (max-width: 992px) {
  .about-container1 {
    flex-direction: column;
    gap: 40px;
  }

  .about-image,
  .about-content {
    width: 100%;
  }

  .about-content h3 {
    font-size: 24px;
  }

  .about-content p {
    font-size: 16px;
  }
}

/* =====================================
mobile
============================================ */

@media (max-width: 768px) {
  .about-section {
    padding: 20px 15px;
  }

  /* .about-heading {
    justify-content: center;
  } */

  .about-content {
    text-align: center;
  }

  .about-content h3 {
    font-size: 17px;
    line-height: 1.6;
  }

  .about-content p {
    font-size: 15px;
    line-height: 1.8;
  }

  .about-btn {
    width: 100%;
    text-align: center;
  }
  .about-image1 img {
    margin-bottom: 0px;
    height: 100% !important;
    width: 100% !important;
  }
}

/* ================================================
What We Offer
================================================= */ 

.offer-section {
  padding: 60px 20px;
  background: #f5f5f5;
}

.offer-container {
  max-width: 1400px;
  margin: auto;
}

.offer-heading {
  text-align: center;
  margin-bottom: 40px;
}

.offer-heading h2 {
  font-size: 40px;
  color: #355a96;
  margin-bottom: 20px;
  font-weight: 700;
}

.offer-heading h2 span {
  color: #d71920;
}

.offer-heading p {
  max-width: 1400px;
  margin: auto;
  font-size: 15px;
  line-height: 1.7;
  color: #222;
  text-align:justify;
}

.offer-grid {
  background: #edf2fa;
  border-radius: 20px;
  padding: 25px;
  position: relative;
}

.carousel-wrapper {
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  gap: 25px;
  transition: transform 0.6s ease-in-out;
}

.offer-card {
  flex: 0 0 calc(25% - 20px);
  text-align: center;
  transition: all 0.4s ease;
  cursor: pointer;
}

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

.offer-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
  transition: all 0.4s ease;
}

.offer-card:hover img {
  transform: scale(1.05);
}

.offer-card h3 {
  margin-top: 18px;
  font-size: 18px;
  font-weight: 700;
  transition: 0.3s;
}

.offer-card:hover h3 {
  color: #d71920;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 50%;
  background: #fff;
  font-size: 26px;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

/* ==========================
   LAPTOP
========================== */

@media (max-width: 1200px) {
  .offer-card {
    flex: 0 0 calc(33.33% - 17px);
  }

  .offer-heading h2 {
    font-size: 44px;
  }

  .offer-card img {
    height: 240px;
  }
}

/* ==========================
   TABLET
========================== */

@media (max-width: 992px) {
  .offer-section {
    padding: 20px 20px;
  }

  .offer-card {
    flex: 0 0 calc(50% - 13px);
  }

  .offer-heading h2 {
    font-size: 34px;
  }

  .offer-heading p {
    font-size: 14px;
  }

  .offer-card img {
    height: 220px;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 22px;
  }
}

/* ==========================
   MOBILE
========================== */

@media (max-width: 768px) {
  .offer-section {
    padding: 40px 15px;
  }

  .offer-heading {
    margin-bottom: 25px;
  }

  .offer-heading h2 {
    font-size: 30px;
  }

  .offer-heading p {
    font-size: 15px;
    /* line-height: 1.8; */
    text-align: justify;
  }

  .offer-grid {
    padding: 15px;
  }

  .offer-card {
    flex: 0 0 100%;
  }

  .offer-card img {
    height: 220px;
  }

  .offer-card h3 {
    font-size: 16px;
  }

  .carousel-btn {
    width: 35px;
    height: 35px;
    font-size: 20px;
  }

  .prev {
    left: 5px;
  }

  .next {
    right: 5px;
  }
}

/* ==========================
   SMALL MOBILE
========================== */

@media (max-width: 480px) {
  .offer-section {
    padding: 20px 10px;
  }

  .offer-heading h2 {
    font-size: 30px;
  }

  .offer-heading p {
    font-size: 16px;
  }

  .offer-card img {
    height: 200px;
  }

  .offer-card h3 {
    font-size: 15px;
    line-height: 1.4;
  }

  .carousel-btn {
    width: 32px;
    height: 32px;
    font-size: 18px;
  }
}

/* ===========================================
Luxury 6 & 7 Seater
============================================== */
.group-transport-section {
  padding: 20px 50px;
}

.group-transport-container {
  max-width: 1300px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}
.group-transport-container.reverse {
  flex-direction: row-reverse;
}

.group-transport-image,
.group-transport-content {
  flex: 1;
  width: 50%;
}

/* .group-transport-image img {
  height: 250px;
  width: 80%;
  border-radius: 12px;
  display: block;
} */

.group-transport-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.group-transport-content h2 {
  font-size: 28px;
  color: #d71920;
  margin-bottom: 20px;
  font-weight: 800;
  /* line-height: 1.3; */
}

.group-transport-content p {
  font-size: 15px;
  /* line-height: 1.8; */
  color: #000;
  text-align:justify;
}

/* Tablet */
@media (max-width: 992px) {
  .group-transport-container {
    gap: 30px;
  }

  .group-transport-image img {
    height: 260px;
  }

  .group-transport-content h2 {
    font-size: 24px;
  }

  .group-transport-content p {
    font-size: 14px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .group-transport-section {
    padding: 30px 15px;
  }

  .group-transport-container,
  .group-transport-container.reverse {
    flex-direction: column;
    gap: 20px;
  }

  .group-transport-image,
  .group-transport-content {
    width: 100%;
  }

  .group-transport-image img {
    width: 100%;
    height: auto;
  }

  .group-transport-content {
    text-align: center;
  }

  .group-transport-content h2 {
    text-align: left;
    font-size: 22px;
  }

  .group-transport-content p {
    text-align: justify;
    font-size: 15px;
    line-height: 1.7;
  }
}

/* ============================================
Map section
================================================= */

.map-section {
  padding: 30px 0;
  background: #f5f5f5;
}

.map-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  width: 100%;
  height: 300px;
  border: 0;
  display: block;
}

/* Tablet */
@media (max-width: 992px) {
  .map-container iframe {
    height: 400px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .map-section {
    padding: 20px 15px;
  }

  .map-container {
    border-radius: 10px;
  }

  .map-container iframe {
    height: 300px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .map-container iframe {
    height: 250px;
  }
}
