/* General Reset */
body, html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
	overflow: visible; /* Ensure body is not hiding the preloader */
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Preloader */
/* Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  overflow: hidden;
}

#preloader img {
  width: 100px;
  height: 100px;
  animation: jump 0.8s ease-in-out infinite;
}

/* Jump Animation */
@keyframes jump {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Mobile-specific styles */



/* Header Section */
.sticky-header {
  position: sticky;
  top: 0;
  background-color: #FFCC00; /* Taxi Yellow */
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.sticky-header .logo {
  max-width: 120px;
}

.sticky-header .contact-info a {
  font-size: 1.2rem;
  font-weight: bold;
}

.navbar .nav-link {
  padding: 10px 20px;
  font-weight: 500;
  color: #333;
  transition: color 0.3s ease;
}

.navbar .nav-link:hover {
  color: var(--primary-color);
}

/* Footer Section */
footer {
  background-color: #FFCC00; /* Taxi Yellow */
  color: white;
  padding: 20px 0;
  text-align: center; /* Center align the text */
}

footer p {
  font-size: 1rem;
}

footer a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

footer a:hover {
  color: #f8b400; /* Change color on hover */
}

/* Introduction Section */
.introduction {
  padding: 50px;
  background-color: #f9f9f9;
}

.introduction h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.introduction p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #555;
}

/* About Us Section */
.about-section {
  padding: 30px 0;
  background-color: #f9f9f9;
}

.about-section img.about-image {
  width: 100%;
  max-width: 500px;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  animation: fadeInImage 1.5s ease-in-out;
}

.about-text {
  opacity: 0;
  animation: fadeInText 1.5s ease-in-out forwards;
}

@keyframes fadeInImage {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeInText {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-text:nth-child(1) {
  animation-delay: 0.3s;
}

.about-text:nth-child(2) {
  animation-delay: 0.6s;
}

.about-text:nth-child(3) {
  animation-delay: 0.9s;
}

/* Why Choose Us Section */
.why-choose-us-section {
  background-color: #ffffff;
  padding: 50px 0;
}

.why-choose-us-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
}

.why-choose-us-section p {
  color: #555;
  font-size: 1.2rem;
  line-height: 1.8;
}

.choose-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.choose-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}

.choose-card i {
  display: block;
  color: #0d6efd;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Our Services Section */
.services-section {
  padding: 40px 0;
  background-color: #f8f8f8;
}

.services-section h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.services-section i.yellow-icon {
  color: #ffc107; /* Taxi yellow */
  margin-bottom: 15px;
}

.services-section h4 {
  font-size: 1.5rem;
  margin: 15px 0;
}

.services-section p {
  font-size: 1rem;
  color: #555;
}

/* Tariff Section */
.tariff-section {
  padding: 50px;
  background-color: #f9f9f9;
}

.tariff-section h3 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-align: center;
}

.table {
  width: 100%;
  margin-top: 30px;
}

.table-bordered th, .table-bordered td {
  border: 1px solid #ddd;
  padding: 15px;
  text-align: center;
}

.table-bordered th {
  background-color: #FFCC00; /* Taxi Yellow */
  color: white;
}

.table-bordered td {
  background-color: #f8f8f8;
}


/* Pay Now Section */
/* Pay Now Section Styles */
#pay-now {
  padding: 50px 0;
  background-color: #f8f9fa; /* Light background for the section */
}

#pay-now .container {
  max-width: 900px;
  margin: 0 auto;
}

#pay-now h2 {
  font-size: 32px;
  font-weight: 600;
  color: #343a40;
  margin-bottom: 20px;
  text-align: center;
}

#pay-now p {
  font-size: 16px;
  color: #495057;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 30px;
}

/* Adjust the Pay Now row for two columns */
#pay-now .row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.bank-details, .gpay-qr {
  background-color: #ffcc00; /* Taxi Yellow Background */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  flex: 0 0 48%; /* Ensures both columns take equal space */
  text-align: center; /* Center align content inside columns */
}

.bank-details h4, .gpay-qr h4 {
  font-size: 20px;
  font-weight: 600;
  color: #343a40;
  margin-bottom: 15px;
}

.bank-details p, .gpay-qr p {
  font-size: 16px;
  color: #495057;
}

.qr-code-container {
  text-align: center;
  margin-bottom: 15px;
}
.gpay-qr {
  background-color: #ffcc00; /* Taxi Yellow Background */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  flex: 0 0 48%; /* Ensures both columns take equal space */
  text-align: center; /* Center align content inside columns */
  display: flex; /* Add flexbox */
  flex-direction: column; /* Stack content vertically */
  align-items: center; /* Horizontally center content */
  justify-content: center; /* Vertically center content */
}


.gpay-qr img {
  max-width: 250px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.text-center {
  text-align: center;
}

/* Hover effects */
.bank-details:hover, .gpay-qr:hover {
  transform: translateY(-5px);
}

.gpay-qr img:hover {
  transform: scale(1.1);
}

/* Media Query for small screens */
@media (max-width: 768px) {
  .row {
    flex-direction: column; /* Stacks the columns vertically on smaller screens */
  }

  .col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* Additional Text After Columns */
#pay-now .additional-text {
  margin-top: 30px;
  font-size: 16px;
  color: #495057;
  text-align: center;
  line-height: 1.6;
  font-weight: 500;
}

/* Contact Us Section */
.contact-us {
  padding: 50px;
  background-color: #f9f9f9;
}

.contact-us h3 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-align: center;
}

.contact-us .form-control {
  margin-bottom: 20px;
}

.contact-us .btn-primary {
  background-color: #FFCC00; /* Taxi Yellow */
  color: white;
  border: none;
}

.contact-us .btn-primary:hover {
  background-color: #f8b400;
}

/* Back to Top Button */
#backToTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
  display: none;
  padding: 10px 12px;
  background-color: #FFCC00; /* Taxi Yellow */
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 0.8rem;
  cursor: pointer;
}

#backToTop:hover {
  background-color: #f8b400;
}


@media (max-width: 768px) {
  #backToTop {
    display: block; /* Ensure the button is visible */
    bottom: 10px; /* Adjust for smaller screens */
    right: 10px; /* Adjust for smaller screens */
    padding: 8px 10px; /* Smaller button size for mobile */
    font-size: 0.7rem; /* Adjust font size for mobile */
  }
}

#backToTop {
  z-index: 9999; /* Ensure it appears above other elements */
}

#backToTop {
  bottom: 10px; /* Move closer to the screen bottom */
  right: 10px;  /* Move closer to the screen edge */
}


