@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Outfit", sans-serif;
}

:root {
  --primary-color: #00d9a6;
  --text-color: #000000;
  --gradient-color: linear-gradient(135deg, #00d9a6, #61ce70);
  --text-paracolor: rgba(0, 0, 0, 0.63);
  --service-gradient: linear-gradient(#000000, #666666);
  --form-color: rgba(102, 102, 102, 0.4);
}
html,
body {
  scroll-behavior: smooth;
  width: 100%;
  margin: 0;
  height: 100%;
  background-color: #f7f7f7;
  /* overflow-x: hidden; */
}
html {
  overflow-x: hidden;
  /* overflow-y: hidden;  */
  scroll-behavior: smooth;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(236, 233, 220, 0.9);
  padding: 0.5rem 2rem;
  height: 80px;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 1000;
  border-radius: 0; /* Removed border radius */
  margin: 0; /* Removed margin */
  max-width: 100%; /* Full width */
  box-shadow: none; /* Removed shadow */
}

/* Logo styling */
.logo-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo-link {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo-text {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.logo-text .taxi {
  color: #006e5f;
}

.logo-text .fare {
  color: #000;
}

.phone-number {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #006e5f;
  font-size: 1.3rem;
  font-weight: 600;
}

.phone-number i {
  margin-right: 10px;
}

.phone-number .phone-text {
  display: inline-block;
}

/* Hero Section */
.hero {
  min-height: 85vh;
  display: flex;
  top: 50px;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  position: relative;
  text-align: center;
  background: linear-gradient(
    to bottom,
    rgba(0, 110, 95, 0.07),
    rgba(255, 255, 255, 0.9)
  );
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-tagline {
  font-size: 4rem;
  font-weight: 700;
  color: #001f1e;
  margin-bottom: 1rem;
  line-height: 1.1;
  text-align: center;
}

.hero-tagline .highlight {
  color: #006e5f;
}

.booking-text {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #001f1e;
  text-align: center;
}

.booking-text .taxi-highlight {
  background-color: #006e5f;
  font-weight: 700;
  color: white;
  padding: 0.2rem 0.6rem;
  border-radius: 8px;
}

.booking-text .bold {
  font-weight: 700;
}

/* Star Rating */
.rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.5rem;
}

.stars {
  margin-bottom: 0.5rem;
  display: flex;
  color: #ffd700;
  font-size: 1.5rem;
}

.customers {
  font-size: 1.5rem;
  font-weight: 700;
  color: #001f1e;
}

.customers a {
  color: #004d44;
  text-decoration: underline;
}

/* Call to Action Buttons */
.cta-buttons {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  margin-top: 2rem;
  align-items: center;
  justify-content: center;
}

.cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 2rem;
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  height: 3.5rem;
  box-sizing: border-box;
}

.call-btn {
  background-color: #74d6ce;
  color: #000;
  border: 2px solid #74d6ce;
}

.book-btn {
  background-color: #74d6ce;
  color: #000;
  border: 2px solid #74d6ce;
  white-space: nowrap;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.call-btn i {
  margin-right: 0.5rem;
}

/* Social Icons */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.social-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 30px;
  color: white;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

 .whatsapp {
  background-color: #25d366;
}

.instagram {
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
}

.facebook {
  background-color: #4267b2;
} 

.about-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
}

.title-wrapper {
  margin-bottom: 30px;
}

.title {
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-weight: 900;
  margin-bottom: 10px;
  line-height: 1.2;
}

.title span {
  color: #00d6a4;
}

.divider {
  height: 4px;
  width: 150px;
  background-color: #00d6a4;
  margin: 20px auto;
}

.description {
  font-size: clamp(1rem, 4vw, 1.25rem);
  margin-bottom: 30px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.features {
  margin: 40px 0;
  list-style-position: inside;
  text-align: left;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.feature {
  padding: 8px 0;
  font-size: clamp(0.9rem, 3vw, 1.1rem);
  display: flex;
  align-items: center;
}

.feature::before {
  content: "•";
  color: #00d6a4;
  font-size: 1.5rem;
  margin-right: 10px;
}

.cta-button {
  display: inline-block;
  background-color: #00d6a4;
  color: white;
  font-weight: bold;
  padding: 12px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  margin-top: 20px;
  cursor: pointer;
  border: none;
}

.cta-button:hover {
  background-color: #00b389;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 214, 164, 0.2);
}



/* Contact Section Styles */
.contact-section {
  padding: 80px 0;
  position: relative;
}

.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at bottom left,
    rgba(95, 211, 199, 0.15),
    rgba(255, 255, 255, 0.05) 60%
  );
  z-index: 1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

.contact-info h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #001f1e;
  margin-bottom: 20px;
  position: relative;
}

.contact-info h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background-color: #00a89a;
  border-radius: 2px;
}

.contact-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 30px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.icon-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #004d44;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.contact-text h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

.phone-link,
.email-link {
  font-size: 1.1rem;
  color: #00a89a;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.phone-link:hover,
.email-link:hover {
  color: #004d44;
  text-decoration: underline;
}

/* Form Styles */
.contact-form-container {
  flex: 1;
  min-width: 300px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.form-row .form-group {
  flex: 1 1 calc(50% - 10px);
  min-width: 120px;
}

label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #001f1e;
}

input,
textarea,
select {
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #00a89a;
  box-shadow: 0 0 0 2px rgba(0, 168, 154, 0.2);
}

select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
}

.form-hint {
  font-size: 0.8rem;
  color: #666;
}

.submit-btn {
  background-color: #00a89a;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 14px 20px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin-top: 10px;
  text-align: center;
}

.submit-btn:hover {
  background-color: #004d44;
  transform: translateY(-2px);
}

.submit-btn:active {
  transform: translateY(0);
}

.container1 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 60px;
}

.header-left {
  flex: 1;
  min-width: 300px;
}

.brand {
  font-size: 48px;
  font-weight: bold;
  color: #00d4aa;
  margin-bottom: 10px;
}

.main-heading {
  font-size: 52px;
  font-weight: bold;
  color: #333;
  line-height: 1.1;
  margin-bottom: 20px;
}

.underline {
  width: 80px;
  height: 4px;
  background-color: #00d4aa;
  margin-bottom: 0;
}

.header-right {
  flex: 1;
  min-width: 300px;
}

.description {
  font-size: 18px;
  color: #666;
  line-height: 1.7;
  margin-top: 20px;
}

.slider-container {
  position: relative;
  overflow: hidden;
  margin-bottom: 40px;
}

.cars-slider {
  display: flex;
  transition: transform 0.5s ease;
  gap: 30px;
}

.car-item {
  flex: 0 0 auto;
  width: 280px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  transition: transform 0.3s ease;
}

.car-item:hover {
  transform: scale(1.1);
}

.car-item img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
  transition: transform 0.3s ease;
  cursor: pointer;
}

.car-item img:hover {
  transform: scale(1.05);
}

.navigation {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

.nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #00d4aa;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 212, 170, 0.3);
}

.nav-btn:hover {
  background-color: #00b896;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 212, 170, 0.4);
}

.nav-btn::before {
  content: "";
  width: 12px;
  height: 12px;
  border: 2px solid white;
  border-bottom: none;
  border-right: none;
}

.nav-btn.prev::before {
  transform: rotate(-45deg);
  margin-left: 3px;
}

.nav-btn.next::before {
  transform: rotate(135deg);
  margin-right: 3px;
}

/* REVIEW SECTION STYLES */
.container {
  max-width: 1200px;
  margin: 40px auto;
  overflow: hidden;
}

.testimonial-section {
  position: relative;
  padding: 30px 0;
}

.testimonial-section h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2rem;
  color: #333;
}

.testimonial-slider {
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-card {
  flex: 0 0 100%;
  min-width: 280px;
  margin: 0 15px;
  padding: 30px;
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  position: relative;
  color: white;
}
.quote-mark {
  font-size: 3rem;
  color: #0fe3c2;
  line-height: 1;
  margin-bottom: 15px;
  font-weight: bold;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.testimonial-author {
  font-size: 1.2rem;
  color: #0fe3c2;
  font-weight: bold;
  margin-bottom: 5px;
}

.testimonial-location {
  font-size: 0.9rem;
  color: #ccc;
}

.slider-nav {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ccc;
  margin: 0 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.slider-dot.active {
  background-color: #0fe3c2;
}

.slider-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  z-index: 1;
}

.slider-btn {
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: background-color 0.3s ease;
}

.slider-btn:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.prev-btn {
  margin-left: 10px;
}

.next-btn {
  margin-right: 10px;
}

.footer {
  background-color: #000;
  color: #fff;
  padding: 40px 0 20px;
  position: relative;
  overflow: hidden;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 40px;
  position: relative;
}

.footer-section {
  flex: 1;
  min-width: 200px;
  transition: transform 0.3s ease;
}

.footer-section:hover {
  transform: translateY(-5px);
}

.footer-heading {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.footer-heading:after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #fff;
  transition: width 0.3s ease;
}

.footer-section:hover .footer-heading:after {
  width: 100%;
}

.footer-list {
  list-style: none;
}

.footer-list li {
  margin-bottom: 12px;
}

.footer-list a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 5px;
}

.footer-list a:before {
  content: "";
  position: absolute;
  left: -5px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  background-color: #fff;
  border-radius: 50%;
  transition: all 0.3s ease;
  opacity: 0;
}

.footer-list a:hover {
  color: #fff;
  padding-left: 10px;
}

.footer-list a:hover:before {
  width: 6px;
  height: 6px;
  opacity: 1;
  left: 0;
}

.routes-section {
  background-color: #222;
  padding: 30px 20px;
  border-radius: 8px;
  margin: 20px 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.routes-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.routes-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.routes-column {
  flex: 1;
  min-width: 280px;
}

.routes-heading {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #fff;
  position: relative;
  display: inline-block;
}

.routes-heading:after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #fff;
  transition: width 0.3s ease;
}

.routes-column:hover .routes-heading:after {
  width: 100%;
}

.routes-content {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

.routes-content a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.routes-content a:hover {
  color: #fff;
  text-decoration: underline;
}

.social-section {
  margin-top: 40px;
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-heading {
  font-size: 1.5rem;
  margin-bottom: 20px;
  text-align: center;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background-color: #fff;
  color: #000;
  transform: translateY(-5px);
}

.copyright {
  text-align: center;
  padding: 20px 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.car-item {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.car-item:nth-child(1) {
  animation-delay: 0.1s;
}
.car-item:nth-child(2) {
  animation-delay: 0.2s;
}
.car-item:nth-child(3) {
  animation-delay: 0.3s;
}
.car-item:nth-child(4) {
  animation-delay: 0.4s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 768px) {
  .testimonial-card {
    flex: 0 0 calc(50% - 30px);
  }
}

@media (min-width: 992px) {
  .testimonial-card {
    flex: 0 0 calc(33.333% - 30px);
  }
}

@media (max-width: 767px) {
  .slider-controls {
    display: none;
  }
}
/* Responsive Styles */
@media (max-width: 992px) {
  .footer-top {
    gap: 40px;
  }

  .footer-section {
    flex-basis: calc(50% - 20px);
    min-width: 0;
  }
}

@media (max-width: 768px) {
  .logo-text {
    font-size: 1.8rem;
  }

  .phone-number {
    font-size: 1rem;
  }

  .phone-number .phone-text {
    display: none;
  }

  .phone-number i {
    margin-right: 0;
    font-size: 1.5rem;
  }

  .hero-tagline {
    font-size: 2.5rem;
  }
  .navbar {
    height: auto;
    padding: 10px;
  }

  .logo-container {
    gap: 10px;
  }

  .hero-tagline {
    font-size: 2.5rem;
  }

  .booking-text {
    font-size: 1.2rem;
  }

  .cta-btn {
    width: 100%;
  }

  .contact-content {
    flex-direction: column;
  }

  .contact-info,
  .contact-form-container {
    width: 100%;
  }

  .form-row {
    flex-direction: column;
    gap: 20px;
  }

  .contact-section {
    padding: 60px 0;
  }

  .contact-info h2 {
    font-size: 2rem;
  }

  .social-icon {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
  .footer-section {
    flex-basis: 100%;
  }

  .routes-container {
    flex-direction: column;
    gap: 20px;
  }

  .routes-column {
    min-width: 100%;
  }

  .container1 {
    padding: 20px 15px;
  }

  .header {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
  }

  .brand {
    font-size: 36px;
  }

  .main-heading {
    font-size: 36px;
  }

  .description {
    font-size: 16px;
  }

  .car-item {
    width: 220px;
  }

  .car-item img {
    height: 150px;
  }

  .slider-container {
    margin: 0 -15px 40px -15px;
  }

  .cars-slider {
    gap: 20px;
    padding: 0 15px;
  }
}

@media (max-width: 576px) {
  .footer-heading {
    font-size: 1.3rem;
  }

  .routes-heading {
    font-size: 1.1rem;
  }

  .social-icons {
    gap: 15px;
  }

  .social-icons a {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .contact-section {
    padding: 40px 0;
  }

  .contact-info h2 {
    font-size: 1.8rem;
  }

  .contact-form-container {
    padding: 20px;
  }

  .submit-btn {
    width: 100%;
  }

  .brand {
    font-size: 28px;
  }

  .main-heading {
    font-size: 28px;
  }

  .car-item {
    width: 200px;
  }

  .car-item img {
    height: 130px;
  }

  .slider-container {
    margin: 0 -15px 40px -15px;
  }

  .cars-slider {
    gap: 15px;
    padding: 0 15px;
  }

  .nav-btn {
    width: 45px;
    height: 45px;
  }
}
