body {
  margin: 0;
  font-family: "Lora", sans-serif;
  background-color: #000;
}

/* Navbar styling */
.navbar {
  background-color: #0c1222;
}

/* Mobile sidebar */
.mobile-menu {
  position: fixed; /* fixed position */
  top: 0;
  left: -250px; /* hide off-screen by default */
  width: 250px;
  height: 100%;
  background: #0c1222;
  transition: left 0.3s ease-in-out; /* smoother transition */
  z-index: 9999;
  padding: 2rem 1rem;
  overflow-y: auto; /* scroll if content exceeds height */
}

.mobile-menu.active {
  left: 0; /* show menu */
}

.mobile-menu .nav-link {
  display: block;
  padding: 10px 0;
  color: #fff;
  font-weight: 500;
  text-transform: uppercase;
}

.mobile-menu .close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
}

/* Toggle button */
.navbar-toggler {
  border: none;
  background: palevioletred; /* red button */
  color: #fff;
  padding: 6px 10px;
  border-radius: 4px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* Hide mobile menu on large screens */
@media (min-width: 992px) {
  .mobile-menu {
    display: none;
  }
}

/* Sticky Navbar */
.navbar {
  transition: all 0.3s ease-in-out;
}

/* Scrolled state */
.navbar.scrolled {
  background-color: #fff !important; /* white background */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* subtle shadow */
  border-radius: 20px;
  max-width: 1300px;
  margin: auto;
  margin-top: 10px;
}

.navbar.scrolled .nav-link,
.navbar.scrolled .navbar-brand,
.navbar.scrolled i {
  color: white !important; /* dark text */
}

.navbar.scrolled .navbar-toggler {
  color: #fff !important;
}

/* Abouts Sections Css */
.content-section {
  max-width: 1200px;
  padding: 30px;
  margin: 30px auto;
}

@media (max-width: 600px) {
  .content-section {
    max-width: 90%;
    padding: 0;
  }
  .main-heading {
    text-align: center;
  }
  .sub-text {
    text-align: justify;
  }
}

/* Unique heading css and paragraph css for all */
.main-heading {
  color: #ca0a6a;
  font-size: 35px;
  font-weight: 900;
  line-height: 35px;
}

.girl-name{
  font-size: 18px;


}
.rating{
  color: #ca0a6a;
  font-size: 18px;
}
.sub-text {
  color: white;
  margin-top: 5px;
  text-align: justify;
}

.sub-text span {
  font-weight: 900;
  color: #ca0a6a;
}

/* Why choose us Css */
/* Section background */

/* Heading */
.section-title {
  color: #ca0a6a;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Card */
.feature-card {
  background: #0b0b0b;
  border-radius: 5px;
  padding: 12px;
  text-align: center;
  transition: 0.3s ease;
  border: 1px solid white;
}

.feature-card:hover {
  transform: translateY(-6px);
}

/* Image wrapper */
.img-wrap {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  border: 2px solid #ff4f81; /* PINK BORDER */
}

/* Image */
.img-wrap img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

/* Watermark */
.watermark {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 12px;
  padding: 4px 0;
  letter-spacing: 1px;
}

/* Card text */
.feature-card h5 {
  margin-top: 14px;
  color: #fff;
  font-weight: 600;
}

/* Mobile */
@media (max-width: 576px) {
  .img-wrap img {
    height: 340px;
  }
}

/* Rate charts Section css */
/* Wrapper */
.price-table-wrap {
  background: linear-gradient(180deg, #0b0b0b, #000);
  padding: 8px;
  border-radius: 6px;
}

/* Table */
.price-table {
  width: 100%;
  border-collapse: collapse;
  color: #fff;
  font-size: 16px;
}

/* Header */
.price-table thead th {
  background: #b92424;
  color: #fff;
  text-align: left;
  padding: 14px 16px;
  font-weight: 600;
  border: 1px solid #ff4f81;
}

/* Body */
.price-table tbody td {
  padding: 14px 16px;
  border: 1px solid #ff4f81;
  background: #050505;
}

/* Hover */
.price-table tbody tr:hover td {
  background: #0f0f0f;
}

/* Mobile */
@media (max-width: 576px) {
  .price-table {
    font-size: 14px;
  }

  .price-table thead th,
  .price-table tbody td {
    padding: 12px;
  }
}

/* fixed Call */
.fixed-buttons {
  position: fixed;
  bottom: 0px; /* distance from bottom */
  width: 100%;
  display: flex;
  justify-content: space-between;
  z-index: 9999;
  pointer-events: auto;
}

.fixed-buttons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 55px;
  color: #fff;
  font-size: 24px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.call-btn {
  background: #ff4d6d; /* pink/red */
}

.whatsapp-btn {
  background: #25d366; /* WhatsApp green */
}

.fixed-buttons a:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
}

/* FAQ Section Css */

.faq-title {
  color: #ffb870;
  font-weight: 700;
  margin-bottom: 25px;
}

.faq-wrapper {
  border: 1px solid #f3c88b;
}

.faq-item {
  border-bottom: 1px solid #f3c88b;
}

.faq-question {
  width: 100%;
  background: #050505;
  color: #ffb870;
  padding: 14px 18px;
  font-size: 15px;
  text-align: left;
  border: none;
  cursor: pointer;
  position: relative;
}

.faq-question:hover {
  background: #0f0f0f;
}

.faq-answer {
  display: none;
  padding: 15px 18px;
  background: #0b0b0b;
  font-size: 14px;
  color: #ddd;
}

/* Arrow */
.arrow {
  position: absolute;
  right: 18px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateY(-50%) rotate(45deg);
  transition: 0.3s;
}

.faq-item.active .arrow {
  transform: translateY(-50%) rotate(-135deg);
}

.faq-item.active .faq-answer {
  display: block;
}

/* Mobile */
@media (max-width: 576px) {
  .faq-question {
    font-size: 14px;
  }
}


/* Location Css */


/* Grid */
.city-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

/* Box */
.city-box {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 10px;
  border: 1.5px solid #ff4f81; /* PINK BORDER */
  color: #ffb6c9;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  background: #050505;
  transition: all 0.3s ease;
}

/* Hover */
.city-box:hover {
  background: #ff4f81;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(255, 79, 129, 0.4);
}

/* Tablet */
@media (max-width: 991px) {
  .city-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .city-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .city-box {
    font-size: 13px;
    padding: 12px 8px;
  }
}

/*------------------------------------------ DISCLAIMER ---------------------------------------*/
.disclaimer-section {
  background: radial-gradient(circle at top, #1a0f14, #000);
  padding: 60px 0 30px;
  color: #fff;
}

.disclaimer-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.disclaimer-text {
  max-width: 900px;
  margin: 0 auto 30px;
  font-size: 14px;
  line-height: 1.7;
  color: #e6e6e6;
}

.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, #aaa, transparent);
  margin-bottom: 20px;
}

.copyright-text {
  font-size: 13px;
  color: #ccc;
}

/* Mobile */
@media (max-width: 576px) {
  .disclaimer-text {
    font-size: 13px;
    padding: 0 15px;
  }

  .disclaimer-title {
    font-size: 18px;
  }
}
