/* Poppins fonts start */
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Light.woff2') format('woff2'),
      url('../fonts/Poppins-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Regular.woff2') format('woff2'),
      url('../fonts/Poppins-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Medium.woff2') format('woff2'),
      url('../fonts/Poppins-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-SemiBold.woff2') format('woff2'),
      url('../fonts/Poppins-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Bold.woff2') format('woff2'),
      url('../fonts/Poppins-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
/* Poppins fonts end */

/* :root start */
:root {
  /* color */
  --body-color: #ffffff;
  --primary-gradiant: linear-gradient(180deg, #ff6b6b 0%, #ff5252 100%);
  --secondary-gradiant: linear-gradient(180deg, #ff6b6b 0%, #ff4444 100%);
  --secondary-gradiant-02: linear-gradient(180deg, #ff6b6b 0%, #ff3838 100%);
  --yellow-gradiant: linear-gradient(95.04deg, #ff6b6b 0.86%, #ff4444 98.56%);
  --primary-color: #191919;
  --secondary-color: #ff6b6b;
  --pink-color: #ff6b6b;
  --rawani-color-01: #ff6b6b;
  --rawani-color-02: #ff6b6b;
  --rawani-color-03: #ff9999;
  --rawani-color-04: #ff6b6b;
  --rawani-color-05: #ff8888;
  --light-red-color: #ff6b6b;
  --hover-text-color: #fff;
  --light-navy-blue-color: #ff6b6b;
  --green-color: #ff6b6b;
  --yellow-color: #ff6b6b;
  --yellow-color-01: #ff6b6b;
  --white-color: #ffffff;
  --black-color: #000000;
  --text-color: #191919;
  --gray-color: #ccc;
  --gray-text-color: #666;
  --gray-text-color-01: #555;
  /* Font Family */
  --primary-font: "Poppins", sans-serif;
  /* spacing */
  --section-extra-big-spacing: 112px;
  --section-big-spacing: 100px;
  --section-mid-spacing: 80px;
  --section-spacing: 40px;
  /* header-less-spacing: */
  --header-less-spacing: 96px;
  --escort-details-col-left-width: 555px;
}
/* :root end */

/* default css start */
* {
  box-sizing: border-box;
  margin: 0;
}
.z-index-1 {
  z-index: 1;
}
.position-relative {
  position: relative;
}
.position-absolute{
  position: absolute;
}
/* selction css */
::selection {
  background: #ff6b6b;
  color: #fff;
}
/* selction css */
.fill-white {
  fill: #fff;
}
html{
  scroll-behavior: smooth;
}
body {
  font-family: var(--primary-font);
  font-weight: 400;
  background: var(--body-color);
  color: #333333;
}
a {
  color: #ff6b6b;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  text-decoration: none;
}

a:hover {
  color: #ff5252 !important;
  text-decoration: none;
}
.active-page {
  color: #ff6b6b !important;
}
.hover-txt-black:hover {
  color: #000 !important;
}
.hover-txt-rawaini:hover{
  color: #ff6b6b !important;
}
a:focus {
  box-shadow: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--primary-font);
  font-weight: 600;
  color: #191919;
  margin-bottom: 12px;
  line-height: 1.3;
}

h1 {
  font-size: 32px;
}

h2 {
  font-size: 24px;
}

h3 {
  font-size: 20px;
}

h4 {
  font-size: 18px;
}

h5 {
  font-size: 16px;
}

h6 {
  font-size: 14px;
}

p, .details-note-section ul li {
  font-weight: 400;
  font-size: 14px;
  color: #333333;
  line-height: 1.6;
  margin-bottom: 12px;
}

/* Responsive typography */
@media (max-width: 768px) {
  h1 {
    font-size: 24px;
  }

  h2 {
    font-size: 20px;
  }

  h3 {
    font-size: 18px;
  }

  h4 {
    font-size: 16px;
  }

  h5 {
    font-size: 14px;
  }

  h6 {
    font-size: 12px;
  }

  p, .details-note-section ul li {
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 20px;
  }

  h2 {
    font-size: 17px;
  }

  h3 {
    font-size: 15px;
  }

  h4 {
    font-size: 14px;
  }

  p, .details-note-section ul li {
    font-size: 12px;
  }
}
.heading-title {
  font-family: var(--primary-font);
  font-weight: 700;
  color: #191919;
}
.heading-title.big-heading-title {
  font-size: 25px;
}
.heading-title.small-heading-title {
  font-size: 45px;
}
.btn,
.form-control:focus,
button:focus,
.btn:focus {
  outline: none !important;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}
ul {
  margin: 0px;
  padding: 0px;
}
ul li {
  padding: 0px;
  margin: 0px;
  list-style: none;
  -webkit-text-stroke: 0.3px;
}
.d-align {
  display: flex !important;
  align-items: center !important;
}
.d-align-justify {
  display: flex;
  align-items: center;
  justify-content: center;
}
.d-align-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.d-block{
  display: block;
}
.grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
  width: 100%;
  box-sizing: border-box;
}

/* Mobile-first grid responsive */
@media (max-width: 1199px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
  }
}

@media (max-width: 991px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 15px;
  }
}

@media (max-width: 768px) {
  .grid {
    grid-template-columns: 1fr;
    grid-gap: 15px;
  }
}

@media (max-width: 576px) {
  .grid {
    grid-template-columns: 1fr;
    grid-gap: 12px;
  }
}
.d-wrap {
  display: flex;
  flex-wrap: wrap;
}
.cursor-pointer {
  cursor: pointer;
}
.img-cover {
  width: inherit;
  height: inherit;
  object-fit: cover;
}
section, .xy-spacing {
  padding-left: 12px;
  padding-right: 12px;
}
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
.small-scrollbar-width::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
::-webkit-scrollbar-track {
  background-color: #ccc;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb {
  background-color: #fff;
  border-radius: 10px;
}
.img-contain {
  object-fit: contain;
}
.img-cover {
  object-fit: cover;
}
.img-inherit {
  width: 100%;
  height: inherit;
}
.primary-bg {
  background-color: var(--primary-color);
}
.primary-gradiant-bg {
  background-color: var(--primary-gradiant);
}
.secondary-bg {
  background-color: #ff6b6b;
}
.secondary-gradiant-bg {
  background-color: var(--secondary-gradiant);
}
.navy-blue-color{
  background-color: #ff6b6b;
}
.hover-text {
  transition: all 0.3s;
}
.hover-text:hover {
  color: #ff6b6b !important;
}
.active-link {
  color: #ff6b6b;
}
/* BUTTON STYLING */
.primary-btn {
  font-family: var(--primary-font);
  background: #ff6b6b;
  box-shadow: -13px -9px 15px 7px rgba(0, 0, 0, 0.25);
  border-radius: 7px;
  min-width: 140px;
  min-height: 44px;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  color: #fff;
  cursor: pointer;
  text-transform: uppercase;
  background-size: 100% 100%;
  moz-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.primary-btn:hover {
  background-color: #ff5252;
  transform: translateY(-2px);
  box-shadow: -13px -9px 20px 8px rgba(255, 107, 107, 0.2);
}

.primary-btn:focus {
  outline: none;
  box-shadow: none;
}

a.primary-btn:hover {
  color: #fff !important;
}

/* Responsive button styling */
@media (max-width: 768px) {
  .primary-btn {
    min-width: 130px;
    min-height: 40px;
    font-size: 12px;
    padding: 8px 12px;
  }
}

@media (max-width: 576px) {
  .primary-btn {
    width: 100%;
    min-height: 38px;
    font-size: 12px;
    padding: 8px 10px;
  }
}
/* BUTTON STYLING END */
.form-group {
  margin-bottom: 18px;
  width: 100%;
}

.custom-input,
.custom-textarea {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #ff6b6b;
  border-radius: 5px;
  padding: 10px 12px;
  min-height: 44px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  text-align: left;
  transition: all 0.3s;
  box-sizing: border-box;
}

.custom-input:hover,.custom-textarea:hover{
  border-color: #ff8888;
  box-shadow: 0 0 8px rgba(255, 107, 107, 0.2);
}

.custom-textarea{
  min-height: 180px;
  resize: vertical;
}

.custom-input:focus-within, .custom-textarea:focus {
  outline: none;
  box-shadow: 0 0 12px rgba(255, 107, 107, 0.3);
  border-color: #ff8888;
}

/* Responsive form inputs */
@media (max-width: 768px) {
  .custom-input, .custom-textarea {
    font-size: 13px;
    padding: 8px 10px;
    min-height: 40px;
  }

  .custom-textarea {
    min-height: 150px;
  }
}
.form-floating > .form-control,
.form-floating > .form-control-plaintext,
.form-floating > label {
  padding: 16px;
}
label {
  font-weight: 400;
  font-size: 15px;
  color: #fff;
  text-align: left;
  display: block;
  margin-bottom: 8px;
  box-sizing: border-box;
}

label sup.star {
  color: #ff6b6b;
  font-size: 14px;
  font-weight: 700;
}

.form-control::placeholder {
  font-size: 14px;
  color: #999;
}

.form-control:focus {
  border: 2px solid #ff6b6b;
  box-shadow: 0 0 8px rgba(255, 107, 107, 0.2);
}

/* Responsive label and form control */
@media (max-width: 768px) {
  label {
    font-size: 13px;
    margin-bottom: 6px;
  }

  .form-control::placeholder {
    font-size: 12px;
  }
}
.custom-textarea:focus-visible{
  outline: none;
}
.section-py {
  padding: var(--section-spacing) 12px;
}
.section-pt {
  padding-top: var(--section-spacing);
}
.section-pb {
  padding-bottom: var(--section-spacing);
}
.section-my {
  margin: var(--section-spacing) 12px;
}
.section-mt {
  margin-top: var(--section-spacing);
}
.section-mb {
  margin-bottom: var(--section-spacing);
}

.section-mid-py {
  padding: var(--section-mid-spacing) 12px;
}
.section-mid-pt {
  padding-top: var(--section-mid-spacing);
}
.section-mid-pb {
  padding-bottom: var(--section-mid-spacing);
}
.section-mid-my {
  margin: var(--section-mid-spacing) 12px;
}
.section-mid-mt {
  margin-top: var(--section-mid-spacing);
}
.section-mid-mb {
  margin-bottom: var(--section-mid-spacing);
}

.section-big-py {
  padding: var(--section-big-spacing) 12px;
}
.section-big-pt {
  padding-top: var(--section-big-spacing);
}
.section-big-pb {
  padding-bottom: var(--section-big-spacing);
}
.section-big-my {
  margin: var(--section-big-spacing) 12px;
}
.section-big-mt {
  margin-top: var(--section-big-spacing);
}
.section-big-mb {
  margin-bottom: var(--section-big-spacing);
}

.section-extra-big-py {
  padding: var(--section-extra-big-spacing) 12px;
}
.section-extra-big-pt {
  padding-top: var(--section-extra-big-spacing);
}
.section-extra-big-pb {
  padding-bottom: var(--section-extra-big-spacing);
}
.section-extra-big-my {
  margin: var(--section-extra-big-spacing) 12px;
}
.section-extra-big-mt {
  margin-top: var(--section-extra-big-spacing);
}
.section-extra-big-mb {
  margin-bottom: var(--section-extra-big-spacing);
}

/* Responsive section spacing */
@media (max-width: 768px) {
  :root {
    --section-spacing: 30px;
    --section-mid-spacing: 22px;
    --section-big-spacing: 30px;
    --section-extra-big-spacing: 40px;
  }
}

@media (max-width: 576px) {
  :root {
    --section-spacing: 20px;
    --section-mid-spacing: 15px;
    --section-big-spacing: 20px;
    --section-extra-big-spacing: 30px;
  }
}

.fill-primary {
  fill: var(--primary-color);
}
.w-max-content {
  width: max-content;
}
.dropdown-toggle::after {
  vertical-align: unset;
}
.dropdown-item.active,
.dropdown-item:active {
  background-color: #ff6b6b;
}
.dropdown-menu {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border: 2px solid #ff6b6b;
}
.fw-800 {
  font-weight: 800;
}
.fw-700 {
  font-weight: 700;
}
.fw-600 {
  font-weight: 600;
}
.fw-500 {
  font-weight: 500;
}
.fw-400 {
  font-weight: 400;
}
.fw-300 {
  font-weight: 300;
}
.form-check-input {
  width: 20px;
  height: 20px;
  border-color: #ff6b6b;
  border-width: 2px;
}
.form-check label {
  padding-left: 5px;
  position: relative;
  top: 3px;
}
.form-check-input:checked {
  background-color: #ff6b6b;
  border-color: #ff6b6b;
}
.fill-path path {
  fill: #ff6b6b;
  transition: all 0.3s;
}
.fill-path:hover path {
  fill: #fff;
}
.heading-label-p {
  font-size: 17px;
  font-weight: 400;
  line-height: 30px;
  margin-top: 12px;
}
.text-yellow{
  color: #ff6b6b;
}
.text-white{
  color: #fff;
}
.text-rawani-05{
  color: #ff8888 !important;
}
.max-w-max-content{
  max-width: max-content;
}
.container{
  width: 100%;
  padding-right: 12px;
  padding-left: 12px;
  margin-right: auto;
  margin-left: auto;
}
.img-fluid{
  max-width: 100%;
  height: auto;
}
.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-.5 * var(--bs-gutter-x));
  margin-left: calc(-.5 * var(--bs-gutter-x));
}
.row>* {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
  margin-top: var(--bs-gutter-y);
}
.text-center{
  text-align: center;
}
.mb-0{
  margin-bottom: 0;
}
.w-100{
  width: 100% !important;
}
.text-uppercase{
  text-transform: uppercase;
}
.text-start{
  text-align: start;
}
.align-items-center{
  align-items: center !important;
}
.ms-auto{
  margin-left: auto;
}
.mb-0{
  margin-bottom: 0 !important;
}
.border-radius-inherit{
  border-radius: inherit;
}
/* default css end */
/* header start */
.text-secondry,.text-secondry:hover{
    color:  #fff !important; 
}

header{
  background: #ff6b6b;
  min-height: var(--header-less-spacing);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.07);
  padding: 5px 12px;
  justify-content: space-between;
  width: 100%;
  transition: all 0.3s;
}
header.fixed{
  position: sticky;
  top: 0;
  z-index: 99;
  transition: all 0.3s;
}
header.fixed{
  min-height: calc(var(--header-less-spacing) - 10px);
}
header.fixed + .mobile-sidebar-wrap {
  height: calc(100vh - var(--header-less-spacing) + 10px);
}
.header-auth-wrap{
  grid-gap: 20px;
}
header ul li a{
  font-weight: 400;
  font-size: 18px;
  line-height: 21px;
  color: #fff;  
  display: flex;
  align-items: center;
}
header ul li:not(:last-child){
  margin-right: 25px;
}
header .dropmenu-option-ico{
  margin-left: 15px;
}
.hero-head-max-text{
  max-width: 1065px;
  margin: 25px auto 0;
  line-height: 30px;
  text-align: center;
  letter-spacing: 0.04em;
  color: #fff;
}
.hero-line-claim-text{
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mx-auto{
  margin-left: auto;
  margin-right: auto;
}
.sub-menu-option {
  position: absolute;
  background: linear-gradient(95.04deg, #ff6b6b 0.86%, #ff4444 98.56%);
  padding: 20px;
  border-radius: 10px 0;
  min-width: 150px;
  max-height: 300px;
  overflow-y: auto;
  z-index: 99;
  top: 110px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.sub-menu-option li:not(:last-child){
  padding-bottom: 18px;
}
header ul li .sub-menu-option li{
  margin: 0;
}
.header-menu-list > li{
  padding: 30px 0;
}
.sub-menu-option li a{
  color: #fff;
}
.sub-menu-tag:hover .sub-menu-option {
  opacity: 1;
  visibility: visible;
  top: 100%;
}
.sub-menu-option li a:hover{
  color: #000 !important;
}
/* header end */
/* mobile header start */
.mobile-sidebar-wrap{
  max-width: 375px;
  width: 100%;
  height: calc(100vh - var(--header-less-spacing));
  background-color: #ffffff;
  position: fixed;
  z-index: 99;
  padding: 60px 30px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(-380px);
  transition: all 0.3s;
  top: 0;
  left: 0;
}
.mobile-sidebar-wrap-show{
  transform: translateX(0);
}
.mobile-sidebar-wrap .close-ico{
  position: absolute;
  top: 30px;
  right: 30px;
}
.mobile-sidebar-wrap .sidebar-data {
  width: 100%;
  height: calc(100vh - 100px);
  overflow-y: auto;
}

.mobile-sidebar-wrap .mobile-nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-sidebar-wrap .mobile-nav-menu li {
  margin: 0;
  padding: 0;
}

.mobile-sidebar-wrap .mobile-nav-menu .nav-link {
  display: block;
  padding: 15px 0;
  color: #191919;
  font-size: 16px;
  font-weight: 600;
  border-bottom: 1px solid #e0e0e0;
  transition: color 0.3s ease;
}

.mobile-sidebar-wrap .mobile-nav-menu .nav-link:hover,
.mobile-sidebar-wrap .mobile-nav-menu .nav-link.active {
  color: #ff6b6b;
}

.mobile-sidebar-wrap .sidebar-data .primary-btn {
  margin-bottom: 15px;
  font-weight: 500;
}
.mobile-sidebar-wrap .menu > li > a {
  padding: 15px;
  display: block;
  color: #fff;
  border: 1.5px solid #ff6b6b;
  border-width: 1px 0;
}
.mobile-sidebar-wrap .contact-details h6{
  font-weight: 400;
  font-size: 17px;
  line-height: 20px;
  color: #fff;
  word-break: break-word;
}
.mobile-sidebar-wrap .contact-details img{
  margin-right: 15px;
}
.mobile-sidebar-wrap .contact-details li:not(:last-child){
  margin-bottom: 22px;
}
.mobile-sidebar-wrap .contact-details{
  margin: 50px 0;
}
.mobile-sidebar-wrap .social-list li:not(:last-child) {
  margin: 0 7px 7px 0;
}
.mobile-sidebar-wrap .social-list li:not(:last-child){
  margin: 0 10px 10px 0;
}
.mobile-sidebar-wrap .menu li a span{
  margin-left: 5px;
}
.mobile-sidebar-wrap .sub-menu-tag{
  position: relative;
}
/* mobile header end */
.card-col{
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
  background-color: #ffffff;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border: 1px solid #e0e0e0;
}

.card-col:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.details-card-box{
  background-color: #ff6b6b;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  width: 100%;
  box-sizing: border-box;
}

.details-card-box h4{
  font-size: 18px;
  color: #000;
  margin-bottom: 10px;
  font-weight: 600;
}

.details-card-box p{
  color: #000;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 8px;
}

/* Responsive details card box */
@media (max-width: 768px) {
  .details-card-box {
    padding: 15px;
    margin-bottom: 12px;
  }

  .details-card-box h4 {
    font-size: 16px;
  }

  .details-card-box p {
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  .details-card-box {
    padding: 12px;
  }

  .details-card-box h4 {
    font-size: 14px;
  }

  .details-card-box p {
    font-size: 12px;
  }
}
.img-wrap{
  width: 100%;
  height: 350px;
  overflow: hidden;
  position: relative;
  display: block;
  background-color: #e0e0e0;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
}

.img-wrap img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.card-col:hover .img-wrap img {
  transform: scale(1.05);
}

/* Responsive image heights */
@media (max-width: 1199px) {
  .img-wrap {
    height: 320px;
  }
}

@media (max-width: 991px) {
  .img-wrap {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .img-wrap {
    height: 280px;
  }
}

@media (max-width: 576px) {
  .img-wrap {
    height: 250px;
  }
}
.heading-review{
  width: 100%;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background-color: #ffffff;
  color: #333;
  flex-grow: 1;
  box-sizing: border-box;
  justify-content: flex-start;
}

.heading-review .hover-text{
  margin-top: 5px;
  font-size: 18px;
  font-weight: 600;
  color: #ff6b6b;
  display: block;
}

.heading-review .review {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  width: 100%;
}

.heading-review .review a {
  flex: 1;
  min-width: 120px;
  text-align: center;
  padding: 8px 10px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.heading-review .review a.callnow {
  background: #ff6b6b;
}

.heading-review .review a.whatapp {
  background: #25D366;
}

.heading-review .review a:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}

.heading-review p {
  font-size: 12px;
  line-height: 1.4;
  color: #999;
  margin: 0;
}

/* Responsive review styling */
@media (max-width: 768px) {
  .heading-review {
    padding: 10px;
    gap: 6px;
  }

  .heading-review .hover-text {
    font-size: 16px;
  }

  .heading-review p {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
  align-items: center;
  width: 100%;
}

.hourse-left {
  display: flex;
  gap: 6px;
  align-items: center;
  flex: 1;
  min-width: 100px;
}

.customer-reivew {
  display: flex;
  gap: 4px;
  align-items: center;
  flex-wrap: wrap;
  flex: 1;
  min-width: 100px;
}

.contact-number-wrap a{
  font-size: 14px;
  color: #333;
  text-decoration: none;
  padding: 0;
  margin: 0;
}

.contact-number-wrap small{
  font-size: 14px;
  color: #333;
  white-space: nowrap;
}

/* Responsive contact number wrap */
@media (max-width: 768px) {
  .contact-number-wrap {
    gap: 10px;
  }

  .contact-number-wrap small {
    font-size: 12px;
  }

  .hourse-left, .customer-reivew {
    flex: 1 1 auto;
    min-width: 80px;
  }
}

@media (max-width: 576px) {
  .contact-number-wrap {
    gap: 8px;
  }

  .contact-number-wrap small {
    font-size: 11px;
  }

  .hourse-left, .customer-reivew {
    min-width: 70px;
  }

  .heading-review .hover-text {
    font-size: 14px;
  }

  .heading-review .review a {
    min-width: 80px;
    padding: 6px 6px;
    font-size: 10px;
  }
}
.card-col .heading-review a.hover-text,.heading-review .review{
  width: auto;
}

.card-col a{
  display: block;
  padding: 6px 0;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  text-align: left;
  color: #191919;
  margin: 0;
  transition: color 0.3s ease;
}

.card-col a:hover {
  color: #ff6b6b;
}

.card-col span{
  color: #999;
  font-size: 11px;
  letter-spacing: 0.5px;
  display: block;
  margin: 2px 0 0 0;
  padding: 0 12px;
  font-weight: 400;
  text-transform: capitalize;
}

.card-col p{
  line-height: 1.4;
  font-size: 12px;
  color: #666;
  margin: 6px 0 0 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;

/* Responsive card col styling */
@media (max-width: 768px) {
  .card-col a {
    font-size: 14px;
    padding: 6px 0;
  }

  .card-col span {
    font-size: 11px;
  }

  .card-col p {
    font-size: 11px;
  }
}

@media (max-width: 576px) {
  .card-col a {
    font-size: 13px;
    padding: 5px 0;
  }

  .card-col p {
    font-size: 10px;
  }
}
.contact-number-wrap{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding: 10px 12px;
  border-top: 1px solid #e0e0e0;
  background-color: #ffffff;
  box-sizing: border-box;
  align-items: center;
  width: 100%;
}

.contact-number-wrap a{
  font-size: 13px;
  color: #ff6b6b;
  text-decoration: none;
  padding: 0;
  cursor: pointer;
}
.contact-number-wrap small{
  font-size: 17px;
  color: #fff;
}
.advertise-btn{
  background-color: #ff6b6b;
  margin-top: 50px;
}
.pagination {
  display: inline-block;
  margin-top: 100px;
}

.pagination a {
  color: #fff;
  background-color: #ff6b6b;
  float: left;
  padding: 8px 16px;
  text-decoration: none;
  transition: background-color .3s;
  border: 1px solid #ff6b6b;
  font-size: 22px;
}

.pagination a.active {
  background-color: #ff5252;
  color: #fff;
  border: 1px solid #ff5252;
}

.pagination a:hover:not(.active) {background-color: #ff8888;}
.details-note-box{
  padding: 18px;
  background: #1a1a1a;
  margin-bottom: 12px;
  border-radius: 5px;
  border-left: 4px solid #ff6b6b;
}

.details-note-section {
  width: 100%;
  box-sizing: border-box;
}

.details-note-section .inner-data-wrap{
  margin-bottom: 20px;
  padding: 15px;
  background: rgba(255, 107, 107, 0.05);
  border-radius: 5px;
  border-left: 3px solid #ff6b6b;
}

.details-note-section h3, .details-note-section h2{
  color: #ff6b6b;
  font-weight: 600;
  margin: 0 0 15px 0;
  font-size: 18px;
  padding-bottom: 8px;
  border-bottom: solid 2px #ff6b6b;
}

.details-note-section ul li:not(:last-child),
.details-note-section ul,
.details-note-section p{
  margin-bottom: 12px;
}

.details-note-section ul {
  padding-left: 20px;
}

.details-note-section ul li {
  color: #ccc;
  list-style-type: disc;
}

.details-note-box-info-col2{
  margin-top: 12px;
  display: flex;
  gap: 8px;
  font-size: 12px;
  flex-wrap: wrap;
}

.details-note-box-info-col2 a{
  text-decoration: underline;
  color: #ff6b6b;
}

/* Responsive details note */
@media (max-width: 768px) {
  .details-note-box {
    padding: 12px;
    margin-bottom: 10px;
  }

  .details-note-section .inner-data-wrap {
    padding: 10px;
    margin-bottom: 15px;
  }

  .details-note-section h3, .details-note-section h2 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .details-note-section ul {
    padding-left: 15px;
  }
}

@media (max-width: 576px) {
  .details-note-section .inner-data-wrap {
    padding: 8px;
    margin-bottom: 12px;
  }

  .details-note-section h3, .details-note-section h2 {
    font-size: 14px;
  }
}
.copy-text{
  margin-top: 25px;
  color: #fff;
}
/* learning js */
.d-none {
  display: none;
}
.visiblity-hidden {
  visibility: hidden;
}
/* learning start */
.h-100 {
  height: 100%;
}
.escort-details-wrap {
  display: flex;
}
.escort-details-col-left {
  width: var(--escort-details-col-left-width);
}
.escort-details-col-right {
  width: calc(100% - var(--escort-details-col-left-width));
  padding-left: 30px;
}
.thumbslider-wrap {
  margin-top: 15px;
  padding: 10px;
  background-color: #000;
}
.thumbslider-wrap .swiper-slide {
  height: 100px;
  border: 2px solid transparent;
}
.thumbslider-wrap .swiper-slide-thumb-active{
  border-color: #fff;
}
.full-screen-img .swiper-slide {
  height: 660px;
  background-color: #000;
  padding: 15px;
}
.escort-details-col-left .swiper-button-next:after,
.escort-details-col-left .swiper-button-prev:after {
  font-size: 14px;
  color: #fff;
  font-weight: 700;
}
.escort-details-col-left .swiper-button-next,
.escort-details-col-left .swiper-button-prev {
  width: 30px;
  height: 30px;
  border-radius: 100%;
  background-color: #ff6b6b;
  margin-top: 0;
  transform: translateY(-50%);
}
.escort-details-col-left .swiper-button-next {
  right: -15px;
}
.escort-details-col-left .swiper-button-prev {
  left: -15px;
}
.like-number-wrap {
  min-width: 70px;
  min-height: 40px;
  background-color: var(--body-color);
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 1;
  color: #fff;
  justify-content: center;
  gap: 8px;
  border-radius: 5px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s;
}
.like-number-wrap svg {
  transition: all 0.3s;
}
.like-number-wrap:hover {
  background-color: #ff6b6b;
}
.profile-data-wrap {
  background-color: #000;
}
.details-note-box.name-box h3,
.details-note-box.name-box span:not(:last-child) {
  margin-bottom: 15px;
}
.details-note-box.name-box span {
  line-height: 1.4;
}
.details-note-box.name-box a{
  font-size: 24px;
  color: #fff;
}
.details-note-box .like-counting-wrap {
  grid-gap: 10px;
}
.details-note-box .like-counting-wrap span {
  grid-gap: 5px;
}
.details-note-box .like-counting-wrap span:hover {
  color: #fff;
}
.transiaiton-all-03s {
  transition: all 0.3s;
}
.details-note-box .incall-box-wrap {
  padding: 5px 10px;
  background-color: #ff8888;
  color: #fff;
  font-size: 14px;
  grid-gap: 5px;
  font-weight: 500;
  letter-spacing: 1.1px;
}
.details-note-box .incall-box-wrap:not(:last-child),
.details-note-box ul li:not(:last-child) {
  margin-bottom: 10px;
}
.details-note-box ul li {
  color: #fff;
}
.details-note-box ul li b {
  margin-right: 10px;
  font-weight: 600;
}
.prev-next-girls-head-btn-wrap {
  margin-bottom: 20px;
  justify-content: space-between;
}
.prev-next-girls-head-btn-wrap a {
  min-width: 70px;
  min-height: 30px;
  font-size: 14px;
  padding: 5px 10px;
  border-radius: 5px;
}
.img-inner-card{
  grid-gap: 5px;
  bottom: 20px;
  right: 10px;
}
.girl-rating{
  width: 27px;
  height: 25px;
  background-color: #ff6b6b;
  padding: 2px 8px;
  border-radius: 10px;
  margin: 2px;
  float: right;
}
.varified-card{
  min-width: 70px;
  min-height: 40px;
  width: max-content;
  background-color: #000;
  padding: 2px 8px;
  border-radius: 2px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}
.new-bg{
  background-color: #ff6b6b;
}
.verified-bg{
  background-color: #ff6b6b;
}
.back-again-bg{
  background-color: #ff6b6b;
  color: #fff;
}
.grid.previous-girl-grid{
  grid-template-columns: repeat(6, 1fr);
  margin-top: 15px;
  grid-gap: 12px;
}

.previous-girl-img-wrap{
  height: 180px;
  overflow: hidden;
  border-radius: 5px;
}

.previous-girl-card h5{
  margin-top: 8px;
  font-size: 14px;
}

/* Responsive previous girl grid */
@media (max-width: 1199px) {
  .grid.previous-girl-grid {
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 10px;
  }

  .previous-girl-img-wrap {
    height: 160px;
  }
}

@media (max-width: 991px) {
  .grid.previous-girl-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 10px;
  }

  .previous-girl-img-wrap {
    height: 150px;
  }
}

@media (max-width: 768px) {
  .grid.previous-girl-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 8px;
  }

  .previous-girl-img-wrap {
    height: 140px;
  }

  .previous-girl-card h5 {
    font-size: 12px;
  }
}

@media (max-width: 576px) {
  .grid.previous-girl-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 8px;
  }

  .previous-girl-img-wrap {
    height: 120px;
  }

  .previous-girl-card h5 {
    font-size: 11px;
  }
}
.header-wrap a{
 font-size: 22px;
}
/*filter css start*/
.filter {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
  justify-content: flex-start;
  width: 100%;
  box-sizing: border-box;
}

#filtersbt,.filter_option{
  padding: 12px 15px;
  cursor: pointer;
  background: linear-gradient(-45deg, #ff6b6b, #ff5252, #ff4444, #ff8888);
  border: none;
  font-size: 14px;
  border-radius: 5px;
  width: auto;
  flex: 1;
  min-width: 150px;
  animation: anime 16s linear infinite;
  -webkit-animation: anime 16s linear infinite;
  background-size: 600%;
  color: #fff;
  font-weight: 500;
  transition: all 0.3s ease;
}

#filtersbt:hover, .filter_option:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

@keyframes anime{ 
 0%{
   background-position: 0% 50%;
   }
 50%{
   background-position :100% 50%;
 }
 100%{
   background-position: 0% 50%;
   }
}

/* Responsive filter styling */
@media (max-width: 768px) {
  .filter {
    gap: 10px;
  }

  #filtersbt, .filter_option {
    min-width: 120px;
    padding: 10px 12px;
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  .filter {
    gap: 8px;
  }

  #filtersbt, .filter_option {
    min-width: 100%;
    padding: 10px 10px;
    font-size: 12px;
    flex: 1 1 100%;
  }
}

/*filter css end*/

/*top bar css*/
.header-auth-wrap a {
    font-size: 15px;
}
/*top bar end*/
.section-breadcrumb{
    background-color: #ff6b6b;
    padding: 20px;
    grid-gap: 10px;
    margin-top: 0;
}

/*pagination start*/
.pagination a.active {
    background: #ff5252;
    border-color: #ff5252;
}

a.previouspage,a.previouspage:hover, a.nextpage,a.nextpage:hover {
    background-color: #191919 !important;
}

.pagination a {
    margin: 5px;
}
.pagination {
    display: flex;
    margin-top: 100px;
    justify-content: center;
}
/*pagination end*/
.section-mt-2 {
    margin-top: 20px;
}
.bg_offwhite .container {
    text-align: -webkit-center;
}
.textarea h1,h2,h3,h4,h5,h6 {
    color: #000000;
    margin-bottom: 10px;
    
}
.textarea p {
    text-align: justify;
    font-weight: 700;
}
.textarea>p, .textarea ul {
    margin-top: 15px;
    margin-bottom: 20px;
}
.new-loc li {
    list-style: none;
    text-align: center;
    background-color: #000;
    border: 3px solid #fff;
    margin: 5px;
    padding: 5px;
	    border-top-left-radius: 25px;
    border-bottom-right-radius: 35px;
}
@media (min-width: 768px) {
    .new-loc li {
        width: 29.6%;
    }
	.details-note-section ul li {
    font-weight: 400;
    font-size: 15px;
    color: #fff;
}
	.details-note-box ul li {
    color: #fff;
}
	.new-loc {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.new-loc li {
  list-style: none;
  text-align: center;
  background-color: #000;
  border: 3px solid #ff6b6b;
  margin: 5px;
  padding: 5px;
}
.new-loc li a {
  color: #fff;
}
	@media(min-width:320px){
  .new-loc li {width: 100%;
		}
}
@media screen and (min-width:425px) {
  .new-loc li {width: 42.8%;}
}
@media(min-width:768px){
  .new-loc li {width: 29.6%;}
}
@media(min-width:992px){
  .new-loc li {
	  width: 22.29%;
	}
	}}

  @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
#age-verification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2147483647 !important;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s;
    overscroll-behavior: contain;
    font-family: 'Poppins', sans-serif;
}
#age-verification-overlay.visible {
    opacity: 1;
    visibility: visible;
}
.age-popup {
    background: #fff;
    color: #000;
    max-width: 620px;
    width: 100%;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.age-popup .title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}
.age-popup p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 24px;
    opacity: 0.9;
	color: #000 !important;
}
.buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}
.btn {
    padding: 14px 24px;
    border: none;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
    min-height: 52px;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}
.btn:hover {
    opacity: 0.9;
}
.btn-yes {
    background: #ff6b6b;
    color: #fff;
    border: revert-layer;
}
.btn-no {
    background: #000;
    color: #fff;
	border: revert-layer;
}
.legal-note {
    font-size: 13px;
    opacity: 0.7;
    margin-bottom: 24px;
    line-height: 1.4;
}
.notice-box {
    background: rgba(255, 107, 107, 0.15);
    border: 1px solid #ff6b6b;
    border-radius: 25px;
    padding: 16px;
    font-size: 15px;
    line-height: 1.5;
}
.notice-box strong {
    display: block;
    margin-bottom: 8px;
    font-size: 18px;
    color: rgba(0, 0, 0, 0.85);
}
@media (min-width: 480px) {
    .buttons {
        flex-direction: row;
        justify-content: center;
    }
    .btn {
        flex: 1;
        max-width: 200px;
    }
}

/* Table outline: white border and readable text */
table {
  border-collapse: collapse;
  border: 3px solid #ffffff;
}
table th,
table td {
  border: 1px solid rgba(255,255,255,0.9);
  padding: 8px;
  color: #000000;
}
table thead th {
  background-color: #ff6b6b;
  color: #ffffff;
}
