@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 {
    --primary: #F11478;
    --primary-light: #603f832b;
    --secondary: #e69a8d;
    --white: #f8f9fa;
    --black: #000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
}

p {
  font-size: 16px;
}

.fw-semibold {
  font-weight: 500 !important;
  font-size: 20px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #B7008D !important;
}
h1{
    font-size: 20px;
}

h2{
    font-size: 18px;
}

h3{
    font-size: 18px;
}

.h2.fw-semibold {
  color: #fff !important;
}

section {
  /*  padding: 59px 0; */
}



a {
    text-decoration: none;
    color: #d60b0b;
    transition: all .2s ease-in-out;
    font-weight: 600;
}

a:hover {
    color: var(--secondary);
}

a:focus,
button:focus {
    box-shadow: none !important;
}

.text-primary {
    color: #B7008D !important;
}

.text-primary1 {
    color: #B7008D !important;
    text-align: center;
    margin-top: 11px;
}

.text-black {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-black-rgb),var(--bs-text-opacity)) !important;
  margin-top: 35px;
  margin-top: 70px;
  text-align: center;
}

.text-center {
  text-align: center !important;
}

.bgc-primary {
    background-color: var(--black);
}

.bgc-secondary {
    background-color: var(--secondary);
}

.badge.text-bg-primary {
    color: var(--white) !important;
    background-color: var(--primary) !important;
}

.btn:hover {
    --bs-btn-hover-bg: var(--secondary);
    --bs-btn-hover-border-color: var(--secondary);
}

.btn-primary {
    --bs-btn-color: var(--white);
    --bs-btn-bg: var(--primary);
    --bs-btn-border-color: var(--primary);
    --bs-btn-hover-color: var(--white);
    --bs-btn-hover-bg: var(--secondary);
    --bs-btn-hover-border-color: var(--secondary);
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: var(--white);
    --bs-btn-active-bg: var(--primary);
    --bs-btn-active-border-color: var(--primary);
    --bs-btn-active-shadow: inset 0 3px 5px var(--black);
    --bs-btn-disabled-color: var(--white);
    --bs-btn-disabled-bg: var(--primary);
    --bs-btn-disabled-border-color: var(--primary);
}

.offcanvas {
  position: fixed;
  bottom: 0;
  z-index: var(--bs-offcanvas-zindex);
  display: flex;
  flex-direction: column;
  max-width: 67%;
  color: var(--bs-offcanvas-color);
  visibility: hidden;
  background-clip: padding-box;
  outline: 0;
  transition: var(--bs-offcanvas-transition);
  height: 43%;
}

/* header */
.header {
    width: 100%;
  /*   position: absolute; */
    top: 0;
    left: 0;
    z-index: 999;
   background: #B7008D;
}

a.navbar-brand{
 width: 50%;
  display: block;
}

section.banner {
    position: relative;
}
/*.banner::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: linear-gradient(90deg, #274690 0%, #0077B6 40%, rgba(210, 5, 104, 0) 100%);
    background-image: linear-gradient(90deg, #274690 0%, #0077B6 40%, #274690 100%); 
}*/


.nav-link {
    --bs-nav-link-color: var(--white);
    --bs-nav-link-font-weight: 500;
}

.nav-link:focus,
.nav-link:hover {
    --bs-nav-link-hover-color: var(--white);
}

/* footer */
footer a,
footer {
    color: var(--white);
    font-size: 14px;
}
footer{
    padding: 0;
}


/* model card */
.model-card>img {
    max-height: 320px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.card-text {
  margin: 1px 2px 1px;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
  -webkit-line-clamp: 10;
  overflow: hidden;
  font-size: 13px;
}

/* escort card */
.escort-card {
    --bs-card-border-color: var(--primary-light);
}

.escort-card .escort-img {
    max-height: 255px;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    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 (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;
}

/* model table */
.model-list-table thead th {
    --bs-table-bg: var(--primary);
    --bs-table-color-state: var(--white);
}

.model-list-table.table-hover>tbody>tr:hover>* {
    --bs-table-bg-state: var(--secondary);
}

.model-list-table.table-striped>tbody>tr:nth-of-type(odd)>* {
    --bs-table-striped-bg: var(--primary-light);
}

/* faq section */
.faq-section .accordion-button:not(.collapsed) {
    --bs-accordion-active-color: var(--white);
    --bs-accordion-active-bg: #739728;
}

.faq-section .accordion-button:not(.collapsed)::after {
    filter: invert(1);
}

.grid-column {
    column-count: 3;
    column-gap: 1rem;
}

@media (min-width: 992px) {
    .nav-link {
        padding: 1rem 0;
        position: relative;
    }

    .nav-link::before {
        position: absolute;
        content: '';
        left: 0;
        bottom: 0;
        width: 0;
        height: 3px;
        background-color: var(--white);
        -o-transition: all cubic-bezier(0.175, 0.885, 0.32, 1.275);
        transition: all cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .nav-link:hover::before {
        width: 100%;
    }
}

@media (max-width: 991px) {
   /* section {
        padding: 54px 0;
    } */
}
.bookform {
    padding: 46px 30px;
    background: var(--primary);
    border-radius: 16px;
}
.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;
}
.pro-social {
    display: flex;
    flex-flow: row;
    justify-content: left;
    gap: 20px;
}
.pro-social .fa-phone {
    background-color: #ba1b1b;
    color: var(--white);
}
.pro-social i {
    border-radius: 5px;
    padding: 6px 9px;
    margin-top: 5px;
    font-size: 1.6rem;
    background-color: #33EB00;
    color: var(--white);
}
.location-tag {
    background:#0000FF;
    color: #fff;
}
.location-tag a{
    color: var(--white);
    font-size: 14px;
}
.custom-dark-bg{
    background:#9fa7bf;
    padding: 20px;
}
.product-list-detail span {
    display: flex;
    column-gap: 5px;
    font-weight: 500;
    font-size: 15px;
    color: #4A4B51;
    text-transform: capitalize;
}
.product-list-box {
    position: relative;
}
.product-list-box .product-inner-list {
    border: solid 1px #9579c5;
    border-radius: 10px;
    box-sizing: border-box;
    display: flex;
    column-gap: 15px;
    position: relative;
    margin-bottom: 30px;
    background: #fff;
    transition: all .15s ease-out;
    width: 100%;
    overflow: hidden;
    align-items: center;
}
.product-img {
    width: 210px;
}
.product-img img {
    width: 100%;
    height: 290px;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}
.product-list-detail {
    width: calc(100% - 250px);
}
.product-list-detail h4 {
    font-size: 18px;
    margin: 0 0 10px;
    font-weight: 500;
    color: #2F2C2C;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: initial;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.product-list-detail p {
    font-size: 14px;
    color: #000;
    padding-right: 0;
    margin: 0;
    font-weight: 400;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: initial;
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
}
.product-list-detail ul {
    margin: 10px 0;
    padding: 0;
    display: flex;
    column-gap: 10px;
}
.product-list-detail ul li {
    display: inline-block;
    background: #F7F7F7;
    font-size: 12px;
    font-weight: 600;
    color: #2F2C2C;
    padding: 6px 6px;
    border-radius: 4px;
    margin-bottom: 20px;
  margin-top: 10px;

}
.share-btn-right.call-info-btn {
    border: none;
    box-shadow: none;
}
.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: #B7008D;
    padding: 12px 24px;
    color: #fff;
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    font-size: 16px;
}
.call-info-btn {
    box-shadow: 0px 4px 110px 0px #00000012;
    max-width: 440px;
    border-radius: 16px;
    padding: 20px 30px;
    box-sizing: border-box;
    margin: -50px auto 0;
    display: flex;
    align-items: center;
    column-gap: 17px;
    justify-content: center;
    position: relative;
}
.call-info-btn-mob {
    display: none;
}
.whatsapp-btn {
    background: #29A71A;
}
.share-btn-right {
/*    display: inline-block;*/
    margin-top: -52px;
    float: right;
}
.product-list-detail span#spanPhone{
    color: var(--white);
}
.bg-dark-section {
    background: linear-gradient(90deg, rgb(155, 91, 141) 0%, rgb(43, 76, 43) 51%, rgb(155, 45, 91) 100%);
}
.profile-gallery ul li {
    margin: 5px;
    list-style: none;
    float: left;
    display: grid;
    gap: 20px;
    width: 31%;
}
.characteristics-girl-info ul {
    max-width: 650px;
    margin: 0;
    padding: 0;
    border: solid 1px #CECECE;
    border-radius: 8px;
    background: #FFFFFF59;
    display: inline-block;
}
.characteristics-girl-info ul li:first-child {
    border-top-left-radius: 7px;
}
.characteristics-girl-info ul li {
    display: inline-block;
    width: 50%;
    float: left;
    border: solid 1px #CECECE;
    padding: 10px 20px;
    box-sizing: border-box;
}
.characteristics-girl-info ul li label {
    font-weight: 600;
    width: 50%;
    display: inline-block;
    font-size: 16px;
}
.service-cta-list {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.service-cta-list a {
    background: linear-gradient(90deg, rgb(183 0 141) 0%, rgba(128, 0, 128) 51%, rgb(241 20 120) 100%);
    padding: 10px 15px;
    font-weight: 600;
    font-size: 16px;
    color: var(--white);
    border-radius: 4px;
}
.service-cta-list a:hover {
    background: var(--black);
    color: var(--white);
    border-radius: 4px;
    border: 0;
}
.ib-table table {
    width: 100%;
}
.ib-table tbody tr:nth-child(odd) {
    background: #eaeaea;
}
.ib-table td {
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: var(--black);
    width: 50%;
    padding: 15px;
}
.nowcalling {
    display: block;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 9999;
}
.lcol, .rcol {
    float: left;
    width: 50%;
}
.lcol {
    background-color: #B7008D;
}
.lcol a, .rcol a {
    display: block;
    padding: 10px 0;
    text-align: center;
    text-decoration: none;
    color: #fff;
}
.rcol {
    background-color: #06B27D;
}
.pricing {
    background: var(--primary-light);
    padding: 40px 20px;
    border-radius: 8px;
    border: 1px solid var(--primary) !important;
    height: 100%;
    transition-duration: .3s;
}
.service_price_list {
    position: relative;
    font-size: 30px;
    line-height: 40px;
    font-weight: 400;
    text-align: center;
}
.pricing_para.one {
    font-size: 35px;
    line-height: 45px;
/*    color: #000;*/
    text-align: center;
    margin-top: 10px;
    margin-bottom: 20px;
    font-weight: 800;
}
.btton-one {
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    border-radius: 8px;
    border: 1px solid #000;
    transition-duration: .3s;
}
.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, rgba(255, 0, 255) 0%, rgba(128, 0, 128) 51%, rgba(255, 255, 0) 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;
    transition-duration: .3s;
    color: #fff;
    position: relative;
    transform: scale(1.05);
}
.btton {
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    color: #fff !important;
    border-radius: 8px;
    border: 1px solid #EBEBEF;
    transition-duration: .3s;
}
.city-lists {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}
.gallery_image img{
    border-radius: 10px;
}
.internal_link_class{color: blue;}
.internal_link_class:hover{color: red;}

.mb-5 {
  margin-bottom: 0rem !important;
    text-align: justify;
}

@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);
    }
}

.rw-ui-container {
  margin: 15px 7px;
}

.col-lg-10.offset-lg-1.text-center {
  width: 100%;
}

@media (min-width: 475px) {
.profile-items .mask{
 top: 77%; }}

.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;
  padding: 0;
}

.profile-items img {
  width: 100%;
  border-radius: 10px;
}

.my-button {
  padding: 2px 35px 2px 35px;
  background: #015A9C;
  color: #fff;
}

.profile-items .mask {
  position: absolute;
  top: inherit;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 0px 0px 10px 10px;
  background-color: rgba(0,0,0,.4);
  transition: .3s;
  opacity:1.9;
  visibility: unset;
  display: block;
  align-items: center;
  justify-content: center;
}

.profile-items .mask h4 {
  color: #fff !important;
  font-size: 18px;
  margin: 5px;
  align-items: flex-start;
}

.profile-items .mask {
  visibility: initial;
}

.profile-items .mask p {
  color: #fff;
  text-align: center;
  margin: 1px 0px 5px;
}


@media (max-width: 767px) {
.profile-view {
  display: grid;
  grid-gap: 10px;
  padding: 15px;
  border-radius: 10px;
  grid-template-columns: auto;
  background: #fff;
  box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.07);
}}

.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;
  position: absolute;
  top: 0;
  left: 0;
}

@keyframes shimmer {
  100% { background-position: -200% 0; }
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity .5s ease;
}

.call-button {
  right: 20px;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
}

.call-button, .whatsapp-button {
  position: fixed;
  bottom: -43px;
  display: flex;
  z-index: 9999;
  transition: background-color .3s;
  margin-bottom: 51px;
}

.call-button img {
  height: 55px;
  width: 55px;
  animation: pulse 2.5s ease infinite;
}

@media (min-width: 1200px) {
  .h3 {
    font-size: 1.3rem;
  }
}

.mb-0 {
  font-size: 14px;
}

@media (min-width: 1200px) {
  .h2 {
    font-size: 22px;
  }
}


.hotel-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 15px;
  max-width: 1140px;
  margin: auto;
}

/* Each Hotel Card */
.hotel-card {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.hotel-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* Hotel Image */
.hotel-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* Hotel Name */
.hotel-name {
  padding: 15px;
  font-size: 1.1rem;
  font-weight: bold;
  text-align: center;
  background-color: #f9f9f9;
}

.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;
}

/* Individual Service Box */
.service-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  padding: 20px;
  border-radius: 12px;
  color: white;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  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;
}

/* Color Variants */
.service-box.blue {
  background-color: #4A90E2;
}

.service-box.pink {
  background-color: #FF6F91;
}

.service-box.teal {
  background-color: #38B2AC;
}

.service-box.purple {
  background-color: #9B59B6;
}

/* Hover Effects */
.service-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}


.select-city-box {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 9px 9px 4px 4px;
  max-width: 400px; 
  margin: 13px auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.select-city-box label {
  font-weight: 500;
  font-size: 12px;
  color: #333;
  /* display: flex; */
  align-items: center;
  margin-bottom: 10px;
}

.select-city-box label i {
  color: #e74c3c;
  margin-right: 8px;
  font-size: 1.2rem;
}

/* Dropdown styling */
.select-city-box select {
  width: 49%;
  padding: 4px 12px;
  border-radius: 6px;
  border: .1px solid #ccc;
  font-size: .9rem;
  background-color: #f9f9f9;
  color: #333;
  appearance: none;
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.image-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}


@media (min-width: 992px) {
  .offset-lg-1 {
    margin-left: 0.333%;
  }
}

@media (min-width: 992px) {
  .col-lg-7 {
    flex: 0 0 auto;
    width: 66.333%;
  }
}


@media (min-width: 768px) {
  .container, .container-md, .container-sm {
    max-width: 1140px;
  }
}

@media (min-width: 576px) {
  .container, .container-sm {
    max-width: 1140px;
  }
}

.fa.fa-2x.fa-arrow-circle-up {
  font-size: 1.3em;
}

.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: all 0.3s ease;
}

.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 {
    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;
    position: relative;
    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;
  }

  h2 {
    margin-top: 0;
  }

  p {
    margin: 20px 0;
  }

  .popup-btn,
  .leave-btn {
    display: inline-block;
    padding: 10px 20px;
    margin: 10px 5px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
    font-size: 14px;
  }

  .popup-btn {
    background-color: #B7008D;
    color: #fff;
  }

  .popup-btn:hover {
    background-color: #341e4b;
  }

  .leave-btn {
    background-color: #1a0303;
    color: #fff;
  }

  .leave-btn:hover {
    background-color: #da190b;
  }
  
.py-2 {
padding: .7rem !important;
}

.fa-whatsapp {
  font-size: 18px;
}

.fa-phone1
{cursor: pointer;
  height: 50px;
  width: auto;
  padding: 7px 7px 7px 7px;
  background-color: #0065E7C9;
  box-shadow: 4px 5px 10px rgba(0, 0, 0, 0.4);
  border-radius: 100px;
  animation: pulse 2.5s ease infinite;
}

@media only screen and (max-width: 600px){
    .banner-image {
        height: 250px;
    }
    
    .testimonials {
  padding: 11px 16px;
  margin-bottom: -59px;
}
}

@media only screen and (max-width: 600px){
.image-wrapper img {
  width: 100%;
  height: 450px;
  opacity: 0;
  transition: opacity .5s ease;
}}


.banner-image {
 width: 100%;
  margin-top: 12px;
  margin-bottom: 13px;
}

.heading {
  margin-top: 18px;
  margin-bottom: 13px;
}

/* Container for all testimonial cards */

.testimonials {
  padding: 19px 130px;
  margin-bottom: -45px;
}

.testimonial-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  /* padding: 20px 139px; */
  /* background-color: #f9f9f9; */
}

/* Styling for each testimonial card */
.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;
  font-family: 'Arial', sans-serif;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px);
}

/* Styling for the profile image */
.profile-pic {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

/* Styling for the testimonial text */
.testimonial-text {
  font-size: 16px;
  color: #555;
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.5;
}

/* Container for author information */
.author-info {
  font-size: 14px;
  color: #777;
}

/* Styling for author name */
.author-name {
  font-weight: bold;
  color: #bb1919;
  display: block;
  margin-bottom: 5px;
}

/* Styling for author title */
.author-title {
  font-size: 12px;
  color: #999;
}


@media (max-width: 768px) {
  .testimonial-card {
    width: 100%;
  }
}



@media (max-width: 600px){
    .testimonials {
  padding: 11px 16px;
  margin-bottom: -59px;
}
}

@media (max-width: 900px){
    .testimonials {
  padding: 11px 16px;
  margin-bottom: -59px;
}
}

.location-tag1 {
  background-color: #71b56f;
}
.location-tag2 {
  background-color: #115ae678;
}
.location-tag3 {
  background-color: aqua;
}
.location-tag4 {
  background-color: #b7cac5;
}

.lazy.elementor-video.entered.loaded {
  object-fit: cover;
  width: 100%;
  height: 100%;
  padding: 14px;
}

.bg-dark-section {
  margin-top: 40px;
  margin-bottom: 29px;
  text-align: justify;
}

.faq-section {
  margin-bottom: -30px;
}
@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 > * {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
}

.escortListOuter {
  position: relative;
  overflow: hidden;
  padding: 5px;
  margin-bottom: 15px;
}

.escortList {
  position: relative;
  background: #a3568b8c;
  border: 0px #FFEB3B solid;
}
.escortList .featuredImage {
  position: relative;
}
.escortList .escortInfoOuter {
  position: absolute;
  bottom: 85px;
  left: 0;
  line-height: 1.5em;
  width: 100%;
  z-index: 1;
  text-align: center;
}
.escortList .escortLabel {
  text-align: right;
  position: relative;
  min-height: 25px;
}

.escortList .escortLabel .sessionRate {
  background: #ffeb3b7a;
  border-radius: 4px;
  color: #000;
  display: inline-block;
  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;
  overflow: hidden;
  background: #33343b;
  color: #fff;
  font-size: 12px;
  height: auto;
  font-weight: 400;
}
.escortList .escortInfo .escortTitle {
  color: #fff;
  font-size: 1.2em;
  font-weight: 600;
  text-shadow: none;
  line-height: 18px;
}
.wp-post-image {
  width: 100%;
}
.rateescort {
  fill: #d39d14;
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -10px;
  margin-left: -10px;
}
.text-area textarea {
  width: 100%;
  height: 150px;
  font-size: 18px;
  padding: 7px 20px;
}

.btn {
  background: #e156e6;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  padding: 17px 30px;
  margin-top: .7rem;
  border-radius: 6px 2px;
  border: none;
  position: relative;
  cursor: pointer;
  display: inline-block;
}

.form-fild input {
  width: 100%;
  font-size: 15px;
  line-height: 30px;
  padding: 7px 20px;
  margin-bottom: 10px;
}

.social a {
  background: #b9afb947;
  margin-right: 10px;
  border-radius: 50%;
  padding: 10px 11px 12px 11px;
}

@media (min-width: 576px) {
  .container, .container-sm {
    max-width: 1000px;
  }
}

@media (min-width: 768px) {
  .container, .container-md, .container-sm {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container, .container-lg, .container-md, .container-sm {
    max-width: 1140px;
  }
}

@media (min-width: 1200px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 1140px;
  }
}


.section {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 65px 20px;
  color: #fff;
}

overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1;
}

.banner-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.buttons {
  justify-content: center;
  gap: 10px;
  font-size: 15px;
}
.btn-book {
  background: #e156e6;
  color: #fff;
  font-size: 15px;
  line-height: normal;
  border-radius: 6px 2px;
  border: none;
  position: relative;
  cursor: pointer;
  display: inline-block;
  padding: 10px 20px;
}
.btn-call {
  padding: 10px 20px;
  background-color: #8c1010;
  color: #fff;
  text-decoration: none;
  transition: background-color 0.3s;
  font-size: 15px;
  border-radius: 6px 2px;
}

.overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background-image: linear-gradient(200deg, #ef395c 15%, #973df3 85%);
  opacity: .75;
  transition: background .3s,border-radius .3s,opacity .3s;
  z-index: 0;
}

.header-h1 {
  font-size: 20px;
  color: #fff !important;
}


@media (min-width: 768px) {
    .buttons {
  justify-content: center;
  gap: 10px;
  font-size: 18px;
  }}