body {
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
}

.page {
  display: none;
}

.active-page {
  display: block;
}

.nav-link {
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: #FFCB05;
  transition: width 0.3s ease;
}

.nav-link.active::after, .nav-link:hover::after {
  width: 100%;
}

.taxi-card {
  transition: all 0.3s ease;
}

.taxi-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.booking-form input, .booking-form select, .contact-form input, .contact-form textarea {
  transition: all 0.3s ease;
}

.booking-form input:focus, .booking-form select:focus, .contact-form input:focus, .contact-form textarea:focus {
  border-color: #FFCB05;
  box-shadow: 0 0 0 3px rgba(255, 203, 5, 0.2);
}

.hero-animation {
  animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.footer-link {
  transition: all 0.3s ease;
}

.footer-link:hover {
  color: #FFCB05;
  transform: translateX(3px);
}

.social-icon {
  transition: all 0.3s ease;
}

.social-icon:hover {
  transform: translateY(-3px);
  color: #FFCB05;
}

.nav-link {
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #FFCB05;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link.active::after {
  width: 100%;
}

.section-heading {
  position: relative;
}

.section-heading::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 3px;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FFCB05;
}

.taxi-card {
  transition: all 0.3s ease;
}

.taxi-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.mobile-menu {
  transition: transform 0.3s ease-in-out;
}

.mobile-menu.hidden {
  transform: translateX(-100%);
}

.section-heading {
  position: relative;
}

.section-heading::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 3px;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FFCB05;
}

.pricing-card {
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.contact-input:focus {
  border-color: #FFCB05;
  box-shadow: 0 0 0 3px rgba(255, 203, 5, 0.2);
}

.whatsapp-link {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: #25D366;
  color: white;
  font-size: 18px;
  padding: 12px 12px;
  border-radius: 50px;
  text-decoration: none;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.whatsapp-link:hover {
  background-color: #1ebe5d;
}

.whatsapp-link i {
  font-size: 20px;
}

.booking-banner {
  width: 100%;
  background-color: #007bff;
  color: white;
  padding: 10px 0;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.booking-banner a {
  color: #fff;
  text-decoration: underline;
}

/* Basic loader styling - customize as needed */
.loader {
  border: 4px solid #f3f3f3; /* Light grey border */
  border-top: 4px solid #3498db; /* Blue border */
  border-radius: 50%;
  width: 20px;
  height: 20px;
  animation: spin 2s linear infinite;
  display: inline-block;
  margin-left: 8px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.container {
  max-width: 1000px; /* Adjust max-width as needed */
  margin: 40px auto; /* Add some top/bottom margin */
  padding: 0 20px;
}

.cab-routes-section {
  padding: 20px 0;
}

/* Header Row */
.header-row {
  display: grid;
  grid-template-columns: 1.5fr 2fr 1fr 0.8fr; /* Adjust column widths as in the image */
  background-color: #ffc107; /* Yellow background */
  color: #333;
  font-weight: 700;
  padding: 15px 20px;
  border-radius: 8px 8px 0 0; /* Rounded top corners */
  text-transform: uppercase;
  font-size: 0.95em;
  gap: 10px; /* Gap between columns */
}

.header-cell {
  display: flex;
  align-items: center;
}

.action-header {
  justify-content: flex-end; /* Align Book Now header to the right */
}

/* Routes List Container */
.routes-list {
  background-color: #fff;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

/* Header Row & Route Items - Default Layout for Desktop */
.header-row,
.route-item {
  display: grid;
  grid-template-columns: 1.5fr 2fr 1fr 0.8fr;
  padding: 20px;
  align-items: center;
  gap: 10px;
}

.route-item {
  border-bottom: 1px solid #eee;
}

.route-item:last-child {
  border-bottom: none;
}

.route-col {
  padding: 5px 0;
}

/* CAB ROUTES Text */
.cab-routes h3 {
  margin: 0;
  color: #dc3545;
  font-size: 1.1em;
  font-weight: 600;
}

.cab-routes p {
  margin: 5px 0 0;
  color: #666;
  font-size: 0.9em;
}

/* Extra Cost */
.extra-cost p {
  margin: 0;
  font-size: 0.95em;
  color: #444;
  font-weight: 600;
}

/* Cab Cost */
.cab-cost {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-weight: 700;
}

.current-price {
  font-size: 1.2em;
  color: #333;
  margin-bottom: 3px;
}

.old-price {
  font-size: 0.85em;
  color: #888;
  text-decoration: line-through;
  margin-bottom: 3px;
}

.onwards-text {
  font-size: 0.8em;
  color: #666;
  font-weight: 400;
}

/* Book Now Button */
.book-now-btn {
  display: block;
  width: 100%;
  padding: 12px 15px;
  background-color: #ffc107;
  color: #333;
  text-decoration: none;
  text-align: center;
  border-radius: 5px;
  font-weight: 600;
  font-size: 0.9em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
}

.book-now-btn:hover {
  background-color: #e0a800;
  transform: translateY(-2px);
}

/* Loading and Error Messages */
.loading-message,
.error-message {
  text-align: center;
  padding: 30px;
  font-size: 1.1em;
  color: #777;
  grid-column: 1/-1;
}

.error-message {
  color: #dc3545;
  font-weight: 500;
  background-color: #ffe5e7;
  border-radius: 0 0 8px 8px;
  padding: 20px;
}

/* Tablet Devices */
@media (max-width: 992px) {
  .header-row,
  .route-item {
    grid-template-columns: 1fr 1fr;
    row-gap: 10px;
  }
  .header-cell.action-header {
    justify-self: center;
  }
  .cab-cost {
    align-items: flex-start;
  }
}
/* Mobile Devices */
@media (max-width: 768px) {
  .header-row,
  .route-item {
    display: block;
    text-align: center;
    padding: 15px;
  }
  .header-cell,
  .route-col {
    margin-bottom: 10px;
  }
  .cab-cost,
  .extra-cost,
  .cab-routes {
    text-align: center;
  }
  .cab-cost {
    align-items: center;
  }
  .book-now-btn {
    max-width: 200px;
    margin: 10px auto;
  }
}
/* Small Mobile Devices */
@media (max-width: 480px) {
  .container {
    padding: 0 10px;
  }
  .header-row {
    font-size: 0.85em;
  }
  .route-item {
    font-size: 0.9em;
  }
  .book-now-btn {
    padding: 10px;
    font-size: 0.85em;
  }
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Section Title & Subtitle */
.testimonials-section {
  padding: 60px 0;
  background-color: #fff;
  text-align: center;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 2.8em;
  color: #2c3e50;
  margin-bottom: 15px;
  position: relative;
  display: inline-block; /* To allow pseudo-elements to align properly */
}

.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: #007bff; /* Accent color */
  margin: 10px auto 0;
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.1em;
  color: #666;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Testimonials Grid */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 30px;
  justify-content: center;
}

/* Individual Testimonial Card */
.testimonial-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  position: relative;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.quote-icon {
  font-family: serif; /* Ensure it looks like a proper quote */
  font-size: 4em;
  color: #e0e0e0;
  position: absolute;
  top: 10px;
  left: 15px;
  line-height: 1;
  z-index: 1; /* Ensure it's behind text if not careful */
  opacity: 0.7;
}

.testimonial-content {
  font-size: 1.05em;
  font-style: italic;
  color: #444;
  margin-bottom: 20px;
  position: relative; /* To place content above pseudo-quote */
  z-index: 2;
  padding-top: 10px; /* Space for the quote icon */
}

.testimonial-author {
  font-weight: 600;
  color: #007bff; /* Match accent color */
  text-align: right;
  font-size: 0.95em;
  margin-top: auto; /* Pushes the author to the bottom */
}

/* Messages when loading or no testimonials */
.loading-message,
.error-message,
.no-testimonials {
  text-align: center;
  padding: 30px;
  font-size: 1.2em;
  color: #777;
  grid-column: 1/-1; /* Make it span all columns in the grid */
}

.error-message {
  color: #dc3545; /* Red for errors */
  font-weight: 500;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .section-title {
    font-size: 2.2em;
  }
  .section-subtitle {
    font-size: 1em;
  }
  .testimonials-grid {
    grid-template-columns: 1fr; /* Stack testimonials on small screens */
  }
  .testimonial-card {
    margin: 0 15px; /* Add some side margin for smaller screens */
  }
}
/* Add this to your existing styles.css file */
.star-rating {
  margin-bottom: 15px;
  color: #FFD700; /* Gold color for stars */
  font-size: 1.2em; /* Adjust star size */
  display: flex;
  justify-content: center; /* Center align stars */
  gap: 2px; /* Small space between stars */
}

/* For individual stars within the rating */
.star-rating .star {
  /* You can add individual star styling here if needed, e.g., font-weight */
}

.testimonial-card .testimonial-content {
  /* Existing styles, just ensure it doesn't conflict */
  font-size: 1.05em;
  font-style: italic;
  color: #444;
  margin-bottom: 15px; /* Adjust margin if needed */
  position: relative;
  z-index: 2;
}

.testimonial-card .testimonial-author {
  font-weight: 600;
  color: #007bff;
  text-align: right;
  font-size: 0.95em;
  margin-top: auto;
}

.testimonial-card .testimonial-position {
  font-size: 0.85em;
  color: #888;
  text-align: right;
  margin-top: 5px;
}

/* Adjust the quote icon if it clashes with stars, or remove it if you prefer */
.quote-icon {
  display: none; /* Hide the quote icon if stars are the primary visual */
  /* Or, if you want to keep it, adjust its position/size to not overlap stars */
  /* font-size: 3em; */
  /* top: 5px; */
  /* left: 10px; */
}
