* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #000;
  color: #fff;
}

strong {
  color: #f54531;
}

h1, h2 {
  font-size: 24.575px;
}
.top-strip {
  background-color: #f54531;
  color: #000;
  text-align: center;
  padding: 8px 0;
  font-weight: 600;
  font-size: 14px;
}
a {
  color: #f54531;
  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: #f54531;
}

.navbar nav a {
  color: #f54531;
  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.jpg') 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: #f54531;
  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: #f54531;
  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: #f54531;
  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: #f54531;
  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: #f54531;
  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: #f54531;
  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.html') 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: #f54531;
}

.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;
}

 <style>
  .cid-v3s2wzeNmG {
    padding-top: 5rem;
    padding-bottom: 4rem;
    background-color: transparent;
  }

  .cid-v3s2wzeNmG .item-mb {
    margin-bottom: 2rem;
  }

  @media (max-width: 767px) {
    .cid-v3s2wzeNmG .item-mb {
      margin-bottom: 1rem;
    }
  }

  .cid-v3s2wzeNmG .item-head {
    background: var(--primary-color, #9fe870);
    padding: 2.25rem;
  }

  @media (min-width: 992px) and (max-width: 1200px) {
    .cid-v3s2wzeNmG .item-head {
      padding: 2rem 1.5rem;
      margin-bottom: 2rem;
    }
  }

  @media (max-width: 767px) {
    .cid-v3s2wzeNmG .item-head {
      padding: 2rem 1.5rem;
      margin-bottom: 2rem;
    }
  }

  .cid-v3s2wzeNmG .item-content {
    padding: 2.25rem 2.25rem 0;
    background: #ffffff;
  }

  @media (min-width: 992px) and (max-width: 1200px) {
    .cid-v3s2wzeNmG .item-content {
      padding: 0rem 1.5rem;
    }
  }

  @media (max-width: 767px) {
    .cid-v3s2wzeNmG .item-content {
      padding: 0rem 1.5rem;
    }
  }

  .cid-v3s2wzeNmG .item-wrapper {
    border-radius: 2rem;
    overflow: hidden;
    margin-bottom: 2rem;
    background: #ffffff;
    padding: 0rem;
    height: 100%;
    display: flex;
    flex-flow: column nowrap;
  }

  @media (max-width: 767px) {
    .cid-v3s2wzeNmG .item-wrapper {
      margin-bottom: 1rem;
    }
  }

  @media (min-width: 992px) and (max-width: 1200px) {
    .cid-v3s2wzeNmG .item-wrapper .item-footer {
      padding: 0 1.5rem 2rem;
    }
  }

  @media (min-width: 1201px) {
    .cid-v3s2wzeNmG .item-wrapper .item-footer {
      padding: 0 2rem 2rem;
    }
  }

  .cid-v3s2wzeNmG .btn {
    width: -webkit-fill-available;
  }

  .cid-v3s2wzeNmG .item:focus,
  .cid-v3s2wzeNmG span:focus {
    outline: none;
  }

  .cid-v3s2wzeNmG .mbr-section-btn {
    margin-top: auto !important;
    padding: 2rem 2rem 0;
  }

  @media (max-width: 991px) {
    .cid-v3s2wzeNmG .mbr-section-btn {
      padding: 0rem 2.25rem 2rem;
    }
  }

  @media (max-width: 767px) {
    .cid-v3s2wzeNmG .mbr-section-btn {
      padding: 0rem 1.5rem;
      margin-bottom: 2rem;
    }
  }

  .cid-v3s2wzeNmG .mbr-section-title {
    color: #000000;
  }

  .cid-v3s2wzeNmG .mbr-section-subtitle {
    color: #ffffff;
  }

  .cid-v3s2wzeNmG .mbr-text,
  .cid-v3s2wzeNmG .mbr-section-btn {
    text-align: left;
  }

  .cid-v3s2wzeNmG .item-title {
    text-align: left;
    color: var(--primary-text, #ffffff);
  }

  .cid-v3s2wzeNmG .item-subtitle {
    text-align: left;
    color: var(--primary-text, #ffffff);
  }

  .cid-v3s2wzeNmG .content-head {
    max-width: 800px;
  }