@charset "UTF-8";
body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: #000;
  color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
}

a,
span,
p {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  text-decoration: none;
  color: #fff;
}

.top-bar {
  overflow: hidden;
  background: linear-gradient(98.21deg, #f05a8e 6.3%, #ed1c24 70.34%);
  color: white;
  font-weight: bold;
  padding: 10px 0;
  position: relative;
}
.top-bar .marquee-content {
  white-space: nowrap;
  overflow: hidden;
}
.top-bar .marquee-content .track {
  display: inline-block;
  animation: scroll-left 30s linear infinite;
}
.top-bar .marquee-content .track span {
  margin: 0 30px;
  display: inline-block;
}
.top-bar .marquee-content .track span:nth-child(1) {
  color: white;
  opacity: 1;
}
.top-bar .marquee-content .track span:nth-child(2) {
  color: rgba(255, 255, 255, 0.8);
}
.top-bar .marquee-content .track span:nth-child(3) {
  color: rgba(255, 255, 255, 0.6);
}
.top-bar .marquee-content .track span:nth-child(4) {
  color: rgba(255, 255, 255, 0.4);
}
.top-bar .marquee-content .track span:nth-child(5) {
  color: rgba(255, 255, 255, 0.3);
}
.top-bar .marquee-content .track span:nth-child(6) {
  color: rgba(255, 255, 255, 0.5);
}
.top-bar .marquee-content .track span:nth-child(7) {
  color: rgba(255, 255, 255, 0.6);
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
.custom-logo {
  max-width: 220px;
}
@media screen and (max-width: 576px) {
  .custom-logo {
    max-width: 150px;
  }
}

#header_wrapper {
  background-color: #000;
  padding: 6px 0;
}
#header_wrapper .navbar ul li a {
  color: #fff;
  font-size: 16px;
  padding: 8px 15px;
  font-weight: 500;
}
#header_wrapper .navbar .navbar-toggler {
  color: #fff;
}
#header_wrapper .navbar .btn_quote {
  padding: 13px 40px;
  background: linear-gradient(98.21deg, #f05a8e 6.3%, #ed1c24 70.34%);
  font-weight: 500;
  text-transform: capitalize;
  border-radius: 30px;
  color: #fff;
  font-size: 15px;
  transition: 0.6s;
}
#header_wrapper .navbar .btn_quote:hover {
  background-color: #000;
}

.hero_section {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
  height: 70vh;
  display: flex;
  align-items: center;
  padding: 0 15px;
}
.hero_section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: -1;
}
@media (max-width: 991px) {
  .hero_section::before {
    background: rgba(0, 0, 0, 0.6);
  }
}
@media (max-width: 768px) {
  .hero_section::before {
    background: rgba(0, 0, 0, 0.7);
  }
}
@media (max-width: 576px) {
  .hero_section::before {
    background: rgba(0, 0, 0, 0.8);
  }
}
@media (max-width: 991px) and (min-width: 769px) {
  .hero_section {
    height: 30vh;
    padding: 0 20px;
  }
}
@media (max-width: 768px) and (min-width: 577px) {
  .hero_section {
    height: 40vh;
    padding: 0 15px;
  }
}
@media (max-width: 576px) {
  .hero_section {
    height: 23vh;
    padding: 0 10px;
    text-align: center;
  }
}
.hero_section h1 {
  color: #fff;
  font-weight: 600;
  font-size: 44px;
  margin-bottom: 20px;
  line-height: 1.2;
}
@media (max-width: 991px) and (min-width: 769px) {
  .hero_section h1 {
    font-size: 38px;
    margin-bottom: 18px;
  }
}
@media (max-width: 768px) and (min-width: 577px) {
  .hero_section h1 {
    font-size: 32px;
    margin-bottom: 15px;
  }
}
@media (max-width: 576px) {
  .hero_section h1 {
    font-size: 24px;
    margin-bottom: 12px;
    line-height: 1.3;
  }
}
.hero_section p {
  font-size: 17px;
  color: #fff;
  font-weight: 400;
  line-height: 1.5;
}
@media (min-width: 992px) {
  .hero_section p {
    font-size: 22px;
  }
}
@media (max-width: 991px) and (min-width: 769px) {
  .hero_section p {
    font-size: 19px;
  }
}
@media (max-width: 768px) and (min-width: 577px) {
  .hero_section p {
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .hero_section p {
    font-size: 14px;
    line-height: 1.4;
  }
}
@media (max-width: 576px) {
  .hero_section .container {
    padding: 0 10px;
  }
}
@media (max-width: 576px) {
  .hero_section .row {
    margin: 0;
  }
}
@media (max-width: 576px) {
  .hero_section .col-lg-8 {
    padding: 0;
  }
}

.location-section {
  padding: 60px 0 40px 0;
}
@media (max-width: 991px) {
  .location-section {
    padding: 30px 15px;
  }
}
.location-section h2 {
  color: #fff;
  font-weight: 600;
  font-size: 40px;
  margin-bottom: 7px;
  line-height: 1.2;
}
@media (max-width: 991px) and (min-width: 769px) {
  .location-section h2 {
    font-size: 34px;
    margin-bottom: 10px;
  }
}
@media (max-width: 768px) and (min-width: 577px) {
  .location-section h2 {
    font-size: 28px;
    margin-bottom: 8px;
  }
}
@media (max-width: 576px) {
  .location-section h2 {
    font-size: 22px;
    margin-bottom: 6px;
    text-align: center;
  }
}
.location-section p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 17px;
  max-width: 96%;
  margin-bottom: 20px;
  line-height: 1.5;
}
@media (max-width: 991px) and (min-width: 769px) {
  .location-section p {
    font-size: 16px;
    max-width: 100%;
    margin-bottom: 18px;
  }
}
@media (max-width: 768px) and (min-width: 577px) {
  .location-section p {
    font-size: 15px;
    max-width: 100%;
    margin-bottom: 15px;
  }
}
@media (max-width: 576px) {
  .location-section p {
    font-size: 14px;
    max-width: 100%;
    margin-bottom: 12px;
    text-align: center;
  }
}
.location-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 991px) and (min-width: 769px) {
  .location-section ul {
    justify-content: flex-start;
    gap: 15px;
  }
}
@media (max-width: 768px) and (min-width: 577px) {
  .location-section ul {
    justify-content: center;
    gap: 12px;
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .location-section ul {
    justify-content: center;
    gap: 10px;
    margin-bottom: 8px;
  }
}
.location-section ul li {
  color: #fff;
  font-size: 16px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
.location-section ul li i {
  color: #ed1c24;
  padding-right: 7px;
  font-size: 14px;
}
@media (max-width: 991px) and (min-width: 769px) {
  .location-section ul li i {
    font-size: 16px;
    padding-right: 6px;
  }
}
@media (max-width: 768px) and (min-width: 577px) {
  .location-section ul li {
    font-size: 14px;
    margin-bottom: 6px;
  }
  .location-section ul li i {
    font-size: 12px;
    padding-right: 5px;
  }
}
@media (max-width: 576px) {
  .location-section ul li {
    font-size: 13px;
    margin-bottom: 5px;
  }
  .location-section ul li i {
    font-size: 11px;
    padding-right: 4px;
  }
}
@media (max-width: 991px) {
  .location-section img {
    margin-bottom: 20px;
    margin-top: 10px;
  }
}
@media (max-width: 768px) {
  .location-section img {
    margin-bottom: 15px;
  }
}
@media (max-width: 576px) {
  .location-section img {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .location-section .row {
    margin: 0;
  }
}
@media (max-width: 576px) {
  .location-section .col-lg-6 {
    padding: 0 5px;
  }
}

.area {
  padding: 0 0 70px 0;
}
@media (max-width: 991px) and (min-width: 769px) {
  .area {
    padding: 0 20px 50px 20px;
  }
}
@media (max-width: 768px) and (min-width: 577px) {
  .area {
    padding: 0 10px 40px 10px;
  }
}
@media (max-width: 576px) {
  .area {
    padding: 0 5px 30px 5px;
  }
}
.area h2 {
  color: #fff;
  font-weight: 600;
  font-size: 40px;
  margin-bottom: 45px;
}
@media (max-width: 991px) {
  .area h2 {
    font-size: 32px;
    margin-bottom: 30px;
  }
}
@media (max-width: 768px) {
  .area h2 {
    font-size: 26px;
    margin-bottom: 20px;
  }
}

.services {
  padding-bottom: 70px;
}
.services .service-title {
  background: linear-gradient(98.21deg, #f05a8e 6.3%, #ed1c24 70.34%);
  padding: 20px 0px;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  text-align: center;
}
.services .service-title h2 {
  color: #fff;
  font-weight: 600;
  font-size: 40px;
}
@media (max-width: 991px) {
  .services .service-title h2 {
    font-size: 30px;
  }
}
@media (max-width: 768px) {
  .services .service-title h2 {
    font-size: 26px;
  }
}
@media (max-width: 576px) {
  .services .service-title h2 {
    font-size: 20px;
  }
}
.services .service-contant {
  padding: 70px 30px 50px 30px;
  border: 1px solid #ed1c24;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
}
@media (max-width: 991px) and (min-width: 769px) {
  .services .service-contant {
    padding: 50px 25px 40px 25px;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
  }
}
@media (max-width: 768px) and (min-width: 577px) {
  .services .service-contant {
    padding: 40px 20px 30px 20px;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
  }
}
@media (max-width: 576px) {
  .services .service-contant {
    padding: 30px 15px 25px 15px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
  }
}
.services .service-contant h3 {
  color: #fff;
  font-weight: 500;
  font-size: 44px;
  margin-bottom: 7px;
  max-width: 90%;
  line-height: 1.2;
}
@media (max-width: 991px) and (min-width: 769px) {
  .services .service-contant h3 {
    max-width: 100%;
    font-size: 32px;
    margin-bottom: 10px;
  }
}
@media (max-width: 768px) and (min-width: 577px) {
  .services .service-contant h3 {
    max-width: 100%;
    font-size: 24px;
    margin-bottom: 8px;
  }
}
@media (max-width: 576px) {
  .services .service-contant h3 {
    max-width: 100%;
    font-size: 22px;
    margin-bottom: 6px;
  }
}
.services .service-contant p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
  line-height: 1.6;
}
@media (max-width: 991px) and (min-width: 769px) {
  .services .service-contant p {
    font-size: 16px;
    line-height: 1.5;
  }
}
@media (max-width: 768px) and (min-width: 577px) {
  .services .service-contant p {
    font-size: 16px;
    line-height: 1.4;
  }
}
@media (max-width: 576px) {
  .services .service-contant p {
    font-size: 16px;
    line-height: 1.4;
    text-align: justify;
  }
}
.services .service-contant a.btn_request {
  padding: 13px 40px;
  background: linear-gradient(98.21deg, #f05a8e 6.3%, #ed1c24 70.34%);
  font-weight: 500;
  text-transform: capitalize;
  border-radius: 30px;
  color: #fff;
  font-size: 16px;
  transition: 0.6s;
  display: inline-block;
  text-decoration: none;
}
@media (max-width: 991px) and (min-width: 769px) {
  .services .service-contant a.btn_request {
    padding: 12px 35px;
    font-size: 16px;
    border-radius: 25px;
    margin-top: 15px;
    margin-bottom: 15px;
  }
}
@media (max-width: 768px) and (min-width: 577px) {
  .services .service-contant a.btn_request {
    padding: 11px 30px;
    font-size: 16px;
    border-radius: 22px;
    margin-bottom: 15px;
  }
}
@media (max-width: 576px) {
  .services .service-contant a.btn_request {
    padding: 10px 25px;
    font-size: 16px;
    border-radius: 20px;
    margin-bottom: 10px;
    display: block;
    text-align: center;
    width: 100%;
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 991px) {
  .services .service-contant img {
    margin-bottom: 20px;
    margin-top: 10px;
  }
}
@media (max-width: 768px) {
  .services .service-contant img {
    margin-bottom: 15px;
  }
}
@media (max-width: 576px) {
  .services .service-contant img {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .services .service-contant .row {
    margin: 0;
  }
}
@media (max-width: 576px) {
  .services .service-contant .col-lg-6 {
    padding: 0 5px;
  }
}

@media (max-width: 991px) {
  .services {
    padding-bottom: 50px;
  }
}
@media (max-width: 768px) {
  .services {
    padding-bottom: 35px;
  }
}
.profile-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  position: relative;
}
@media (max-width: 768px) {
  .profile-card {
    margin-bottom: 20px;
  }
}
.profile-card img {
  transition: transform 0.3s ease;
}
.profile-card:hover .profile-image {
  transform: scale(1.05);
}
.profile-card .card-header {
  position: relative;
  overflow: hidden;
}
.profile-card .card-header .status-indicators {
  position: absolute;
  top: 15px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.profile-card .card-header .status-indicators .status-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.profile-card .card-header .status-indicators .status-icon.verified {
  background: #e91e63;
}
.profile-card .card-header .status-indicators .status-icon.fire {
  background: #ff9800;
}
.profile-card .card-header .photo-count {
  position: absolute;
  bottom: 15px;
  right: 15px;
  color: white;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 10 px;
}
.profile-card .card-body {
  padding: 15px 20px;
  background: linear-gradient(98.21deg, #f05a8e 6.3%, #ed1c24 70.34%);
  color: white;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.profile-card .card-body .name {
  font-size: 34px;
  margin-bottom: 2px;
}
.profile-card .card-body .location {
  font-size: 13px;
  opacity: 0.9;
  margin-bottom: 8px;
}
.profile-card .card-body .rating {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-bottom: 12px;
}
.profile-card .card-body .rating .star {
  color: #ffd700;
  font-size: 16px;
}
.profile-card .card-body .whatsapp-btn {
  color: white;
  font-size: 34px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.profile-card .card-body .whatsapp-btn:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

.choose-us {
  padding: 40px 0 50px 0;
}
@media (max-width: 991px) and (min-width: 769px) {
  .choose-us {
    padding: 30px 20px 50px 20px;
  }
}
@media (max-width: 768px) and (min-width: 577px) {
  .choose-us {
    padding: 25px 15px 40px 15px;
  }
}
@media (max-width: 576px) {
  .choose-us {
    padding: 20px 10px 30px 10px;
  }
}
@media (max-width: 991px) and (min-width: 769px) {
  .choose-us .choose-us-content {
    padding-left: 20px;
  }
}
@media (max-width: 768px) and (min-width: 577px) {
  .choose-us .choose-us-content {
    padding-left: 15px;
  }
}
@media (max-width: 576px) {
  .choose-us .choose-us-content {
    padding-left: 0;
    text-align: center;
  }
}
@media (max-width: 576px) {
  .choose-us .choose-us-text {
    text-align: center;
  }
}
.choose-us h2 {
  color: #fff;
  font-weight: 500;
  font-size: 40px;
  margin-bottom: 7px;
  max-width: 60%;
  line-height: 1.2;
}
@media (max-width: 991px) and (min-width: 769px) {
  .choose-us h2 {
    max-width: 100%;
    font-size: 34px;
    margin-bottom: 10px;
  }
}
@media (max-width: 768px) and (min-width: 577px) {
  .choose-us h2 {
    max-width: 100%;
    font-size: 28px;
    margin-bottom: 8px;
  }
}
@media (max-width: 576px) {
  .choose-us h2 {
    max-width: 100%;
    font-size: 22px;
    margin-bottom: 6px;
    text-align: center;
  }
}
.choose-us p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
  line-height: 1.6;
  text-align: justify;
}
@media (max-width: 991px) and (min-width: 769px) {
  .choose-us p {
    font-size: 15px;
    line-height: 1.5;
  }
}
@media (max-width: 991px) and (min-width: 769px) {
  .choose-us .choose-us-image {
    margin-bottom: 15px;
  }
}
@media (max-width: 768px) and (min-width: 577px) {
  .choose-us .choose-us-image {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .choose-us .choose-us-image {
    margin-bottom: 8px;
  }
}
@media (max-width: 576px) {
  .choose-us .row {
    margin: 0;
  }
}
@media (max-width: 576px) {
  .choose-us .col-lg-4, .choose-us .col-lg-8, .choose-us .col-md-6 {
    padding: 0 5px;
  }
}
@media (max-width: 991px) {
  .choose-us img {
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .choose-us img {
    margin-bottom: 15px;
  }
}
@media (max-width: 576px) {
  .choose-us img {
    margin-bottom: 10px;
  }
}

.professional_girls {
  padding: 0 0 50px 0;
}
@media (max-width: 991px) and (min-width: 769px) {
  .professional_girls {
    padding: 0 20px 50px 20px;
  }
}
@media (max-width: 768px) and (min-width: 577px) {
  .professional_girls {
    padding: 0 15px 40px 15px;
  }
}
@media (max-width: 576px) {
  .professional_girls {
    padding: 0 10px 30px 10px;
  }
}
@media (max-width: 576px) {
  .professional_girls .professional-girls-header {
    text-align: center;
  }
}
.professional_girls h2 {
  text-align: center;
  color: #fff;
  font-weight: 600;
  font-size: 40px;
  margin: 0 auto 40px auto;
  max-width: 50%;
  line-height: 1.2;
}
@media (max-width: 991px) and (min-width: 769px) {
  .professional_girls h2 {
    max-width: 100%;
    margin-bottom: 30px;
    font-size: 34px;
  }
}
@media (max-width: 768px) and (min-width: 577px) {
  .professional_girls h2 {
    max-width: 100%;
    margin-bottom: 25px;
    font-size: 28px;
  }
}
@media (max-width: 576px) {
  .professional_girls h2 {
    max-width: 100%;
    margin-bottom: 20px;
    font-size: 22px;
    text-align: center;
  }
}
.professional_girls .professional_girls_card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  padding: 40px 40px;
  position: relative;
  height: 100%;
}
@media (max-width: 991px) and (min-width: 769px) {
  .professional_girls .professional_girls_card {
    padding: 30px 30px;
    margin-bottom: 15px;
  }
}
@media (max-width: 768px) and (min-width: 577px) {
  .professional_girls .professional_girls_card {
    padding: 25px 25px;
    margin-bottom: 15px;
  }
}
@media (max-width: 576px) {
  .professional_girls .professional_girls_card {
    padding: 20px 20px;
    margin-bottom: 10px;
  }
}
.professional_girls .professional_girls_card .card-content {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.professional_girls .professional_girls_card .card-text {
  flex-grow: 1;
}
.professional_girls .professional_girls_card h3 {
  color: #000;
  font-weight: 500;
  font-size: 28px;
  margin-bottom: 40px;
  max-width: 60%;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
  line-height: 1.3;
}
@media (max-width: 991px) {
  .professional_girls .professional_girls_card h3 {
    max-width: 100%;
    font-size: 24px;
    margin-bottom: 30px;
  }
}
@media (max-width: 768px) {
  .professional_girls .professional_girls_card h3 {
    max-width: 100%;
    font-size: 20px;
    margin-bottom: 25px;
  }
}
.professional_girls .professional_girls_card p {
  color: rgba(0, 0, 0, 0.6980392157);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 20px;
  line-height: 1.5;
}
@media (max-width: 991px) and (min-width: 769px) {
  .professional_girls .professional_girls_card p {
    font-size: 18px;
    line-height: 1.4;
  }
}
@media (max-width: 768px) and (min-width: 577px) {
  .professional_girls .professional_girls_card p {
    font-size: 16px;
    line-height: 1.4;
  }
}
.professional_girls .professional_girls_card li p {
  color: rgba(0, 0, 0, 0.6980392157);
  font-weight: 400;
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 1.4;
}
@media (max-width: 991px) and (min-width: 769px) {
  .professional_girls .professional_girls_card li p {
    font-size: 16px;
  }
}
@media (max-width: 768px) and (min-width: 577px) {
  .professional_girls .professional_girls_card li p {
    font-size: 15px;
  }
}
.professional_girls .professional_girls_card li span {
  color: rgba(0, 0, 0, 0.6980392157);
  font-weight: 400;
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 1.4;
}
@media (max-width: 991px) and (min-width: 769px) {
  .professional_girls .professional_girls_card li span {
    font-size: 16px;
  }
}
@media (max-width: 768px) and (min-width: 577px) {
  .professional_girls .professional_girls_card li span {
    font-size: 15px;
  }
}
@media (max-width: 576px) {
  .professional_girls .row {
    margin: 0;
  }
}
@media (max-width: 576px) {
  .professional_girls .col-lg-6, .professional_girls .col-md-6 {
    padding: 0 5px;
  }
}

.description {
  padding: 0 0 60px 0;
}
@media (max-width: 991px) and (min-width: 769px) {
  .description {
    padding: 0 20px 30px 20px;
  }
}
@media (max-width: 768px) and (min-width: 577px) {
  .description {
    padding: 0 15px 30px 15px;
  }
}
@media (max-width: 768px) {
  .description {
    padding: 0 10px 20px 10px;
  }
}
.description table {
  width: 100%;
  border-collapse: collapse;
  font-family: Arial, sans-serif;
  border-radius: 10px;
  overflow: hidden;
  text-align: left;
  margin-top: 30px;
}
@media (max-width: 768px) {
  .description table {
    margin-top: 20px;
  }
}
.description table thead {
  background: linear-gradient(98.21deg, #f05a8e 6.3%, #ed1c24 70.34%);
}
.description table thead th {
  padding: 16px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
.description table thead th:last-child {
  border-right: none;
}
.description table tbody tr:nth-child(odd) {
  background-color: #f9d0da;
}
.description table tbody tr:nth-child(even) {
  background-color: #fbc3cf;
}
.description table tbody td:first-child {
  border-left: none;
}
.description table tbody td:last-child {
  border-right: none;
}
.description table tbody td {
  border: 1px solid #fff;
  padding: 16px;
  font-size: 15px;
  color: #000000;
  font-weight: 500;
}
.description table tbody td b, .description table tbody td strong {
  color: #000000;
  font-weight: 600;
}
.description table tbody td span {
  color: #000000;
}
.description table tbody td p {
  color: #000000;
  margin: 0;
}
.description table tbody td li {
  color: #000000;
}
.description h1 {
  color: #fff;
  font-weight: 600;
  font-size: 36px;
  margin-bottom: 15px;
  line-height: 1.3;
}
.description h1 strong, .description h1 b {
  color: #fff;
  font-weight: 600;
  font-size: inherit;
}
@media (max-width: 991px) {
  .description h1 {
    font-size: 30px;
    margin-bottom: 12px;
  }
  .description h1 strong, .description h1 b {
    font-size: inherit;
  }
}
@media (max-width: 768px) {
  .description h1 {
    font-size: 26px;
    margin-bottom: 10px;
  }
  .description h1 strong, .description h1 b {
    font-size: inherit;
  }
}
@media (max-width: 576px) {
  .description h1 {
    font-size: 22px;
    margin-bottom: 8px;
  }
  .description h1 strong, .description h1 b {
    font-size: inherit;
  }
}
.description h2 {
  color: #fff;
  font-weight: 600;
  font-size: 30px;
  margin-bottom: 12px;
  line-height: 1.4;
}
.description h2 strong, .description h2 b {
  color: #fff;
  font-weight: 600;
  font-size: inherit;
}
@media (max-width: 991px) {
  .description h2 {
    font-size: 26px;
    margin-bottom: 10px;
  }
  .description h2 strong, .description h2 b {
    font-size: inherit;
  }
}
@media (max-width: 768px) {
  .description h2 {
    font-size: 22px;
    margin-bottom: 8px;
  }
  .description h2 strong, .description h2 b {
    font-size: inherit;
  }
}
@media (max-width: 576px) {
  .description h2 {
    font-size: 20px;
    margin-bottom: 6px;
  }
  .description h2 strong, .description h2 b {
    font-size: inherit;
  }
}
.description h3 {
  color: #fff;
  font-weight: 500;
  font-size: 24px;
  margin-bottom: 10px;
  line-height: 1.5;
}
.description h3 strong, .description h3 b {
  color: #fff;
  font-weight: 500;
  font-size: inherit;
}
@media (max-width: 991px) {
  .description h3 {
    font-size: 20px;
    margin-bottom: 8px;
  }
  .description h3 strong, .description h3 b {
    font-size: inherit;
  }
}
@media (max-width: 768px) {
  .description h3 {
    font-size: 18px;
    margin-bottom: 6px;
  }
  .description h3 strong, .description h3 b {
    font-size: inherit;
  }
}
@media (max-width: 576px) {
  .description h3 {
    font-size: 16px;
    margin-bottom: 5px;
  }
  .description h3 strong, .description h3 b {
    font-size: inherit;
  }
}
.description h4 {
  color: #fff;
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 8px;
  line-height: 1.5;
}
.description h4 strong, .description h4 b {
  color: #fff;
  font-weight: 500;
  font-size: inherit;
}
@media (max-width: 991px) {
  .description h4 {
    font-size: 18px;
    margin-bottom: 6px;
  }
  .description h4 strong, .description h4 b {
    font-size: inherit;
  }
}
@media (max-width: 768px) {
  .description h4 {
    font-size: 16px;
    margin-bottom: 5px;
  }
  .description h4 strong, .description h4 b {
    font-size: inherit;
  }
}
@media (max-width: 576px) {
  .description h4 {
    font-size: 16px;
    margin-bottom: 4px;
  }
  .description h4 strong, .description h4 b {
    font-size: inherit;
  }
}
.description h5 {
  color: #fff;
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 6px;
  line-height: 1.5;
}
.description h5 strong, .description h5 b {
  color: #fff;
  font-weight: 500;
  font-size: inherit;
}
@media (max-width: 991px) {
  .description h5 {
    font-size: 16px;
    margin-bottom: 5px;
  }
  .description h5 strong, .description h5 b {
    font-size: inherit;
  }
}
@media (max-width: 768px) {
  .description h5 {
    font-size: 16px;
    margin-bottom: 4px;
  }
  .description h5 strong, .description h5 b {
    font-size: inherit;
  }
}
@media (max-width: 576px) {
  .description h5 {
    font-size: 16px;
    margin-bottom: 3px;
  }
  .description h5 strong, .description h5 b {
    font-size: inherit;
  }
}
.description h6 {
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 5px;
  line-height: 1.5;
}
.description h6 strong, .description h6 b {
  color: #fff;
  font-weight: 500;
  font-size: inherit;
}
@media (max-width: 991px) {
  .description h6 {
    font-size: 16px;
    margin-bottom: 4px;
  }
  .description h6 strong, .description h6 b {
    font-size: inherit;
  }
}
@media (max-width: 768px) {
  .description h6 {
    font-size: 16px;
    margin-bottom: 3px;
  }
  .description h6 strong, .description h6 b {
    font-size: inherit;
  }
}
@media (max-width: 576px) {
  .description h6 {
    font-size: 16px;
    margin-bottom: 2px;
  }
  .description h6 strong, .description h6 b {
    font-size: inherit;
  }
}
.description p {
  margin-bottom: 1.5rem;
  font-size: 17px;
  color: #fff;
  line-height: 1.6;
}
@media (max-width: 991px) {
  .description p {
    font-size: 16px;
    margin-bottom: 1.2rem;
  }
}
@media (max-width: 768px) {
  .description p {
    font-size: 16px;
    margin-bottom: 1rem;
  }
}

.faq-section {
  padding: 0 0 70px 0;
}
@media (max-width: 991px) and (min-width: 769px) {
  .faq-section {
    padding: 0 20px 50px 20px;
  }
}
@media (max-width: 768px) and (min-width: 577px) {
  .faq-section {
    padding: 0 15px 40px 15px;
  }
}
@media (max-width: 576px) {
  .faq-section {
    padding: 0 10px 30px 10px;
  }
}
.faq-section .faq-container {
  background: linear-gradient(135deg, #ff6b9d 0%, #ff4757 100%);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
@media (max-width: 991px) and (min-width: 769px) {
  .faq-section .faq-container {
    padding: 35px 60px 35px 60px;
    border-radius: 18px;
  }
}
@media (max-width: 768px) and (min-width: 577px) {
  .faq-section .faq-container {
    padding: 30px 40px;
    border-radius: 16px;
  }
}
@media (max-width: 576px) {
  .faq-section .faq-container {
    padding: 25px 20px;
    border-radius: 14px;
  }
}
@media screen and (min-width: 992px) {
  .faq-section .faq-container .faq-content {
    padding: 40px 0px 40px 80px;
  }
}
@media (max-width: 576px) {
  .faq-section .faq-container .faq-content {
    text-align: center;
  }
}
@media (max-width: 576px) {
  .faq-section .faq-container .faq-image-wrapper {
    text-align: center;
    margin-top: 20px;
  }
}
@media (max-width: 576px) {
  .faq-section .faq-container .faq-image {
    margin: 0 auto;
  }
}
.faq-section .faq-container .faq-title {
  color: white;
  font-size: 40px;
  font-weight: 300;
  letter-spacing: 2px;
  margin-bottom: 0;
  padding: 0;
  line-height: 1.2;
}
@media (max-width: 991px) and (min-width: 769px) {
  .faq-section .faq-container .faq-title {
    font-size: 34px;
    letter-spacing: 1.5px;
  }
}
@media (max-width: 768px) and (min-width: 577px) {
  .faq-section .faq-container .faq-title {
    font-size: 28px;
    letter-spacing: 1px;
  }
}
@media (max-width: 576px) {
  .faq-section .faq-container .faq-title {
    font-size: 22px;
    letter-spacing: 0.5px;
    text-align: center;
  }
}
@media (min-width: 992px) {
  .faq-section .faq-container .accordion {
    margin-right: 60px;
  }
}
.faq-section .faq-container .accordion {
  background: transparent;
}
@media (max-width: 576px) {
  .faq-section .faq-container .accordion {
    margin-right: 0;
  }
}
.faq-section .faq-container .accordion-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 0;
}
@media (max-width: 576px) {
  .faq-section .faq-container .accordion-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }
}
.faq-section .faq-container .accordion-item:last-child {
  border-bottom: none;
}
.faq-section .faq-container .accordion-button {
  background: transparent;
  border: none;
  color: white;
  font-size: 16px;
  font-weight: 500;
  padding: 25px 0;
  box-shadow: none;
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  text-align: left;
}
@media (max-width: 991px) and (min-width: 769px) {
  .faq-section .faq-container .accordion-button {
    font-size: 15px;
    padding: 22px 0;
  }
}
@media (max-width: 768px) and (min-width: 577px) {
  .faq-section .faq-container .accordion-button {
    font-size: 14px;
    padding: 20px 0;
  }
}
@media (max-width: 576px) {
  .faq-section .faq-container .accordion-button {
    font-size: 13px;
    padding: 18px 0;
  }
}
.faq-section .faq-container .accordion-button:not(.collapsed) {
  background: transparent;
  color: white;
  box-shadow: none;
}
.faq-section .faq-container .accordion-button:focus {
  box-shadow: none;
  background: transparent;
}
.faq-section .faq-container .accordion-button:hover {
  opacity: 0.8;
}
.faq-section .faq-container .accordion-button::after {
  content: "+";
  background: none;
  background-image: none;
  font-size: 20px;
  font-weight: 300;
  color: white;
  transition: all 0.3s ease;
  margin-left: auto;
  width: auto;
  height: auto;
}
@media (max-width: 576px) {
  .faq-section .faq-container .accordion-button::after {
    font-size: 18px;
  }
}
.faq-section .faq-container .accordion-button:not(.collapsed)::after {
  content: "−";
  background-image: none;
  transform: rotate(0deg);
}
.faq-section .faq-container .faq-number {
  margin-right: 15px;
  font-weight: 500;
  color: white;
  font-size: 16px;
}
@media (max-width: 991px) and (min-width: 769px) {
  .faq-section .faq-container .faq-number {
    font-size: 15px;
    margin-right: 12px;
  }
}
@media (max-width: 768px) and (min-width: 577px) {
  .faq-section .faq-container .faq-number {
    font-size: 14px;
    margin-right: 10px;
  }
}
@media (max-width: 576px) {
  .faq-section .faq-container .faq-number {
    font-size: 13px;
    margin-right: 8px;
  }
}
.faq-section .faq-container .faq-question {
  flex: 1;
  font-weight: 400;
}
@media (max-width: 991px) and (min-width: 769px) {
  .faq-section .faq-container .faq-question {
    font-size: 15px;
  }
}
@media (max-width: 768px) and (min-width: 577px) {
  .faq-section .faq-container .faq-question {
    font-size: 14px;
  }
}
@media (max-width: 576px) {
  .faq-section .faq-container .faq-question {
    font-size: 13px;
    line-height: 1.4;
  }
}
.faq-section .faq-container .accordion-body {
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.6;
  padding: 0 0 25px 30px;
  border: none;
}
@media (max-width: 991px) and (min-width: 769px) {
  .faq-section .faq-container .accordion-body {
    font-size: 13px;
    padding: 0 0 22px 25px;
  }
}
@media (max-width: 768px) and (min-width: 577px) {
  .faq-section .faq-container .accordion-body {
    font-size: 12px;
    padding: 0 0 20px 22px;
  }
}
@media (max-width: 576px) {
  .faq-section .faq-container .accordion-body {
    font-size: 11px;
    padding: 0 0 18px 20px;
    line-height: 1.5;
  }
}
@media (max-width: 576px) {
  .faq-section .faq-container .faq-answer {
    text-align: left;
  }
}
.faq-section .faq-container .accordion-collapse {
  background: transparent;
}
@media (max-width: 576px) {
  .faq-section .row {
    margin: 0;
  }
}
@media (max-width: 576px) {
  .faq-section .col-lg-8, .faq-section .col-lg-4 {
    padding: 0 5px;
  }
}

.tags {
  padding: 70px 0;
}
@media (max-width: 991px) and (min-width: 769px) {
  .tags {
    padding: 50px 20px;
  }
}
@media (max-width: 768px) and (min-width: 577px) {
  .tags {
    padding: 40px 15px;
  }
}
@media (max-width: 576px) {
  .tags {
    padding: 30px 10px;
  }
}
.tags h2 {
  font-size: 40px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  margin-bottom: 50px;
  line-height: 1.2;
}
@media (max-width: 991px) and (min-width: 769px) {
  .tags h2 {
    font-size: 34px;
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) and (min-width: 577px) {
  .tags h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }
}
@media (max-width: 576px) {
  .tags h2 {
    font-size: 22px;
    margin-bottom: 25px;
  }
}
.tags .button-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 12px;
  width: 100%;
  /* First 4 buttons special colors using nth-child */
}
@media (max-width: 991px) and (min-width: 769px) {
  .tags .button-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
  }
}
@media (max-width: 768px) and (min-width: 577px) {
  .tags .button-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 576px) {
  .tags .button-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }
}
@media (max-width: 480px) {
  .tags .button-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
  }
}
.tags .button-grid .jaipur-btn {
  padding: 12px 24px;
  border-radius: 14px;
  border: 1px solid #333;
  font-size: 14px;
  font-weight: 500;
  color: white;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  min-width: 80px;
  text-decoration: none;
  display: inline-block;
  background: #000;
}
@media (max-width: 991px) and (min-width: 769px) {
  .tags .button-grid .jaipur-btn {
    padding: 11px 20px;
    font-size: 13px;
    min-width: 70px;
    border-radius: 12px;
  }
}
@media (max-width: 768px) and (min-width: 577px) {
  .tags .button-grid .jaipur-btn {
    padding: 10px 16px;
    font-size: 12px;
    min-width: 60px;
    border-radius: 10px;
  }
}
@media (max-width: 576px) {
  .tags .button-grid .jaipur-btn {
    padding: 8px 12px;
    font-size: 11px;
    min-width: 50px;
    border-radius: 8px;
  }
}
@media (max-width: 480px) {
  .tags .button-grid .jaipur-btn {
    padding: 6px 10px;
    font-size: 10px;
    min-width: 40px;
    border-radius: 6px;
  }
}
.tags .button-grid .jaipur-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
  border-color: #666;
  background: #111;
}
@media (max-width: 576px) {
  .tags .button-grid .jaipur-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.15);
  }
}
.tags .button-grid .jaipur-btn:active {
  transform: translateY(0);
}
.tags .button-grid .jaipur-btn:nth-child(1) {
  background: linear-gradient(135deg, #ff6b6b, #ff5252);
  border: 2px solid transparent;
}
.tags .button-grid .jaipur-btn:nth-child(2) {
  background: linear-gradient(135deg, #4fc3f7, #2196f3);
  border: 2px solid transparent;
}
.tags .button-grid .jaipur-btn:nth-child(3) {
  background: linear-gradient(135deg, #f48fb1, #e91e63);
  border: 2px solid transparent;
}
.tags .button-grid .jaipur-btn:nth-child(4) {
  background: linear-gradient(135deg, #7986cb, #3f51b5);
  border: 2px solid transparent;
}
.tags .button-grid .jaipur-btn:nth-child(1):hover,
.tags .button-grid .jaipur-btn:nth-child(2):hover,
.tags .button-grid .jaipur-btn:nth-child(3):hover,
.tags .button-grid .jaipur-btn:nth-child(4):hover {
  border-color: transparent;
  background: linear-gradient(135deg, #ff6b6b, #ff5252);
}
.tags .button-grid .jaipur-btn:nth-child(2):hover {
  background: linear-gradient(135deg, #4fc3f7, #2196f3);
}
.tags .button-grid .jaipur-btn:nth-child(3):hover {
  background: linear-gradient(135deg, #f48fb1, #e91e63);
}
.tags .button-grid .jaipur-btn:nth-child(4):hover {
  background: linear-gradient(135deg, #7986cb, #3f51b5);
}
@media (max-width: 576px) {
  .tags .container {
    padding: 0 10px;
  }
}

#footer-content {
  background-color: #2d2d2d;
  padding: 50px 0 20px 0;
  color: #fff;
}
#footer-content p {
  margin-bottom: 0px !important;
}
@media (max-width: 991px) and (min-width: 769px) {
  #footer-content {
    padding: 40px 0 20px 0;
  }
}
@media (max-width: 768px) and (min-width: 577px) {
  #footer-content {
    padding: 30px 0 20px 0;
  }
}
@media (max-width: 576px) {
  #footer-content {
    padding: 25px 0 15px 0;
  }
}
#footer-content .footer-top {
  padding-bottom: 60px;
}
@media (max-width: 991px) {
  #footer-content .footer-top {
    padding-bottom: 40px;
  }
}
@media (max-width: 768px) {
  #footer-content .footer-top {
    padding-bottom: 20px;
  }
}
#footer-content .footer-top h2 {
  background: linear-gradient(98.21deg, #ed1c24 6.3%, #f05a8e 70.34%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  font-size: 42px;
  margin-bottom: 30px;
  line-height: 1.2;
}
@media (max-width: 991px) and (min-width: 769px) {
  #footer-content .footer-top h2 {
    font-size: 36px;
    margin-bottom: 25px;
  }
}
@media (max-width: 768px) and (min-width: 577px) {
  #footer-content .footer-top h2 {
    font-size: 30px;
    margin-bottom: 20px;
  }
}
@media (max-width: 576px) {
  #footer-content .footer-top h2 {
    font-size: 24px;
    margin-bottom: 15px;
  }
}
#footer-content .footer-top .Warning-text {
  font-weight: 500;
  font-size: 16px;
  text-transform: capitalize;
  color: #fff;
  text-align: justify;
  line-height: 1.6;
}
@media (max-width: 991px) and (min-width: 769px) {
  #footer-content .footer-top .Warning-text {
    font-size: 15px;
    line-height: 1.5;
  }
}
@media (max-width: 768px) and (min-width: 577px) {
  #footer-content .footer-top .Warning-text {
    font-size: 14px;
    line-height: 1.4;
  }
}
@media (max-width: 576px) {
  #footer-content .footer-top .Warning-text {
    font-size: 13px;
    line-height: 1.4;
    text-align: left;
  }
}
#footer-content .footer-center {
  padding: 0 0 50px 0;
  border-bottom: 1px solid rgba(237, 28, 36, 0.1490196078);
}
@media (max-width: 991px) {
  #footer-content .footer-center {
    padding: 0 0 40px 0;
  }
}
@media (max-width: 768px) {
  #footer-content .footer-center {
    padding: 0 20px 30px 20px;
  }
}
@media (max-width: 576px) {
  #footer-content .footer-center {
    padding: 0 0px 25px 0px;
  }
}
#footer-content .footer-center .footer-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.6;
}
@media (max-width: 991px) and (min-width: 769px) {
  #footer-content .footer-center .footer-text {
    font-size: 15px;
    margin-bottom: 18px;
  }
}
@media (max-width: 768px) and (min-width: 577px) {
  #footer-content .footer-center .footer-text {
    font-size: 14px;
    margin-bottom: 15px;
  }
}
@media (max-width: 576px) {
  #footer-content .footer-center .footer-text {
    font-size: 13px;
    margin-bottom: 12px;
    line-height: 1.5;
  }
}
#footer-content .footer-center .footer-nav li {
  margin-bottom: 8px;
}
@media (max-width: 576px) {
  #footer-content .footer-center .footer-nav li {
    margin-bottom: 6px;
  }
}
#footer-content .footer-center .footer-nav li a {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  padding: 0;
  transition: color 0.3s ease;
}
@media (max-width: 991px) and (min-width: 769px) {
  #footer-content .footer-center .footer-nav li a {
    font-size: 15px;
  }
}
@media (max-width: 768px) and (min-width: 577px) {
  #footer-content .footer-center .footer-nav li a {
    font-size: 14px;
  }
}
@media (max-width: 576px) {
  #footer-content .footer-center .footer-nav li a {
    font-size: 13px;
    margin-bottom: 8px;
  }
}
#footer-content .footer-center .footer-nav li a:hover {
  color: rgb(255, 255, 255);
}
#footer-content .footer-center .footer-contact {
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
  line-height: 1.6;
}
@media (max-width: 991px) and (min-width: 769px) {
  #footer-content .footer-center .footer-contact {
    font-size: 15px;
  }
}
@media (max-width: 768px) and (min-width: 577px) {
  #footer-content .footer-center .footer-contact {
    font-size: 14px;
  }
}
@media (max-width: 576px) {
  #footer-content .footer-center .footer-contact {
    font-size: 13px;
    line-height: 1.5;
  }
}
#footer-content .footer-center .footer-logo {
  max-width: 220px;
}
@media (max-width: 991px) and (min-width: 769px) {
  #footer-content .footer-center .footer-logo {
    max-width: 200px;
  }
}
@media (max-width: 768px) and (min-width: 577px) {
  #footer-content .footer-center .footer-logo {
    max-width: 180px;
  }
}
@media (max-width: 576px) {
  #footer-content .footer-center .footer-logo {
    max-width: 160px;
  }
}
#footer-content .footer-bottom {
  color: #fff;
  text-align: center;
  font-size: 14px;
  padding-top: 20px;
  line-height: 1.4;
}
@media (max-width: 991px) and (min-width: 769px) {
  #footer-content .footer-bottom {
    font-size: 13px;
    padding-top: 18px;
  }
}
@media (max-width: 768px) and (min-width: 577px) {
  #footer-content .footer-bottom {
    font-size: 12px;
    padding-top: 15px;
  }
}
@media (max-width: 576px) {
  #footer-content .footer-bottom {
    font-size: 11px;
    padding-top: 12px;
  }
}
@media (max-width: 576px) {
  #footer-content .row {
    margin: 0;
  }
}
@media (max-width: 576px) {
  #footer-content .col-lg-5, #footer-content .col-lg-2, #footer-content .col-lg-3 {
    padding: 0 5px;
    margin-bottom: 20px;
  }
}

.city_banner {
  padding: 60px 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.city_banner h1 {
  color: #fff;
  font-weight: 400;
  font-size: 44px;
  margin: 0px;
}
@media (max-width: 768px) {
  .city_banner h1 {
    font-size: 34px;
  }
}
@media (max-width: 576px) {
  .city_banner h1 {
    font-size: 26px;
  }
}
.city_banner .breadcrumb {
  display: flex;
  align-items: center;
  font-size: 14px;
  padding: 15px 0;
}
.city_banner .breadcrumb .breadcrumb-item {
  color: #ff4081;
  text-decoration: none;
  transition: color 0.2s ease;
}
.city_banner .breadcrumb .breadcrumb-item:hover {
  color: #ff6b9d;
}
.city_banner .breadcrumb .breadcrumb-separator {
  color: #ff4081;
  margin: 0 8px;
  font-size: 14px;
}
.city_banner .breadcrumb .breadcrumb-item.current {
  color: #ff4081;
  pointer-events: none;
}

.city-intro {
  padding: 70px 0;
  text-align: center;
}
@media (max-width: 768px) {
  .city-intro {
    padding: 40px 10px;
  }
}
.city-intro h2 {
  color: #fff;
  font-weight: 500;
  font-size: 40px;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .city-intro h2 {
    font-size: 30px !important;
  }
}
@media (max-width: 576px) {
  .city-intro h2 {
    font-size: 24px !important;
  }
}
.city-intro p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .city-intro p {
    font-size: 16px;
    max-width: 100%;
  }
}

.call_girls_gallery {
  padding: 70px 0;
}
@media (max-width: 768px) {
  .call_girls_gallery {
    padding: 40px 10px;
  }
}
@media (max-width: 576px) {
  .call_girls_gallery {
    padding: 30px 10px;
  }
}
.call_girls_gallery h2 {
  color: #fff;
  font-weight: 500;
  font-size: 40px;
  margin-bottom: 30px;
  text-align: center;
}
@media (max-width: 768px) {
  .call_girls_gallery h2 {
    font-size: 30px;
    margin-bottom: 25px;
  }
}
@media (max-width: 576px) {
  .call_girls_gallery h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
.call_girls_gallery .gallery {
  margin-bottom: 20px;
  object-fit: cover;
  width: 100%;
  height: auto;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .call_girls_gallery .gallery {
    margin-bottom: 15px;
  }
}
@media (max-width: 576px) {
  .call_girls_gallery .gallery {
    margin-bottom: 10px;
  }
}
.call_girls_gallery .gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
@media (max-width: 768px) {
  .call_girls_gallery .gallery-container {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
  }
}
@media (max-width: 576px) {
  .call_girls_gallery .gallery-container {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
.call_girls_gallery .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  transition: transform 0.3s ease;
}
.call_girls_gallery .gallery-item:hover {
  transform: scale(1.02);
}
@media (max-width: 768px) {
  .call_girls_gallery .gallery-item:hover {
    transform: none;
  }
}
.call_girls_gallery .gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: #fff;
  padding: 20px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
@media (max-width: 768px) {
  .call_girls_gallery .gallery-overlay {
    padding: 15px;
  }
}
@media (max-width: 576px) {
  .call_girls_gallery .gallery-overlay {
    padding: 10px;
  }
}
.call_girls_gallery .gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}
@media (max-width: 768px) {
  .call_girls_gallery .gallery-item:hover .gallery-overlay {
    transform: translateY(0);
  }
}
@media (max-width: 991px) {
  .call_girls_gallery .featured {
    margin-bottom: 20px;
  }
}

.br {
  border-left: 1px solid #F05A8E;
}

.call_girl_detail .bg {
  background: linear-gradient(98.21deg, #f05a8e 6.3%, #ed1c24 70.34%);
  padding: 30px 50px;
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  .call_girl_detail .bg {
    padding: 20px 20px;
  }
}
.call_girl_detail .bg .title {
  margin-bottom: 20px;
}
.call_girl_detail .bg .title h2 {
  color: #fff;
  font-weight: 500;
  font-size: 40px;
}
@media (max-width: 768px) {
  .call_girl_detail .bg .title h2 {
    font-size: 30px;
  }
}
@media (max-width: 576px) {
  .call_girl_detail .bg .title h2 {
    font-size: 24px;
  }
}
.call_girl_detail .bg .title span.city {
  color: #eaff00;
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .call_girl_detail .bg .title .contact img {
    max-width: 100px;
  }
}
.call_girl_detail .bg p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  margin-bottom: 20px;
}
.call_girl_detail h4 {
  color: #fff;
  font-weight: 500;
  font-size: 24px;
  margin-bottom: 10px;
  padding: 0;
}
@media (max-width: 768px) {
  .call_girl_detail h4 {
    font-size: 20px;
  }
}
@media (max-width: 576px) {
  .call_girl_detail h4 {
    font-size: 18px;
  }
}
.call_girl_detail li {
  margin-bottom: 10px;
  font-size: 16px;
}
.call_girl_detail .rate-box {
  padding: 20px;
  background-color: #000;
  border-radius: 20px;
}

.contact {
  padding: 70px 0;
}
@media (max-width: 768px) {
  .contact {
    padding: 40px 10px;
  }
}
.contact .contact-card {
  background: linear-gradient(138.1deg, #f05a8e 22.1%, #ed1c24 74.09%);
  border-radius: 40px;
}
.contact .contact-card .social-nav {
  padding: 40px 20px;
}
.contact .contact-card .social-nav i {
  background-color: #fff;
  color: #f05a8e;
  padding: 12px 13px;
  border-radius: 50%;
  margin-right: 20px;
}
.contact .contact-card .social-nav a {
  color: #fff;
  font-size: 20px;
  transition: color 0.3s ease;
  margin-bottom: 20px;
  font-weight: 600;
}
@media (max-width: 768px) {
  .contact .contact-card .social-nav a {
    font-size: 18px;
  }
  .contact .contact-card .social-nav a i {
    margin-right: 15px;
  }
}
@media (max-width: 768px) {
  .contact form {
    margin-top: 20px;
  }
}
.contact input,
.contact textarea {
  border-radius: 18px;
  padding: 18px 25px;
  margin-bottom: 30px;
  width: 100%;
  font-size: 16px;
  color: #9da3ae;
  background-color: #fff;
  outline: none;
  box-shadow: none;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}
.contact input:focus,
.contact textarea:focus {
  border-color: #f05a8e;
  box-shadow: 0 0 15px rgba(240, 90, 142, 0.2);
}
.contact input::placeholder,
.contact textarea::placeholder {
  color: #9da3ae;
  opacity: 0.7;
}
.contact textarea {
  height: 220px;
  resize: vertical;
  min-height: 150px;
}
.contact .btn-submit {
  padding: 18px 50px;
  background: linear-gradient(98.21deg, #f05a8e 6.3%, #ed1c24 70.34%);
  font-weight: 600;
  text-transform: capitalize;
  border-radius: 18px;
  color: #fff;
  font-size: 16px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(240, 90, 142, 0.3);
}
.contact .btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(240, 90, 142, 0.4);
  background: linear-gradient(98.21deg, #ed1c24 6.3%, #f05a8e 70.34%);
}
.contact .btn-submit:active {
  transform: translateY(0);
}
@media screen and (max-width: 768px) {
  .contact .btn-submit {
    padding: 16px 40px;
    font-size: 15px;
  }
}

.register {
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  .register {
    padding: 60px 20px;
  }
}
.register .form-container {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}
.register .form-container h2 {
  color: #fff;
  font-weight: 600;
  font-size: 42px;
  text-align: center;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .register .form-container h2 {
    font-size: 34px;
  }
}
@media (max-width: 576px) {
  .register .form-container h2 {
    font-size: 27px;
  }
}
.register .form-container form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.register .form-container form .form-row {
  display: flex;
  gap: 20px;
}
.register .form-container form .form-row .form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.register .form-container form .form-row .form-group label {
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 500;
}
.register .form-container form input {
  padding: 14px 28px;
  font-size: 14px;
  border: none;
  border-radius: 12px;
  box-sizing: border-box;
  color: #999ba1;
}
.register .form-container form .form-check-label {
  margin-left: 10px;
}
.register .form-container form input[type=checkbox] {
  padding: 10px;
  border-radius: 0px;
  margin-right: 0px;
}
.register .form-container form .checkbox-group {
  display: flex;
  align-items: center;
  font-size: 13px;
}
.register .form-container form .checkbox-group input[type=checkbox] {
  margin-right: 10px;
}
.register .form-container form .checkbox-group a {
  color: #fff;
  text-decoration: underline;
}
.register .form-container form .btn-submit {
  margin-top: 10px;
  width: 100%;
  padding: 14px;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 999px;
  background: linear-gradient(to right, #f05a8e, #ed1c24);
  color: #fff;
  cursor: pointer;
  transition: 0.3s ease;
}
.register .form-container form .btn-submit:hover {
  opacity: 0.9;
}

.signin-wrapper {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  padding: 100px 0;
}
@media (max-width: 768px) {
  .signin-wrapper {
    padding: 60px 20px;
  }
}
.signin-wrapper .signin-container {
  background-color: #000000;
  padding: 0;
  width: 100%;
}
.signin-wrapper .signin-title {
  color: #ffffff;
  font-size: 64px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: -2px;
}
@media (max-width: 768px) {
  .signin-wrapper .signin-title {
    font-size: 48px;
    margin-bottom: 20px;
  }
}
@media (max-width: 576px) {
  .signin-wrapper .signin-title {
    font-size: 36px;
  }
}
.signin-wrapper .form-label {
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
  display: block;
}
.signin-wrapper .form-control {
  background-color: #f8f9fa;
  border: none;
  border-radius: 12px;
  padding: 12px 24px;
  font-size: 16px;
  color: #666666;
  width: 100%;
  margin-bottom: 8px;
  height: 50px;
}
.signin-wrapper .form-control:focus {
  background-color: #f8f9fa;
  border: none;
  box-shadow: none;
  outline: none;
  color: #666666;
}
.signin-wrapper .form-control::placeholder {
  color: #999999;
  opacity: 1;
}
.signin-wrapper .form-group {
  margin-bottom: 20px;
}
.signin-wrapper .forgot-password {
  color: #ff4757;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  display: inline-block;
  margin-top: 12px;
}
.signin-wrapper .forgot-password:hover {
  color: #ff4757;
  text-decoration: none;
}
.signin-wrapper .account-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 50px 0 40px 0;
}
.signin-wrapper .account-text {
  color: #888888;
  font-size: 16px;
  font-weight: 400;
}
.signin-wrapper .create-account-btn {
  background-color: #f8f9fa;
  border: none;
  color: #333333;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
}
.signin-wrapper .create-account-btn:hover {
  background-color: #e9ecef;
}
.signin-wrapper .terms-section {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
  gap: 15px;
}
.signin-wrapper .terms-checkbox {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: #ffffff;
  cursor: pointer;
}
.signin-wrapper .terms-text {
  color: #fff;
  font-size: 16px;
  line-height: 1.4;
  margin: 0;
}
.signin-wrapper .terms-link {
  color: #fff;
  text-decoration: underline;
}
.signin-wrapper .terms-link:hover {
  color: #f4f4f4;
}
.signin-wrapper .login-btn {
  background: linear-gradient(135deg, #ff4757, #ff3838);
  border: none;
  color: #ffffff;
  padding: 20px 0;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.signin-wrapper .login-btn:hover {
  background: linear-gradient(135deg, #ff3838, #ff2828);
}
@media (max-width: 768px) {
  .signin-wrapper .signin-title {
    font-size: 48px;
    margin-bottom: 60px;
  }
  .signin-wrapper .account-section {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .signin-wrapper .create-account-btn {
    width: 100%;
    text-align: center;
  }
}

.blog-container {
  padding: 100px 0;
}
.blog-container .pagination-container {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}
.blog-container .pagination-btn {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  color: #333;
}
.blog-container .pagination-btn.nav-btn {
  background-color: #666;
  color: white;
}
.blog-container .pagination-btn.nav-btn:hover {
  background-color: #777;
  transform: translateY(-2px);
}
.blog-container .pagination-btn.nav-btn:disabled {
  background-color: #444;
  color: #666;
  cursor: not-allowed;
  transform: none;
}
.blog-container .pagination-btn.number-btn {
  background-color: white;
  color: #333;
  border: 1px solid #ddd;
}
.blog-container .pagination-btn.number-btn:hover {
  background-color: #f8f9fa;
  transform: translateY(-2px);
}
.blog-container .pagination-btn.number-btn.active {
  background: linear-gradient(98.21deg, #f05a8e 6.3%, #ed1c24 70.34%);
  color: white;
  border: none;
}
.blog-container .pagination-btn.number-btn.active:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(240, 90, 142, 0.4);
}
.blog-container .pagination-dots {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  color: #333;
  border-radius: 8px;
  font-weight: 500;
  border: 1px solid #ddd;
}
@media (max-width: 576px) {
  .blog-container .pagination-btn {
    width: 45px;
    height: 45px;
    font-size: 0.9rem;
  }
  .blog-container .pagination-dots {
    width: 45px;
    height: 45px;
  }
  .blog-container .pagination-container {
    gap: 6px;
  }
}
@media (max-width: 400px) {
  .blog-container .pagination-btn {
    width: 40px;
    height: 40px;
    font-size: 0.85rem;
  }
  .blog-container .pagination-dots {
    width: 40px;
    height: 40px;
  }
  .blog-container .pagination-container {
    gap: 4px;
  }
}
@media screen and (max-width: 768px) {
  .blog-container {
    padding: 60px 20px;
  }
}
.blog-container .blog-row {
  display: flex;
  gap: 20px;
  align-items: stretch;
  margin-bottom: 20px;
}
.blog-container .image-section {
  flex: 0 0 300px;
  position: relative;
}
.blog-container .image-wrapper {
  position: relative;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
}
.blog-container .image-wrapper::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(98.21deg, #f05a8e 6.3%, #ed1c24 70.34%);
  border-radius: 14px;
  z-index: -1;
}
.blog-container .blog-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}
.blog-container .content-section {
  flex: 1;
  position: relative;
  margin-left: 0;
}
.blog-container .content-wrapper {
  position: relative;
  height: 100%;
  border-radius: 12px;
  background: #000;
}
.blog-container .content-wrapper::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(98.21deg, #f05a8e 6.3%, #ed1c24 70.34%);
  border-radius: 14px;
  z-index: -1;
}
.blog-container .blog-content {
  padding: 25px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #000;
  border-radius: 10px;
}
.blog-container .blog-title {
  color: white;
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0 0 12px 0;
  line-height: 1.3;
}
.blog-container .blog-date {
  color: #888;
  font-size: 0.85rem;
  margin-bottom: 18px;
}
.blog-container .blog-text {
  color: #ccc;
  line-height: 1.5;
  margin-bottom: 20px;
  font-size: 0.9rem;
  flex-grow: 1;
}
.blog-container .blog-stats {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: auto;
}
.blog-container .stat-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #f05a8e;
  font-size: 0.85rem;
  padding: 4px 10px;
  border: 1px solid #f05a8e;
  border-radius: 15px;
  background: rgba(240, 90, 142, 0.05);
}
.blog-container .stat-item i {
  font-size: 0.75rem;
}
@media (max-width: 992px) {
  .blog-container .blog-row {
    flex-direction: column;
    gap: 10px;
  }
  .blog-container .image-section {
    flex: none;
    height: 280px;
  }
  .blog-container .blog-content {
    padding: 25px;
  }
}
@media (max-width: 768px) {
  .blog-container .image-section {
    height: 250px;
  }
  .blog-container .blog-content {
    padding: 20px;
  }
  .blog-container .blog-title {
    font-size: 1.2rem;
  }
  .blog-container .blog-text {
    font-size: 0.85rem;
  }
  .blog-container .blog-stats {
    flex-wrap: wrap;
    gap: 10px;
  }
}
@media (max-width: 576px) {
  .blog-container .image-section {
    height: 220px;
  }
  .blog-container .blog-content {
    padding: 18px;
  }
  .blog-container .blog-title {
    font-size: 1.1rem;
    line-height: 1.4;
  }
  .blog-container .blog-text {
    font-size: 0.8rem;
    line-height: 1.6;
  }
  .blog-container .blog-date {
    font-size: 0.8rem;
  }
  .blog-container .stat-item {
    font-size: 0.8rem;
    padding: 3px 8px;
  }
}
.blog-container .recent-post {
  background: #000;
  border-radius: 8px;
  position: relative;
}
.blog-container .recent-post:before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(98.21deg, #f05a8e 6.3%, #ed1c24 70.34%);
  border-radius: 14px;
  z-index: -1;
}
.blog-container .recent-post .img-thumb {
  width: 100px;
  height: 100%;
  object-fit: cover;
  position: relative;
}
.blog-container .recent-post .img-thumb:before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(98.21deg, #f05a8e 6.3%, #ed1c24 70.34%);
  border-radius: 14px;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .blog-container .recent-post .img-thumb {
    max-width: 100%;
  }
}
.blog-container .recent-post .info-tag {
  font-size: 0.875rem;
  color: #ff005d;
  border: 1px solid #ff005d;
  border-radius: 5px;
  padding: 4px 8px;
}
.blog-container .recent-post .info-tag i {
  font-size: 1rem;
}

.section-container {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .section-container {
    margin-top: 20px;
  }
}
.section-container .category-section,
.section-container .tags-section {
  position: relative;
  margin-bottom: 30px;
  border-radius: 15px;
  background: #000;
}
.section-container .category-section::before,
.section-container .tags-section::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(98.21deg, #f05a8e 6.3%, #ed1c24 70.34%);
  border-radius: 17px;
  z-index: -1;
}
.section-container .section-content {
  padding: 25px;
  background: #000;
  border-radius: 13px;
}
.section-container .section-title {
  color: white;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.section-container .category-item {
  display: block;
  width: 100%;
  padding: 12px 20px;
  margin-bottom: 12px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}
.section-container .category-item.active {
  background: linear-gradient(98.21deg, #f05a8e 6.3%, #ed1c24 70.34%);
  color: white;
}
.section-container .category-item:not(.active) {
  background: transparent;
  color: white;
  border: 1px solid #333;
}
.section-container .category-item:not(.active):hover {
  border-color: #f05a8e;
  color: #f05a8e;
}
.section-container .category-item.active:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(240, 90, 142, 0.3);
}
.section-container .tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.section-container .tag-item {
  padding: 8px 16px;
  background: transparent;
  color: white;
  border: 1px solid #333;
  border-radius: 20px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  cursor: pointer;
}
.section-container .tag-item:hover {
  border-color: #f05a8e;
  color: #f05a8e;
  transform: translateY(-2px);
}
@media (max-width: 576px) {
  .section-container .section-content {
    padding: 20px;
  }
  .section-container .section-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
  }
  .section-container .category-item {
    padding: 10px 18px;
    font-size: 0.9rem;
  }
  .section-container .tag-item {
    font-size: 0.85rem;
    padding: 6px 14px;
  }
  .section-container .tags-container {
    gap: 8px;
  }
}

.area_girls {
  padding: 70px 0;
}
@media screen and (max-width: 991px) {
  .area_girls {
    padding: 50px 0;
  }
}
@media screen and (max-width: 768px) {
  .area_girls {
    padding: 30px 0;
  }
}
.area_girls .title_area {
  text-align: center;
  margin-bottom: 70px;
}
@media screen and (max-width: 991px) {
  .area_girls .title_area {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 768px) {
  .area_girls .title_area {
    margin-bottom: 30px;
  }
}
.area_girls .title_area h2 {
  color: #fff;
  font-size: 47px;
  font-weight: 500;
}
@media screen and (max-width: 991px) and (min-width: 769px) {
  .area_girls .title_area h2 {
    font-size: 30px !important;
  }
}
@media screen and (max-width: 576px) {
  .area_girls .title_area h2 {
    font-size: 30px !important;
  }
}
.area_girls .area_girls_box {
  background: linear-gradient(98.21deg, #F05A8E 6.3%, #ED1C24 70.34%);
  border-radius: 15px;
  margin-bottom: 40px;
}
.area_girls .area_girls_box .girl_image {
  position: relative;
  overflow: hidden;
}
.area_girls .area_girls_box .girl_image .main_img {
  border-radius: 15px;
  height: 100%;
}
.area_girls .area_girls_box .girl_image .girls_icon {
  position: absolute;
  top: 13px;
  right: 16px;
}
.area_girls .area_girls_box .girl_image .girls_icon img {
  display: block;
  max-width: 40px;
  margin-bottom: 20px;
}
.area_girls .area_girls_box .girl_content {
  padding: 20px;
}
.area_girls .area_girls_box .girl_content .girl_title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.area_girls .area_girls_box .girl_content .girl_title h3 {
  color: #fff;
  font-size: 51px;
  font-weight: 500;
}
@media screen and (max-width: 991px) {
  .area_girls .area_girls_box .girl_content .girl_title h3 {
    font-size: 30px !important;
  }
}
.area_girls .area_girls_box .girl_content .girl_title span {
  color: #EAFF00;
  display: inline-block;
}
@media screen and (max-width: 991px) {
  .area_girls .area_girls_box .girl_content .button_box img {
    max-width: 130px;
  }
}
.area_girls .area_girls_box .girl_content .girl_description {
  max-width: 785px;
}
.area_girls .area_girls_box .girl_content .girl_description p {
  color: #fff;
  font-size: 15px;
  font-weight: 400;
}
.area_girls .area_girls_box .girl_content .tag_nav {
  margin-top: 30px;
  margin-bottom: 30px;
}
.area_girls .area_girls_box .girl_content .tag_nav li {
  border: 1px solid #fff;
  border-radius: 8px;
  padding: 10px 20px;
  margin: 10px 10px;
}
.area_girls .area_girls_box .girl_content .girl_box_footer {
  align-items: center;
  display: -webkit-box;
  justify-content: space-between;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 991.98px) {
  .area_girls .area_girls_box .girl_content .girl_box_footer {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 767.98px) {
  .area_girls .area_girls_box .girl_content .girl_box_footer {
    display: block;
    text-align: center;
  }
}
.area_girls .area_girls_box .girl_content .btn_girl {
  background-color: #000000;
  color: #fff;
  border-radius: 70px;
  font-size: 20px;
  padding: 12px 50px;
}
@media (max-width: 767.98px) {
  .area_girls .area_girls_box .girl_content .star_nav {
    justify-content: center;
    margin-top: 20px;
  }
}
.area_girls .area_girls_box .girl_content .star_nav li {
  margin: 0 6px;
}
.area_girls .area_girls_box .girl_content .star_nav li i {
  font-size: 22px;
  color: #EAFF00;
}

.testimonial-section {
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
  position: relative;
}
@media (max-width: 991px) and (min-width: 769px) {
  .testimonial-section {
    padding: 60px 0;
  }
}
@media (max-width: 768px) and (min-width: 577px) {
  .testimonial-section {
    padding: 50px 0;
  }
}
@media (max-width: 576px) {
  .testimonial-section {
    padding: 40px 0;
  }
}

.testimonial-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
@media (max-width: 576px) {
  .testimonial-container {
    max-width: 100%;
    padding: 0 15px;
  }
}

.testimonial-title {
  color: white;
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 60px;
  line-height: 1.2;
}
@media (max-width: 991px) and (min-width: 769px) {
  .testimonial-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
  }
}
@media (max-width: 768px) and (min-width: 577px) {
  .testimonial-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }
}
@media (max-width: 576px) {
  .testimonial-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
}

.testimonial-card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  margin: 0 20px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
@media (max-width: 991px) and (min-width: 769px) {
  .testimonial-card {
    padding: 35px 25px;
    margin: 0 15px;
  }
}
@media (max-width: 768px) and (min-width: 577px) {
  .testimonial-card {
    padding: 30px 20px;
    margin: 0 10px;
  }
}
@media (max-width: 576px) {
  .testimonial-card {
    padding: 25px 15px;
    margin: 0 5px;
    border-radius: 15px;
  }
}

.testimonial-card::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid white;
}
@media (max-width: 576px) {
  .testimonial-card::after {
    bottom: -12px;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 12px solid white;
  }
}

.testimonial-text h3 {
  color: #333;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.3;
}
@media (max-width: 991px) and (min-width: 769px) {
  .testimonial-text h3 {
    font-size: 1.3rem;
    margin-bottom: 18px;
  }
}
@media (max-width: 768px) and (min-width: 577px) {
  .testimonial-text h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
  }
}
@media (max-width: 576px) {
  .testimonial-text h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
  }
}

.testimonial-text p {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 991px) and (min-width: 769px) {
  .testimonial-text p {
    font-size: 0.95rem;
  }
}
@media (max-width: 768px) and (min-width: 577px) {
  .testimonial-text p {
    font-size: 0.9rem;
  }
}
@media (max-width: 576px) {
  .testimonial-text p {
    font-size: 0.85rem;
    line-height: 1.5;
  }
}

.avatar-section {
  margin-top: 60px;
}
@media (max-width: 991px) and (min-width: 769px) {
  .avatar-section {
    margin-top: 50px;
  }
}
@media (max-width: 768px) and (min-width: 577px) {
  .avatar-section {
    margin-top: 40px;
  }
}
@media (max-width: 576px) {
  .avatar-section {
    margin-top: 30px;
  }
}

.avatar-container {
  max-width: 400px;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 576px) {
  .avatar-container {
    max-width: 300px;
  }
}

.avatar-carousel {
  overflow: hidden;
  position: relative;
}

.avatar-track {
  display: flex;
  transition: transform 0.3s ease;
  gap: 15px;
  padding: 0 20px;
  justify-content: center;
  align-items: center;
}
@media (max-width: 576px) {
  .avatar-track {
    gap: 12px;
    padding: 0 15px;
  }
}

.avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
}
@media (max-width: 991px) and (min-width: 769px) {
  .avatar {
    width: 55px;
    height: 55px;
  }
}
@media (max-width: 768px) and (min-width: 577px) {
  .avatar {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 576px) {
  .avatar {
    width: 45px;
    height: 45px;
    border-width: 2px;
  }
}

.avatar.active {
  border-color: #007bff;
  transform: scale(1.2);
  z-index: 2;
}
@media (max-width: 576px) {
  .avatar.active {
    transform: scale(1.15);
  }
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-author {
  color: white;
  font-size: 1.2rem;
  font-weight: 500;
  margin-top: 15px;
  text-align: center;
}
@media (max-width: 991px) and (min-width: 769px) {
  .testimonial-author {
    font-size: 1.1rem;
    margin-top: 12px;
  }
}
@media (max-width: 768px) and (min-width: 577px) {
  .testimonial-author {
    font-size: 1rem;
    margin-top: 10px;
  }
}
@media (max-width: 576px) {
  .testimonial-author {
    font-size: 0.9rem;
    margin-top: 8px;
  }
}

.owl-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  pointer-events: none;
}

.owl-nav button {
  position: absolute;
  background: none !important;
  border: none;
  font-size: 2rem;
  color: #ff4444 !important;
  pointer-events: all;
  transition: all 0.3s ease;
}
@media (max-width: 991px) {
  .owl-nav button {
    display: none;
  }
}

.owl-nav button:hover {
  color: #ff6666 !important;
  transform: scale(1.2);
}

.owl-nav .owl-prev {
  left: -80px;
}
@media (max-width: 576px) {
  .owl-nav .owl-prev {
    left: -40px;
  }
}

.owl-nav .owl-next {
  right: -80px;
}
@media (max-width: 576px) {
  .owl-nav .owl-next {
    right: -40px;
  }
}

.owl-dots {
  display: none;
}

.error-404 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
  position: relative;
  overflow: hidden;
}
@media (max-width: 991px) and (min-width: 769px) {
  .error-404 {
    padding: 40px 20px;
  }
}
@media (max-width: 768px) and (min-width: 577px) {
  .error-404 {
    padding: 30px 15px;
  }
}
@media (max-width: 576px) {
  .error-404 {
    padding: 20px 10px;
  }
}
.error-404::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(240, 90, 142, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(237, 28, 36, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.error-container {
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (max-width: 991px) and (min-width: 769px) {
  .error-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
}
@media (max-width: 768px) and (min-width: 577px) {
  .error-container {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
}
@media (max-width: 576px) {
  .error-container {
    grid-template-columns: 1fr;
    gap: 25px;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .error-content {
    order: 2;
  }
}

.error-number {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  font-family: "Poppins", sans-serif;
}
@media (max-width: 576px) {
  .error-number {
    margin-bottom: 20px;
  }
}

.error-digit {
  font-size: 120px;
  font-weight: 700;
  color: #f05a8e;
  text-shadow: 0 0 30px rgba(240, 90, 142, 0.5);
  animation: pulse 2s ease-in-out infinite;
}
@media (max-width: 991px) and (min-width: 769px) {
  .error-digit {
    font-size: 100px;
  }
}
@media (max-width: 768px) and (min-width: 577px) {
  .error-digit {
    font-size: 80px;
  }
}
@media (max-width: 576px) {
  .error-digit {
    font-size: 60px;
  }
}

.error-zero {
  font-size: 120px;
  font-weight: 700;
  color: #ed1c24;
  text-shadow: 0 0 30px rgba(237, 28, 36, 0.5);
  animation: pulse 2s ease-in-out infinite 0.5s;
}
@media (max-width: 991px) and (min-width: 769px) {
  .error-zero {
    font-size: 100px;
  }
}
@media (max-width: 768px) and (min-width: 577px) {
  .error-zero {
    font-size: 80px;
  }
}
@media (max-width: 576px) {
  .error-zero {
    font-size: 60px;
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
}
.error-title {
  color: #fff;
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
  line-height: 1.2;
}
@media (max-width: 991px) and (min-width: 769px) {
  .error-title {
    font-size: 40px;
    margin-bottom: 18px;
  }
}
@media (max-width: 768px) and (min-width: 577px) {
  .error-title {
    font-size: 32px;
    margin-bottom: 15px;
  }
}
@media (max-width: 576px) {
  .error-title {
    font-size: 26px;
    margin-bottom: 12px;
  }
}

.error-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
  text-align: center;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 991px) and (min-width: 769px) {
  .error-description {
    font-size: 16px;
    margin-bottom: 35px;
  }
}
@media (max-width: 768px) and (min-width: 577px) {
  .error-description {
    font-size: 15px;
    margin-bottom: 30px;
  }
}
@media (max-width: 576px) {
  .error-description {
    font-size: 14px;
    margin-bottom: 25px;
  }
}

.error-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 50px;
}
@media (max-width: 768px) and (min-width: 577px) {
  .error-actions {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
  }
}
@media (max-width: 576px) {
  .error-actions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 35px;
  }
}

.btn-home,
.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
@media (max-width: 576px) {
  .btn-home,
  .btn-back {
    padding: 12px 25px;
    font-size: 14px;
    gap: 8px;
  }
}

.btn-home {
  background: linear-gradient(135deg, #f05a8e 0%, #ed1c24 100%);
  color: #fff;
}
.btn-home:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(240, 90, 142, 0.4);
  color: #fff;
}

.btn-back {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}
.btn-back:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
  color: #fff;
}

.search-section {
  margin-bottom: 50px;
}
@media (max-width: 576px) {
  .search-section {
    margin-bottom: 40px;
  }
}
.search-section h3 {
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 20px;
  text-align: center;
}
@media (max-width: 576px) {
  .search-section h3 {
    font-size: 20px;
    margin-bottom: 15px;
  }
}
.search-section .search-form {
  max-width: 400px;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 576px) {
  .search-section .search-form {
    max-width: 100%;
  }
}
.search-section .search-field {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 16px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
@media (max-width: 576px) {
  .search-section .search-field {
    padding: 12px 18px;
    font-size: 14px;
  }
}
.search-section .search-field::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.search-section .search-field:focus {
  outline: none;
  border-color: #f05a8e;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 20px rgba(240, 90, 142, 0.3);
}
.search-section .search-submit {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #f05a8e 0%, #ed1c24 100%);
  border: none;
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (max-width: 576px) {
  .search-section .search-submit {
    padding: 8px 16px;
    font-size: 14px;
  }
}
.search-section .search-submit:hover {
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 5px 15px rgba(240, 90, 142, 0.4);
}

.helpful-links h3 {
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 25px;
  text-align: center;
}
@media (max-width: 576px) {
  .helpful-links h3 {
    font-size: 20px;
    margin-bottom: 20px;
  }
}

.links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  max-width: 600px;
  margin: 0 auto;
}
@media (max-width: 576px) {
  .links-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.helpful-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}
@media (max-width: 576px) {
  .helpful-link {
    padding: 12px 16px;
    gap: 10px;
  }
}
.helpful-link i {
  color: #f05a8e;
  font-size: 18px;
  flex-shrink: 0;
}
@media (max-width: 576px) {
  .helpful-link i {
    font-size: 16px;
  }
}
.helpful-link:hover {
  background: rgba(240, 90, 142, 0.2);
  border-color: #f05a8e;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(240, 90, 142, 0.3);
  color: #fff;
}

.error-illustration {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 576px) {
  .error-illustration {
    order: 1;
    height: 300px;
  }
}

.floating-elements {
  position: relative;
  width: 100%;
  height: 100%;
}

.floating-circle,
.floating-square {
  position: absolute;
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}
@media (max-width: 576px) {
  .floating-circle,
  .floating-square {
    animation-duration: 4s;
  }
}

.floating-circle {
  background: linear-gradient(135deg, #f05a8e 0%, #ed1c24 100%);
  opacity: 0.6;
}

.floating-square {
  background: linear-gradient(135deg, #ed1c24 0%, #f05a8e 100%);
  opacity: 0.4;
  border-radius: 20%;
}

.circle-1 {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 20%;
  animation-delay: 0s;
}
@media (max-width: 576px) {
  .circle-1 {
    width: 60px;
    height: 60px;
  }
}

.circle-2 {
  width: 60px;
  height: 60px;
  top: 60%;
  right: 30%;
  animation-delay: 2s;
}
@media (max-width: 576px) {
  .circle-2 {
    width: 45px;
    height: 45px;
  }
}

.circle-3 {
  width: 40px;
  height: 40px;
  bottom: 20%;
  left: 40%;
  animation-delay: 4s;
}
@media (max-width: 576px) {
  .circle-3 {
    width: 30px;
    height: 30px;
  }
}

.square-1 {
  width: 50px;
  height: 50px;
  top: 40%;
  right: 20%;
  animation-delay: 1s;
}
@media (max-width: 576px) {
  .square-1 {
    width: 35px;
    height: 35px;
  }
}

.square-2 {
  width: 70px;
  height: 70px;
  bottom: 30%;
  right: 10%;
  animation-delay: 3s;
}
@media (max-width: 576px) {
  .square-2 {
    width: 50px;
    height: 50px;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-20px) rotate(120deg);
  }
  66% {
    transform: translateY(10px) rotate(240deg);
  }
}
/* Avatar navigation arrows */
.avatar-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}
@media (max-width: 576px) {
  .avatar-nav {
    display: none;
  }
}

.avatar-nav:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%) scale(1.1);
}

.avatar-nav.prev {
  left: -15px;
}
@media (max-width: 576px) {
  .avatar-nav.prev {
    left: -10px;
  }
}

.avatar-nav.next {
  right: -15px;
}
@media (max-width: 576px) {
  .avatar-nav.next {
    right: -10px;
  }
}

/*# sourceMappingURL=style.css.map */
