:root {
  --primary-color: #154d94 ;
  --silver-color: #c0c0c0;
  --text-color: #ffffff;
  --box-bg: #ffffff;
}



.why-choose-us {
  background-color: var(--primary-color);
  color: var(--text-color);
  padding: 60px 20px;
}

.why-choose-us .container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.why-choose-us h2 {
  font-size: 36px;
  margin-bottom: 40px;
}

.why-choose-us h2 span {
  color: var(--silver-color);
}



.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-box {
  background: white;
  padding: 30px 20px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
}

.feature-box i {
  font-size: 40px;
  color: #195b9b;
  margin-bottom: 15px;
}

.feature-box h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #444;
}

.feature-box p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}





/* ABOUT SECTION - FULL WIDTH, SEPARATE BELOW FORM */
.about-section {
background-color: #f1f1f1;
  padding: 80px 20px;
  width: 100%;      /* Make sure it takes full width */
  display: block;   /* So it behaves as block container */
  clear: both;      /* Clear any floats */
  margin-top: 10px; /* Space from above */
}

/* CONTAINER FOR TEXT + IMAGE SIDE BY SIDE */
.about-container {
  display: flex;         /* text and image side by side */
  flex-wrap: wrap;       /* allow wrapping on smaller screens */
  align-items: center;   /* vertical align center */
  gap: 40px;             /* spacing between text and image */
  max-width: 1200px;     /* max width for container */
  margin: 0 auto;        /* center horizontally */
}

/* ABOUT TEXT - LEFT SIDE */
.about-text {
  flex: 1;               /* take equal space */
  min-width: 300px;      /* minimum width to keep readable */
  color: #154d94 ;
}

/* ABOUT TEXT HEADINGS */
.about-text h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #154d94 ;
}

/* ABOUT TEXT PARAGRAPH */
.about-text p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* ABOUT TEXT LIST */
.about-text ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.about-text ul li {
  font-size: 16px;
  margin-bottom: 10px;
}

.about-text ul li i {
  color: #000;
  margin-right: 10px;
}

/* CALL TO ACTION BUTTON */
.cta-button {
  display: inline-block;
  background-color: #154d94 ;
  color: #fff;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #2a3480;
}

/* ABOUT IMAGE - RIGHT SIDE */
.about-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

/* IMAGE STYLING */
.about-image img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
    padding: 0 10px;
  }

  /* .about-section { */
    /* margin-top: 319%; /* EXTREME spacing for special layout needs */ */
  /* } */

  .about-text {
    order: 2;
    padding-top: 20px;
  }

  .about-image {
    order: 1;
  }

  .about-text h2 {
    font-size: 28px;
  }

  .about-text p {
    font-size: 16px;
  }

  .about-text ul li {
    font-size: 15px;
  }

  .cta-button {
    padding: 10px 25px;
    font-size: 15px;
  }
}



.our-services {
  background: #fff;
  padding: 80px 20px;
  font-family: 'Segoe UI', Tahoma, sans-serif;
}

.our-services h2 {
  text-align: center;
  font-size: 36px;
  color: #154d94 ;
  margin-bottom: 50px;
}


.services-description {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px auto;
  font-size: 16px;
  color: #333;
  line-height: 1.5;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.service-content {
  padding: 20px;
  text-align: center;
  color: #154d94 ;
}

.service-content h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.service-content h3 i {
  margin-right: 8px;
  color: #195b9b;
}

.service-content p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #444;
}

.cta-button-services {
  background: #154d94 ;
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s;
}

.cta-button-services:hover {
  background: #000;
}

.btn-custom-blue {
  background-color: #154d94;
  border-color: #154d94;
  color: white;
}

.btn-custom-blue:hover, 
.btn-custom-blue:focus {
  background-color: #103b75; /* a slightly darker shade for hover */
  border-color: #103b75;
  color: white;
}


.custom-margin-top {
  margin-top: 0rem;
}

@media (max-width: 767px) { /* mobile and small devices */
  .custom-margin-top {
    margin-top: 86rem !important;
  }
}

/* Base styles */
.bg-dark-blue {
  background-color: #154d94 ;
}

.call-btn {
  background-color: #154d94 ;
  border: none;
  padding: 8px 16px;
  font-weight: 600;
  color: #fff;
}

.call-btn:hover {
  background-color: #0d133d;
  color: #fff;
}

/* Topbar Responsive */
.topbar .container {
  font-size: 0.9rem;
}

/* Default: show both left and right on larger screens */
.topbar-left,
.topbar-right {
  display: block;
}

/* On mobile screens, hide topbar-left and only show topbar-right */
@media (max-width: 768px) {
  .topbar-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

  .topbar-left {
    display: none !important;
  }

  .topbar-right {
    font-size: 0.8rem;
    margin-top: 0.5rem;
    display: block !important;
	 text-align: center; /* Center align the text on mobile */
  }
}
/* Keep your existing styles for .call-btn on desktop */
.call-btn {
  background-color: #154d94 ;
  border: none;
  padding: 8px 16px;
  font-weight: 600;
  color: #fff;
}

.call-btn:hover {
  background-color: #0d133d;
  color: #fff;
}

/* Mobile only styles */
@media (max-width: 991.98px) {
  /* logo-toggler row flex layout */
  .logo-toggler-row {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 10px;
  }

  /* Hide desktop call button */
  .d-none.d-lg-block {
    display: none !important;
  }

  /* Mobile phone button style */
  .call-btn-mobile {
    background-color: #154d94 ;
    border: none;
    padding: 12px 20px;
    font-weight: 600;
    color: #fff;
    font-size: 1.1rem;
    border-radius: 4px;
    max-width: 400px;
  }

  .call-btn-mobile:hover {
    background-color: #0d133d;
    color: #fff;
  }

  /* Optional smaller toggler button padding */
  .navbar-toggler {
    padding: 0.25rem 0.5rem;
  }
}

/* Optional: topbar text adjustments on small screens (if needed) */
@media (max-width: 768px) {
  .topbar-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

  .topbar-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .topbar-right {
    font-size: 0.8rem;
    margin-top: 0.5rem;
  }
}


/* Colors and base */
.bg-dark-blue {
  background-color: #154d94 ;
}

.call-btn {
  background-color: #154d94 ;
  border: none;
  padding: 8px 16px;
  font-weight: 600;
  color: #fff;
  transition: background-color 0.3s ease;
}

.call-btn:hover {
  background-color: #0d133d;
  color: #fff;
}

/* Mobile specific styles */
@media (max-width: 991.98px) {
  /* Mobile phone button styling */
  .call-btn-mobile {
    background-color: #154d94 ;
    border: none;
    padding: 12px 20px;
    font-weight: 600;
    color: #fff;
    font-size: 1.1rem;
    border-radius: 4px;
    max-width: 400px;
  }

  .call-btn-mobile:hover {
    background-color: #0d133d;
    color: #fff;
  }

  /* Navbar toggler padding */
  .navbar-toggler {
    padding: 0.25rem 0.5rem;
  }
}

/* Topbar responsive tweaks */
@media (max-width: 768px) {
  .topbar-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

  .topbar-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .topbar-right {
    font-size: 0.8rem;
    margin-top: 0.5rem;
  }
}

/* Navbar link padding and font on small */
@media (max-width: 576px) {
  .navbar-nav .nav-link {
    padding: 10px 15px;
    font-size: 0.95rem;
  }
}



/* Navbar base */
.navbar {
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 500;
  letter-spacing: 0.03em;
  position: relative;
  z-index: 1000;
}

/* Navbar brand (logo) */
.navbar-brand img {
  height: 60px;
  transition: transform 0.3s ease;
}
.navbar-brand:hover img {
  transform: scale(1.05);
}

/* Navbar toggler */
.navbar-toggler {
  border: none;
  outline: none;
  font-size: 1.25rem;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  transition: color 0.3s ease;
  color: #154d94 ;
}
.navbar-toggler:hover,
.navbar-toggler:focus {
  color: #0d133d;
  box-shadow: none;
}

/* Navbar links */
.navbar-nav {
  align-items: center;
  gap: 1.2rem;
}

.navbar-nav .nav-link {
  color: #154d94 ;
  font-size: 1rem;
  padding: 0.5rem 0.75rem;
  transition: color 0.3s ease, border-bottom 0.3s ease;
  border-bottom: 3px solid transparent;
  position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    color: #0d133d;
    background-color: #e6ecf7;
    border-radius: 5px;
    padding: 5px 10px;
    text-decoration: none;
    outline: none;
}


/* Active nav-link */
.navbar-nav .nav-link.active {
    color: #0d133d;
    font-weight: 600;
    background-color: #e6ecf7;
    border-radius: 5px;
    padding: 5px 10px;
}

/* Dropdown */
.nav-item.dropdown:hover > .dropdown-menu,
.nav-item.dropdown:focus-within > .dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.dropdown-menu {
  margin-top: 0.5rem;
  border-radius: 0.3rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
  border: 1px solid #ddd;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  background-color: #fff;
  min-width: 12rem;
  z-index: 1050;
}

.dropdown-item {
  color: #154d94 ;
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: background-color 0.25s ease;
}

.dropdown-item:hover,
.dropdown-item:focus {
  background-color: #154d94 ;
  color: #fff;
  outline: none;
}

/* Call button desktop */
.call-btn {
  background-color: #154d94 ;
  border: none;
  padding: 10px 20px;
  font-weight: 700;
  color: #fff;
  border-radius: 0.25rem;
  transition: background-color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.call-btn i {
  font-size: 1.1rem;
}

.call-btn:hover,
.call-btn:focus {
  background-color: #0d133d;
  color: #fff;
  text-decoration: none;
  outline: none;
}

/* Mobile call button */
.call-btn-mobile {
  background-color: #154d94 ;
  border: none;
  padding: 14px 20px;
  font-weight: 700;
  color: #fff;
  border-radius: 0.3rem;
  font-size: 1.1rem;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  transition: background-color 0.3s ease;
}

.call-btn-mobile:hover,
.call-btn-mobile:focus {
  background-color: #0d133d;
  color: #fff;
  text-decoration: none;
  outline: none;
}

/* Responsive adjustments */

@media (max-width: 575.98px) {
  /* Navbar collapses into vertical layout */
  .navbar-collapse {
    background-color: #ffffff;
    padding: 1rem 0;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    border-radius: 0 0 0.5rem 0.5rem;
  }

  .navbar-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .navbar-nav .nav-link {
    font-size: 1rem;
    padding: 0.9rem 1.2rem;
    color: #154d94 ;
    border-bottom: 1px solid #f0f0f0;
    background-color: #fff;
    transition: background-color 0.3s ease, color 0.3s ease;
  }

  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link:focus {
   background-color: #154d94 ;
        color: #ffffff;
        text-decoration: none;
        outline: none;
  }

  .navbar-nav .nav-link.active {
           background-color: #154d94 ;
        color: #fff;
        outline: none;
  }

  /* Dropdown menu visible inside vertical nav */
/* Dropdown menu inside collapsed navbar - mobile style */
.dropdown-menu {
  position: static;
  background-color: #fafafa;
  box-shadow: none;
  border: none;
  padding: 0;
  margin: 0;
  display: none; /* hide by default */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

/* Show dropdown only when parent has .show (Bootstrap adds this) */
.dropdown.show .dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
}


  .dropdown-item {
    font-size: 0.95rem;
    padding: 0.75rem 1.5rem;
    color: #154d94 ;
    border-bottom: 1px solid #eee;
    transition: background-color 0.2s ease;
  }

  .dropdown-item:hover,
  .dropdown-item:focus {
    background-color: #154d94 ;
    color: #fff;
    outline: none;
  }

  /* Buttons */
  .call-btn {
    display: none;
  }

  .call-btn-mobile {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    background-color: #154d94 ;
    color: #fff;
    border-radius: 0.25rem;
    margin-top: 1rem;
    transition: background-color 0.3s ease;
  }

  .call-btn-mobile:hover,
  .call-btn-mobile:focus {
    background-color: #0d133d;
    color: #fff;
    text-decoration: none;
    outline: none;
  }
}



.sliderform {
    width: 100%;
    float: left;
    margin: 0 0 0 0;
    background-image: url(image/es-250-lexus.jpg);
    background-position: 50% 50%;
    background-size: cover;
	margin-bottom: 50px;
}

.sliderforma {
    width: 100%;
    float: left;
    margin: 0 0 0 0;
    background-image: url(image/Airport-Transfers-Sydney.webp);
    background-position: 10% 80%;
    background-size: cover;
	margin-bottom: 50px;
}

.sliderformm {
    width: 100%;
    float: left;
    margin: 0 0 0 0;
    background-image: url(image/Group-Transfers-Sydney.webp);
    background-position: 90% 10%;
    background-size: cover;
	margin-bottom:50px;


}


.sliderformonline  {
        width: 100%;
        float: left;
        margin: 0 0 0 0;
        background-image: url(image/f2.jpg);
       
          background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

		margin-bottom: 35px;
    }

.sliderform_inner {
    width: 100%;
    float: left;
    padding: 150px 0 50px 0;
    background-color: rgba(0,29,58,0.7);
	/* margin-bottom:54px;  */
}

.sliderform_lft {
    float: left;
    width: 100%;
}

.sliderform_rgt {
    float: right;
    width: 46%;
    padding: 140px 0 0 50px;
}


.bookonl-bg {
    float: left;
    width: 100%;
    margin: 0 0 0 0;
    padding: 0 0 0 0;
}

.book-bg {
    float: left;
    width: 100%;
    border-radius: 20px;
    margin: 3% 0 0 0;
    padding: 25px 5px 25px 5px;
    background-color: #dcdcdc;
}

.book-bg-o {
    float: left;
    width: 100%;
    border-radius: 20px;
    margin: 3% 0 0 0;
    padding: 25px 5px 25px 5px;
    background-color: #fff;
}

 .book-bg-o p {
        float: left;
        width: 100%;
        margin: 0;
        text-align: center;
        padding: 0 0 3px 0;
        font-weight: 700;
    }
	

    .book-bg p {
        float: left;
        width: 100%;
        margin: 0;
        text-align: center;
        padding: 0 0 3px 0;
        font-weight: 700;
    }

.book-ttl {
    width: 97%;
    float: left;
    text-align: center;
    padding: 0 1.5% 0 1.5%;
    color: #004990;
    font-size: 20pt;
    font-weight: 700;
    margin: 0 0 0 0;
    border-radius: 5px;
    text-transform: uppercase;
}

.book-data {
    float: left;
    width: 100%;
    margin: 0 0 0 0;
    padding: 0 0 0 0;
    opacity: .9;
}

.book-inner {
    float: left;
    width: 100%;
}



.book-hd-1 {
    width: 41%;
    float: left;
    color: #000;
    margin: 0 auto;
    font-size: 12pt;
    font-weight: 600;
    text-align: left;
    margin-bottom: 0;
    border-radius: 5px;
    padding: 0 0 10px 20px;
}


.form-control {
  width: 100%;
  padding: 12px 15px;
  font-size: 16px;
  border-radius: 6px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

/* Make inputs/selects/textarea take full width of their Bootstrap columns */
form.form-horizontal input.form-control,
form.form-horizontal select.form-control,
form.form-horizontal textarea.form-control {
  width: 100%;  /* full width of their column */
  box-sizing: border-box;
  padding: 12px 15px;
  font-size: 1.1rem;
  border: 1.5px solid #004990;
  border-radius: 6px;
  transition: border-color 0.3s ease;
  color: #004990;
}

/* On focus */
form.form-horizontal input.form-control:focus,
form.form-horizontal select.form-control:focus,
form.form-horizontal textarea.form-control:focus {
  border-color: #007bff;
  outline: none;
  box-shadow: 0 0 5px rgba(0,123,255,0.5);
}

/* Keep Bootstrap column padding as is for layout (donâ€™t override padding/margin) */

/* Submit button styling */
form.form-horizontal input[type="submit"].btn {
  background-color: #004990;
  color: white;
  border: none;
  padding: 14px 35px;
  font-size: 1.15rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  max-width: 300px;
  width: 100%;
  margin: 20px auto 0;
  display: block;
}

form.form-horizontal input[type="submit"].btn:hover {
  background-color: #0066cc;
}

/* Textarea - bigger height */
form.form-horizontal textarea.form-control {
  min-height: 100px;
  resize: vertical;
}

/* Date/time selects in one line within their column */
#divtime > div.col-xs-4 {
  display: inline-block;
  width: 32%;
  padding-right: 5px;
}

#divtime > div.col-xs-4:last-child {
  padding-right: 0;
}



/* Ensure columns float properly */
.airport .form-horizontal .col-md-6,
.airport .form-horizontal .col-xs-4 {
  float: left;
  box-sizing: border-box;
  padding: 0 10px;
  margin-bottom: 15px; /* Adds space below each field */
}

/* Column width definitions */
.airport .form-horizontal .col-md-6 {
  width: 50%;
}

.airport .form-horizontal .col-xs-4 {
  width: 33.3333%;
}

/* Clear each row after floats */
.airport .form-group::after {
  content: "";
  display: table;
  clear: both;
}

/* Full-width inputs in columns */
.airport .form-control {
  width: 100%;
  box-sizing: border-box;
  padding: 10px 12px;
  font-size: 16px;
  border-radius: 4px;
  border: 1px solid #ccc;
}

/* Responsive adjustments for mobile */
@media (max-width: 767px) {
  .airport .form-horizontal .col-md-6,
  .airport .form-horizontal .col-xs-4 {
    width: 100%;
    float: none;
    padding: 0;
    margin-bottom: 15px;
  }
}

.silver-cta-buttonss {
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
}


.hero-headings {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    line-height: 1.3;
    margin-bottom: 20px;
    font-family: 'Fira Sans', sans-serif;
}
.hero-subtext {
  font-size: 1.25rem;
  color: #ffffff; /* Use #000 for dark text on light backgrounds */
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.5px;
  line-height: 1.7;
  margin-top: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
}



@media (max-width: 768px) {
  .hero-subtext {
    display: none;
  }
}

@media (max-width: 991px) {
  .silver-cta-buttonss {
    display: none;
  }
}


@media (max-width: 991px) {
  .hero-headings {
    display: none;
  }
}



@media (max-width: 768px) {

.airport-pickup-section {

margin-top: 90rem!important;
	
	  }
}



@media (max-width: 768px) {

.airport-pickup-section-ap {

margin-top: 0rem!important;
	
	  }
	  
	 .custom-payment-heading {
    font-size: 24px!important;
	 }

.testimonial-heading {
    font-size: 27px!important;

	}
	  
}



.silver-btn-primary,
.silver-btn-outline {
  padding: 14px 28px;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  min-width: 200px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.silver-btn-primary {
  background-color: #fff;
  color: #004990;
  border: none;
}

.silver-btn-primary:hover {
  background-color: #003366;
  color: #fff;
}

.silver-btn-outline {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.silver-btn-outline:hover {
  background-color: #fff;
  color: #004990;
  border-color: #004990;
}

.silver-cta-subtitle {
  font-size: 1.125rem;
  font-weight: 500;
  margin: 0;
  color: #cce0ff;
}


/* Hide by default */
.mobile-only-banner {
  display: none;
}





/* Show on screens smaller than 768px */
@media (max-width: 767px) {
	
	
.sliderform {
  width: 100%;
  float: left;
  margin: 0;
  background: none;
  margin-bottom: 50px;
  height: auto; /* let container grow with form */
}

/* Separate div for the image */
.sliderform-image {
  height: 302px;
  background-image: url(image/large-5.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: visible; /* let form overflow downward */
}


	
.sliderforma {
  width: 100%;
  float: left;
  margin: 0;
  background: none;
  margin-bottom: 50px;
  height: auto; /* let container grow with form */
}

/* Separate div for the image */
.sliderforma-image {
  height: 302px;
  background-image: url(image/large-5.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: visible; /* let form overflow downward */
}


.sliderformm {
  width: 100%;
  float: left;
  margin: 0;
  background: none;
  margin-bottom: 50px;
  height: auto; /* let container grow with form */
}

/* Separate div for the image */
.sliderformm-image {
  height: 302px;
  background-image: url(image/large-5.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: visible; /* let form overflow downward */
}

	
  .mobile-only-banner {
    display: block;
    text-align: center;
    padding: 20px;
    margin-top:-144px;
    background-size: cover;
    background-position: center;
    color: white;
    font-family: Arial, sans-serif;
  }

  .banner-content h2 {
    font-size: 1.9em;
    font-weight: bold;
    margin-bottom: 10px;
  }

  .banner-content p {
    font-size: 1em;
    margin-bottom: 15px;
    line-height: 1.4;
  }

  .call-button {
    display: inline-block;
    background: white;
    color: #007B8F;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    margin-bottom: 15px;
  }

  .instant-booking {
    font-size: 1.2em;
    font-weight: bold;
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
  }

  .booking-form {
    margin-top: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
  }
}

.hero-heading {
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  line-height: 1.3;
  margin-bottom: 20px;
  font-family: 'Segoe UI', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}


.hero-headings {
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  line-height: 1.3;
  margin-bottom: 20px;
  margin-top: -102px!important;
  font-family: 'Segoe UI', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}









@media (max-width: 767px) {
	
.instant-booking {
  font-size: 1.2em;
  font-weight: 600; /* Slightly lighter than bold for elegance */
  margin-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px; /* a little more breathing room */
  color: #fff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  letter-spacing: 0.02em; /* subtle letter spacing for readability */
}

.instant-booking i {
  font-size: 1.5em;
  color: #fff;
  flex-shrink: 0; /* keep icon size consistent */
  transition: color 0.3s ease;
}

/* Add subtle hover effect on icon for interactivity */
.instant-booking i:hover {
  color: #aad8ff;
  cursor: default;
}

.instant-booking a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
}

/* Underline on hover for better affordance */
.instant-booking a:hover {
  text-decoration: underline;
  color: #aad8ff;
}

.pulse {
  animation: pulse 1.4s infinite ease-in-out;
  transform-origin: center;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.85;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (max-width: 991px) {
  .features {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
  }

  .about-container {
    flex-direction: column;
    gap: 30px;
  }

  .about-text, .about-image {
    min-width: 100%;
  }

  .about-text h2 {
    font-size: 28px;
  }

  .about-text p,
  .about-text ul li {
    font-size: 16px;
  }

  .feature-box i {
    font-size: 36px;
  }
}

}



.steps-section {
  background-color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.steps-section-ab {
  background-color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.steps-header h2 {
  font-size: 32px;
  color: #154d94;
  font-weight: 700;
}

.step-cta {
  background-color: #154d94;
  color: #fff;
  border: none;
  padding: 8px 20px;
  border-radius: 6px;
  font-weight: 600;
  margin-bottom: 15px;
  cursor: pointer;
}

.underline {
  width: 60px;
  height: 3px;
  background-color: #b0b0b0;
  margin: 10px auto 40px;
}

.steps-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 50px;
}

.step-box {
  max-width: 220px;
}

.step-icon {
  background-color: #154d94;
  color: #c0c0c0;
  border: 2px dashed #c0c0c0;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.step-box h3 {
  font-size: 18px;
  color: #154d94;
  font-weight: 600;
  margin-bottom: 10px;
}

.step-box p {
  font-size: 15px;
  color: #4b4b4b;
  line-height: 1.5;
}

/* Hover effect */
.step-icon:hover {
  background-color: #c0c0c0;
  color: #154d94;
  border-color: #154d94;
}





@media (max-width: 768px) {
	
	.steps-section {
		margin-top:350%;
		}
		.steps-section-ab {
		margin-top:0%;
		}
		
		
  .steps-container {
    flex-direction: column;
    align-items: center;
	gap: 6px;
  }

  .step-box {
    max-width: 100%;
  }
}





/* Container */
.cta-container {
 display: flex
;
    align-items: center;
    justify-content: space-between;
    background-color: rgb(23 87 181);
    border-radius: 10px;
    padding: 60px 80px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    font-family: 'Poppins', sans-serif;
    position: relative;
    color: #ffffff;
    max-width: 1200px;
    margin: 40px auto;
}

/* Left side */
.cta-left {
  max-width: 65%;
  position: relative;
  z-index: 10;
}

.cta-left h2 {
  font-weight: 800;
  font-size: 34px;
  line-height: 1.2;
  margin: 0;
  color: #fdfbff;
}

/* Right side semicircle container */
.cta-right {
  position: relative;
  width: 300px;
  height: 170px;
  background: #fff; /* near black */
  border-top-left-radius: 170px;
  border-bottom-left-radius: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2); /* subtle shadow */
  margin-left: auto; /* push to the right in flex container */
}


/* Button */
.cta-button-d {
  position: relative;
    background-color: rgb(23 87 181);
  color: #fff;
  font-weight: 600;
  font-size: 17px;
  padding: 18px 55px 18px 30px;
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: none;
  z-index: 15;
  white-space: nowrap;
  border-radius: 1px 1px 1px 1px;
}

/* Black diagonal stripe */
.cta-button-d .stripe {
  position: absolute;
  top: 0;
  right: 38px;
  width: 7px;
  height: 100%;
  background-color: #fff;
  transform: skew(-20deg);
  z-index: 16;
}




/* Container */
.maxi-cab-section {
  display: flex;
  max-width: 1200px;
  margin: 40px auto;
  font-family: 'Arial', sans-serif;
  color: #333;
  gap: 40px;
}

/* Image + years experience */
.image-container {
  position: relative;
  border: 1px solid #154d94;
  border-radius: 12px;
  overflow: hidden;
  max-width: 400px;
  flex-shrink: 0;
}

.image-container img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 12px;
}

/* Years experience label */
.years-experience {
  position: absolute;
  top: 50%;
  left: -55px;
  transform: translateY(-50%);
  background-color: #154d94;
  color: white;
  font-weight: 700;
  font-size: 18px;
  padding: 12px 16px;
  width: 120px;
  border-radius: 50px;
  text-align: center;
  writing-mode: vertical-rl;
  line-height: 1.2;
  box-sizing: border-box;
}

.years-experience span {
  font-weight: 400;
  font-size: 14px;
  margin-top: 4px;
}

/* Right content container */
.content-container {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Labels on top */
.labels {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
  align-items: center;
}

.label-icon {
  border: 1px solid #154d94;
  padding: 2px 8px;
  font-size: 12px;
  font-weight: 700;
  color: #154d94;
  border-radius: 2px;
  text-transform: uppercase;
}

.label-tag {
  background-color: #154d94;
  color: white;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 12px;
  text-transform: uppercase;
}

/* Heading */
.content-container h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
}

/* Paragraph */
.content-container p {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 24px;
}

/* Features */
.featuress {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature .icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  stroke: #154d94;
}

.feature h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: #154d94;
}

.feature p {
  margin: 4px 0 0 0;
  font-size: 14px;
  color: #666;
}

/* Discover more and contact */
.discover-contact {
  display: flex;
  align-items: center;
  gap: 24px;
}

.discover-btn {
  background-color: #154d94;
  border: none;
  border-radius: 30px;
  padding: 12px 28px;
  font-weight: 700;
  color: white;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.3s ease;
  letter-spacing: 0.05em;
}

.discover-btn:hover {
  background-color: #154d94;
}

.phone-contact {
  display: flex;
  align-items: center;
  font-weight: 700;
  color: #154d94;
  font-size: 18px;
  gap: 1px;
}









.icon {
  color: #154d94;
  font-size: 48px;
  margin-right: 16px;
  min-width: 48px;
}

.phone-icon {
  font-size: 24px;
  margin-right: 8px;
  vertical-align: middle;
}





.custom-features-section {
  width: 100%;
  padding: 40px 0;
  background: #fff;
  text-align: center;
}

.custom-features-wrapper {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}







.custom-feature-item {
  position: relative;
  width: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.custom-icon-wrapper {
  background-color: #154d94; /* black circle */
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%; /* shape like image */
  width: 85px;    /* slightly larger for container shape */
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow:
    0 6px 0 0 #ffffff,  /* yellow middle shadow */
    0 12px 0 0 #154d94; /* darker yellow bottom shadow */
  margin-bottom: 12px;
}


.custom-icon {
  color: #fbbf24; /* yellow icon */
  font-size: 28px;
}

.custom-feature-label {
  font-weight: 600;
  font-size: 15px;
  color: #000;
  margin-bottom: 12px;
}

.custom-progress-dot {
  width: 18px;
  height: 18px;
  background-color: #fbbf24;
  border-radius: 50%;
  position: relative;
  margin: 0 auto;
  z-index: 1; /* show above the line */
}


.custom-progress-dot::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 10px;
  height: 10px;
  background-color: #dc2626; /* red center dot */
  border-radius: 50%;
}
.custom-icon-img {
  width: 48px;
  height: 48px;
  transition: transform 0.5s ease;
}

.custom-icon-img:hover {
  transform: scaleX(-1); /* Flip horizontally */
}


.custom-features-wrapper {
  display: flex;
  justify-content: space-between;
  position: relative;
  padding: 30px 0;
}

.custom-progress-line {
  position: absolute;
  top: 81.5%; /* vertically center line */
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #154d94;
  z-index: 0;
  /* margin-top: 65px; */
}


@media (max-width: 768px) {
  .custom-features-wrapper {
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px 20px;
  }

  .custom-feature-item {
    width: calc(50% - 20px); /* Two per row with spacing */
    max-width: 300px;
  }

  .custom-progress-line {
    display: none; /* Optional: hide the horizontal line */
  }
}




.fleet-section {
  padding: 80px 20px;
  background-color: #fff;
  text-align: center;
}

.fleet-heading {
  font-size: 34px;
  font-weight: 700;
  color: #333;
  margin-bottom: 40px;
}

.fleet-tabs {
  display: flex;
  justify-content: center;
  gap: 45px; /* bigger gap between tabs */
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.fleet-tab {
  background-color: #154d94 ;
  color: white;
  padding: 22px 50px; /* larger padding for bigger buttons */
  border-radius: 8px; /* smoother rounded corners */
  cursor: pointer;
  font-weight: 700; /* bolder font */
  display: flex;
  align-items: center;
  gap: 20px; /* bigger space between icon and text */
  font-size: 22px; /* larger font */
  position: relative;
  transition: 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15); /* subtle shadow for depth */
}



.fleet-tab.active {
  background-color: #1757b5;
}

.fleet-tab.active::after {
  content: '';
      position: absolute;
    bottom: -26px;
    left: 50%;
    transform: translateX(-50%);
    border: 13px solid transparent;
    border-top-color: #1757b5;
}

.fleet-tab i {
  font-size: 22px;
}

.fleet-tab-content {
  display: none;
}

.fleet-tab-content.active {
  display: block;
}

.fleet-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
}

.fleet-card {
  text-align: center;
  max-width: 280px;
}

.fleet-card img {
  width: 100%;
  height: auto;
  max-height: 190px;
  object-fit: contain;
}

.fleet-card p {
  margin-top: 15px;
  font-weight: 600;
  font-size: 17px;
  color: #222;
}


@media (max-width: 768px) {
  .fleet-cards {
    flex-direction: column;
    align-items: center;
  }

  .fleet-tab {
    font-size: 15px;
    padding: 12px 20px;
  }

  .fleet-card {
    max-width: 90%;
  }

  .fleet-card img {
    max-height: 160px;
  }

  .fleet-card p {
    font-size: 16px;
  }
}






.custom-about-section {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  padding: 60px 20px;
  color: #fff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.custom-about-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.custom-about-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  object-fit: cover;
}

.custom-about-content {
  flex: 1;
  min-width: 320px;
}

.custom-about-title {
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.custom-about-text {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 20px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.custom-about-features {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.custom-about-features li {
  margin-bottom: 15px;
  font-weight: 600;
  position: relative;
  padding-left: 30px;
  font-size: 18px;
}

.custom-about-features li::before {
  content: "✓";
  color: #fff827;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 22px;
}

.custom-about-btn {
  display: inline-block;
  padding: 14px 35px;
  background-color: #fff827;
  color: #f59e0b;
  font-weight: 700;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  transition: background-color 0.3s ease, color 0.3s ease;
  text-decoration: none;
}

.custom-about-btn:hover {
  background-color: #f59e0b;
  color: #fff827;
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.8);
}

/* Responsive */

@media (max-width: 900px) {
  .custom-about-wrapper {
    flex-direction: column;
    text-align: center;
  }
  
  .custom-about-image img {
    max-width: 100%;
  }
  
  .custom-about-content {
    min-width: 100%;
  }
}



.blinking-section {
  background-color: #154d94; /* #154d94 Blue */
  height: 60px; /* Small height */
  display: flex;
  justify-content: center;
  align-items: center;
}

.blinking-text {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  animation: blink 4s infinite;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

@keyframes blink {
  0%, 50%, 100% { opacity: 1; }
  25%, 75% { opacity: 0; }
}



/* Mobile-friendly styles */
@media (max-width: 600px) {
  .blinking-section {
    height: 50px; /* Reduce height for mobile */
  }

  .blinking-text {
    font-size: 14px; /* Adjust font size for mobile */
    letter-spacing: 1px; /* Reduce letter spacing for mobile */
	text-align:center;
  }
}


@media (max-width: 992px) {
  .maxi-cab-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
    padding: 20px;
    margin: 20px auto;
  }

  .image-container {
    max-width: 100%;
    width: 100%;
    border-radius: 12px;
  }

.years-experience {
  position: absolute;
  top: 50%;
  left: -55px;
  transform: translateY(-50%);
  background-color: #154d94;
  color: white;
  font-weight: 700;
  font-size: 18px;
  padding: 12px 16px;
  width: 120px;
  border-radius: 50px;
  text-align: center;
  writing-mode: vertical-rl;
  line-height: 1.2;
  box-sizing: border-box;
}

.years-experience span {
  font-weight: 400;
  font-size: 13px;
  margin-top: 4px;
  display: block;
}

  .content-container {
    align-items: center;
    padding: 0 10px;
  }

  .content-container h2 {
    font-size: 26px;
    line-height: 1.3;
    color: #154d94;
  }

  .content-container p {
    font-size: 15px;
    line-height: 1.7;
    max-width: 90%;
  }

  .featuress {
    flex-direction: column;
    gap: 20px;
    align-items: center;
    width: 100%;
  }

  .feature {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .feature h3 {
    font-size: 15px;
  }

  .feature p {
    font-size: 13px;
    max-width: 90%;
  }

  .discover-contact {
    flex-direction: column;
    gap: 20px;
  }

  .discover-btn {
    width: 100%;
    max-width: 250px;
    font-size: 14px;
    padding: 12px 24px;
    border-radius: 30px;
  }

  .phone-contact {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .maxi-cab-section {
    padding: 15px;
  }

  .content-container h2 {
    font-size: 22px;
  }

  .content-container p {
    font-size: 14px;
  }

  .years-experience {
    font-size: 14px;
    padding: 8px 14px;
  }

  .discover-btn {
    font-size: 13px;
    padding: 10px 20px;
  }

  .feature .icon {
    width: 36px;
    height: 36px;
  }

  .phone-contact {
    font-size: 15px;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}




.airport-pickup-section {
  background: #f8f9fc;
  padding: 60px 20px;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
  margin-top:0rem;
}

.airport-pickup-section-ap {
  background: #f8f9fc;
  padding: 60px 20px;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
  margin-top:0rem;
}



.pickup-heading h2 {
  font-size: 24px;
  color: #fff;
  background-color: #154d94;
  display: inline-block;
  padding: 12px 24px;
  border-radius: 6px;

}

.pickup-heading p {
  margin-top: 12px;
  font-size: 16px;
  color: #333;
}

.pickup-maps {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.map-card {
  background: white;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  max-width: 360px;
}

.map-card:hover {
  transform: translateY(-6px);
}

.map-card h3 {
  margin-bottom: 12px;
  color: #154d94;
  font-size: 18px;
  font-weight: 700;
}

.map-card img {
  width: 100%;
  border-radius: 6px;
}

.pickup-button-container {
  margin-top: 40px;
}

.pickup-btn {
  background-color: #154d94;
  color: white;
  padding: 14px 30px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 30px;
  font-size: 16px;
  transition: background 0.3s ease;
}

.pickup-btn:hover {
  background-color: #003366;
}



/* Responsive for mobile */
@media (max-width: 768px) {
  .pickup-heading h2 {
    font-size: 18px;
    padding: 10px 16px;
  }

  .map-card {
    max-width: 100%;
  }

  .pickup-btn {
    font-size: 15px;
    padding: 12px 24px;
  }
}



.airport-transfer-section {
  background-color: #f1f5f9;
  padding: 80px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.airport-transfer-container {
  display: flex;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
  flex-wrap: wrap;
}

.transfer-text-content {
  flex: 1;
  min-width: 300px;
}

.transfer-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: #ff7900;
  letter-spacing: 1px;
  margin-bottom: 12px;
  display: inline-block;
}

.transfer-text-content h2 {
  font-size: 32px;
  font-weight: 700;
  color: #154d94;
  margin-bottom: 20px;
}

.transfer-text-content p {
  font-size: 16px;
  color: #555;
  margin-bottom: 24px;
  line-height: 1.6;
}

.transfer-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.transfer-features li {
  margin-bottom: 10px;
  font-size: 15px;
  color: #154d94;
  display: flex;
  align-items: center;
  gap: 10px;
}

.transfer-features i {
  color: #00742a;
}

.transfer-btn {
  background-color: #154d94;
  color: white;
  padding: 14px 30px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.3s ease;
  display: inline-block;
}

.transfer-btn:hover {
  background-color: #002b5c;
}

.transfer-image {
  flex: 1;
  min-width: 300px;
}

.transfer-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .airport-transfer-container {
    flex-direction: column;
    text-align: center;
  }

  .transfer-text-content h2 {
    font-size: 26px;
  }

  .transfer-btn {
    margin-top: 20px;
  }
}



.testimonial-section {
  padding: 80px 20px;
  background: #fff;
  text-align: center;
}

.testimonial-heading {
  font-size: 32px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 50px;
  font-family: 'Poppins', sans-serif;
}

.testimonial-slider {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.testimonial-slide {
  padding: 30px 20px;
  font-family: 'Poppins', sans-serif;
}

.testimonial-icon {
  font-size: 70px;
  color: #154d94;
  margin-bottom: 30px;
}

.testimonial-text {
  font-size: 18px;
  color: #222;
  max-width: 700px;
  margin: 0 auto 30px;
  line-height: 1.8;
}

.testimonial-rating {
  color: #154d94;
  font-size: 24px;
  margin-bottom: 10px;
}

.testimonial-author {
  font-weight: 800;
  font-size: 20px;
  color: #000;
}

/* Arrows */
.testimonial-nav {
  color: #888;
  transition: 0.3s ease;
}

.testimonial-nav:hover {
  color: #222;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial-text {
    font-size: 16px;
    padding: 0 10px;
  }

  .testimonial-author {
    font-size: 18px;
  }
}
.quote-circle {
  width: 80px;
  height: 80px;
  background-color: #154d94;
  border-radius: 50%;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.quote-circle span {
  font-size: 50px;
  font-weight: bold;
  color: #fff;
  margin-top: 26px;
}

/* Optional: triangle/pointer below the circle */
.quote-circle::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 12px solid #154d94;
}



.pro-footer {
  background-color: #0b1d36;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
  padding-top: 60px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px 40px;
  gap: 40px;
  justify-content: space-between;
}

.footer-brand {
  flex: 1 1 250px;
}

.footer-brand img {
  max-width: 160px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #ccc;
}
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.footer-social a {
  background-color: #1c3556;
  color: #fff;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 18px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.footer-social a:hover {
  background-color: #ff7900;
  color: #fff;
  transform: scale(1.1);
}


.footer-links,
.footer-services,
.footer-contact {
  flex: 1 1 200px;
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
  font-size: 18px;
  margin-bottom: 16px;
  position: relative;
  color: #fff;
}

.footer-links ul,
.footer-services ul,
.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li,
.footer-services ul li,
.footer-contact ul li {
  margin-bottom: 10px;
  font-size: 14px;
  color: #ccc;
}

.footer-links ul li a,
.footer-services ul li a {
  text-decoration: none;
  color: #ccc;
  transition: 0.3s;
}

.footer-links ul li a:hover,
.footer-services ul li a:hover {
  color: #ff7900;
}

.footer-contact ul li i {
  margin-right: 10px;
  color: #ffffff;
}

.footer-map {
  margin-top: 15px;
}

.footer-map h4 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #fff;
}

.map-embed iframe {
  border-radius: 8px;
  width: 100%;
  height: 180px;
  border: none;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.app-buttons a img {
  height: 40px;
  margin-right: 8px;
}

.footer-bottom {
text-align: center;
    padding: 10px 0;
    background-color: #ffffffb8;
    color: #000000;
    font-size: 15px;
    font-weight: 700;
    font-family: 'Fira Sans', sans-serif;
    /* letter-spacing: 1.2px; */
    /* text-transform: uppercase; */
    border-top: 2px solid #ffffff;
}

.footer-bottom p {
  margin: 0;
}





.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  color: #fff;
  font-size: 15px;
}

.footer-contact li i {
  color: #ff7900;
  margin-right: 10px;
  font-size: 16px;
  min-width: 20px;
}

.footer-contact a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: #ff7900;
}


.footer-social a i {
  border: none;        /* remove any borders from icon itself */
  line-height: 1;
}

.footer-phone-btn {
  display: inline-block;
  margin-top: 15px;
  background-color: #ff7900;
  color: white;
  padding: 10px 24px;
  font-weight: 700;
  border-radius: 30px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  font-size: 16px;
}

.footer-phone-btn:hover {
  background-color: #e36e00;
}



.custom-payment-section {
  background-color: #154d94; /* #154d94 Blue background */
  padding: 50px 20px;
  text-align: center;
  color: #c0c0c0; /* Silver text */
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.custom-payment-container {
  max-width: 800px;
  margin: 0 auto;
}

.custom-payment-heading {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff; /* White heading */
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.custom-payment-text {
  font-size: 18px;
  margin-bottom: 30px;
  color: #b0b0b0; /* lighter silver */
}

.custom-payment-image-wrapper {
  display: flex;
  justify-content: center;
}

.custom-payment-image {
  max-width: 100%;
  width: 320px;
  height: auto;
  filter: drop-shadow(0 2px 5px rgba(0,0,0,0.3));
  border-radius: 10px;
}




.maxi-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.maxi-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  background-color: white;
  border-radius: 18px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  padding: 40px;
  gap: 30px;
}

.maxi-text {
  flex: 1 1 500px;
}

.maxi-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #111;
}

.maxi-text p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 18px;
  color: #333;
}

.highlight-blue {
  color: #00a8e8;
  font-weight: 600;
}

.btn-book-now {
  display: inline-block;
  background-color: #154d94;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 10px;
  transition: background 0.3s ease;
}

.btn-book-now i {
  margin-right: 8px;
}

.btn-book-now:hover {
  background-color: #007bbd;
}

.maxi-image-box {
  flex: 1 1 400px;
  border-radius: 12px;
  overflow: hidden;
}

.maxi-image-box img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 12px;
}

/* Responsive */
@media (max-width: 768px) {
  .maxi-container {
    flex-direction: column;
    padding: 30px 20px;
  }

  .maxi-text, .maxi-image-box {
    flex: 1 1 100%;
  }

  .maxi-title {
    font-size: 24px;
  }
}


    .page-header {
      background-color: #154d94;
      color: silver;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      height: 121px;
      text-align: center;
      padding: 20px;
    }

    .page-header h1 {
      font-size: 48px;
      margin-bottom: 20px;
      font-weight: bold;
    }

    .header-buttons {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .header-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background-color: silver;
      color: #154d94;
      padding: 12px 24px;
      border: none;
      border-radius: 30px;
      font-size: 16px;
      font-weight: bold;
      cursor: pointer;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .header-btn:hover {
      background-color: white;
      color: #0e3666;
      transform: scale(1.05);
    }

    .header-btn i {
      font-size: 18px;
    }
#contact img {
  object-fit: cover;
  width: 100%;
  max-height: 250px;
}
.call-section h4, .call-section h2 {
  margin: 0;
  line-height: 1.4;
}

.call-section img {
  max-width: 100%;
  height: auto;
}

  .border-custom {
    border: 2px solid #154d94 !important;
    border-radius: 12px;
  }
  .card-title {
    font-size: 1.25rem;
    font-weight: 600;
  }





 #child-car-seats {
    background-color: #f8f9fa;
  }

  #child-car-seats h2 {
    color: #154d94;
    font-weight: 700;
  }

  #child-car-seats p strong,
  #child-car-seats .card-title {
    color: #154d94;
  }

  .seat-card {
    border: 2px solid #154d94;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 20px;
    height: 100%;
  }

  .seat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  }

  .seat-card img {
    height: 160px;
    width: auto;
    object-fit: contain;
    margin-bottom: 15px;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  .seat-card h5 {
    font-weight: 700;
    color: #154d94;
    font-size: 1.2rem;
  }

  .seat-card .fw-bold {
    font-size: 1rem;
    margin-bottom: 8px;
  }

  .seat-card .card-text {
    font-size: 0.95rem;
    color: #333;
  }



.seat-img {
  height: 160px;    /* Fixed height for all images */
  width: auto;
  object-fit: contain;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .seat-img {
    height: 130px;
  }
}

  @media (max-width: 768px) {
    .seat-card img {
      height: 130px;
    }
  }








/* Responsive adjustments for Maxi Taxi with Baby Seat section */
@media (max-width: 767.98px) {
  #maxi-taxi-baby-seat img {
    max-width: 100% !important;
    height: auto;
  }

  #maxi-taxi-baby-seat .row.justify-content-center > div {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    margin-bottom: 1.5rem;
  }

  #maxi-taxi-baby-seat .d-flex.flex-column.align-items-center {
    text-align: center;
  }

  #maxi-taxi-baby-seat h2 {
    font-size: 1.75rem;
  }

  #maxi-taxi-baby-seat p.fs-5 {
    font-size: 1rem;
  }
}

/* @media (max-width: 767.98px) { */
  /* Add extra top margin to the Why Choose Us section on mobile */
  /* section.py-5.bg-white { */
    /* margin-top: 81rem !important; /* adjust as needed */ */
  /* } */
/* } */


.privacy-container {
      max-width: 900px;
      margin: 4rem auto;
      background: #fff;
      padding: 3rem 4rem;  /* More padding for comfort */
      box-shadow: 0 4px 20px rgba(21, 77, 148, 0.15);
      border-radius: 12px;
    }
    .privacy-container h1,
    .privacy-container h2,
    .privacy-container h3 {
      color: #154d94;
      margin-bottom: 1.5rem;
    }
    .privacy-container p {
      margin-bottom: 1.25rem;
      font-size: 1rem;
      line-height: 1.7;
    }
    .privacy-container ul {
      margin-left: 2rem;
      margin-bottom: 1.5rem;
      font-size: 1rem;
    }
    .privacy-container ul li {
      margin-bottom: 0.75rem;
    }
    .privacy-container a {
      color: #154d94;
      text-decoration: none;
      font-weight: 600;
    }
    .privacy-container a:hover {
      text-decoration: underline;
    }
    @media (max-width: 768px) {
      .privacy-container {
        padding: 2rem 1.5rem;
        margin: 2rem 1rem;
      }
    }

 .custom-btn-primary-unique {
    background-color: #154d94;
    border-color: #154d94;
    color: white;
    transition: background-color 0.3s, color 0.3s;
  }
  .custom-btn-primary-unique:hover,
  .custom-btn-primary-unique:focus {
    background-color: #0d2a5a; /* darker navy on hover */
    color: white;
  }
  
  .custom-btn-outline-unique {
    color: #154d94;
    border-color: #154d94;
    background-color: transparent;
    transition: background-color 0.3s, color 0.3s;
  }
  .custom-btn-outline-unique:hover,
  .custom-btn-outline-unique:focus {
    background-color: #154d94;
    color: white;
    border-color: #154d94;
  }
  
  
 
 .fleetpage-tabs-wrapper {
  cursor: pointer;
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.fleetpage-tab-item {
  padding: 1rem 2rem;
  border: 2px solid transparent;
  border-radius: 12px;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  text-align: center;
  color: #154d94;
  user-select: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 1.1rem;
}

.fleetpage-tab-item i {
  font-size: 2.5rem;
  color: #154d94;
  transition: color 0.3s ease;
}

.fleetpage-tab-item-active,
.fleetpage-tab-item:hover {
  background-color: #154d94;
  color: white;
  border-color: #154d94;
}

.fleetpage-tab-item-active i,
.fleetpage-tab-item:hover i {
  color: #ffffff!important; /* light baby blue or pastel */
}

.fleetpage-img {
  width: 320px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(21, 77, 148, 0.4);
  transition: transform 0.3s ease;
}

.fleetpage-img:hover {
  transform: translateY(-8px);
}

.fleetpage-caption {
  margin-top: 0.75rem;
  font-weight: 600;
  font-size: 1.2rem;
  color: #154d94;
  text-align: center;
}

.fleetpage-cards-wrapper {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.fleetpage-content {
  display: none;
}

.fleetpage-content-active {
  display: block;
}

/* Responsive styling */
@media (max-width: 1024px) {
  .fleetpage-img {
    width: 280px;
  }
  .fleetpage-tab-item {
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
  }
}

@media (max-width: 768px) {
  .fleetpage-tabs-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .fleetpage-tab-item {
    width: 100%;
    max-width: 320px;
    padding: 1rem;
    font-size: 1rem;
  }

  .fleetpage-img {
    width: 100%;
    max-width: 320px;
  }

  .fleetpage-cards-wrapper {
    flex-direction: column;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .fleetpage-tab-item {
    font-size: 0.9rem;
    padding: 0.6rem 1rem;
  }

  .fleetpage-img {
    max-width: 100%;
  }

  .fleetpage-caption {
    font-size: 1rem;
  }
}




.fleetpage-booking-pricing {
  background: #f8f9fa;
  color: #154d94;
}

.fleetpage-section-title {
  font-weight: 700;
  font-size: 2.5rem;
}

.fleetpage-section-subtitle {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.fleetpage-pricing-card {
  background: white;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fleetpage-pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgb(21 77 148 / 0.3);
}

.pricing-vehicle {
  font-weight: 600;
  margin-bottom: 1rem;
}

.pricing-cost {
  color: #154d94;
  margin-bottom: 1.5rem;
}

.pricing-features li {
  margin-bottom: 0.5rem;
}

.fleetpage-btn {
  background-color: #154d94;
  border-color: #154d94;
  font-weight: 600;
  padding: 0.5rem 1.5rem;
}

.fleetpage-btn:hover {
  background-color: #0b2545;
  border-color: #0b2545;
  color: white;
}

@media (max-width: 768px) {
  .fleetpage-section-title {
    font-size: 2rem;
  }
  .fleetpage-pricing-card {
    padding: 2rem 1.5rem;
  }
}




.fleetpage-booking-info {
  background-color: #fff;
}

.fleetpage-subtitle {
  font-weight: 600;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.fleetpage-info-list {
  list-style: disc;
  padding-left: 1.25rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.fleetpage-contact-btn {
  font-weight: 600;
  padding: 0.5rem 1.5rem;
  transition: all 0.3s ease;
}

.fleetpage-contact-btn:hover {
  background-color: #154d94;
  color: #fff !important;
  border-color: #154d94 !important;
}

@media (max-width: 768px) {
  .fleetpage-subtitle {
    font-size: 1.1rem;
  }
  .fleetpage-info-list {
    font-size: 0.9rem;
  }
  .fleetpage-contact-btn {
    width: 100%;
    text-align: center;
  }
}


.sticky-left-buttons {
  position: fixed;
  bottom: 20px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

.call-now-circle,
.book-now-circle {
  position: relative;
  width: 60px;
  height: 60px;
  background-color: #154d94;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 60px;
  font-size: 22px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  animation: pulse-ring 1.5s infinite;
}

.call-now-circle i {
  transform: rotate(99deg);
}



.book-now-circle i {
  position: relative;
  z-index: 2;
}

.ringing-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  background: rgba(21, 77, 148, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  animation: ring-animation 1.5s infinite;
}

@keyframes ring-animation {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  70% {
    transform: translate(-50%, -50%) scale(1.6);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@media (min-width: 768px) {
  .sticky-left-buttons {
    display: none;
  }
}


@media (max-width: 768px) {
  #why-book-with-us {
    margin-top: 83rem; /* 11.25rem = 180px */
  }
}





  .thanks-wrapper {
      min-height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 20px;
    }

    .thanks-box {
      background: white;
      border-radius: 12px;
      padding: 40px 30px;
      max-width: 500px;
      width: 100%;
      box-shadow: 0 0 20px rgba(0,0,0,0.05);
      text-align: center;
    }

    .thanks-image {
      max-width: 100%;
      height: auto;
      border-radius: 10px;
      margin-bottom: 25px;
    }

    .thanks-icon {
      font-size: 64px;
      color: #28a745;
      margin-bottom: 20px;
    }

    .thanks-title {
      font-size: 32px;
      margin-bottom: 15px;
    }

    .thanks-message {
      font-size: 16px;
      margin-bottom: 30px;
      color: #555;
    }

    .thanks-btn-custom {
      background-color: #154d94;
      color: white;
      padding: 12px 24px;
      border-radius: 6px;
      text-decoration: none;
      font-weight: 500;
      transition: background-color 0.3s;
    }

    .thanks-btn-custom:hover {
      background-color: #218838;
      color: white;
    }

    .thanks-btn-outline {
      border: 2px solid #6c757d;
      color: #6c757d;
      padding: 12px 24px;
      border-radius: 6px;
      text-decoration: none;
      font-weight: 500;
      transition: all 0.3s;
    }

    .thanks-btn-outline:hover {
      background-color: #6c757d;
      color: white;
    }

