/* Import Original Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

/* Root Variables */
:root {
    --primary: #F11478; /* Original pink */
    --primary-light: #603f832b; /* Original light purple */
    --secondary: #e69a8d; /* Original soft coral */
    --white: #f8f9fa; /* Original off-white */
    --black: #000; /* Original black */
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Subtle modern shadow */
    --transition: all 0.2s ease-in-out; /* Original transition */
}
/* ============== CITY LIST BUTTONS - FULL CSS (COPY-PASTE) ============== */
.city-lists {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  padding: 0;
  margin: 20px 0;
  list-style: none;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.city-lists li {
  flex: 0 0 auto;
  min-width: 130px;
  max-width: 220px;
  box-sizing: border-box;
}

.city-lists a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 22px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  border-radius: 30px;
  border: 1.5px solid #e0e0e0;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  color: #ffffff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  min-width: 100%;
  width: auto;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}

/* ============== 5 UNIQUE COLORFUL GRADIENTS (NO REPEAT FEEL) ============== */
.city-lists li:nth-child(5n+1) a { background: linear-gradient(145deg, #ff5f6d, #ffc371); }
.city-lists li:nth-child(5n+2) a { background: linear-gradient(145deg, #11998e, #38ef7d); }
.city-lists li:nth-child(5n+3) a { background: linear-gradient(145deg, #667eea, #764ba2); }
.city-lists li:nth-child(5n+4) a { background: linear-gradient(145deg, #f093fb, #f5576c); }
.city-lists li:nth-child(5n+5) a { background: linear-gradient(145deg, #4facfe, #00f2fe); }

/* ============== HOVER EFFECT (TEXT HAMESHA DIKHEGA) ============== */
.city-lists a:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
  border-color: transparent;
  filter: brightness(1.12);
  z-index: 2;
}

/* ============== RESPONSIVE: MOBILE MEIN CHHOTA FONT (TEXT NA CUT HO) ============== */
@media (max-width: 480px) {
  .city-lists a {
    font-size: 13px;
    padding: 0 16px;
    height: 40px;
  }
  .city-lists {
    gap: 10px;
  }
}
/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styling */
body {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #333;
}

/* Typography */
p {
    font-size: 16px;
    line-height: 1.5;
}

.fw-semibold {
    font-weight: 500 !important;
    font-size: 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    background: linear-gradient(45deg, #1e88e5, #7b1fa2, #0288d1);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent !important;
    animation: colorShift 6s ease infinite;
}

h1 { font-size: 20px; }
h2 { font-size: 18px; }
h3 { font-size: 18px; }

@keyframes colorShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.h2.fw-semibold {
    color: var(--white) !important; /* Retain white color */
    font-family: 'Montserrat', sans-serif; /* Bold, modern font */
    font-weight: 800; /* Extra bold for logo feel */
    font-size: 1.5rem; /* Slightly larger for prominence */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3), 0 0 10px rgba(255, 255, 255, 0.5); /* Shadow for depth */
    letter-spacing: 1px; /* Spacing for elegance */
    text-transform: uppercase; /* Uppercase for logo style */
}
/* Sections */
section {
    /* padding: 59px 0; */ /* Kept commented as per original */
}

/* Links */
a {
    text-decoration: none;
    color: #d60b0b;
    font-weight: 600;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary);
}

a:focus, button:focus {
    box-shadow: none !important;
}

/* Text Classes */
.text-primary, .text-primary1 {
    color: #D32F2F !important;
}

.text-primary1 {
    text-align: center;
    margin-top: 11px;
}

.text-black {
    color: rgba(0, 0, 0, 1) !important;
    margin-top: 35px;
    margin-bottom: 70px;
    text-align: center;
}

.text-center {
    text-align: center !important;
}

/* Backgrounds */
.bgc-primary {
    background-color: var(--black);
}

.bgc-secondary {
    background-color: var(--secondary);
}

/* Badges */
.badge.text-bg-primary {
    color: var(--white) !important;
    background-color: var(--primary) !important;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

/* Buttons */
.btn:hover {
    background-color: var(--secondary);
    border-color: var(--secondary);
}

.btn-primary {
    color: var(--white);
    background-color: var(--primary);
    border-color: var(--primary);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 4px;
}

.btn-primary:hover {
    color: var(--white);
    background-color: var(--secondary);
    border-color: var(--secondary);
}

/* Offcanvas */
.offcanvas {
    position: fixed;
    bottom: 0;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    max-width: 67%;
    color: var(--bs-offcanvas-color);
    visibility: hidden;
    background-clip: padding-box;
    outline: 0;
    transition: transform 0.3s ease-in-out;
    height: 43%;
    background-color: var(--white);
}

/* Header */
.header {
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    background: linear-gradient(90deg, #F11478, #D32F2F, #800080); /* Gradient from original pink to deeper purple */
    box-shadow: var(--shadow);
}

/* Navbar Brand */
a.navbar-brand {
    width: 50%;
    display: block;
}

/* Banner */
section.banner {
    position: relative;
}

/* Navigation Links */
.nav-link {
    color: var(--white);
    font-weight: 500;
}

.nav-link:focus, .nav-link:hover {
    color: var(--white);
}

@media (min-width: 992px) {
    .nav-link {
        padding: 1rem 0;
        position: relative;
    }

    .nav-link::before {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 0;
        height: 3px;
        background-color: var(--white);
        transition: width 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .nav-link:hover::before {
        width: 100%;
    }
}

/* Footer */
footer, footer a {
    color: var(--white);
    font-size: 14px;
    background-color: var(--black);
    padding: 0; /* Original padding */
}

/* Model Card */
.model-card > img {
    max-height: 320px;
    width: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
}

/* Card Text */
.card-text {
    margin: 1px 2px;
    font-size: 0.875rem;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 10;
    overflow: hidden;
    font-size: 13px;
}

/* Escort Card */
.escort-card {
    border: 1px solid var(--primary-light);
    border-radius: 8px;
    overflow: hidden;
}

.escort-card .escort-img {
    max-height: 255px;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.escorts-lising .main-image {
    background: var(--white);
    padding: 10px;
    border-radius: 20px;
}

.image-box-with-text {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    gap: 10px;
    padding: 15px 0;
    margin: 0 20px;
    margin-top: -30px;
    z-index: 99;
    position: relative;
    border-radius: 20px;
}

/* Media Query for Escort Card Image */
@media (min-width: 992px) and (max-width: 1199px) {
    .escort-card .escort-img {
        max-height: fit-content;
        height: 100%;
    }
}

/* Model Popup */
.model-pop-detail > li:nth-child(even) {
    background-color: var(--primary-light);
}

.model-pop-detail > li > strong {
    flex-basis: 120px;
    font-weight: 600;
}

/* Model Table */
.model-list-table thead th {
    background-color: var(--primary);
    color: var(--white);
    padding: 0.75rem;
}

.model-list-table.table-hover > tbody > tr:hover > * {
    background-color: var(--secondary);
}

.model-list-table.table-striped > tbody > tr:nth-of-type(odd) > * {
    background-color: var(--primary-light);
}

/* FAQ Section */
/* === Modern FAQ Section Redesign === */
.faq-section {
  background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
  padding: 60px 20px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  position: relative;
  overflow: hidden;
  margin-top: 40px;
}

.faq-section::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle at top right, #f11478 0%, transparent 70%);
  opacity: 0.3;
  z-index: 0;
}

.faq-section .container {
  position: relative;
  z-index: 2;
}

.faq-section h3 {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(90deg, #f11478, #7b1fa2, #0288d1);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  color: transparent !important;
  animation: colorShift 6s ease infinite;
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: 1px;
}

/* Accordion Styling */
.faq-section .accordion-item {
  border: none;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 15px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.faq-section .accordion-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.faq-section .accordion-button {
  background: transparent;
  font-weight: 600;
  font-size: 1rem;
  padding: 1.2rem 1.5rem;
  color: #333;
  border-radius: 16px;
  box-shadow: none;
  transition: var(--transition);
}

.faq-section .accordion-button::after {
  filter: hue-rotate(180deg);
  transition: transform 0.3s ease;
}

.faq-section .accordion-button:not(.collapsed) {
  background: linear-gradient(90deg, #f11478, #800080, #0288d1);
  color: #fff;
  box-shadow: 0 3px 12px rgba(0,0,0,0.15);
}

.faq-section .accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
  filter: invert(1);
}

.faq-section .accordion-body {
  background: rgba(255,255,255,0.85);
  padding: 1rem 1.5rem;
  border-radius: 0 0 16px 16px;
  color: #444;
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-section .accordion-body a {
  color: #f11478;
  font-weight: 600;
  transition: color 0.3s ease;
}

.faq-section .accordion-body a:hover {
  color: #7b1fa2;
}
/* Force FAQ Section to single column layout */
.faq-section .row {
  display: block !important;
}

.faq-section .col-md-6 {
  width: 100% !important;
  max-width: 100% !important;
}

/* Smooth Gradient Animation */
@keyframes colorShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  .faq-section {
    padding: 40px 15px;
    margin-top:80px;
  }
  .faq-section h3 {
    font-size: 1.6rem;
  }
}
/* === Mobile padding fix for FAQ section === */
@media (max-width: 768px) {
  .faq-section {
    padding-left: 25px !important;
    padding-right: 25px !important;
  }

  .faq-section .accordion-body {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }

  .faq-section .accordion-button {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }
}


/* Grid Column */
.grid-column {
    column-count: 3;
    column-gap: 1rem;
}

/* Book Form */
.bookform {
    padding: 46px 30px;
    background: var(--primary);
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.bookform .form-control:focus {
    box-shadow: 0 0 0 0.15rem var(--secondary);
    border-color: #fff;
}

.form-group {
    margin: 20px 0;
}

.btn.bttn_form {
    padding: 10px 20px;
    background: var(--black);
    color: #fff;
    border-radius: 4px;
}

/* Social Icons */
.pro-social {
    display: flex;
    flex-flow: row;
    justify-content: left;
    gap: 20px;
}

.pro-social .fa-phone {
    background-color: #ba1b1b;
    color: var(--white);
    border-radius: 5px;
    padding: 6px 9px;
    font-size: 1.6rem;
}

.pro-social i {
    border-radius: 5px;
    padding: 6px 9px;
    margin-top: 5px;
    font-size: 1.6rem;
    background-color: #33EB00;
    color: var(--white);
}

/* Location Tags */
.location-tag {
    background: #0000FF;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.location-tag a {
    color: var(--white);
    font-size: 14px;
}

.location-tag1 { background-color: #71b56f; }
.location-tag2 { background-color: #115ae678; }
.location-tag3 { background-color: aqua; }
.location-tag4 { background-color: #b7cac5; }

/* Custom Dark Background */
.custom-dark-bg {
    background: #9fa7bf;
    padding: 20px;
    border-radius: 8px;
}

/* Product List */
.product-list-box .product-inner-list {
    border: 1px solid #9579c5;
    border-radius: 10px;
    display: flex;
    column-gap: 15px;
    margin-bottom: 30px;
    background: #fff;
    transition: var(--transition);
    align-items: center;
}

.product-img {
    width: 210px;
}

.product-img img {
    width: 100%;
    height: 290px;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    object-fit: cover;
}

.product-list-detail {
    width: calc(100% - 250px);
    padding: 1rem;
}

.product-list-detail h4 {
    font-size: 18px;
    margin: 0 0 10px;
    font-weight: 500;
    color: #2F2C2C;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-list-detail p {
    font-size: 14px;
    color: #000;
    font-weight: 400;
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-list-detail ul {
    margin: 10px 0;
    padding: 0;
    display: flex;
    column-gap: 10px;
}

.product-list-detail ul li {
    background: #F7F7F7;
    font-size: 12px;
    font-weight: 600;
    color: #2F2C2C;
    padding: 6px 15px;
    border-radius: 4px;
}

/* Call Info Button */
.call-info-btn .thm-btn {
    display: flex;
    align-items: center;
    column-gap: 10px;
    font-size: 18px;
    border-radius: 8px;
    padding: 10px 24px;
}

.thm-btn {
    background: #D32F2F;
    padding: 12px 24px;
    color: #fff;
    border-radius: 30px;
    font-weight: 700;
    border: none;
    transition: var(--transition);
}

.call-info-btn {
    box-shadow: 0px 4px 110px 0px #00000012;
    max-width: 440px;
    border-radius: 16px;
    padding: 20px 30px;
    margin: -50px auto 0;
    display: flex;
    align-items: center;
    column-gap: 17px;
    justify-content: center;
    position: relative;
}

.whatsapp-btn {
    background: #29A71A;
}

.share-btn-right {
    margin-top: -52px;
    float: right;
}

/* Profile Gallery */
.profile-gallery ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.profile-gallery ul li {
    margin: 5px;
    float: left;
    width: 31%;
    display: block;
    box-sizing: border-box;
}

.profile-gallery ul li img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}

/* Characteristics */
.characteristics-girl-info ul {
    max-width: 650px;
    margin: 0;
    padding: 0;
    border: 1px solid #CECECE;
    border-radius: 8px;
    background: #FFFFFF59;
    display: inline-block;
}

.characteristics-girl-info ul li {
    display: inline-block;
    width: 50%;
    float: left;
    border: 1px solid #CECECE;
    padding: 10px 20px;
    box-sizing: border-box;
}

.characteristics-girl-info ul li:first-child {
    border-top-left-radius: 7px;
}

.characteristics-girl-info ul li label {
    font-weight: 600;
    width: 50%;
    display: inline-block;
    font-size: 16px;
}

/* Service CTA */
.service-cta-list {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.service-cta-list a {
    background: linear-gradient(90deg, #D32F2F 0%, #800080 51%, #F11478 100%);
    padding: 10px 15px;
    font-weight: 600;
    font-size: 16px;
    color: var(--white);
    border-radius: 4px;
    transition: var(--transition);
}

.service-cta-list a:hover {
    background: var(--black);
    color: var(--white);
}

/* Table */
.ib-table table {
    width: 100%;
}

.ib-table tbody tr:nth-child(odd) {
    background: #eaeaea;
}

.ib-table td {
    border: 1px solid var(--black);
    width: 50%;
    padding: 15px;
}

/* Now Calling */
.nowcalling {
    display: block;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 9999;
}

.lcol, .rcol {
    float: left;
    width: 50%;
}

.lcol { background-color: #D32F2F; }
.rcol { background-color: #06B27D; }

.lcol a, .rcol a {
    display: block;
    padding: 10px 0;
    text-align: center;
    color: #fff;
}

/* Pricing */
.pricing {
    background: var(--primary-light);
    padding: 40px 20px;
    border-radius: 8px;
    border: 1px solid var(--primary) !important;
    transition: var(--transition);
}

.service_price_list {
    font-size: 30px;
    line-height: 40px;
    font-weight: 400;
    text-align: center;
}

.pricing_para.one {
    font-size: 35px;
    line-height: 45px;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 20px;
    font-weight: 800;
}

.btton-one, .btton {
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 8px;
    border: 1px solid #000;
    transition: var(--transition);
}

.btton {
    color: #fff !important;
    border: 1px solid #EBEBEF;
}

.frame-parent1, .frame-parent4 {
    margin-top: 30px;
}

.tick-parent {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    justify-content: center;
}

.recommended {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #FF00FF 0%, #800080 51%, #FFFF00 100%);
    color: #fff;
    padding: 4px 20px;
    font-size: 18px;
    border-radius: 5px;
}

.pricing_one {
    padding: 40px 20px;
    border-radius: 8px;
    border: 1px solid var(--secondary) !important;
    background: var(--black) !important;
    color: #fff;
    transition: var(--transition);
    transform: scale(1.05);
}

/* City Lists */
.city-lists {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

@media (max-width: 991.98px) {
    .city-lists {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767.98px) {
    .city-lists {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* Profile View */
.profile-view {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 10px;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    background: #fff;
    box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.07);
}

.profile-items {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.profile-items img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.profile-items .mask {
    position: absolute;
    top: inherit;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 0 0 10px 10px;
    background-color: rgba(0, 0, 0, 0.4);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-items .mask h4 {
    color: #fff !important;
    font-size: 18px;
    margin: 5px;
}

.profile-items .mask p {
    color: #fff;
    text-align: center;
    margin: 1px 0 5px;
    font-size: 14px;
}

@media (min-width: 475px) {
    .profile-items .mask {
        top: 77%;
    }
}

@media (max-width: 767px) {
    .profile-view {
        grid-template-columns: auto;
    }
}

/* Image Wrapper */
.image-wrapper {
    position: relative;
    overflow: hidden;
    background: #eee;
}

.skeleton {
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #eee 25%, #ddd 50%, #eee 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    100% { background-position: -200% 0; }
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

/* Call and WhatsApp Buttons */
.call-button, .whatsapp-button {
    position: fixed;
    bottom: -43px;
    display: flex;
    z-index: 9999;
    transition: background-color 0.3s;
    margin-bottom: 51px;
}

.call-button {
    right: 20px;
    border-radius: 50%;
}

.call-button img {
    height: 55px;
    width: 55px;
    animation: pulse 2.5s ease infinite;
}

.fa-phone1 {
    cursor: pointer;
    height: 50px;
    padding: 7px;
    background-color: #0065E7C9;
    box-shadow: 4px 5px 10px rgba(0, 0, 0, 0.4);
    border-radius: 100px;
    animation: pulse 2.5s ease infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Hotel Gallery */
.hotel-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 15px;
    max-width: 1140px;
    margin: auto;
}

.hotel-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.hotel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.hotel-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.hotel-name {
    padding: 15px;
    font-size: 1.1rem;
    font-weight: bold;
    text-align: center;
    background-color: #f9f9f9;
}

/* Service Box */
.service-box-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    max-width: 100%;
    margin: auto;
    background: #fff;
    box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.07);
    border-radius: 10px;
    padding: 15px;
}

.service-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border-radius: 12px;
    color: white;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service-box img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    object-fit: contain;
}

.service-box span {
    font-size: 1.1rem;
    font-weight: 500;
    background: #170707;
    border-radius: 10px;
    padding: 5px;
}

.service-box.blue { background-color: #4A90E2; }
.service-box.pink { background-color: #FF6F91; }
.service-box.teal { background-color: #38B2AC; }
.service-box.purple { background-color: #9B59B6; }

.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Select City Box */
.select-city-box {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 9px 9px 4px 22px;
    max-width: 400px;
    margin: 13px auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.select-city-box label {
    font-weight: 500;
    font-size: 1rem;
    color: #333;
    margin-bottom: 10px;
}

.select-city-box select {
    width: 49%;
    padding: 4px 12px;
    border-radius: 6px;
    border: 0.1px solid #ccc;
    font-size: 0.9rem;
    background-color: #f9f9f9;
    color: #333;
}

/* Scroll to Top */
.scroll-back-to-top-wrapper {
    position: fixed;
    bottom: 67px;
    right: 11px;
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    padding: 3px;
    cursor: pointer;
    display: none;
    transition: var(--transition);
}

.scroll-back-to-top-wrapper.show {
    display: block;
}

.scroll-back-to-top-inner {
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Fullscreen Banner */
.fullscreen-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.banner-content {
    background: #fff;
    padding: 17px;
    border-radius: 10px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.modal-heading {
    font-size: 14px;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.popup-btn, .leave-btn {
    display: inline-block;
    padding: 10px 20px;
    margin: 10px 5px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 14px;
    transition: var(--transition);
}

.popup-btn {
    background-color: #D32F2F;
    color: #fff;
}

.popup-btn:hover {
    background-color: #341e4b;
}

.leave-btn {
    background-color: #1a0303;
    color: #fff;
}

.leave-btn:hover {
    background-color: #da190b;
}

/* Testimonials */
.testimonials {
    padding: 19px 130px;
    margin-bottom: -45px;
}

.testimonial-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.testimonial-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 349px;
    padding: 20px;
    text-align: center;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.profile-pic {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 16px;
    color: #555;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.5;
}

.author-info {
    font-size: 14px;
    color: #777;
}

.author-name {
    font-weight: bold;
    color: #bb1919;
    margin-bottom: 5px;
    display: block;
}

.author-title {
    font-size: 12px;
    color: #999;
}

@media (max-width: 768px) {
    .testimonials {
        padding: 11px 16px;
        margin-bottom: -59px;
    }

    .testimonial-card {
        width: 100%;
    }
}

/* Escort List */
.escortList {
    position: relative;
    background: #a3568b8c;
    border: 0px #FFEB3B solid;
    padding: 5px;
    margin-bottom: 15px;
}

.escortList .escortInfoOuter {
    position: absolute;
    bottom: 85px;
    left: 0;
    width: 100%;
    z-index: 1;
    text-align: center;
}

.escortList .escortLabel {
    text-align: right;
    min-height: 25px;
}

.escortList .escortLabel .sessionRate {
    background: #ffeb3b7a;
    border-radius: 4px;
    color: #000;
    padding: 0 6px;
    margin-right: 10px;
    font-weight: 600;
}

.escortList .escortInfo {
    background: #ffeb3b7a;
    padding: 5px 0;
    min-height: 50px;
    margin-bottom: 39px;
}

.escortList .desc {
    padding: 8px;
    background: #33343b;
    color: #fff;
    font-size: 12px;
    font-weight: 400;
}

.escortList .escortTitle {
    color: #fff;
    font-size: 1.2em;
    font-weight: 600;
    line-height: 18px;
}

.wp-post-image {
    width: 100%;
}

.rateescort {
    fill: #d39d14;
}

/* Additional Classes */
.internal_link_class {
    color: blue;
}

.internal_link_class:hover {
    color: red;
}

.mb-5 {
    margin-bottom: 0 !important;
    text-align: justify;
}

.mb-0 {
    font-size: 14px;
}

.py-2 {
    padding: 0.7rem !important;
}

.fa-whatsapp {
    font-size: 18px;
}

@media (max-width: 600px) {
    .banner-image {
        height: 250px;
    }

    .image-wrapper img {
        height: 450px;
    }
}

.banner-image {
    width: 100%;
    margin-top: 12px;
    margin-bottom: 13px;
}

.heading {
    margin-top: 18px;
    margin-bottom: 13px;
}

.bg-dark-section {
    background: linear-gradient(90deg, rgb(155, 91, 141) 0%, rgb(43, 76, 43) 51%, rgb(155, 45, 91) 100%);
    margin-top: 40px;
    margin-bottom: 29px;
    text-align: justify;
}

@media (max-width: 768px) {
    .bottom {
        font-size: 12px;
        margin-top: -3px;
        margin-bottom: 17px !important;
        text-align: center;
    }
}

.col-12 {
    flex: 0 0 auto;
    width: 100%;
    text-align: justify;
}

.mobilePadding {
    padding: 0 5px;
}

@media (min-width: 768px) {
    .col-md-4, .row-cols-md-3 > * {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}

@media (min-width: 576px) {
    .container, .container-sm {
        max-width: 1140px;
    }
}