* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #000;
  color: #fff;
}

strong {
  color: #ff9800;
}

h1, h2 {
  font-size: 24.575px;
}
.top-strip {
  background-color: #ff9800;
  color: #000;
  text-align: center;
  padding: 8px 0;
  font-weight: 600;
  font-size: 14px;
}
a {
  color: #ff9800;
  text-decoration: none;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #000;
  padding: 16px 8%;
}

.logo {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
}

.logo span {
  color: #ff9800;
}

.navbar nav a {
  color: #ff9800;
  margin-left: 20px;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.navbar nav a:hover {
  color: #fff;
}


.hero {
  background: url('image/p10.jpeg') no-repeat center center;
  background-size: cover;
  position: relative;
  padding: 120px 8% 100px;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, #000 50%, rgba(0, 0, 0, 0.5));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-content h1 {
  font-size: 40px;
  color: #ff9800;
  margin-bottom: 10px;
  font-weight: 700;
}

.hero-content h2 {
  font-size: 28px;
  color: #fff;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 16px;
  color: #ccc;
  margin-bottom: 30px;
}

/* City Search Box */
.city-search {
  display: flex;
  max-width: 400px;
  border-radius: 4px;
  overflow: hidden;
}

.city-search input {
  flex: 1;
  padding: 10px 12px;
  border: none;
  outline: none;
  font-size: 14px;
}

.city-search button {
  background-color: #ff9800;
  border: none;
  padding: 0 16px;
  font-size: 18px;
  color: #000;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .hero-content h1 {
    font-size: 30px;
  }

  .hero-content h2 {
    font-size: 20px;
  }

  .navbar {
    flex-direction: column;
    gap: 10px;
  }
}

.split-hero {
  background: linear-gradient(to right, #000000, #0a0a0a);
  padding: 100px 8% 80px;
}

.escort-img {
  max-height: 400px;
  border-radius: 12px;
  filter: brightness(1.05);
  box-shadow: 0 0 30px rgba(255, 152, 0, 0.2);
}

.split-hero h1 {
  color: #ff9800;
  font-size: 36px;
}

.split-hero p {
  color: #ddd;
  font-size: 16px;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .split-hero {
    padding: 60px 5%;
    text-align: center;
  }
  .split-hero h1 {
    font-size: 28px;
  }
  .escort-img {
    max-height: 300px;
    margin-bottom: 20px;
  }
}

.escort-card-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  background: #000; 
  padding: 40px 20px;
}

/*.escort-card {
  position: relative;
  width: 220px;
  height: 360px;
  overflow: hidden;
  border-radius: 6px;
  flex-shrink: 0;
}*/

.escort-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.escort-info {
  position: absolute;
  bottom: 15px;
  width: 100%;
  text-align: center;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

.escort-info span {
  font-size: 18px;
  display: block;
  letter-spacing: 6px;
  color: #fff;
  margin-bottom: 4px;
}

.escort-info h4 {
  font-size: 17px;
  font-weight: 500;
  margin: 0;
}

.escort-cards {
  padding: 40px 20px;
  background-color: #111;
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  color: #ff5e78;
  text-align: center;
  margin-bottom: 30px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

.escort-card {
  background: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(255, 94, 120, 0.2);
  transition: transform 0.3s ease;
  color: #fff;
}


.escort-card:hover {
  transform: translateY(-6px);
}

.escort-card img {
  width: 100%;
  height: auto;
  display: block;
}

.escort-details {
  padding: 15px;
  text-align: center;
}

.escort-details h3 {
  margin: 0;
  font-size: 18px;
  color: #ff5e78;
}

.escort-details .price {
  font-weight: bold;
  color: #ffd700;
  margin: 5px 0;
}

.escort-details .location {
  font-size: 14px;
  color: #ccc;
}

.escort-cards {
  padding: 40px 20px;
  background-color: #111;
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  color: #ff9800;
  text-align: center;
  margin-bottom: 30px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
}

/* Escort Card */
.escort-card {
  background: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(255, 94, 120, 0.2);
  transition: transform 0.3s ease;
  color: #fff;
  display: flex;
  flex-direction: column;
}

.escort-card:hover {
  transform: translateY(-6px);
}

.escort-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.escort-details {
  padding: 15px;
  text-align: center;
}

.escort-details h3 {
  margin: 0;
  font-size: 18px;
  color: #ff5e78;
}

.escort-details .price {
  font-weight: bold;
  color: #ffd700;
  margin: 5px 0;
}

.escort-details .location {
  font-size: 14px;
  color: #ccc;
}


@media (max-width: 768px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.indore-content-section {
  background-color: #000;
  padding: 15px;
  color: #ccc;
  font-family: 'Poppins', sans-serif;
}

.content-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-heading {
  color: #ff9800;
  margin-bottom: 24px;
  text-align: center;
  font-weight: 600;
}

.indore-content-section p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.indore-content-section strong {
  color: #ff9800;
  font-weight: 600;
}

.indore-content-section em {
  color: #ffd700;
  font-style: italic;
}

.indore-content-section .highlight {
  color: #ffd700;
  font-weight: 500;
}
.why-choose-us {
  background: url('images/pb10bg.webp') no-repeat center center/cover;
  padding: 60px 20px;
  color: #fff;
  text-align: center;
  position: relative;
}

.why-choose-us::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.7); 
  z-index: 0;
}

.why-choose-us .container {
  position: relative;
  z-index: 1;
}

.why-choose-us h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #ff9800;
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.feature-box {
  background-color: #fff;
  color: #000;
  border-radius: 10px;
  width: 250px;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  border-top: 10px solid orange;
  text-align: center;
}

.feature-box .icon {
  background: #FFC107;
  padding: 10px;
  border-radius: 12px;
  font-size: 24px;
  margin-bottom: 10px;
}

.escort-content-section {
  background-color: #111; 
  color: #fff;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.7;
}

.escort-content-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.escort-content-section h2 {
  color: #FFA500;
  margin-bottom: 20px;
}

.escort-content-section h3 {
  margin-top: 30px;
  font-size: 1.5rem;
  color: #FFA500;
}

.escort-content-section ul.escort-list {
  list-style: none;
  padding-left: 0;
  margin: 20px 0;
}

.escort-content-section ul.escort-list li {
  background: #1a1a1a;
  border-left: 4px solid orange;
  padding: 10px 15px;
  margin-bottom: 10px;
  border-radius: 5px;
}

.spa-escort-section {
  background-color: #0f0f0f;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
}

.spa-escort-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.spa-escort-section h2 {
  color: #FFA500;
  margin-bottom: 20px;
}

.spa-escort-section .spa-list {
  margin-top: 30px;
}

.spa-escort-section .spa-item {
  background: #1a1a1a;
  border-left: 4px solid orange;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
}

.spa-escort-section .spa-item h3 {
  font-size: 1.3rem;
  color: #FFA500;
  margin-bottom: 10px;
}

.image-text-section {
  background-color: #0f0f0f;
  color: #fff;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.image-text-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.content-wrapper {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: space-between;
  gap: 20px;
}

.image-column {
  width: 40%;
  min-height: 100%;
}

.image-column img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.text-column {
  width: 58%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.text-column h2 {
  color: #FFA500;
  margin-bottom: 20px;
}

.text-column p {
  margin-bottom: 15px;
  line-height: 1.7;
}

.hotel-list {
  list-style: none;
  padding-left: 0;
  margin: 20px 0;
}

.hotel-list li {
  margin-bottom: 12px;
  background: #1a1a1a;
  border-left: 4px solid orange;
  padding: 12px 15px;
  border-radius: 6px;
}

@media (max-width: 768px) {
  .content-wrapper {
    flex-direction: column;
  }

  .image-column,
  .text-column {
    width: 100%;
  }

  .image-column img {
    height: auto;
  }
}
.promo-section {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  min-height: 400px;
}

.promo-content {
  flex: 1;
  padding: 40px;
  max-width: 50%;
  box-sizing: border-box;
}

.promo-content h2 {
  color: #d80000;
  font-size: 32px;
  font-weight: bold;
}

.promo-content h3 {
  color: #333;
  font-size: 20px;
  margin-top: 10px;
  font-weight: 700;
}

.promo-content p {
  margin: 15px 0;
  color: #555;
  line-height: 1.6;
}

.promo-btn {
  background: #d93c3c;
  color: #fff;
  padding: 10px 20px;
  display: inline-block;
  border-radius: 5px;
  text-decoration: none;
}


.floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.float-btn {
  width: 50px;
  height: 50px;
  background-color: #25d366; /* WhatsApp green by default */
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: background 0.3s ease;
}

.call-btn {
  background-color: #efd237; /* Theme Yellow */
  color: #000;
}

.call-btn:hover,
.whatsapp-btn:hover {
  opacity: 0.9;
}



