* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #f5f5f5;
  color: #333;
}

header {
  background: #222;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1em 2em;
  max-width: 1200px;
  margin: auto;
}

.logo {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
}

.logo img {
  height: 40px;
  margin-right: 10px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5em;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: #fff;
  border-radius: 3px;
  transition: 0.3s ease;
}

.top-bar {
  background: #f5f5f5;
  padding: 8px 20px;
  border-bottom: 1px solid #e0e0e0;
  font-size: 14px;
  display: flex;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0,0.08);
}

.top-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.top-contact span {
  display: flex;
  align-items: center;
  color: #007bff;
  font-weight: 500;
}
.hero {
  height: auto;
  background: #fff;
  padding: 4em 2em;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  width: 100%;
  gap: 2em;
}

.hero-text {
  flex: 1 1 400px;
  color: #1a1a1a;
}

.hero-text h1 {
  font-size: 2.2rem;
  margin-bottom: 0.5em;
}

.hero-text h2 {
  font-size: 1.8rem;
  color: #007bff;
}
.hero-features {
  list-style: none;
  padding: 1em 0 0 0;
  margin: 0;
  text-align: left;
  color: #333;
  font-size: 1rem;
}

.hero-features li {
  margin-bottom: 0.6em;
  display: flex;
  align-items: center;
  gap: 0.5em;
}

.hero-features li i {
  color: #1eb300; /* Tick icon color */
  font-size: 1.1rem;
}


.hero-image {
  flex: 1 1 300px;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 1.8rem;
  }

  .hero-text h2 {
    font-size: 1.4rem;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .hero-features {
    text-align: center;
    font-size: 0.95rem;
  }

  .hero-features li {
    justify-content: center;
  }
}

.trusted-partner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  padding: 2rem;
  background-color: #ffffff;
  color: #333;
  gap: 2rem;
}

.trusted-content {
  flex: 1 1 500px;
  max-width: 600px;
}

.trusted-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #2a2a88;
}

.trusted-content h2 span {
  color: #ff8c00;
}

.trusted-content p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.trusted-list {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.trusted-list li {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.trusted-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: green;
}

.contact-line {
  font-weight: bold;
  color: #2a2a88;
}

.contact-line a {
  color: #0077cc;
  text-decoration: none;
}
.trusted-table {
  flex: 1 1 400px;
  max-width: 600px;
  overflow-x: auto;
}

.trusted-table h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #2a2a88;
  text-align: center;
  
}
.trusted-table h6 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #eb442a;
  text-align: center;
}

.trusted-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
  margin-top: 19px;
}

.trusted-table th,
.trusted-table td {
  border: 1px solid #ddd;
  padding: 0.75rem;
  text-align: left;
}

.trusted-table th {
  background-color: #f5f5f5;
  color: #333;
}

.trusted-table tr:nth-child(even) {
  background-color: #fafafa;
}

/* Responsive for mobile */
@media (max-width: 768px) {
  .trusted-table h3 {
    font-size: 1.2rem;
  }

  .trusted-table table,
  .trusted-table thead,
  .trusted-table tbody,
  .trusted-table th,
  .trusted-table td,
  .trusted-table tr {
    display: block;
    width: 100%;
  }

  .trusted-table thead {
    display: none;
  }

  .trusted-table tr {
    margin-bottom: 1rem;
    border-bottom: 2px solid #eee;
  }

  .trusted-table td {
    position: relative;
    padding-left: 50%;
    text-align: left;
  }

  .trusted-table td::before {
    position: absolute;
    left: 0.75rem;
    top: 0.75rem;
    white-space: nowrap;
    font-weight: bold;
    content: attr(data-label);
  }

  .trusted-table td:nth-child(1)::before { content: "Car Model"; }
  .trusted-table td:nth-child(2)::before { content: "Seating Capacity"; }
  .trusted-table td:nth-child(3)::before { content: "AC/Non-AC"; }
  .trusted-table td:nth-child(4)::before { content: "Luggage Space"; }
}

/* Responsive */
@media (max-width: 768px) {
  .trusted-partner {
    flex-direction: column;
    padding: 1rem;
  }

  .trusted-content h2 {
    font-size: 1.5rem;
  }

  .trusted-content p,
  .trusted-list li {
    font-size: 0.95rem;
  }
}


.cab-list-section {
  padding: 3rem 2rem;
  background-color: #f9f9f9;
  text-align: center;
}

.cab-list-section h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #2a2a88;
}

.cab-list-section h2 span {
  color: #ff8c00;
}
.cab-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  justify-items: center;
}

.cab-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.8);
  padding: 1rem;
  width: 100%;
  max-width: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 250px; /* moderate fixed height */
  text-align: center;
  transition: transform 0.3s;
}

.cab-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 1.0);
}

.cab-card img {
  width: 100%;
  max-height: 140px;
  object-fit: contain;
  margin-bottom: 0.8rem;
}

.cab-card h3 {
  font-size: 1rem;
  margin: 0.3rem 0;
  color: #333;
}

.cab-card .seating {
  font-size: 0.9rem;
  color: #e53935;
}

 

.site-footer {
  background-color: #3b3e51;
  color: #fff;
  padding: 2rem 1.5rem;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-column {
  flex: 1 1 300px;
}

.footer-column h3 {
  color: #ffc107;
  border-left: 4px solid #00aaff;
  padding-left: 8px;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-column p,
.footer-column ul li {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 0.5rem;
  color: #ddd;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-bottom {
  border-top: 1px solid #555;
  margin-top: 2rem;
  padding-top: 1rem;
  text-align: center;
  font-size: 0.9rem;
  color: #aaa;
}

.footer-bottom a {
  color: #ccc;
  text-decoration: none;
}



/* Floating Button */
.floating-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #0a8618;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 50px;
  font-size: 15px;
  z-index: 999;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  display: none;
}
.floating-btn i {
  margin-right: 6px;
}

/* Modal Background */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
}

/* Modal Content Box */
.modal-box {
  background: white;
  width: 90%;
  max-width: 600px;
  border-radius: 8px;
  padding: 0;
  overflow: hidden;
}

.modal-header {
  background: #0a8618;
  color: white;
  padding: 20px;
  position: relative;
}
.modal-header h3 {
  margin: 0;
}
.modal-header p {
  margin: 5px 0 0;
}
.close-modal {
  position: absolute;
  right: 15px;
  top: 15px;
  font-size: 24px;
  cursor: pointer;
  color: white;
}

/* Form Styling */
form {
  padding: 20px;
}
.modal-row {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.input-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}
.input-group.full {
  flex: 100%;
}
input, textarea {
  padding: 10px;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  resize: none;
}
label {
  margin-bottom: 5px;
  font-weight: 600;
}
.submit-btn {
  background: #0a8618;
  color: white;
  padding: 10px 16px;
  border: none;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
}
.submit-btn:hover {
  background: #056b12;
}
button.loading {
  position: relative;
  pointer-events: none;
  opacity: 0.7;
}

button.loading::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  width: 16px;
  height: 16px;
  border: 2px solid #fff;
  border-top: 2px solid transparent;
  border-radius: 50%;
  transform: translateY(-50%) rotate(0deg); /* initial transform */
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  from {
    transform: translateY(-50%) rotate(0deg);
  }
  to {
    transform: translateY(-50%) rotate(360deg);
  }
}










.services {
  padding: 3em 2em;
  background: #fafafa;
  text-align: center;
}

.services h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5em;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2em;
}

.card {
  background: white;
  padding: 1.5em;
  border-radius: 15px;
  width: 280px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
  transition: transform 0.2s;
}

.card:hover {
  transform: scale(1.03);
}

footer {
  background: #222;
  color: #aaa;
  padding: 1.5em 2em;
  
  /* text-align: center; */
}

/* Sidebar */
.sidebar {
  position: fixed;
  top: 0;
  left: -280px;
  width: 260px;
  height: 100%;
  background: #fff;
  z-index: 2000;
  transition: left 0.3s ease;
  box-shadow: 2px 0 8px rgba(0, 0, 0, 0.2);
}

.sidebar.open {
  left: 0;
}

.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1em;
  border-bottom: 1px solid #ddd;
}

.sidebar-header img {
  height: 40px;
}

.close-btn {
  font-size: 28px;
  cursor: pointer;
  color: #222;
}

.sidebar-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-menu li {
  padding: 15px 20px;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sidebar-menu li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  z-index: 1500;
}

.overlay.show {
  display: block;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero h2 {
    font-size: 2rem;
  }

  .service-cards {
    flex-direction: column;
    align-items: center;
  }
}
.site-footer .contact ul li {
  color: white;
  list-style: none;
  text-decoration: none;
  cursor: pointer;
  margin-left: 6rem;
}

.site-footer .contact ul li a {
  color: white;
  text-decoration: none;
  cursor: pointer;
  /* margin-left: 2rem; */
}

.site-footer .contact ul li a:hover {
  text-decoration: underline;
}
.site-footer .contact h3{
  margin-left: 6rem;
}