:root{
  --accent:#fff;
  --glass:rgba(255,255,255,0.1);
}
*{box-sizing:border-box;margin:0;padding:0}
body{
  font-family:'Poppins',sans-serif;
  background:radial-gradient(circle at top,rgb(73, 69, 37),#090909);
  overflow-x:hidden;
  color:#333;
  padding: 0;
}
/* ✅ Make logo more visible */
.navbar {
  border-bottom: 2px solid #f8f9fa;
  padding: 0%;
}

.nav-link:hover {
  color: #ff9800 !important;
}

.btn-warning {
  background:linear-gradient(#ff9800,#ffb300);
  border: none;
  transition: 0.3s;
  border: #ffaa00;
}

.btn-warning:hover {
  background-color: #ffaa00;
}
/* --- Carousel --- */
.carousel-container{
  position:relative;
  width:110%;
  height:110vh;
  overflow:hidden;
}
.slide{
  position:absolute;
  width:100%;
  height:100%;
  opacity:0;
  transition:opacity 1s ease-in-out;
}
.slide.active{opacity:1;}
.slide img{
  width:100%;
  height:100%;
  object-fit:cover;
  filter:brightness(0.7);
}
.slide .content{
  position:absolute;
  bottom:25%;
  left:50%;
  transform:translateX(-50%);
  background:rgba(0,0,0,0.5);
  padding:20px 40px;
  border-radius:12px;
  color:#fff;
  text-align:center;
}
.slide .content h2{color:#ffe600;font-size:2.5rem;margin-bottom:10px;}

/* --- Booking Form --- */
.booking-box{
  background:#fff;
  border-radius:16px;
  padding:25px;
  width:90%;
  max-width:600px;
  margin:40px auto;
  box-shadow:0 4px 16px rgba(0,0,0,0.15);
 
}
h2{text-align:center;color:#3b3b98;margin-bottom:20px;}
label{display:block;margin-top:15px;font-weight:600;}
input,select{
  width:100%;
  padding:10px;
  border:1px solid #ffe600;
  border-radius:8px;
  margin-top:5px;
  font-size:15px;
  
}
.rate-box{
  background:#f4f4f4;
  padding:15px;
  border-radius:10px;
  margin-top:20px;
  text-align:center;
  font-size:18px;
  font-weight:600;
  color:#3b3b98;
}
.btns{
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:10px;
  margin-top:20px;
}
button{
  flex:1;
  padding:12px;
  font-size:16px;
  border:none;
  border-radius:10px;
  color:#fff;
  cursor:pointer;
}
.preview{background:#ffb300;}
.pay{background:#007bff;}
.whatsapp{background:#25D366;}
.cancel{background:#e74c3c;}
.qr{text-align:center;display:none;margin-top:20px;}
.qr img{width:180px;border-radius:10px;}

.flip-card {
  perspective: 1000px;
}
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 300px;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}
.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}
.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
.flip-card-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.flip-card-back {
  transform: rotateY(180deg);
}
.car-img {
  width: 120px;
  position: absolute;
  top: -55px;
  left: 0;
  animation: moveCar 5s linear infinite;
}

@keyframes moveCar {
  0% { left: 0; transform: scaleX(1); }
  49% { left: calc(100% - 120px); transform: scaleX(1); }
  50% { left: calc(100% - 120px); transform: scaleX(-1); }
  99% { left: 0; transform: scaleX(-1); }
  100% { left: 0; transform: scaleX(1); }
}
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Floating animation */
@keyframes floating {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

/* Apply animations */
.animated-card {
  animation: fadeInUp 0.8s ease forwards, floating 4s ease-in-out infinite;
  opacity: 0;
  transition: all 0.3s ease;
}

/* Hover effect */
.animated-card:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 15px 35px rgba(0,0,0,0.28);
}

/* Floating Buttons */
.floating-whatsapp, .floating-phone {
  position: fixed;
  bottom: 30px;
  z-index: 9999;
}

.floating-whatsapp {
  left: 20px;
}

.floating-phone {
  right: 40px;
}

.icon {
  width: 60px;
  height: 60px;
  cursor: pointer;
  border-radius: 50%;
}

/* 🔥 Pulse + Glow Animation */
.pulse-glow {
  animation: pulseGlow 1.8s infinite ease-in-out;
}

@keyframes pulseGlow {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0px rgba(0,255,0,0.0);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 0 25px rgba(0,255,0,0.6);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0px rgba(0,255,0,0.0);
  }
}

/* Popup Box */
.popup-box {
  position: fixed;
  bottom: 95px;
  left: 20px;
  background:linear-gradient(#ff9800,#ffb300);
  padding: 10px 10px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  display: none;
  animation: fadeIn 0.4s ease;
  z-index: 9999;
}

.popup-box.right {
  right: 20px;
  left: auto;
}

.popup-box a {
  text-decoration: none;
  color: #fffefe;
  font-weight: bold;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
#tariff .card {
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s;
}

#tariff .card:hover {
  transform: translateY(-5px);
}

#tariff img {
  object-fit: cover;
  height: 200px;
}

.floating-car {
  position: fixed;
  top: 100px;        /* starting position */
  right: 10px;         /* right side */
  z-index: 9999;
}

.floating-car img {
  width: 120px;
  animation: floatCar 4s ease-in-out infinite;
  box-shadow: 0 0 0px rgba(0,0,0,0.3);

}

@keyframes floatCar {
  0% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0); }
}




 