html {
  scroll-behavior: smooth;
}

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

.logo {
  width: 168px;
  height: 40px;
  object-fit: contain;
  image-rendering: auto;
  display: block;
}

body {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  background-color: #fde7eb;
  color: #212529;
}

h1,
h2,
h3 {
  font-weight: normal;
}

h1 {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
}

h2 {
  font-size: clamp(1.25rem, 3.5vw, 1.75rem);
}

h3 {
  font-size: clamp(1.125rem, 3vw, 1.5rem);
}

h4 {
  font-size: clamp(1.2rem, 2.5vw, 1.25rem);
}

h5 {
  font-size: clamp(1.1rem, 2vw, 1rem);
}

h6 {
  font-size: clamp(0.875rem, 1.75vw, 1rem);
}

p {
  font-size: 18px;
  margin-bottom: 1rem;
}

strong,
b {
  font-weight: bold;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

.hgtext {
  color: #881141;
}

.hglink {
  color: #881141;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.hglink:hover {
  color: #e6337a;
}

.hg-title {
  font-weight: bold;
}

.heading-boxed {
  background-color: #fbd0d8;
  color: #951d59;
  padding: 0.625rem;
  text-align: center;
  border-bottom: 1px solid #b8b894;
}

.heading-lined {
  color: #951d59;
  padding-left: 1rem;
  border-left: 4px solid #d94b6b;
  box-shadow: inset 4px 0 4px -2px rgba(0, 0, 0, 0.15);
  margin-top: 1.5625rem;
  margin-bottom: 1.25rem;
}

.pera p {
  text-align: justify;
  text-justify: inter-word;
  text-align-last: left;
  margin-bottom: 1rem;
}

ul.list-unstyled,
ol.list-unstyled {
  padding-left: 0rem;
}

ul.list-unstyled li,
ol.list-unstyled li {
  margin-bottom: 0.75rem;
}

.navbar {
  background-color: #000000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  display: inline-block;
  margin: 0;
  padding: 0;
  height: auto;
}

.navbar-brand img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  padding: 0;
  margin: 0 0 0 10px !important;
  vertical-align: bottom;
}

.navbar .nav-link {
  font-weight: 500;
  color: #ffffff !important;
  letter-spacing: 0.5px;
  text-transform: capitalize;
  transition: color 0.3s ease;
}

.navbar .nav-link:hover {
  color: #e6e600 !important;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  background-size: 1.5em 1.5em;
  background-repeat: no-repeat;
  background-position: center;
}

.menu-label {
  color: #ffffff;
  margin-right: 0.5rem;
  font-weight: 500;
}

.banner-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.banner-container picture,
.banner-container img {
  width: 100%;
  height: auto;
  display: block;
}

.banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  padding: 0 20px;
  width: 90%;
}

.banner-text h1 {
  font-size: 3rem;
  margin: 0 0 10px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.banner-text p {
  font-size: 1.5rem;
  margin: 0;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
}

/* Optional: Dark overlay to improve text visibility */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
}

.service-section {
  background-color: #ffe6eb;
}

.cards-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.cards-container .card-item {
  flex: 1 1 calc(25% - 20px);
  max-width: calc(25% - 20px);
  display: flex;
}

.cards-container .card {
  display: flex;
  flex-direction: column;
  flex: 1;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.4s ease;
  background: #fbd0d8;
}

.cards-container .card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 8px 20px rgba(255, 0, 150, 0.3);
}

.cards-container .card img {
  border-radius: 50%;
  width: 120px;
  height: 120px;
  object-fit: cover;
  margin: 20px auto 10px;
  transition: transform 0.3s ease;
}

.cards-container .card:hover img {
  transform: scale(1.1);
}

.cards-container .card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 15px;
}

.cards-container .card-body h4 {
  font-size: 18px;
  font-weight: bold;
  color: #951d59;
  margin-bottom: 20px;
}

.cards-container .card-body p {
  flex: 1;
  color: #000;
}

.testimonials-grid .testimonial-card {
  background: linear-gradient(180deg, #fff6f8 0%, #ffffff 100%);
  border: 2px solid #e6337a;
  border-radius: 16px;
  padding: 22px 20px 22px;
  box-shadow: 0 12px 28px rgba(149, 29, 89, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  position: relative;
}

.testimonials-grid .testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(149, 29, 89, 0.24);
  border-color: #951d59;
}

.testimonial-quote {
  font-size: 1.05rem;
  color: #2b1120;
  line-height: 1.75;
  font-weight: 600;
}

.testimonial-meta {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-name {
  font-weight: 700;
  color: #7d1342;
  letter-spacing: 0.2px;
}

.testimonial-role {
  font-size: 0.9rem;
  color: #5a3a46;
  font-weight: 600;
}

.testimonial-badge {
  background: #951d59;
  color: #fff;
  border: 2px solid #e6337a;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.gallery-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 2px solid #e6337a !important;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #fff6f8 100%);
  border-radius: 16px;
  box-shadow: 0 12px 26px rgba(149, 29, 89, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 32px rgba(149, 29, 89, 0.28);
}

.card-image-gallery {
  position: relative;
  width: 100%;
  padding-top: 135%;
  /* 3:4.2 ratio = 71.4%, tweak for mobile if needed */
  overflow: hidden;
}

.card-image-gallery img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 1s;
}

.card-image-gallery img:hover {
  scale: 1.1;
}

.card-text {
  background: linear-gradient(135deg, #951d59 0%, #e6337a 100%);
  transition: background 0.4s ease, letter-spacing 0.2s ease;
  color: #fff;
  padding: 10px 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.card-text:hover {
  opacity: 0.9;
  letter-spacing: 0.6px;
}

.introduction-section h1 {
  text-align: center;
}

.introduction-section h2 {
  text-align: center;
}

.escort-info-section h2 {
  text-align: center;
}

.introduction-section h1,
.introduction-section h2,
.introduction-section h3,
.introduction-section h4,
.introduction-section h5,
.introduction-section h6,
.escort-info-section h1,
.escort-info-section h2,
.escort-info-section h3,
.escort-info-section h4,
.escort-info-section h5,
.escort-info-section h6 {
  font-weight: bold;
}

.introduction-section p,
.escort-info-section p {
  text-align: justify;
}

.escort-info-section h3 {
  font-size: 1.4rem;
  color: #981b27;
  margin-top: 1.5rem;
  text-align: center;
}

.escort-info-section h4 {
  color: #981b27;
  margin-top: 1.5rem;
  text-align: center;
}

.rate {
  flex: 1 1 200px;
  /* min width 200px, बाकी auto adjust */
  border: 1px solid #ddd;
  margin: 5px;
  padding: 5px;
  background: #fbd0d8;
  border-radius: 8px;
}

.profile-rates {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  max-width: 520px;
  padding: 4px 0;
}

.rate-card {
  background: transparent;
  border: 1px solid #f1b4c8;
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  overflow: hidden;
}

.rate-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #951d59 0%, #e6337a 100%);
}

.rate-card-highlight {
  border-color: #951d59;
  box-shadow: 0 8px 18px rgba(149, 29, 89, 0.12);
}

.rate-card-highlight .rate-label,
.rate-card-highlight .rate-price {
  color: #951d59;
}

.rate-label {
  font-weight: 700;
  color: #5a1030;
  font-size: 0.95rem;
}

.rate-price {
  font-weight: 800;
  color: #7d1342;
  font-size: 1.15rem;
  letter-spacing: 0.3px;
}

.rate-badge {
  align-self: flex-start;
  background: #ffcf75;
  color: #6b2a00;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid #ffb84d;
}

.row.d-flex {
  gap: 10px;
  /* space between items */
}

.accordion-button {
  background-color: #fbd0d8 !important;
  color: #000;
}

.accordion-button:not(.collapsed) {
  background-color: #fbd0d8 !important;
  box-shadow: none;
}

.accordion-body {
  background-color: #fef3f5;
  color: #000;
}

.accordion-item {
  border: 1px solid #ddd;
  border-radius: 0.5rem;
  margin-bottom: 0.5rem;
  overflow: hidden;
}

.accordion-button {
  border: none;
  border-radius: 0 !important;
}

.areas-section {
  padding: 1.5rem 0 2rem;
  background: #fff6f8;
  text-align: center;
}

.areas-header {
  gap: 0.75rem;
}

.areas-header h2 {
  border-bottom: 0px solid #d94b6b;
}

.areas-badge {
  background: #951d59;
  color: #fff;
  border: 2px solid #e6337a;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.areas-wrap {
  padding: 14px 0;
  text-align: center;
}

.areas a {
  background: linear-gradient(135deg, #951d59 0%, #e6337a 100%);
  padding: 0.45rem 0.9rem;
  margin: 0.35rem;
  border-radius: 999px;
  border: 2px solid #7d1342;
  display: inline-flex;
  align-items: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  color: whitesmoke;
}

.area a:hover {
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(149, 29, 89, 0.28);
}
.area a {
  background: #000;
  padding: 0.45rem 0.9rem;
  margin: 0.35rem;
  border-radius: 5px;
  border: 2px solid #7d1342;
  display: inline-flex;
  align-items: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  color: whitesmoke;
}

.areas a:hover {
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(149, 29, 89, 0.28);
}

.site-footer {
  background: linear-gradient(180deg, #0b0b0f 0%, #1a0f16 100%);
  color: #f1e5eb;
  border-top: 4px solid #e6337a;
  box-shadow: inset 0 10px 30px rgba(230, 51, 122, 0.15);
}

.footer-grid {
  margin: 0;
}

.footer-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.25rem 1.2rem;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.35);
  height: 100%;
}

.profile-image-wrapper img {
  width: 100% !important;
  height: auto;
}

.site-footer h4 {
  color: #ff6699;
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
  letter-spacing: 0.4px;
}

.footer-title {
  color: #ff6699;
  margin-bottom: 0.5rem;
  font-size: 1.2rem !important;
}

.site-footer p,
.site-footer address,
.site-footer ul {
  line-height: 1.6;
}

.site-footer a {
  color: #ffffcc;
  text-decoration: none;
}

.leave-link {
  color: #ffff4d !important;
}

.site-footer a:hover {
  color: #e6e600;
  text-decoration: none;
}

.footer-nav li,
.footer-contact li {
  margin-bottom: 0.45rem;
}

.footer-nav a,
.footer-contact a {
  font-weight: 400;
}

.footer-bottom {
  border-top: 0px solid rgba(255, 255, 255, 0.8);
  padding-top: 1rem;
  padding-bottom: 1rem;
}

escort-info-section p {
  text-align: justify;
}

.footer-divider {
  width: 100%;
  background-color: #ffff99;
  height: 2px;
  margin: 1rem auto;
}

hr {
  background-color: #ffff99;
  width: 40%;
  margin: 0.5rem auto 1rem;
}

.h5,
h5 {
  font-weight: bold;
}

.bottom-list li {
  display: inline !important;
}

.bottom-list li a {
  color: #ffffcc;
  margin: auto 3px;
  font-weight: 700;
}

.footer-brand {
  color: #ffff4d !important;
  font-weight: bold;
}

.dmca-badge {
  height: 60px !important;
  width: auto;
}

.whatsapp-icon {
  position: fixed;
  bottom: 30px;
  right: 20px;
  width: 60px;
  height: 60px;
  z-index: 10000;
  overflow: hidden;
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.whatsapp-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.fixed-bottom {
  background-color: #920C24;
  color: #fff;
  padding: 0.5rem 0;
  text-align: center;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .banner-text h1 {
    font-size: 2rem;
  }

  .banner-text p {
    font-size: 1rem;
  }

  .cards-container .card-item {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.responsive-iframe-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  /* 16:9 Aspect Ratio (height = 9/16 * width) */
  overflow: hidden;
}

.responsive-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.escort-info-section,
.introduction-section {
  color: #212529;
}

.escort-info-section ul,
.escort-info-section ol,
.introduction-section ul,
.introduction-section ol {
  list-style: none;
  /* default bullets remove */
  padding: 0;
  text-align: left;
  color: #212529;
}

.escort-info-section ul li,
.introduction-section ul li {
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
  color: #212529;
  /* change as per background */
}

/* Custom Bullet */
.escort-info-section ul li::before,
.introduction-section ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #212529;
  /* bullet color */
  font-weight: bold;
}

.prdctinner {
  position: relative;
  margin-bottom: 10px
}

.prdctinner img {
  border: 5px solid #ea3732;
  width: 100% !important;
  height: auto;
}

.prdctinner a {
  position: absolute;
  left: 0;
  bottom: 0;
  background: #ea3732;
  right: 0;
  text-align: center;
  padding: 5px 10px;
  color: #fff;
  text-decoration: none
}

table {
  border: 1px solid #ccc;
  border-collapse: collapse;
  margin: 0;
  padding: 0;
  width: 100%;
  table-layout: fixed;
  font-family: oswald, sans-serif !important
}

table tr {
  background-color: #f8f8f8;
  border: 1px solid #b9b9b9;
  padding: 5.6px
}

table td,
table th {
  padding: 14.5px;
  text-align: center;
  border-right: 1px solid #b9b9b9
}

table th {
  font-size: 20px;
  letter-spacing: 3px;
  background-image: linear-gradient(#000000b8, #000000) !important;
  color: #fff;
  font-family: philosopher, sans-serif !important;
  font-weight: 700
}

tr:nth-child(even) {
  background-color: #e7e7e7 !important
}

/* Desktop Normal Table */
.table {
  width: 100%;
  border-collapse: collapse;
}

.table th,
.table td {
  padding: 12px;
  border: 1px solid #ddd;
  text-align: center;
}

.table th {
  background: #951d59;
  color: #fff;
}

/* =========================
   Mobile Responsive
========================= */
@media (max-width: 768px) {

  .table thead {
    display: none;
  }

  .table,
  .table tbody,
  .table tr,
  .table td {
    display: block;
    width: 100%;
  }

  .table tr {
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
  }

  .table td {
    text-align: right;
    padding: 12px 15px 12px 50%;
    position: relative;
    border: none;
    border-bottom: 1px solid #eee;
  }

  .table td::before {
    content: attr(data-label);
    position: absolute;
    left: 15px;
    top: 12px;
    width: 45%;
    font-weight: bold;
    text-align: left;
    color: #951d59;
  }

  .table td:last-child {
    border-bottom: none;
  }
}