* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #0a0518;
  color: #e0d4ff;
  line-height: 1.6;
}

/* ====================== NAVBAR ====================== */
.navbar {
  background: rgba(10, 5, 24, 0.98);
  backdrop-filter: blur(8px);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 3px solid #ff0088;
}

.nav-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 75px;
}

.logo h2 {
  color: #ff0088;
  font-size: 1.5rem;
  font-weight: bold;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.nav-menu a:hover {
  color: #ff0088;
}

/* ====================== VIDEO HERO SECTION ====================== */
.video-hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(10, 5, 24, 0.65), rgba(15, 8, 30, 0.75));
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 20px;
  text-align: center;
  color: white;
}

.hero-content h1 {
  font-size: 4.5rem;
  color: #ff0099;
  margin-bottom: 15px;
  text-shadow: 0 0 25px #ff0099;
}


.fallback-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

/* Mobile adjustments for video */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 3rem;
  }
  .video-hero {
    height: 90vh;
  }
}
/* ====================== INTRO / H1 CONTENT SECTION ====================== */
.intro-section {
   background: #120a24;
  text-align: center;
}

.intro-content {
  max-width: 1000px;
  margin: 0 auto;
}

.intro-section h1 {
  font-size: 2.8rem;
  color: #ff0099;
  margin-bottom: 10px;
 }

.intro-text {
  font-size: 1.25rem;
  line-height: 1.8;
  color: #d4b8ff;
  margin-bottom: 25px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .intro-section h1 {
    font-size: 2.2rem;
  }
  .intro-text {
    font-size: 1.1rem;
  }
}


.intro-section h2,h3, h4 {
  font-size: 2.0rem;
  color: #ff0099;
  margin-bottom: 10px;
 }

.intro-text {
  font-size: 1.25rem;
  line-height: 1.8;
  color: #d4b8ff;
  margin-bottom: 25px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .intro-section h1 {
    font-size: 2.2rem;
  }
  .intro-text {
    font-size: 1.1rem;
  }
}

/* Sections */
.dark-bg {
  background: #120a24;
}

.section-title {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 50px;
  color: #ff0088;
}

/* Cards */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1300px;
  margin: 0 auto;
}

.card {
  background: #1c0f38;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid #ff008833;
}

.card:hover {
  transform: translateY(-12px);
  box-shadow: 0 15px 35px rgba(255, 0, 136, 0.35);
  border-color: #ff0088;
}

.card img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.card-body {
  padding: 20px;
  text-align: center;
}

.card-body h3 {
  color: #ffd700;
  margin-bottom: 8px;
}

/* Floating WhatsApp */
.floating-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25D366;
  color: white;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
  z-index: 1000;
  text-decoration: none;
}

.floating-btn:hover {
  transform: scale(1.15);
}

/* Footer */
footer {
  text-align: center;
  padding: 40px 20px;
  background: #0a0518;
  color: #c9b3ff;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #ff0088;
  transition: 0.3s;
}

/* Mobile Menu */
@media (max-width: 768px) {
  h1 { font-size: 2.9rem; }
  .phone { font-size: 2.4rem; }
  .section-title { font-size: 2.3rem; }

  .hamburger { display: flex; }

  .nav-menu {
    position: absolute;
    top: 75px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 75px);
    background: #0a0518;
    flex-direction: column;
    align-items: center;
    padding-top: 60px;
    gap: 35px;
    transition: 0.4s;
  }

  .nav-menu.active {
    left: 0;
  }
}
/* ====================== GALLERY SECTION ====================== */
.gallery-section {
  background: #0f0819;
  padding: 20px 20px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 15px;
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  transition: all 0.4s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(255, 0, 153, 0.4);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.4s;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

/* Responsive */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}
/* ====================== RATES TABLE ====================== */
.rates-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
}

.rates-table {
  width: 100%;
  border-collapse: collapse;
  background: #1f1240;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.rates-table th,
.rates-table td {
  padding: 18px 15px;
  text-align: center;
  border-bottom: 1px solid #ff009933;
}

.rates-table th {
  background: #2a1a55;
  color: #ff0099;
  font-size: 1.3rem;
  text-transform: uppercase;
}

.rates-table tr:nth-child(even) {
  background: #1a0f35;
}

.rates-table td {
  color: #e0d4ff;
  font-size: 1.1rem;
}

.rates-table tr:hover {
  background: #2a1a55;
  transition: 0.3s;
}

.rates-note {
  text-align: center;
  margin-top: 30px;
  padding: 20px;
  background: #140b24;
  border-radius: 10px;
  color: #c9b3ff;
  font-size: 1.05rem;
}

/* Responsive Table */
@media (max-width: 768px) {
  .rates-table th,
  .rates-table td {
    padding: 14px 8px;
    font-size: 1rem;
  }
  
  .rates-table {
    font-size: 0.95rem;
  }
}
/* ====================== FAQ SECTION ====================== */
.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: #1f1240;
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #ff009933;
}

.faq-question {
  width: 100%;
  padding: 20px;
  background: none;
  border: none;
  text-align: left;
  color: #fff;
  font-size: 1.15rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:after {
  content: '+';
  font-size: 1.8rem;
  color: #ff0099;
}

.faq-answer {
  padding: 0 20px 20px;
  color: #d4b8ff;
  display: none;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  display: block;
}

/* ====================== CLIENT REVIEWS ====================== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.review-card {
  background: #1f1240;
  padding: 30px;
  border-radius: 15px;
  border: 1px solid #ff009933;
  transition: 0.3s;
}

.review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(255, 0, 153, 0.3);
}

.review-text {
  font-size: 1.1rem;
  line-height: 1.8;
  font-style: italic;
  color: #e0d4ff;
  margin-bottom: 20px;
}

.reviewer {
  color: #ff0099;
  font-size: 1rem;
}

/* FAQ Toggle Script ke liye */
@media (max-width: 768px) {
  .faq-question { font-size: 1.05rem; }
}
/* ====================== FLOATING BUTTONS ====================== */
.floating-btn {
  position: fixed;
  bottom: 25px;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
  z-index: 1000;
  text-decoration: none;
  transition: all 0.3s ease;
}

.whatsapp-btn {
  background: #25D366;
  right: 25px;
  bottom: 100px;     /* WhatsApp upar */
}

.call-btn {
  background: #ff0099;
  right: 25px;
  bottom: 25px;      /* Call neeche */
}

.floating-btn:hover {
  transform: scale(1.15);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

.call-btn:hover {
  background: #ff3399;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .floating-btn {
    width: 58px;
    height: 58px;
    font-size: 1.9rem;
  }
  
  .whatsapp-btn {
    bottom: 90px;
  }
}