header h1 {
  font-size: 2rem;
  margin: 0;
}

header nav {
  display: flex;
  gap: 1rem;
}

nav a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}

nav a:hover {
  color: gray; /* Add hover effect for navigation links */
}

.car-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* Adjusting car gallery images for better display */
.car-gallery img {
  width: 150px; /* Adjusted width for better clarity */
  height: auto;
  border-radius: 10px;
  object-fit: contain; /* Ensures the entire image is visible */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Adding shadow for better visibility */
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth hover effect */
}

.car-gallery img:hover {
  transform: scale(1.1); /* Slight zoom on hover */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4); /* Enhanced shadow on hover */
}

.routes table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
}

.routes th, .routes td {
  border: 1px solid #ddd;
  padding: 1rem;
  text-align: center;
}

.book-btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: #28a745;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}


/* Styling for car details section */
.car-details {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin: 40px 0;
}

.car {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  width: 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.car img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 15px;
}

.car h3 {
  font-size: 20px;
  color: #333;
  margin-bottom: 10px;
}

.car p {
  font-size: 14px;
  color: #555;
  margin: 5px 0;
}

.car .book-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.car:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Centered Book Now button styling */
.center-book-btn {
  text-align: center;
  margin: 20px 0;
}

.center-book-btn .book-btn {
  display: inline-block;
  padding: 15px 30px;
  background-color: #007bff;
  color: white;
  text-decoration: none;
  font-size: 18px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.cta {
  position: relative;
  background-image: url('./images/backgroundimage4.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  color: white;
  text-align: center;
  padding: 60px 20px;
  border-radius: 8px;
  min-height: 250px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* adjust 0.4–0.6 */
  z-index: 1;
}

/* Keep content above overlay */
.cta * {
  position: relative;
  z-index: 2;
}
.cta h2 {
  text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

.cta p {
  text-shadow: 1px 1px 6px rgba(0,0,0,0.6);
}

/* Buttons common style */
.cta .btn {
  padding: 12px 25px;
  font-size: 1rem;
  border-radius: 30px;
  text-transform: uppercase;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Shiny blue button */
.cta .btn-primary {
  background: linear-gradient(45deg, #007bff, #00c6ff);
  color: white;
}

.cta .btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* Shiny red button */
.cta .btn-danger {
  background: linear-gradient(45deg, #ff416c, #ff4b2b);
  color: white;
}

.cta .btn-danger:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}


.cta1 {
  position: relative;
  background-image: url('./images/backgroundimage5.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  color: white;
  text-align: center;
  padding: 60px 20px;
  border-radius: 8px;
  min-height: 250px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
/* Align paragraph + list nicely */
.cta1 p,
.cta1 ul {
  text-align: left;
  display: inline-block;
  max-width: 600px;   /* keeps content neat */
}

/* Improve spacing */
.cta1 p {
  margin-bottom: 10px;
  line-height: 1.6;
}

/* List styling */
.cta1 ul {
  list-style: none;   /* remove default bullets */
  padding-left: 0;
}

/* Add tick icon */
.cta1 ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 8px;
  font-size: 1rem;
}

/* Custom check icon */
.cta1 ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #00ffae;   /* nice green */
  font-weight: bold;
}
/* Keep content aligned left but heading centered */
.cta1 {
  align-items: flex-start;
}

/* Center only heading */
.cta1 h2 {
  align-self: left;
  text-align: left;
  width: 100%;
  margin-bottom: 20px;
}

/* Improve spacing for text block */
.cta1 p,
.cta1 ul {
  margin-left: 20px;
}

/* Call button */
.cta1-call-btn {
  margin-left: 20px;
  margin-top: 20px;
  padding: 12px 28px;
  background: linear-gradient(45deg, #ff416c, #ff4b2b);
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  display: inline-block;
  transition: 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  font-size: 1rem;
}

/* hover */
.cta1-call-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}




/* ===== Header Improvement (minimal change) ===== */
header {
  background: linear-gradient(90deg, #000, #1a1a1a);
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}
/* Keep your nav but improve spacing */
header nav {
  gap: 20px;
}

/* Hover underline effect */
header nav a {
  position: relative;
}

header nav a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: -4px;
  background: #00c6ff;
  transition: 0.3s;
}

header nav a:hover::after {
  width: 100%;
}

/* ===== Hamburger Menu ===== */
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: white;
}



/* ===== Footer Improvement (minimal) ===== */
footer {
  background: linear-gradient(90deg, #000, #1a1a1a);
  color: #ccc;
  font-size: 0.95rem;
  text-align: center;
  padding: 1rem;
}

footer p:hover {
  color: white;
}

/* ===== UNIFIED BUTTON STYLE (same as btn-danger) ===== */

/* Apply to all your buttons */
.book-btn,
.cta1-call-btn,
.center-book-btn .book-btn {
  background: linear-gradient(45deg, #ff416c, #ff4b2b) !important;
  color: white !important;
  border-radius: 30px !important;
  padding: 12px 25px !important;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Hover effect same as CTA */
.book-btn:hover,
.cta1-call-btn:hover,
.center-book-btn .book-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.floating-actions {
  position: fixed;
  right: 20px;
  top: 65%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

/* Button base */
.float-btn {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 30px;
  padding: 8px 12px;
  text-decoration: none;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: 0.3s;
}

/* Icon */
.float-btn .icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
}

/* Labels */
.float-btn .label {
  margin-left: 10px;
  font-weight: 600;
  color: #333;
}

/* Call style */
.float-btn.call .icon {
  background: linear-gradient(45deg, #ff416c, #ff4b2b);
}

/* WhatsApp style */
.float-btn.whatsapp .icon {
  background: linear-gradient(45deg, #25d366, #128c7e);
}

/* Hover */
.float-btn:hover {
  transform: translateX(-5px);
}


header h1 {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1px;
  background: linear-gradient(45deg, #ffffff, #00c6ff);

  /* Add both standard and prefixed versions */
  background-clip: text;              /* standard property */
  -webkit-background-clip: text;      /* vendor prefix for WebKit browsers */

  -webkit-text-fill-color: transparent;
}

header h6 {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 1px;
  background: linear-gradient(45deg, #ffffff, #ca1010);

  /* Add both standard and prefixed versions */
  background-clip: text;              /* standard property */
  -webkit-background-clip: text;      /* vendor prefix for WebKit browsers */

  -webkit-text-fill-color: transparent;
}

header nav a {
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #ddd;
}

header nav a:hover {
  color: #fff;
}

.cta h2 {
  font-size: 2.3rem;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.3;
  text-transform: capitalize;
}
.cta1 h2 {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  line-height: 1.4;
}

.cta p,
.cta1 p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #f1f1f1;
}
.cta1 ul li {
  font-size: 1rem;
  letter-spacing: 0.3px;
}
footer {
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  color: #bbb;
}

footer p {
  margin: 0;
}

/* Always show nav (mobile + desktop) */
header nav {
  margin: 0 !important;
}
a.btn {
  text-decoration: none;   /* removes underline */
}
.book-btn {
  text-decoration: none;   /* removes underline */
}


.route-banner {
  text-align: center;
  margin-bottom: 15px;
}

.route-banner h3 {
  color: #ffea00;
  font-size: 1.5rem;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.route-banner p {
  font-size: 1.2rem;
  font-weight: 600;
}

.route-list {
  list-style: none;
  padding-left: 0;
  margin-top: 10px;
}

.route-list li {
  margin-bottom: 8px;
}

/* Styled like clickable links */
.route-list a {
  display: inline-block;
  padding: 8px 14px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 20px;
  text-decoration: none;
  color: #fff;
  font-size: 0.9rem;
  transition: 0.3s;
}

/* Hover */
.route-list a:hover {
  background: linear-gradient(45deg, #ff416c, #ff4b2b);
}
/* Container split layout */
.cta1-container {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

/* Main container */
.cta1-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start; /* 🔥 important */
  gap: 40px;
}

/* Left side */
.cta-left {
  flex: 1;
}

/* Right side */
.cta-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* 🔥 align properly */
}

/* Fix heading alignment */
.cta-right h3 {
  margin-bottom: 10px;
}

/* Fix text */
.cta-right p {
  margin-bottom: 10px;
}

/* Route list spacing */
.route-list {
  margin-top: 10px;
}/* Remove weird spacing */
.route-list {
  list-style: none;
  padding-left: 0;
}

/* Each item */
.route-list li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

/* Tick icon */
.route-list li::before {
  content: "✔";
  color: #00ffae;
  margin-right: 10px;
}

/* Link styling */
.route-list a {
  padding: 6px 14px;
  background: rgba(0,0,0,0.6);
  border-radius: 20px;
  text-decoration: none;
  color: #fff;
  font-size: 0.9rem;
  transition: 0.3s;
}

.route-list a:hover {
  background: linear-gradient(45deg, #ff416c, #ff4b2b);
}
@media (max-width: 768px) {
  .cta1-container {
    flex-direction: column;
  }

  .cta-right {
    margin-top: 20px;
  }
}
.cta-right p {
  margin: 5px 0 12px;
  font-size: 0.95rem;
  opacity: 0.9;
}
.cta1-call-btn {
  margin-top: 20px;
}
.route-list a {
  backdrop-filter: blur(5px);
  background: rgba(0,0,0,0.5);
}

/* Why Choose Section */
.why-section {
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.why-section h2 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.why-section ul {
  list-style: none;
  padding-left: 0;
}
.why-section ul li {
  margin-bottom: 10px;
  padding: 10px;
  border-radius: 8px;
  background: #f8fbff;
}

@media (max-width: 768px) {
  .why-section h2 {
    font-size: 1.3rem;
  }

  .why-section ul li {
    font-size: 13px;
  }
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to bottom, #f5f7fa, #e9eff5);
}
section {
  margin-bottom: 40px;
}
.car:hover {
  transform: translateY(-6px);
}
.book-btn {
  letter-spacing: 0.5px;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 10px 20px;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  height: 60px;
  width: auto;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .logo {
    height: 45px;
  }

  .header-container {
    text-align: center;
  }
}