@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600&display=swap');

/* now index page our services section css */
 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }


body {
  margin: 0;
  font-family: "Outfit", sans-serif;
  background-color: #f4f4f4;
}
    /* ===== HERO SECTION ===== */
/* ===== HERO SECTION ===== */
/* @import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600&display=swap');
body {
  margin: 0;
  font-family: "Outfit", sans-serif;
  background-color: #f4f4f4;
} */

/* ===== TOP BAR ===== */
.top-bar {
  background-color: #111;
  color: #fff;
  padding: 10px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  flex-wrap: wrap;
}
.top-bar .top-left span {
  font-weight: 500;
  letter-spacing: 0.5px;
}
.top-bar .top-right {
  display: flex;
  gap: 20px;
  align-items: center;
}
.top-bar .top-right a {
  color: #ccc;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.3s ease;
}
.top-bar .top-right a:hover { color: #ff5500; }

@media (max-width: 600px) {
  .top-bar {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 16px 20px;
    gap: 12px;
    position: relative;
  }

  .top-left {
    width: 100%;
    text-align: center;
  }

  .top-left span {
    font-size: 14px;
    font-weight: bold;
    display: block;
  }

  .top-right {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
  }

  .top-right a {
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: inherit;
  }
}
/* ===== Marquee Announcement ===== */
.top-marquee {
  background-color: #e67e22;
  color: white;
  padding: 6px 0;
  overflow: hidden;
  font-size: 13px;
  font-weight: 500;
  position: relative;
  margin-top: 0.5px;
}
.marquee-track {
  white-space: nowrap;
  display: inline-block;
  animation: scroll-left 18s linear infinite;
}
@keyframes scroll-left {
  from { transform: translateX(100%); }
  to { transform: translateX(-100%); }
}
@media (max-width: 600px) {
  .top-marquee { font-size: 12px; text-align: center; }
}

/* ===== NAVIGATION BAR ===== */
.nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
  padding: 15px 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 1002; /* Above overlay */
  flex-wrap: wrap;
  border-bottom: 2px solid #f2f2f2;
}

/* Logo scaling for all screens; will resize further for mobile */
/* Desktop logo styling */
.logo-container {
  height: 101px; /* Fixed navbar height */
  display: flex;
  align-items: center;
}

.logo {
  height: 180px; /* Max within container */
  max-width: 180px;
  width: auto;
  object-fit: contain;
  display: block;
}
.logo-container {
  overflow: hidden;
}
/* Mobile adjustments */

/* Hamburger button */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 26px;         /* Give more vertical space */
  padding: 6px;         /* Optional: Outer clickable area */
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1003;
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
}

.hamburger span {
  display: block;
  height: 3px;           /* Or try 2.5px for an even crisper style */
  width: 100%;
  background-color: #333;
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(7px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-7px);
}

/* Nav menu desktop */
#nav-menu {
  display: flex;
  align-items: center;
  gap: 25px;
}
#nav-menu ul {
  list-style: none;
  display: flex;
  gap: 25px;
  padding: 0;
  margin: 0;
}
#nav-menu ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  padding: 8px 4px;
  position: relative;
  transition: color 0.3s ease;
}
/* Underline on hover */
#nav-menu ul li a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #ff6b00;
  transition: width 0.3s ease-in-out;
}
#nav-menu ul li a:hover::after,
#nav-menu ul li a.active::after {
  width: 100%;
}
#nav-menu ul li a:hover { color: #ff6b00; }

#nav-menu .btn {
  background-color: #ff6b00;
  color: white;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-left: 24px;
}
#nav-menu .btn:hover {
  background-color: #e95c00;
  transform: scale(1.05);
}
@media (max-width: 768px) {
  #nav-menu .btn {
    width: 180px;
    max-width: 90%;
    margin: 20px auto; /* center the button */
    display: block;
    text-align: center;
  }
}

/* Overlay for mobile nav */
.mobile-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,0.48);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* Slide-in Mobile Menu */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  #nav-menu {
    flex-direction: column;
    align-items: flex-start;
    background: #fff;
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: 82vw;
    max-width: 320px;
    padding: 30px 24px 24px;
    z-index: 1004;
    box-shadow: -2px 0 18px 3px rgba(0,0,0,0.10);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(.7,.3,.1,1);
    gap: 0;
    margin-top: 0;
  }
  #nav-menu.active {
    display: flex;
    transform: translateX(0);
  }
  #nav-menu ul {
    flex-direction: column;
    width: 100%;
    gap: 18px;
    align-items: flex-start;
    margin-bottom: 24px;
  }
  #nav-menu .btn {
    display: block;
    margin: 10px 0 0 0;
    width: 100%;
    text-align: center; 
  }
  .logo-container { height: 60px; }
  .logo { height: 90px; max-width: 130px; }
  .nav-bar {
    z-index: 1002;
    position: relative;
  }
}

/* Body scroll lock when menu open */
body.menu-open {
  overflow: hidden;
}

@media (max-width: 480px) {
  .nav-bar { padding: 10px 11px; }
  .top-bar { padding: 8px 7px; }
}

@media (max-width: 400px) {
  .top-bar, .top-bar .top-right a { font-size: 12px; }
}

/* Minimal shadow to hero/card etc, as in your code. */
/* Prevent body scroll when mobile menu is open */
.no-scroll {
  overflow: hidden;
}

/* Overlay background for mobile nav */


.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #000;
    z-index: 0; /* make a stacking context */

}

.hero-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: 1; /* ✅ not negative */
}
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.4); /* You can change 0.4 to 0.5 or 0.6 for darker */
  z-index: 2; /* ✅ not negative */
}



/* Optional: Parallax hover animation */
.parallax {
  will-change: transform;
  transition: transform 0.2s ease-out;
}

/* Hero Content */
.hero-content {
  color: #ffffff;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
  max-width: 700px;
  padding: 0 20px;
    z-index: 3;
      position: relative;


}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

/* Glow Animation Button */
.glow-btn {
  display: inline-block;
  background-color: transparent;
  color: #f5f2f0; /* Light neon blue or change to your brand color */
  padding: 14px 28px;
  border-radius: 50px; /* Fully rounded */
  border: 2px solid #ef8412;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 0 10px rgba(226, 97, 17, 0.5);
  animation: glow 2s infinite ease-in-out alternate;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glow-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(255, 125, 25, 0.8);
}

/* Glow Keyframes */
@keyframes glow {
  from {
    box-shadow: 0 0 10px rgba(224, 140, 6, 0.92);
  }
  to {
    box-shadow: 0 0 25px rgba(255, 140, 0, 0.9);
  }
}


/* ===== About Section with Video Background ===== */
.video-about {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.about-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  z-index: -2;
  object-fit: cover;
  filter: blur(5px) brightness(0.6);
}

.about-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: -1;
}

.about-video-content {
  max-width: 800px;
  padding: 40px 20px;
  color: #fff;
}

.about-video-content h2 {
  font-size: 42px;
  margin-bottom: 20px;
  border-bottom: 3px solid orange;
  display: inline-block;
}

.about-video-content p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.about-btn {
  display: inline-block;
  background-color: orange;
  color: white;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.about-btn:hover {
  background-color: #e69500;
}
@media (max-width: 600px) {
  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
  }
}




 /* ===== Our Services Section ===== */
/* Modern Services Grid */
.services-section {
  padding: 60px 20px;
  background-color: #f8f9fa;
  text-align: center;
}

.section-heading {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #111;
}

.modern-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.modern-service-card {
  position: relative;
  height: 400px;
  color: #fff;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.modern-service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0));
}

.modern-service-card:hover {
  transform: scale(1.02);
}

.card-content {
  position: relative;
  padding: 20px;
  z-index: 1;
  text-align: left;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Top and bottom spacing */
}

.card-content h3 {
  font-size: 24px;
  margin-bottom: 10px;
  font-weight: 700;
}

.card-content p {
  margin-top: auto;
  margin-bottom: 10px;
}
.learn-more {
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color 0.3s ease;
}

.learn-more:hover {
  color: #ffd700;
}

/* swiper */
/* Swiper custom styles */
.swiper {
  padding-bottom: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.swiper-wrapper {
  align-items: stretch; /* Aligns all slides to full height */
}

.swiper-button-next,
.swiper-button-prev {
  color: #000; /* Change to #fff if dark background */
}

.swiper-pagination-bullet {
  background: #000;
}
/* Ensure Swiper slides keep your card height */
.swiper-slide.modern-service-card {
  height: 460px; /* Your original card height */
}

.process-section {
  padding: 60px 20px;
  background: #111;
  color: #fff;
  text-align: center;
}

.process-section .section-heading {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.process-steps {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 40px;
}

.step {
  max-width: 300px;
  padding: 20px;
}

.step i {
  font-size: 40px;
  color: #ff6b00;
  margin-bottom: 15px;
  display: block;
}
.stats-section {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  background: #faf6f4;
  color: #222;
  padding: 50px 20px;
  text-align: center;
}

.stats-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1100px;
  margin: auto;
}

.stat-box {
  flex: 1 1 200px;
  margin: 15px;
}

.stat-box h3 {
  font-size: 3rem;
  color: #ff4d00;
}

.stat-box p {
  margin-top: 10px;
  font-weight: 500;
  font-size: 1.1rem;
}



/* ===== Car Section ===== */
/* ===== Car Section ===== */
.car-section {
  padding: 80px 30px;
  background-color: #fff;
  text-align: center;
}

.section-heading {
  font-size: 2.8rem;
  margin-bottom: 40px;
  color: #222;
  font-weight: 700;
}

/* Filter Buttons */
.filter-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 50px;
}

.filter-btn {
  background-color: #f7f7f7;
  border: none;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 25px;
  cursor: pointer;
  transition: 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.filter-btn:hover,
.filter-btn.active {
  background-color: #ff6b00;
  color: #fff;
}

/* Car Cards Grid */
.car-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.car-card {
  width: 270px;
  background-color: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.car-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.car-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 18px;
}
.car-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #222;
}

.car-card p {
  font-size: 15px;
  color: #666;
  margin-bottom: 16px;
}

.book-btn {
  background-color: #ff6b00;
  border: none;
  padding: 10px 20px;
  color: #fff;
  font-weight: bold;
  border-radius: 8px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.book-btn:hover {
  background-color: #e65a00;
}

/* Hide with animation */
.car-card.hide {
  opacity: 0;
  transform: scale(0.9);
  pointer-events: none;
  transition: all 0.3s ease;
  position: absolute;
  display: none;
  overflow: hidden;
  visibility: hidden;
}
.car-card {
  transition: all 0.3s ease;
}


/* Responsive */
@media (max-width: 768px) {
  .section-heading {
    font-size: 2rem;
  }

  .filter-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .car-card {
    padding: 20px;
  }

  .car-card img {
    height: 160px;
  }
}
/* whatsapp integation form */
/* Modal Overlay */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  padding: 1rem;
  box-sizing: border-box;
}

/* Modal Box */
.modal-content {
  background: #fff;
  max-width: 500px;
  margin: auto;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  animation: fadeIn 0.3s ease-in-out;

  max-height: 95vh;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  position: relative;
}

/* Slide Animation */
@keyframes fadeIn {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 1.5rem;
  color: #333;
  cursor: pointer;
}

/* Heading */
.modal-content h2 {
  text-align: center;
  color: #222;
  margin-bottom: 0.8rem;
  font-size: 1.5rem;
  font-weight: 600;
}

/* Form */
#bookingForm {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

/* Input & Select Styles */
#bookingForm input,
#bookingForm select,
#bookingForm textarea {
  padding: 0.6rem 0.9rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.2s;
}

#bookingForm input:focus,
#bookingForm select:focus,
#bookingForm textarea:focus {
  border-color: #ff6600;
  outline: none;
}

/* Submit Button */
#bookingForm button[type="submit"] {
  background: #ff6600;
  color: #fff;
  padding: 0.75rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s;
}

#bookingForm button[type="submit"]:hover {
  background: #e55b00;
}

/* Responsive */
@media (max-width: 480px) {
  .modal-content {
    max-width: 95%;
    padding: 1rem;
  }
}

/* Shared Floating Style */
/* Base floating icon style */
.floating-icon {
  position: fixed;
  bottom: 20px;
  background-color: #fff;
  color: #000;
  font-size: 22px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  z-index: 999;
  transition: transform 0.3s ease, background-color 0.3s;
  text-decoration: none;
}

/* WhatsApp icon (bottom right) */
.whatsapp-float {
  right: 20px;
  background-color: #25d366;
  color: white;
}

.whatsapp-float:hover {
  background-color: #1ebd5a;
  transform: scale(1.1);
}

/* Phone icon (bottom left) */
.phone-float {
  left: 20px;
  background-color: #007bff;
  color: white;
}

.phone-float:hover {
  background-color: #0069d9;
  transform: scale(1.1);
}

/* ✅ Responsive spacing for smaller devices */
@media (max-width: 480px) {
  .floating-icon {
    width: 44px;
    height: 44px;
    font-size: 20px;
    bottom: 15px;
  }

  .whatsapp-float {
    right: 15px;
  }

  .phone-float {
    left: 15px;
  }
}
