@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Montserrat:wght@400;500;600;700&display=swap");

:root {
  --primary-color: #ff6b00;
  --secondary-color: #2a2a2a;
  --accent-color: #0056b3;
  --light-color: #f9f9f9;
  --dark-color: #333;
  --gray-color: #777;
  --white: #fff;
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: var(--dark-color);
  background-color: var(--light-color);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  line-height: 1.3;
  margin-bottom: 15px;
}
a {
  text-decoration: none;
  color: var(--dark-color);
  transition: var(--transition);
}
a:hover {
  color: var(--primary-color);
}
p {
  margin-bottom: 15px;
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.section-header {
  text-align: center;
  margin-bottom: 50px;
}
.section-header h2 {
  font-size: 2.5rem;
  color: var(--secondary-color);
  position: relative;
  display: inline-block;
}
.section-header h2::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 3px;
  background-color: var(--primary-color);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}
.section-header p {
  color: var(--gray-color);
  font-size: 1.1rem;
}
section {
  padding: 80px 0;
}
.btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 4px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}
.primary-btn {
  background-color: var(--primary-color);
  color: var(--white);
  border: 2px solid var(--primary-color);
}
.primary-btn:hover {
  background-color: transparent;
  color: var(--primary-color);
}
.secondary-btn {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.secondary-btn:hover {
  background-color: var(--white);
  color: var(--primary-color);
}
.whatsapp-btn {
  background-color: #25d366;
  color: var(--white);
  border: 2px solid #25d366;
}
.whatsapp-btn:hover {
  background-color: transparent;
  color: #25d366;
}
.enquiry-btn {
  background-color: var(--accent-color);
  color: var(--white);
  border: 2px solid var(--accent-color);
}
.enquiry-btn:hover {
  background-color: transparent;
  color: var(--accent-color);
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--box-shadow);
  padding: 15px 0;
  transition: var(--transition);
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo h1 {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
}
.logo span {
  color: var(--primary-color);
}
.nav-links {
  display: flex;
}
.nav-links li {
  margin-left: 30px;
}
.nav-links a {
  font-weight: 500;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  bottom: -5px;
  left: 0;
  transition: var(--transition);
}
.nav-links a:hover::after {
  width: 100%;
}
.hamburger {
  display: none;
  cursor: pointer;
}
.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px 0;
  background-color: var(--secondary-color);
  transition: var(--transition);
}
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  color: var(--white);
  display: flex;
  align-items: center;
  margin-top: 70px;
  overflow: hidden;
}
.hero-slide-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  transition: transform 0.8s ease-in-out;
}
.hero-slide {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  flex-shrink: 0;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 20px;
}
.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 15px;
  animation: fadeInUp 1s ease;
}
.hero-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  animation: fadeInUp 1.2s ease;
}
.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  animation: fadeInUp 1.4s ease;
}
.hero-buttons {
  display: flex;
  gap: 20px;
  animation: fadeInUp 1.6s ease;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.about-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}
.about-image img:hover {
  transform: scale(1.05);
  transition: var(--transition);
}
.about-text h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}
.about-text ul {
  margin-bottom: 20px;
}
.about-text li {
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
}
.about-text li i {
  color: var(--primary-color);
  margin-right: 10px;
  margin-top: 5px;
}
.category-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 10px;
}
.tab-btn {
  padding: 10px 20px;
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--dark-color);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  margin: 5px;
  border-radius: 4px;
  font-size: 0.9rem;
}
.tab-btn.active,
.tab-btn:hover {
  background-color: var(--primary-color);
  color: var(--white);
}
.fleet-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.hidden {
  display: none;
}
.vehicle-card {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.vehicle-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.card-image img {
  position: relative;
  overflow: hidden;
  flex: 1;
  display: flex;
  align-items: center;
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.vehicle-card:hover .card-image img {
  transform: scale(1.05);
}
.card-overlay {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
}
.card-content {
  padding: 15px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.card-content h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--secondary-color);
}
.features {
  margin-bottom: 15px;
  list-style: none;
  padding: 0;
}
.features li {
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  font-size: 0.9rem;
}
.features li i {
  color: var(--primary-color);
  margin-right: 8px;
  width: 20px;
  text-align: center;
}
.features li strong {
  font-size: 0.9rem;
}
.card-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.card-actions .btn {
  flex: 1;
  padding: 8px;
  font-size: 0.8rem;
  white-space: nowrap;
}
.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.service-card {
  background-color: var(--white);
  padding: 20px;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.service-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}
.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.9rem;
  line-height: 1.5;
}
.gallery-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}
.section-header {
  text-align: center;
  margin-bottom: 40px;
}
.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #333;
  font-weight: 700;
}
.section-header p {
  font-size: 1.1rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}
.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, opacity 0.5s ease;
  opacity: 0;
  transform: translateY(20px);
}
.gallery-item.show {
  opacity: 1;
  transform: translateY(0);
}
.gallery-item.hidden {
  display: none;
}
.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
  color: white;
  padding: 20px;
  transform: translateY(0);
  transition: transform 0.3s ease;
}
.gallery-overlay h3 {
  margin: 0 0 5px;
  font-size: 1.3rem;
  font-weight: 600;
}
.gallery-overlay p {
  margin: 0 0 15px;
  font-size: 0.9rem;
  opacity: 0.9;
}
.book-now-btn {
  display: inline-block;
  background-color: #4a6bdc;
  color: white;
  padding: 8px 18px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
}
.book-now-btn:hover {
  background-color: #3a59c0;
  transform: translateY(-2px);
}
.load-more-container {
  text-align: center;
  margin-top: 20px;
}
.load-more-btn {
  background-color: #4a6bdc;
  color: white;
  border: none;
  border-radius: 30px;
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(74, 107, 220, 0.3);
}
.load-more-btn:hover {
  background-color: #3a59c0;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(74, 107, 220, 0.4);
}
.load-more-btn:active {
  transform: translateY(-1px);
}
.load-more-text {
  display: inline-block;
}
.loading-spinner {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  border: 3px solid transparent;
  border-top-color: white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  display: none;
}
@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.testimonials {
  background-color: var(--light-color);
  position: relative;
}
.testimonials::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("./images/img5.jpg") no-repeat center center/cover;
  opacity: 0.05;
}
.testimonials-slider {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x mandatory;
  padding-bottom: 20px;
}
.testimonials-slider::-webkit-scrollbar {
  display: none;
}
.testimonial-card {
  min-width: 280px;
  width: calc(33.333% - 15px);
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  padding: 20px;
  scroll-snap-align: start;
  margin: 0 10px;
}
.testimonial-content {
  margin-bottom: 15px;
}
.testimonial-content p {
  font-style: italic;
  position: relative;
  font-size: 0.9rem;
  line-height: 1.5;
}
.testimonial-content p::before,
.testimonial-content p::after {
  content: '"';
  font-size: 1.2rem;
  color: var(--primary-color);
}
.testimonial-author {
  display: flex;
  align-items: center;
}
.author-info {
  margin-left: 0;
}
.author-info h4 {
  font-size: 1rem;
  margin-bottom: 5px;
}
.stars {
  color: #ffd700;
  font-size: 0.9rem;
}
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  margin-bottom: 20px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}
.faq-question {
  background-color: var(--white);
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.faq-question h3 {
  margin: 0;
  font-size: 1.1rem;
}
.faq-toggle {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition);
}
.faq-answer {
  background-color: var(--white);
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.active .faq-answer {
  padding: 0 20px 20px;
  max-height: 300px;
}
.faq-item.active .faq-toggle {
  transform: rotate(180deg);
}
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.contact-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
.info-item {
  display: flex;
  align-items: flex-start;
}
.info-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-right: 20px;
  margin-top: 5px;
}
.info-item h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}
.contact-form {
  background-color: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
}
.form-group {
  margin-bottom: 20px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  transition: var(--transition);
  resize: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}
.contact-form .btn {
  width: 100%;
}
.cta {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("./images//img20.jpg") no-repeat center center/cover;
  color: var(--white);
  text-align: center;
}
.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}
.cta-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
}
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
}
.cta-buttons .btn {
  flex: 1;
  min-width: 150px;
  text-align: center;
}
.cta-content .btn {
  margin: 0 10px;
}
footer {
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 70px 0 20px;
}
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 50px;
  margin-bottom: 50px;
}
.footer-logo h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}
.footer-logo span {
  color: var(--primary-color);
}
.footer-links h3,
.footer-services h3,
.footer-social h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
}
.footer-links h3::after,
.footer-services h3::after,
.footer-social h3::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 2px;
  background-color: var(--primary-color);
  bottom: -8px;
  left: 0;
}
.footer-links li,
.footer-services li {
  margin-bottom: 10px;
}
.footer-links a {
  color: #ddd;
  transition: var(--transition);
}
.footer-links a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}
.social-icons {
  display: flex;
  gap: 15px;
}
.social-icons a {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  transition: var(--transition);
}
.social-icons a:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-5px);
}
.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  font-size: 0.9rem;
}
.scroll-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #333;
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}
.scroll-top-btn.show {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 992px) {
  .about-content,
  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-image {
    order: -1;
  }
  .hero-content h1 {
    font-size: 2.8rem;
  }
  .hero-content h2 {
    font-size: 1.6rem;
  }
  .fleet-container {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
  .card-content h3 {
    font-size: 1.2rem;
  }
  .features li {
    font-size: 0.85rem;
  }
  .services-container {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
  .service-card {
    padding: 15px;
  }
  .service-card i {
    font-size: 2rem;
  }
  .service-card h3 {
    font-size: 1.1rem;
  }
  .testimonial-card {
    width: calc(50% - 15px);
    min-width: 250px;
    padding: 15px;
  }
  .testimonial-content p {
    font-size: 0.85rem;
  }
  .testimonial-content p::before,
  .testimonial-content p::after {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  header {
    padding: 10px 0;
  }
  .hamburger {
    display: block;
  }
  .nav-links {
    position: fixed;
    top: 76px;
    left: -100%;
    width: 100%;
    flex-direction: column;
    background-color: var(--white);
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  }
  .nav-links.active {
    left: 0;
  }
  .nav-links li {
    margin: 0;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
  }
  .nav-links a::after {
    display: none;
  }
  .hero-content h1 {
    font-size: 2.5rem;
  }
  .hero-content h2 {
    font-size: 1.4rem;
  }
  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .fleet-container {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
  .tab-btn {
    font-size: 0.8rem;
    padding: 8px 15px;
  }
  .card-content h3 {
    font-size: 1rem;
  }
  .card-actions {
    flex-direction: column;
  }
  .card-actions .btn {
    flex: none;
    width: 100%;
  }
  .section-header h2 {
    font-size: 2rem;
  }
  .services-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-card p {
    font-size: 0.85rem;
  }
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 15px;
  }
  .gallery-overlay h3 {
    font-size: 1.1rem;
  }
  .gallery-overlay p {
    font-size: 0.8rem;
  }
  .book-now-btn {
    padding: 6px 14px;
    font-size: 0.8rem;
  }
  .load-more-btn {
    padding: 10px 25px;
    font-size: 0.9rem;
  }
  .gallery-item img {
    height: 300px;
  }
  .testimonials-slider {
    gap: 15px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .testimonial-card {
    width: 90%;
    min-width: auto;
    margin: 0 auto;
    margin-bottom: 20px;
  }
  .testimonial-content p {
    font-size: 0.8rem;
  }
  .cta-content h2 {
    font-size: 2rem;
  }
  .cta-content .btn {
    display: block;
    margin: 10px auto;
    max-width: 250px;
  }
}
@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero {
    min-height: 500px;
  }
  .fleet-container {
    grid-template-columns: 1fr;
  }
  .vehicle-card {
    flex-direction: column;
  }
  .card-image {
    flex: 0 0 auto;
    height: 200px;
  }
  .card-content {
    flex: 0 0 auto;
  }
  .service-card {
    padding: 20px;
  }
  .services-container {
    grid-template-columns: 1fr;
  }
  .load-more-btn {
    width: 80%;
    padding: 12px 0;
  }
  .testimonial-card {
    width: 100%;
    padding: 15px;
  }
  .testimonial-content p {
    font-size: 0.75rem;
  }
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
