    /* Navbar Section Start */

/* Header */
.htc-header {
  background: #000;
  border-bottom: 1px solid #e5e5e5;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.htc-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

/* Logo */
.htc-logo img {
  height: 46px;
  display: block;
  transition: transform 0.3s ease;
}

.htc-logo:hover img {
  transform: scale(1.05);
}

/* Navigation */
.htc-nav ul {
  display: flex;
  list-style: none;
  gap: 26px;
  margin-top: 15px;
}

.htc-nav a,
.htc-drop-toggle {
  text-decoration: none;
  color: #fff;
  font-size: 15px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 12px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  transition: all 0.2s ease;
  border-radius: 4px;
  position: relative;
}

.htc-nav a:hover,
.htc-drop-toggle:hover {
  color: #04DBC0;
}

/* Active link styling */
.htc-nav a.htc-active-link {
  color: #fff;
  font-weight: 600;
}

/* Dropdown container */
.htc-dropdown {
  position: relative;
}

/* Dropdown toggle with arrow */
.htc-drop-toggle {
  position: relative;
  padding-right: 24px;
}

.htc-drop-toggle::after {
  content: "▼";
  font-size: 10px;
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}

.htc-dropdown.htc-dropdown-open .htc-drop-toggle::after {
  transform: translateY(-50%) rotate(180deg);
}

/* Dropdown menus */
.htc-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  display: none;
  z-index: 1000;
  /* padding: 12px 20px; */
  min-width: 230px;
  border-radius: 8px;
  animation: htc-fadeIn 0.3s ease forwards;
  opacity: 0;
}

/* Show dropdown */
.htc-dropdown.htc-dropdown-open .htc-dropdown-menu {
  display: flex;
}

/* Multi-column dropdown */
.htc-dropdown-columns {
  display: flex;
  gap: 24px;
}

/* Dropdown list items */
.htc-dropdown-menu ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.htc-dropdown-menu li {
  list-style: none;
  min-width: 100px;
}

.htc-dropdown-menu li a {
  display: block;
  padding: 10px 12px;
  font-size: 14px;
  color: #333;
  border-radius: 6px;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.htc-dropdown-menu li a:hover {
  color: #04DBC0;
  transform: translateX(4px);
  padding-left: 16px;
}

/* Services dropdown: 2 columns */
.htc-services-dropdown {
  width: 260px;
  flex-wrap: wrap;
}

.htc-services-dropdown li {
  width: 50%;
}

/* Call button */
.htc-call a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: #04DBC0;
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 8px;
  background-color: #fff5eb;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.htc-call a:hover {
  background-color: #04DBC0;
  color: white;
  border-color: #04DBC0;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(247, 147, 30, 0.2);
}

.htc-call img {
  width: 22px;
  transition: transform 0.3s ease;
}

.htc-call a:hover img {
  transform: rotate(15deg);
  filter: brightness(0) invert(1);
}

/* Hamburger */
.htc-hamburger {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  user-select: none;
  color: #333;
  padding: 8px;
  transition: all 0.3s ease;
  border-radius: 6px;
  width: 50px;
  height: 50px;
  justify-content: center;
  align-items: center;
}

.htc-hamburger:hover {
  background-color: #f5f5f5;
  color: #04DBC0;
}

.htc-hamburger.htc-hamburger-open {
  color: #04DBC0;
  transform: rotate(90deg);
}

/* Animation */
@keyframes htc-fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 900px) {
  .htc-hamburger {
    display: flex;
  }
.htc-nav a.htc-active-link {
  color: #000;
  font-weight: 600;
}

.htc-nav ul li a,
  .htc-drop-toggle {
    color: #000;
  }

  .htc-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    display: none;
    border-top: 1px solid #ddd;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 999;
    animation: htc-fadeIn 0.3s ease forwards;
    opacity: 0;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
  }

  .htc-nav.htc-nav-open {
    display: flex;
    opacity: 1;
  }

  .htc-nav ul {
    flex-direction: column;
    gap: 0;
    width: 100%;
    padding: 0px 0;
  }

  .htc-nav ul li {
    border-bottom: 1px solid #eee;
    width: 100%;
  }

  .htc-nav ul li:last-child {
    border-bottom: none;
  }

  .htc-nav ul li a,
  .htc-drop-toggle {
    padding: 16px 20px;
    width: 100%;
    text-align: left;
    white-space: normal;
    justify-content: space-between;
    font-size: 16px;
  }

  /* Dropdown menus on mobile */
  .htc-dropdown-menu {
    position: static;
    border: none;
    box-shadow: none;
    padding: 0 20px 10px 20px;
    width: 100%;
    display: none;
    flex-wrap: nowrap;
    flex-direction: column;
    min-width: auto;
    animation: none;
    opacity: 1;
    border-radius: 0;
    background-color: #f9f9f9;
    border-left: 3px solid #04DBC0;
    margin-top: 5px;
  }

  .htc-dropdown.htc-dropdown-open .htc-dropdown-menu {
    display: block;
  }

  /* Remove columns on mobile */
  .htc-dropdown-columns {
    flex-direction: column;
    gap: 0;
  }

  /* Services menu stacked on mobile */
  .htc-services-dropdown {
    width: 100%;
  }

  .htc-services-dropdown li {
    width: 100%;
  }

  /* Call and hamburger side by side */
  .htc-call {
    order: 2;
    margin-left: auto;
  }

  .htc-hamburger {
    order: 3;
    margin-left: 10px;
  }

  .htc-container {
    flex-wrap: wrap;
  }

  .htc-call,
  .htc-hamburger {
    display: flex;
    align-items: center;
  }

  /* Show call text on mobile */
  .htc-call span {
    display: inline;
    font-size: 14px;
  }

  .htc-dropdown-menu li a {
    padding: 12px 15px;
  }

  .htc-dropdown-menu li a:hover {
    padding-left: 20px;
  }
  .htc-nav ul {
  display: flex;
  list-style: none;
  gap: 0px;
  margin-top: 0px !important;
}

}

@media (max-width: 480px) {
  .htc-call span {
    display: none;
  }

  .htc-logo img {
    height: 18px;
  }

  .htc-dropdown-menu {
    padding: 0 15px 8px 15px;
  }

  .htc-nav ul li a,
  .htc-drop-toggle {
    padding: 14px 15px;
  }

  .htc-call a {
    padding: 8px 12px;
  }

  .htc-hamburger {
    width: 44px;
    height: 44px;
    font-size: 24px;
  }
}

/* Backdrop for mobile dropdowns */
.htc-backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
}

.htc-backdrop.htc-backdrop-open {
  display: block;
}

@media (max-width: 1270px) and (min-width: 900px) {
  .htc-call {
    display: none;
  }
}

@media (max-width: 1270px) and (min-width: 900px) {
  .htc-logo img {
    height: 35px;
    display: block;
    transition: transform 0.3s ease;
  }
}

@media (max-width: 1000px) and (min-width: 895px) {
  .htc-logo img {
    height: 25px;
    display: block;
    transition: transform 0.3s ease;
  }
}


/* Navbar Section End */

/* Hero Section Start  */

.hero-main {
  position: relative;
  background-image: url("images/bg-harrow.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

/* Overlay */
.hero-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.hero-main-sec {
  position: relative;
  z-index: 2;
  max-width: 1200px;       
  width: 100%;
  margin: auto;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;               
}

.hero-div-01 {
  flex: 1;
  max-width: 520px; 
}

.hero-div-01 h1 {
  color: #fff;
  font-size: 42px;
  line-height: 1.3;
  word-break: break-word; 
}

@media (max-width: 768px) {
  .hero-main-sec {
    flex-direction: column;
    text-align: center;
    gap: 25px;
  }

  .hero-div-01 {
    max-width: 100%;
  }

  .hero-div-01 h1 {
    font-size: 24px;
    color: #5CE1C8 !important;
  }  
  
  .hero-main-sec {
    position: relative;
    z-index: 2;
    max-width: 1200px;       
    width: 100%;
    margin: auto;
    padding: 6px !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0px !important;                
  }

}


/* Hero Section End */

.modal-header button {
	background-color: #04DBC0 !important;
}

/* Para Section Start */

.para-section-main{
    background-color: #fff;
}

.para-main-div{
    width: 80%;
    margin: auto;
    padding: 10px;
}

.para-main-div h2{
    font-size: 30px;
}

.para-main-div p{
    font-size: 18px;
}

@media (max-width: 768px)  {
    .para-main-div{
        width: 95%;
        margin: auto;
        padding: 7px;
    }
    .para-main-div h2{
        font-size: 23px;
    }
    .para-main-div p{
        font-size: 15px;
    }
}
/* Para Section End */

/* ================= AIRPORT SECTION ================= */

.air-apx-airport-section {
  background: #f6f6f6;
  padding: 70px 15px;
  font-family: "Titillium Web", sans-serif;
}

.air-apx-wrapper {
  max-width: 1200px;
  margin: auto;
}

.air-apx-header {
  text-align: center;
  margin-bottom: 70px;
  text-transform: uppercase;
}

.air-apx-header p {
  font-size: 22px;
  font-weight: 300;
}

.air-apx-header h2 {
  font-size: 38px;
  font-weight: 700;
}

.air-apx-content {
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  margin-bottom: 70px;
}

.air-apx-col {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.air-apx-left {
  text-align: right;
  padding-right: 30px;
}

.air-apx-right {
  text-align: left;
  padding-left: 30px;
}

.air-apx-item h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.air-apx-item h3 a {
  text-decoration: none;
  color: #000;
  transition: 0.3s;
}

.air-apx-item h3 a:hover {
  color: #5CE1C8;
  letter-spacing: 0.6px;
}

.air-apx-item p {
  font-size: 14px;
  color: #444;
  line-height: 1.7;
}

.air-apx-bottom {
  text-align: center;
}

.air-apx-bottom p {
  max-width: 720px;
  margin: auto;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  .air-apx-content {
    grid-template-columns: 1fr;
  }


  .air-apx-left,
  .air-apx-right {
    text-align: center;
    padding: 0;
  }

  .air-apx-header h2 {
    font-size: 26px;
  }
}


/* ================= STATION TRANSFER SECTION START ================= */

.sta-station-section {
  background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
              url("../../images/bg-harrow.jpg") center / cover no-repeat;
  padding: 80px 15px;
  font-family: Arial, Helvetica, sans-serif;
}

.sta-wrapper {
  max-width: 1200px;
  margin: auto;
}

.sta-header {
  text-align: center;
  color: #ffffff;
  margin-bottom: 60px;
}

.sta-header h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

.sta-header p {
  font-size: 18px;
  opacity: 0.9;
}

/* ===== Stations Grid ===== */

.sta-stations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 30px;
  align-items: center;
}

/* ===== Station Item ===== */

.sta-station-item {
  text-decoration: none;
  text-align: center;
  color: #ffffff;
  transition: transform 0.3s ease, color 0.3s ease;
}

.sta-station-item:hover {
  transform: translateY(-6px);
  color: #4debd2;
}

/* ===== Icons ===== */

.sta-icon {
  display: block;
  width: 64px;
  height: 64px;
  margin: 0 auto 12px;
  background-size: contain;
  background-repeat: no-repeat;
  filter: brightness(0) invert(1);
}

/* Example icons (replace SVG/PNG paths easily) */

.sta-waterloo   { background-image: url("../../images/station1.png"); }
.sta-paddington { background-image: url("../../images/station2.png"); }
.sta-kings      { background-image: url("../../images/station3.png"); }
.sta-charing    { background-image: url("../../images/station4.png"); }
.sta-bridge     { background-image: url("../../images/station5.png"); }
.sta-victoria   { background-image: url("../../images/station6.png"); }
.sta-euston     { background-image: url("../../images/station7.png"); }

/* ===== Text ===== */

.sta-station-item h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

/* ===== Responsive ===== */

@media (max-width: 768px) {
  .sta-header h2 {
    font-size: 26px;
  }

  .sta-header p {
    font-size: 15px;
  }
}

/* ================= STATION TRANSFER SECTION END ================= */




/* ===== Fleet Section  Start===== */

.fleet-section {
  background: #fff;
  padding: 80px 15px;
  font-family: Arial, Helvetica, sans-serif;
}

.fleet-wrapper {
  max-width: 1200px;
  margin: auto;
}

/* ===== Header ===== */

.fleet-header {
  text-align: center;
  margin-bottom: 60px;
}

.fleet-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #04DABF;
}

.fleet-header p {
  font-size: 18px;
  color: #555;
}

/* ===== Grid ===== */

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  justify-items: center;
}

/* ===== Card ===== */

.fleet-card {
  width: 100%;
  max-width: 360px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  border: 1px solid #e5e5e5;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fleet-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(4, 218, 191, 0.25);
}

/* ===== Car Image ===== */

.fleet-car {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 10px;
}

/* ===== Title ===== */

.fleet-card h3 {
  font-size: 24px;
  color: #222;
  margin: 16px 0 10px;
}

/* ===== Info Icons ===== */

.fleet-info {
  display: flex;
  justify-content: center;
  gap: 28px;
  padding: 15px 0 20px;
}

.fleet-info div {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #04DABF;
  font-size: 16px;
  font-weight: 600;
}

.fleet-info img {
  width: 22px;
  height: 22px;
}

/* ===== Responsive ===== */

@media (max-width: 768px) {
  .fleet-header h2 {
    font-size: 26px;
  }

  .fleet-header p {
    font-size: 15px;
  }

  .fleet-card h3 {
    font-size: 20px;
  }
}

/* ===== Fleet Section End ===== */



/* ================= Services Section Start ================= */

.ser-section-main {
  background: #f6f6f6;
}

.ser-main-div {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}

/* ===== Top Heading ===== */

.ser-top-sec {
  text-align: center;
  margin-bottom: 40px;
}

.ser-top-sec h2 {
  font-size: 38px;
  font-weight: 700;
  text-transform: uppercase;
}

.ser-top-sec p {
  font-size: 18px;
  color: #555;
}

/* ===== Cards Grid ===== */

.ser-cards-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* ===== Card ===== */

.ser-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.ser-card:hover {
  transform: translateY(-6px);
}

/* ===== Card Image ===== */

.ser-card-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* ===== Card Content ===== */

.ser-card-content {
  padding: 22px;
  text-align: center;
}

.ser-card-content h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}

.ser-card-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 20px;
}

/* ===== Button ===== */

.ser-view-btn {
  display: inline-block;
  padding: 10px 22px;
  border: 2px solid #04DBC0;
  color: #000;
  font-weight: 600;
  font-size: 14px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.ser-view-btn:hover {
  background: #04DBC0;
  color: #000;
}

/* ===== Responsive ===== */

@media (max-width: 992px) {
  .ser-cards-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .ser-cards-wrapper {
    grid-template-columns: 1fr;
  }

  .ser-top-sec h2 {
    font-size: 26px;
  }

  .ser-top-sec p {
    font-size: 15px;
  }
}

/* ================= Services Section End ================= */



/* Footer Section Start  */
/* Main Footer */
.custom-footer {
  background-color: #000 !important;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
}

/* Container */
.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
  display: flex;
  gap: 40px;
  justify-content: space-between;
}

/* Columns */
.footer-col {
  flex: 1;
  min-width: 250px;
}

/* Logo */
.footer-logo {
  font-size: 28px;
  margin-bottom: 15px;
}

.footer-logo span {
  color: #00d2c9;
}

/* Text */
.footer-about p,
.footer-contact p {
  font-size: 14px;
  line-height: 1.8;
  color: #ccc;
}

/* Headings */
.footer-col h3 {
  margin-bottom: 15px;
  font-size: 18px;
}

/* Links */
.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
}

.footer-links ul li a:hover {
  color: #00d2c9;
}

.footer-contact a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
}

.footer-contact a:hover {
  color: #00d2c9;
}

/* Bottom Section */
.footer-bottom {
  border-top: 1px solid #222;
  text-align: center;
  padding: 20px;
}

.footer-bottom p {
  font-size: 14px;
  color: #ccc;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-col {
    margin-bottom: 30px;
  }
  .footer-container {
     max-width: 1200px;
     margin: auto;
     padding: 20px;
     display: flex;
     gap: 40px;
     justify-content: space-between;
   }
}

/* Footer Section End  */























.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    display: none;
    left: 0;
    z-index: 1040;
    background-color: #000;
}


.field-hd {
    margin-bottom: 5px;
    text-align: start;
}