* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #0b0f19;
  color: #fff;
}

header {
  display: flex;
  justify-content: space-between;
  padding: 15px 40px;
  background: #000;
  position: sticky;
  top: 0;
}

header .logo {
  font-size: 22px;
  font-weight: bold;
  color: #facc15;
}

nav a {
  margin-left: 20px;
  color: #fff;
  text-decoration: none;
}

.hero {
  padding: 100px 20px;
  text-align: center;
  background: linear-gradient(135deg, #020617, #000);
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.hero p {
  color: #cbd5f5;
}

.hero-buttons {
  margin-top: 25px;
}

.btn {
  padding: 12px 25px;
  margin: 8px;
  border-radius: 30px;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.primary {
  background: #facc15;
  color: #000;
}

.secondary {
  background: transparent;
  border: 2px solid #facc15;
  color: #facc15;
}

.section {
  padding: 70px 20px;
  text-align: center;
}

.section.dark {
  background: #020617;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.card {
  background: #020617;
  padding: 25px;
  border-radius: 15px;
  border: 1px solid #1e293b;
}

form {
  max-width: 400px;
  margin: auto;
}

form input {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border-radius: 8px;
  border: none;
}

footer {
  background: #000;
  padding: 30px;
  text-align: center;
}

.copy {
  margin-top: 10px;
  color: #94a3b8;
}
/* FADE + SLIDE ANIMATION */
.fade-title {
  opacity: 0;
  animation: fadeUp 1s ease forwards;
}

.taxi-img {
  width: 280px;
  border-radius: 15px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards;
}

/* delay for second image */
.taxi-img:nth-child(2) {
  animation-delay: 0.3s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.taxi-img:hover {
  transform: scale(1.05);
  transition: 0.3s ease;
}
/* GLOBAL ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
/* GLOBAL ANIMATION FOR ALL ELEMENTS */
body * {
  opacity: 0;
  transform: translateY(30px);
  animation: globalFade 0.8s ease forwards;
}

/* Delay thoda-thoda taaki smooth lage */
body *:nth-child(1) { animation-delay: 0.05s; }
body *:nth-child(2) { animation-delay: 0.1s; }
body *:nth-child(3) { animation-delay: 0.15s; }
body *:nth-child(4) { animation-delay: 0.2s; }
body *:nth-child(5) { animation-delay: 0.25s; }
body *:nth-child(6) { animation-delay: 0.3s; }

@keyframes globalFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* PAGE LOAD ANIMATION */
body {
  animation: pageFade 1s ease forwards;
  opacity: 0;
}

@keyframes pageFade {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* PAYMENT QR OVERLAY */
.qr-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* QR MODAL BOX */
.qr-modal {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  width: 280px;
  animation: zoomIn 0.4s ease;
}

.qr-modal img {
  width: 200px;
  margin: 15px 0;
}

.qr-modal button {
  padding: 8px 18px;
  margin-top: 10px;
  cursor: pointer;
}

/* ANIMATION */
@keyframes zoomIn {
  from {
    transform: scale(0.7);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.book-taxi {
  margin-top: 70px;
}
.cities {
  padding: 80px 20px;   /* section overall bada */
}

.cities h2 {
  font-size: 34px;
}

.cities p {
  font-size: 19px;
}
#reviews img {
  margin-bottom: 10px;
}

#reviews p {
  margin-top: 0;
}
html {
  scroll-behavior: smooth;
}
.service-card,
.service-box {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover,
.service-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}
/* POP ANIMATION ON HOVER */
.pop {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pop:hover {
  transform: scale(1.08);
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}
/* ============================= */
/* HOVER POP – MODERN & SAFE     */
/* ============================= */

/* COMMON POP EFFECT */
.pop {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

/* ON HOVER */
.pop:hover {
  transform: translateY(-8px) scale(1.06);
  box-shadow: 0 18px 45px rgba(0,0,0,0.45);
}

/* BUTTONS */
button.pop,
.btn.pop {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

button.pop:hover,
.btn.pop:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 25px rgba(0,0,0,0.35);
}

/* IMAGES POP */
.pop-img {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.pop-img:hover {
  transform: scale(1.07);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

/* SERVICE BOX LOOK (OPTIONAL ENHANCE) */
.service-box {
  background: #111827;
  padding: 18px 25px;
  border-radius: 12px;
  border: 1px solid #1f2933;
  display: inline-block;
  margin: 10px;
}

/* CARD STYLE */
.card {
  background: #0f172a;
  border-radius: 15px;
  padding: 15px;
}
.qr-overlay {
  display: none;              /* 👈 SIRF NONE */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  z-index: 99999;

  justify-content: center;
  align-items: center;
}
.qr-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  z-index: 99999;
  justify-content: center;
  align-items: center;
}

.qr-modal {
  background: #fff;
  color: #000;
  width: 300px;
  padding: 22px;
  border-radius: 12px;
  text-align: center;
}

.qr-modal img {
  width: 220px;
  margin: 15px 0;
}

.qr-modal button {
  padding: 8px 16px;
  cursor: pointer;
}
