body {
    margin:0px;
    background-color: wheat;
  } 



.hero-bg {
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: white;
  position: relative;
  overflow: hidden;
}


.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1.2s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.glow-img {
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0, 200, 255, 0.7);
}

.sparkle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  animation: sparkleAnim 2s linear infinite;
}

@keyframes sparkleAnim {
  0% { transform: translate(0, 0) scale(1); opacity: 1; }
  50% { transform: translate(50px, -50px) scale(0.5); opacity: 0.5; }
  100% { transform: translate(0, 0) scale(1); opacity: 1; }
}

.countdown {
  font-size: 1.2rem;
  font-weight: bold;
  margin-top: 15px;
  color: #ffdd00;
}


[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}
.car-card {
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  position: relative;
}

.car-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px 5px rgba(0, 200, 255, 0.7);
}

.car-card img {
  border-bottom: 1px solid #ddd;
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.car-card-body {
  padding: 15px;
  text-align: center;
}

.car-card-body h5 {
  font-weight: 700;
  margin-bottom: 5px;
}

.car-card-body p {
  color: #00d1ff;
  font-weight: bold;
  margin-bottom: 10px;
}

.car-card-body .btn {
  margin: 5px;
}
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@700&display=swap');


.explore-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 2.2rem;
  background: linear-gradient(90deg, #0ff, #06f, #0ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  margin-bottom: 30px;
}


.scroll-row {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}


.scroll-content {
  display: flex;
  gap: 30px;
  flex-wrap: nowrap;
  animation: scrollLeft 20s linear infinite;
}
@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); } 
}
.explore-card {
    display: inline-block;
    background: #1a1a40;
  min-width: 180px;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  flex: 0 0 auto; 
}

.explore-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 15px;
}
.explore-card:hover {
  transform: scale(1.08);
  box-shadow: 0 0 25px 5px rgba(0, 200, 255, 0.8)
}
.explore-label {
  text-align: center;
  margin-top: 8px;
  font-weight: 600;
  color: #00d1ff;
  font-size: 1rem;
}


.explore-card::after {
  content: '';
  position: absolute;
  top: -20%;
  left: -20%;
  width: 140%;
  height: 140%;
  background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0) 70%);
  opacity: 0.3;
  pointer-events: none;
  animation: sparkle 2s infinite linear;
  border-radius: 50%;
}

@keyframes sparkle {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.05); }
  100% { transform: rotate(360deg) scale(1); }
}
footer {
    background: #002c5f;
  }
  footer h5 {
    color: #fff;
    font-weight: 600;
    cursor: pointer;
  }
  footer ul li a {
    color: #cfd8e3;
    text-decoration: none;
    display: block;
    padding: 4px 0;
    transition: all 0.3s ease;
  }
  footer ul li a:hover {
    color: #00a3ff;
    transform: translateX(6px);
  }

  
  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
  }
  .reveal.active {
    opacity: 1;
    transform: translateY(0);
  }

  
  #backToTop {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #00a3ff;
    color: #fff;
    border: none;
    padding: 10px 14px;
    border-radius: 50%;
    font-size: 18px;
    display: none;
    cursor: pointer;
    z-index: 999;
  }
.venue-section {
    background: #6886b3;
    padding: 50px 20px;
    border-radius: 20px;
    animation: fadeIn 1.2s ease-in-out;
  }

  .venue-box {
    background: #353232;
    border: 1px solid #ddd;
    border-radius: 15px;
    padding: 20px;
    height: 100%;
    animation: fadeUp 1s ease forwards;
    opacity: 0;
  }

  .venue-box:nth-child(1) { animation-delay: 0.2s; }
  .venue-box:nth-child(2) { animation-delay: 0.4s; }
  .venue-box:nth-child(3) { animation-delay: 0.6s; }

  .venue-title {
    border-bottom: 2px solid #000;
    display: inline-block;
    padding-bottom: 5px;
    margin-bottom: 15px;
  }

  @keyframes fadeUp {
    from {
      transform: translateY(30px);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }

  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  .venue-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 15px;
  padding: 22px;
  height: 100%;
  color: #f1f1f1;
}
.highlight-img {
      transition: transform 0.3s ease;
    }
    .highlight-img:hover {
      transform: scale(1.05);
    }