@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&amp;display=swap');

@font-face {
    font-family: 'Ruda';
    src: url('../index.html');
    font-weight: 700;
    font-display: swap;
}

:root {
    --bg-primary: #38072a;
    --bg-darker: #220319;
    --bg-card: #2d0522;
    --bg-card-hover: #450934;
    --accent-gold: #e2b050;
    --accent-gold-light: #f3ce7b;
    --accent-gold-glow: rgba(226, 176, 80, 0.35);
    --bg-black: #050104;
    --text-white: #ffffff;
    --text-muted: #e4c2da;
}

/*header css*/
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-family: sans-serif;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -ms-overflow-style: scrollbar;
    -webkit-tap-highlight-color: transparent;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Quicksand', sans-serif;
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    line-height: 1.8;
    background: #38072a;
}

a {
    text-decoration: none;
    transition: .5s;
    color: #e2b050;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1250px;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
}

.row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -10px;
    margin-left: -10px;
}

.col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
}

.col-sm-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
}

.col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
}

.col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
}

.col-sm-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
}

.col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
}

.col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
}

.col-sm-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
}

.col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
}

.col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
}

.col-sm-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
}

.col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
}

.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12 {
    padding-left: 10px;
    padding-right: 10px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #fff;
    font-weight: 700;
    line-height: 1.25;
    margin-top: 0;
    margin-bottom: 1.2rem;
}

h1 {
    font-size: 40px;
}

h2 {
    font-size: 32px;
}

h3 {
    font-size: 26px;
}

h4 {
    font-size: 22px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 18px;
}

.mt-3 {
    margin-top: 1.3rem;
}

.mt-4 {
    margin-top: 2rem;
}

.mt-5 {
    margin-top: 3rem;
}

.pt-0 {
    padding-top: 0 !important;
}

.pt-5 {
    padding-top: 5rem !important;
}

.pb-0 {
    padding-bottom: 0 !important;
}

.pb-2 {
    padding-bottom: 1rem !important;
}

.pb-3 {
    padding-bottom: 3rem !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.ml-2 {
    margin-left: 2rem;
}

.pl-0 {
    padding-left: 0rem !important;
}

.pl-2 {
    padding-left: 2rem;
}

.pr-2 {
    padding-right: 2rem;
}

.pr-4 {
    padding-right: 4rem;
}

.pl-5 {
    padding-left: 5rem;
}

.d-flex {
    display: flex;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.btn {
    background: linear-gradient(135deg, #e2b050 0%, #b88628 100%);
    color: #1a0313;
    font-size: 16px;
    font-weight: 700;
    line-height: normal;
    padding: 13px 30px;
    margin-top: .7rem;
    border-radius: 25px;
    border: none;
    position: relative;
    cursor: pointer;
    display: inline-block;
    text-transform: uppercase;
}

.btn:hover {
    background: linear-gradient(to right, #e0775b, #b47cfd);
    box-shadow: 0px 0px 30px 0px rgb(207 207 207 / 32%);
}

.form-control {
    display: block;
    width: 100%;
    height: 52px;
    padding: .8rem 1.2rem;
    font-size: 14px;
    line-height: 1.5;
    color: #000;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #dfdfdf;
    outline: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 5px;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.form-control:focus {
    border-color: #811fe2;
}

.desk-top {
    display: block !important;
}

.mobile {
    display: none !important;
}

section {
    padding: 2.5rem 0;
    min-height: auto;
    position: relative;
}

.shadow_bg {
    position: relative;
}

.left_effect:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background: url(../images/left-shadow.html) no-repeat left;
    background-size: 100%;
    width: 50%;
    z-index: -1;
    opacity: .6;
}

.right_effect:after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    background: url(../images/right-shadow.html) no-repeat right;
    background-size: 100%;
    width: 50%;
    z-index: -1;
    opacity: .6;
}

.heading_main {
    margin-bottom: 1.5rem;
    text-align: left;
    position: relative;
}

.heading {
    font-size: 40px;
    color: #fff;
    font-weight: 700;
    position: relative;
    line-height: 1.2;
    margin-bottom: 1rem;
}

/*.heading_main .heading{display:inline-block; padding-left:115px; padding-right:115px;}*/
.heading_main .heading:before {
    content: '';
    background: url(../images/h-line.html) no-repeat;
    background-size: 100%;
    width: 95px;
    height: 25px;
    position: absolute;
    left: 0;
    top: 14px;
}

.heading_main .heading:after {
    content: '';
    background: url(../index.html) no-repeat;
    background-size: 100%;
    width: 95px;
    height: 25px;
    position: absolute;
    right: 0;
    top: 14px;
}

.heading_main p {
    color: #e4c2da;
    font-size: 16px;
    margin-top: 0.5rem;
}

.heading span {
    display: block;
    color: #fff;
    font-size: 25px;
    margin-top: 10px;
}

.heading span a {
    color: #fff;
}

.sub_head {
    font-size: 17px;
    color: #e2b050;
    margin-bottom: 0.5rem;
    line-height: normal;
    position: relative;
    padding-left: 60px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.sub_head:before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    background: #e2b050;
    height: 2px;
    width: 45px;
}

p {
    margin: 0 0 1rem 0;
    text-align: justify;
}

p a,
p strong {
    font-weight: 600;
    color: #e2b050;
}

p+h1,
p+h2,
p+h3,
p+h4,
p+h5,
p+h6 {
    margin-top: 1.5rem;
}

.justify {
    text-align: justify;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-center {
    text-align: center;
}

.hidden_header {
    height: 152px;
}

header {
    position: relative;
    z-index: 91;
    top: 0;
    left: 0;
    right: 0;
    background: #38072a;
    border-top: #38072a solid 1px;
    border-bottom: #38072a solid 1px;
}

header .row {
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    margin-left: .4rem;
    font-size: 35px;
    color: #000;
    font-weight: 600;
    text-transform: uppercase;
}

.logo img {
    height: 60px;
    width: auto;
}

.logo a {
    color: #e2b050;
}

header .btn {
    margin-top: 0;
    font-size: 14px;
}

.btn {
    background: linear-gradient(135deg, #e2b050 0%, #b88628 100%);
    color: #1a0313;
    font-size: 16px;
    font-weight: 700;
    line-height: normal;
    padding: 13px 30px;
    margin-top: .7rem;
    border-radius: 25px;
    border: none;
    position: relative;
    cursor: pointer;
    display: inline-block;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(226, 176, 80, 0.25);
    transition: all 0.35s ease;
}

.btn:hover {
    background: linear-gradient(135deg, #f5d086 0%, #e2b050 100%);
    color: #000;
    box-shadow: 0px 6px 25px rgba(226, 176, 80, 0.45);
    transform: translateY(-2px);
}

.call_now {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.c_icon {
    fill: #c4c4c4;
    padding-top: 4px;
}

.call_text {
    line-height: normal;
    position: relative;
    padding-left: 20px;
}

.call_text:before {
    content: "";
    height: 35px;
    width: 1px;
    background-color: rgba(255, 255, 255, .2);
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.call_text span {
    color: #c4c4c4;
    font-size: 15px;
    margin-bottom: 7px;
    display: block;
}

.call_text a {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

.menu {
    width: 64%;
    margin-left: auto;
}

.menu input[type=checkbox],
.menu label {
    display: none;
}

.nav_links {
    height: 100%;
    text-align: center;
}

.nav_links ul {
    display: flex;
    margin: 0;
    padding: 0;
}

.nav_links ul li {
    flex: 1 1 auto;
    list-style: none;
    font-size: 16px;
    font-weight: 600;
}

.nav_links ul li a {
    color: #fdfdfd;
    padding: 30px 10px;
    display: inline-block;
}

.nav_links ul li a:hover {
    color: #e2b050;
}

.nav_links ul li img {
    display: inline-block;
    margin-right: 7px;
    margin-bottom: -4px;
    width: auto;
    height: 20px;
}

/*-- Professional Luxury Plum Footer --*/
footer {
    background: #1c0315;
    padding-top: 4rem;
    font-size: 14px;
    position: relative;
    z-index: 1;
    color: #e4c2da;
    border-top: 1px solid rgba(226, 176, 80, 0.25);
}

footer:before {
    display: none;
}

.f_brand_title {
    color: #e2b050;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.f_about_text {
    font-size: 14px;
    line-height: 1.65;
    color: #e4c2da;
    margin-bottom: 1.5rem;
    border-left: 3px solid #e2b050;
    padding-left: 14px;
}

/* 18+ Adult Content Warning Box */
.warning_box {
    background: #25041c;
    border: 1px solid rgba(226, 176, 80, 0.25);
    border-radius: 12px;
    padding: 16px 20px;
    margin-top: 1.2rem;
}

.warning_badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #f43f5e;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.warning_badge span {
    background: #f43f5e;
    color: #fff;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 900;
}

.warning_text {
    font-size: 13px;
    color: #e4c2da;
    line-height: 1.5;
    margin-bottom: 12px;
}

.warning_btn {
    display: block;
    width: 100%;
    text-align: center;
    border: 1px solid #e2b050;
    color: #e2b050;
    padding: 9px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.warning_btn:hover {
    background: #e2b050;
    color: #1a0213;
}

/* Footer Section Headings */
.f_heading {
    color: #e2b050;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 1.2rem;
    letter-spacing: 0.3px;
}

.footer-grids ul {
    margin: 0;
    padding: 0;
}

.footer-grids ul li {
    list-style-type: none;
    margin-bottom: 12px;
}

.footer-grids ul li a {
    color: #e4c2da;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-grids ul li a:hover {
    color: #e2b050;
}

/* Contact Info List */
.contact_info_list {
    margin: 0 0 1.5rem 0;
    padding: 0;
}

.contact_info_list li {
    list-style: none;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    color: #e4c2da;
    font-size: 15px;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.contact_info_list li svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: #e2b050;
    stroke-width: 2;
    flex-shrink: 0;
    margin-top: 3px;
}

/* Follow Us Pills */
.social_title {
    color: #e2b050;
    font-size: 22px;
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: 14px;
}

.social_pills {
    display: flex;
    gap: 12px;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.social_pill {
    width: 42px;
    height: 42px;
    background: #2b0520;
    border: 1px solid rgba(226, 176, 80, 0.35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e2b050;
    transition: all 0.3s ease;
}

.social_pill:hover {
    background: #e2b050;
    border-color: #e2b050;
    color: #1a0213;
    transform: translateY(-3px);
}

.social_pill svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Payment & Security Badges Bar */
.security_badges {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 1.2rem;
}

.badge_pill {
    background: #2b0520;
    border: 1px solid rgba(226, 176, 80, 0.3);
    border-radius: 6px;
    padding: 7px 12px;
    font-size: 12px;
    font-weight: 700;
    color: #e4c2da;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.dmca_badge {
    display: inline-flex;
    border-radius: 4px;
    overflow: hidden;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.5px;
}

.dmca_green {
    background: #4ba03e;
    color: #fff;
    padding: 7px 9px;
}

.dmca_black {
    background: #000;
    color: #fff;
    padding: 7px 9px;
    border: 1px solid #4ba03e;
    border-left: none;
}

/* Disclaimer text */
.footer_disclaimer {
    text-align: center;
    font-size: 13px;
    color: #b588aa;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(226, 176, 80, 0.15);
    line-height: 1.6;
}

/* Bottom Copyright Bar */
.copyright {
    border-top: 1px solid rgba(226, 176, 80, 0.15);
    padding: 1.2rem 0;
    margin-top: 1.5rem;
    color: #b588aa;
    font-size: 13px;
    position: relative;
    z-index: 1;
    background: #12020e;
}

.copyright .container {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Floating Action Buttons for Mobile View */
.floating_chat_btn {
    position: fixed;
    bottom: 20px;
    left: 15px;
    width: 50px;
    height: 50px;
    background: #e2b050;
    border: 2.5px solid #e2b050;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1c0315;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    z-index: 9999;
    transition: all 0.3s ease;
}

.floating_chat_btn svg {
    fill: #1c0315 !important;
    transition: fill 0.3s ease;
}

.floating_chat_btn:hover {
    transform: scale(1.1);
    background: #1c0315;
    border-color: #e2b050;
    color: #e2b050;
    box-shadow: 0 6px 20px rgba(226, 176, 80, 0.5);
}

.floating_chat_btn:hover svg {
    fill: #e2b050 !important;
}

.floating_scroll_top {
    position: fixed;
    bottom: 20px;
    right: 15px;
    width: 50px;
    height: 50px;
    background: #e2b050;
    border: 2.5px solid #e2b050;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1c0315;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    z-index: 9999;
    transition: all 0.3s ease;
}

.floating_scroll_top svg {
    stroke: #1c0315 !important;
    transition: stroke 0.3s ease;
}

.floating_scroll_top:hover {
    transform: scale(1.1);
    background: #1c0315;
    border-color: #e2b050;
    color: #e2b050;
    box-shadow: 0 6px 20px rgba(226, 176, 80, 0.5);
}

.floating_scroll_top:hover svg {
    stroke: #e2b050 !important;
}

@media (max-width: 767px) {
    footer {
        padding-top: 2.5rem;
        padding-bottom: 75px;
    }

    .footer-grids .col-sm-4 {
        width: 100%;
        flex: 0 0 100%;
        margin-bottom: 2rem;
    }

    .f_heading {
        font-size: 24px;
        margin-bottom: 1rem;
    }

    .copyright .container {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

.copyright a {
    color: #e4c2da;
}

.copyright a:hover {
    color: #e2b050;
}

.made_with {
    color: #e4c2da;
    font-size: 13px;
}

.made_with span {
    color: #f43f5e;
}

.newsletter .btn {
    font-size: 14px;
    font-weight: 400;
    background: none;
    margin-top: 0;
    padding: 0;
    position: absolute;
    top: 14px;
    right: 15px;
}

.newsletter .btn img {
    width: 18px;
    filter: invert(1);
}

.newsletter input[type="email"] {
    background: none;
    border-color: #3a3a3a;
    color: #fff;
    height: 45px;
    padding-right: 50px;
}

.newsletter form {
    position: relative;
}

/*-- //footer --*/
/*-- move top --*/
#toTop {
    bottom: 20px;
    right: 20px;
    display: none;
    width: 40px;
    height: 40px;
    overflow: hidden;
    position: fixed;
    text-decoration: none;
    z-index: 9999;
    font-size: 0;
    color: transparent;
    background: #0A4A49;
    border-radius: 50%;
    /*opacity:0.8;*/
}

#toTop:after {
    color: #fff;
    content: '';
    font-size: 18px;
    line-height: 37px;
    font-family: 'FontAwesome';
    text-align: center;
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url(../images/arrow-up-icon.png) no-repeat 12px 11px;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

/*-- //move top --*/
.whatsapp.call {
    bottom: 125px;
}

.whatsapp {
    position: fixed;
    right: 15px;
    bottom: 65px;
    z-index: 9;
    background: #021f8b;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    padding: 12px;
    animation: 1s infinite alternate bounce;
}

@keyframes bounce {
    0% {
        transform: translateY(0)
    }

    to {
        transform: translateY(-15px);
    }
}

@-webkit-keyframes bounce {
    0% {
        transform: translateY(0)
    }

    to {
        transform: translateY(-15px)
    }
}

.pull-left {
    float: left;
}

.pull-right {
    float: right;
}

/*owl css*/
.owl-carousel {
    display: none;
    width: 100%;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    z-index: 1;
}

.owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
}

.owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

.owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    padding: 0 5px;
}

.owl-carousel .owl-item img {
    -webkit-transform-style: preserve-3d;
}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
    display: none;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
    cursor: pointer;
    cursor: hand;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transition: all 0.2s ease-in-out 0s;
}

.owl-carousel.owl-loaded {
    display: block;
}

.owl-carousel.owl-loading {
    opacity: 0;
    display: block;
}

/* Owl Default Theme */
.owl-theme:hover .owl-nav {
    opacity: 1;
}

.owl-theme .owl-nav {
    position: absolute;
    top: 50%;
    opacity: 1;
    right: 0;
    left: 0;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-nav>div {
    font-size: 0;
    position: absolute;
    right: 10px;
    text-align: center;
    margin-top: -30px;
    width: 22px;
}

.owl-theme .owl-nav .disabled {
    /*opacity:0.5;*/
    cursor: default;
}

.owl-theme .owl-dots {
    margin-top: 45px;
}

/* text-nav */
.text-nav {
    /*padding-right:30px; padding-left:30px;*/
}

.text-nav .owl-nav {
    position: static;
}

.text-nav .owl-nav>div {
    top: 0;
    bottom: 0;
    right: -7px;
    margin-top: 0;
}

.text-nav .owl-nav>div:first-child {
    left: -7px;
}

.text-nav .owl-nav>div:after {
    position: absolute;
    top: 50%;
    left: 0;
    content: "";
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    line-height: 1;
    color: #9aa9b3;
    background: #811fe2 url(../images/right-arrow-icon1.html) no-repeat 7px 6px;
    background-size: 10px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    cursor: pointer;
}

.text-nav .owl-nav>div:first-child:after {
    content: "";
    background: #811fe2 url(../index.html) no-repeat 5px 6px;
    background-size: 10px;
}

.text-nav .owl-nav>div:hover:after {
    background-color: #263170;
}

/*collapse accordion*/
.panel {
    margin-top: 15px;
    overflow: hidden;
}

.panel-body {
    padding: 15px 0;
}

.panel-title {
    position: relative;
}

.panel-title>a {
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    padding: 14px 35px 14px 20px;
    background: linear-gradient(to right, #8aad01, #7a9902);
    color: #fff;
    border-radius: 5px;
    word-wrap: break-word;
}

.panel-title>a.collapsed:hover,
.panel-title>a:hover {
    background: linear-gradient(to right, #8aad01, #7a9902);
}

.panel-title>a.collapsed {
    background: linear-gradient(to right, #0a434a, #095a64);
}

.panel-title a:after {
    content: "";
    position: absolute;
    top: calc(45% + 1px);
    right: 20px;
    border-color: #021f8b;
    border-top: 2px solid;
    border-right: 2px solid;
    width: 10px;
    height: 10px;
    backface-visibility: hidden;
    transition: transform .3s, top .3s;
    transform: rotate(45deg) translate3d(0, -50%, 0);
    transform-origin: 35%;
}

.panel-title a[aria-expanded="true"]:after {
    content: "";
    top: calc(47% - 8px);
    transform: rotate(135deg);
}

.panel-title a[aria-expanded="false"] {
    color: #fff;
    background: #e2b050;
}

.collapse {
    display: none;
}

.collapse.in {
    display: block;
}

/*end collapse accordion*/

.banner_bg {
    background-image: url(../images/banner-bg.html), linear-gradient(#07252a, #07252a);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 0px;
    min-height: 445px;
}

.banner_bg img {
    width: 100%;
}

.banner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0px;
    position: relative;
    z-index: 1;
    font-size: 18px;
    color: #fff;
    text-align: center;
}

/*.banner:before{content:''; position:absolute; left:0; right:0; top:0; bottom:0; background:rgb(0, 7, 32, 85%); z-index:-1;}*/
.banner h1 {
    font-size: 50px;
    color: #fff;
    margin-bottom: 10px;
}

.bg {
    background: url(../images/bg.jpg) no-repeat;
    position: relative;
    z-index: 1;
}

.bg:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgb(18 27 29 / 85%), rgb(21 31 28 / 90%));
    z-index: -1;
}

.blur {
    fill: rgba(226, 176, 80, 0.25);
    filter: blur(165.5px);
    z-index: -1;
    width: 384px;
    height: 399px;
    position: absolute;
    top: 71%;
    right: 0;
    transform: translateY(-50%);
}

.blur1 {
    fill: rgba(226, 176, 80, 0.25);
    filter: blur(165.5px);
    z-index: -1;
    width: 384px;
    height: 399px;
    position: absolute;
    top: 71%;
    left: 0;
    transform: translateY(-50%);
}

.casual {
    background: linear-gradient(145deg, #2c0521, #1a0213);
    border: 1px solid rgba(226, 176, 80, 0.3);
    border-radius: 16px;
    padding: 26px 22px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    text-align: left;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.casual:hover {
    border-color: #e2b050;
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(226, 176, 80, 0.3);
    background: linear-gradient(145deg, #3d072e, #24031c);
}

.casual img {
    margin: 0 0 1.8rem;
    height: 52px;
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
    transition: transform 0.4s ease;
}

.casual:hover img {
    transform: scale(1.1);
}

.casual h2 {
    margin-bottom: 0;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    display: flex;
    align-items: flex-end;
    line-height: 1.3;
}

.casual a {
    margin-left: auto;
    width: 38px;
    height: 38px;
    background: rgba(226, 176, 80, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.casual:hover a {
    background: #e2b050;
}

.casual a svg {
    transition: all 0.3s ease-out;
}

.casual a svg path {
    stroke: #e2b050;
    transition: stroke 0.3s ease;
}

.casual:hover a svg {
    transform: rotate(45deg);
}

.casual:hover a svg path {
    stroke: #1a0213;
}

.escort_bg {
    background: linear-gradient(to bottom, #26041c 0%, #15010f 100%);
    position: relative;
}

.escort_bg .row {
    margin-left: -6px;
    margin-right: -6px;
}

.escort_bg .col-sm-3 {
    padding-left: 6px;
    padding-right: 6px;
}

.escorts {
    position: relative;
    overflow: hidden;
    margin-bottom: .8rem;
    text-align: left;
    transition: all 0.4s ease-in-out 0s;
    border-radius: 20px;
    border: 2px solid rgba(226, 176, 80, 0.25);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.escorts figure {
    position: relative;
    margin-bottom: 0px;
    overflow: hidden;
    border: none;
    border-radius: 18px 18px 0 0;
}

.escorts figure img {
    border-radius: 0px;
    transition-duration: 2s;
    width: 100%;
    display: block;
}

/* On-Image Overlay Watermark (like reference photo) */
.img_watermark {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    text-align: center;
    font-size: 13px;
    font-weight: 900;
    color: #e2b050;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    pointer-events: none;
    z-index: 2;
    text-shadow:
        -1.5px -1.5px 0 #000,
        1.5px -1.5px 0 #000,
        -1.5px 1.5px 0 #000,
        1.5px 1.5px 0 #000,
        0 3px 10px rgba(0, 0, 0, 0.9);
    background: rgba(0, 0, 0, 0.35);
    padding: 4px 8px;
    border-radius: 6px;
    border: 1px solid rgba(226, 176, 80, 0.4);
    backdrop-filter: blur(2px);
}

.escorts:hover figure img {
    transform: scale(1.08);
}

.escorts:hover {
    border-color: #e2b050;
    box-shadow: 0 12px 35px rgba(226, 176, 80, 0.3);
    transform: translateY(-4px);
}

.escort_watermark {
    text-align: center;
    font-size: 11px;
    color: rgba(226, 176, 80, 0.7);
    background: #1a0213;
    padding: 4px 5px;
    border-top: 1px dashed rgba(226, 176, 80, 0.2);
    letter-spacing: 0.5px;
    font-weight: 600;
}

.escort_content {
    padding: 16px 18px 14px;
    color: #fff;
    background: #25041c;
    backdrop-filter: blur(5px);
}

/* Call Now & WhatsApp Buttons */
.escort_btns {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.escort_btn_call,
.escort_btn_wa {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 9px 10px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.escort_btn_call {
    background: linear-gradient(135deg, #e2b050 0%, #b88628 100%);
    color: #1a0213;
    box-shadow: 0 3px 10px rgba(226, 176, 80, 0.3);
}

.escort_btn_call:hover {
    background: linear-gradient(135deg, #f5d086 0%, #e2b050 100%);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(226, 176, 80, 0.45);
}

.escort_btn_wa {
    background: linear-gradient(135deg, #25d366 0%, #128c4e 100%);
    color: #fff;
    box-shadow: 0 3px 10px rgba(37, 211, 102, 0.3);
}

.escort_btn_wa:hover {
    background: linear-gradient(135deg, #40e07a 0%, #25d366 100%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4);
}

.name {
    font-size: 18px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 10px;
}

.type {
    color: #e2b050;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.type span {
    margin-left: auto;
    color: #fff;
    font-size: 16px;
}

.area {
    background: #14020f;
    padding: 0;
    border-radius: 20px;
    margin-bottom: 1.8rem;
    position: relative;
    border: 1.5px solid rgba(226, 176, 80, 0.6);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
}

.area:hover {
    border-color: #e2b050;
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(226, 176, 80, 0.35);
}

.area figure {
    border-radius: 19px;
    overflow: hidden;
    margin: 0;
    position: relative;
}

.area figure img {
    border-radius: 19px;
    width: 100%;
    height: 245px;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1), filter 0.5s ease;
    filter: brightness(0.88) contrast(1.1);
}

/* Gradient vignette over photo */
.area figure:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70%;
    background: linear-gradient(to top, rgba(16, 2, 12, 0.95) 0%, rgba(16, 2, 12, 0.5) 50%, transparent 100%);
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.area:hover figure img {
    transform: scale(1.08);
    filter: brightness(1) contrast(1.15);
}

/* Ultra-Luxury Glassmorphic Title Bar */
.area_title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 20px;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    line-height: 1.2;
    background: rgba(28, 3, 21, 0.82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-top: 1.5px solid rgba(226, 176, 80, 0.6);
    z-index: 2;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Sleek Vector Location Pin SVG (No Emoji) */
.area_title:before {
    content: '';
    display: inline-block;
    width: 15px;
    height: 15px;
    background-color: #e2b050;
    mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/></svg>") no-repeat center / contain;
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/></svg>") no-repeat center / contain;
    transition: transform 0.35s ease, background-color 0.35s ease;
    flex-shrink: 0;
}

/* Hover Gold Glow Animation */
.area:hover .area_title {
    background: linear-gradient(135deg, rgba(56, 7, 42, 0.95), rgba(28, 3, 21, 0.98));
    color: #e2b050;
    border-top-color: #e2b050;
    box-shadow: inset 0 1px 15px rgba(226, 176, 80, 0.25);
    text-shadow: 0 0 10px rgba(226, 176, 80, 0.5);
}

.area:hover .area_title:before {
    transform: translateY(-2px) scale(1.15);
    background-color: #f3ce7b;
}

.content_bg {
    background: #38072a url(../images/vector-bg.webp);
    background-size: 100%;
}

.rate {
    text-align: center;
    border-radius: 20px;
    background: #24031b;
    border: rgba(226, 176, 80, 0.3) solid 1px;
    overflow: hidden;
    position: relative;
    padding-bottom: 30px;
    color: #e2b050;
    transition: all 0.4s ease-in-out;
}

.rate:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(226, 176, 80, 0.25);
    border-color: #e2b050;
}

.rate_badge {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 12px;
    background: #38072a;
    color: #e2b050;
    text-transform: uppercase;
    border: 1px solid #e2b050;
}

.popular_rate {
    border: #e2b050 solid 2px;
    box-shadow: 0 0 20px rgba(226, 176, 80, 0.3);
}

.badge_popular {
    background: linear-gradient(135deg, #e2b050, #b88628);
    color: #1a0213;
    border: none;
}

.vip_rate {
    border: #e2b050 solid 2px;
    box-shadow: 0 0 25px rgba(226, 176, 80, 0.4);
}

.badge_vip {
    background: linear-gradient(135deg, #f5d086, #e2b050);
    color: #000;
    border: none;
}

.hrs {
    font-size: 26px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
    padding: 15px 20px;
    background: linear-gradient(135deg, #180212, #330526);
    border-bottom: 1px solid rgba(226, 176, 80, 0.3);
}

.rate .price {
    font-size: 32px;
    position: relative;
    margin-bottom: 20px;
    font-weight: 700;
    color: #e2b050;
}

.rate .price sub {
    font-size: 15px;
    font-weight: 500;
    color: #e4c2da;
    position: relative;
    bottom: 4px;
}

.rate ul {
    margin: 0 0 25px;
    padding: 0 15px;
}

.rate ul li {
    margin: 0;
    padding: 11px 0px;
    list-style: none;
    position: relative;
    border-top: rgba(226, 176, 80, 0.15) solid 1px;
    font-size: 15px;
}

.rate ul li.no_avail {
    cursor: no-drop;
    color: #8c627f;
    opacity: 0.6;
}

.category_bg {
    background: #1a0213 url(../images/vector-bg.webp) center/cover no-repeat;
    padding: 2.5rem 0;
    position: relative;
}

.category {
    position: relative;
    margin: 0 0 35px 0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.category:before {
    content: '';
    position: absolute;
    top: -6px;
    right: -6px;
    bottom: -6px;
    left: -6px;
    border: 2px dashed rgba(226, 176, 80, 0.4);
    border-radius: 180px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    pointer-events: none;
}

.category:hover:before {
    border-style: solid;
    border-color: #e2b050;
    transform: scale(1.03);
    box-shadow: 0 0 30px rgba(226, 176, 80, 0.5), inset 0 0 15px rgba(226, 176, 80, 0.2);
}

.category a {
    border: 2.5px solid rgba(226, 176, 80, 0.6);
    position: relative;
    overflow: hidden;
    border-radius: 175px;
    display: block;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: #25041c;
}

.category a:hover {
    border-color: #e2b050;
    transform: translateY(-8px);
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.8), 0 0 25px rgba(226, 176, 80, 0.4);
}

.category figure {
    position: relative;
    margin: 0;
    overflow: hidden;
    border-radius: 175px;
}

.category figure img {
    border-radius: 175px;
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1), filter 0.5s ease;
    filter: brightness(0.93) contrast(1.05);
}

.category:hover figure img {
    transform: scale(1.1);
    filter: brightness(1.05) contrast(1.1);
}

.category h3 {
    padding: 24px 18px 26px;
    margin-bottom: 0px;
    font-size: 19px;
    font-weight: 700;
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(26, 2, 19, 0) 0%, rgba(26, 2, 19, 0.8) 30%, rgba(37, 4, 28, 0.98) 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #ffffff;
    letter-spacing: 0.6px;
    line-height: 1.35;
    transition: all 0.35s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.category:hover h3 {
    color: #e2b050;
    text-shadow: 0 0 12px rgba(226, 176, 80, 0.6);
    background: linear-gradient(180deg, rgba(26, 2, 19, 0) 0%, rgba(26, 2, 19, 0.9) 25%, rgba(56, 7, 42, 0.99) 100%);
}

.hot_bg {
    overflow: hidden;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    position: relative;
}

.hot_bg .row {
    align-items: flex-end;
}

.hot_bg img {
    margin-top: 0;
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.text_pad {
    padding: 2.5rem 0;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}

.text_height {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
}

.parallax_bg {
    background: url(../images/banner2.jpg) no-repeat center;
    background-size: cover;
    position: relative;
    z-index: 1;
    text-align: center;
}

.parallax_bg:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background: rgba(56, 7, 42, 0.6);
    z-index: -1;
}

.parallax_bg .heading {
    font-size: 45px;
    color: #e2b050;
}

.parallax_bg .row {
    justify-content: center;
}



.nowcalling {
    display: block;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 9999999999999999999999;
}

.lcol,
.rcol {
    float: left;
    width: 50%;
}

.lcol {
    background-color: #0a4a49;
}

.rcol {
    background-color: #25d366;
}

.lcol a,
.rcol a {
    display: block;
    padding: 10px 0;
    text-align: center;
    text-decoration: none;
    color: #fff;
}

ul.check {
    column-count: 4;
    margin-left: 20px;
    margin-bottom: 20px;
}


.city_droupdown_bg {
    background: #1e391f;
    padding: 15px 0;
    text-align: center;
    min-height: inherit;
}

.select-option {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
}

.select-option select {
    background: #28807b;
    padding: 13px 10px;
    border-radius: 3px;
    border: #28807b solid 1px;
    color: #fff;
    font-size: 15px;
    width: 700px;
}

.select-option label {
    color: #fff;
    font-size: 17px;
    font-weight: 500;
    text-transform: uppercase;
    margin-right: 15px;
    margin-bottom: 0;
}

.select-option label span {
    animation: .5s infinite alternate mover;
    font-size: 20px;
    line-height: 16px;
    margin-left: 15px;
    display: inline-block;
}

.select-option button {
    background: #da776f;
    padding: 8px 20px 4px;
    cursor: pointer;
    height: 47px;
    border: none;
}

.select-option .d-flex {
    display: flex;
    align-items: center;
    justify-content: center;
}


@media (max-width:1199px) {
    .container {
        max-width: 1000px;
    }

    header .btn {
        padding-left: 20px;
        padding-right: 20px;
    }

    .banner_bg {
        min-height: 358px;
    }

    h1 {
        font-size: 35px;
    }

    h2 {
        font-size: 30px;
    }

    .heading {
        font-size: 35px;
    }

    .casual h2 {
        font-size: 20px;
    }

    .social {
        margin-top: 1.5rem;
    }

    .social span {
        width: 100%;
        margin-bottom: 10px;
    }

    .social a {
        margin-left: 0;
        margin-right: 10px;
    }

    .hot_bg img {
        max-width: 107%;
        height: 100%;
        margin-top: 0;
    }

    .parallax_bg .col-sm-10 {
        width: 100%;
    }



}


@media (max-width:896px) {
    .container {
        max-width: 100%;
    }

    /*mobile menu css*/
    .menu {
        width: auto;
        position: absolute;
    }

    .nav_links {
        display: block;
        position: fixed;
        top: 0px;
        left: -100%;
        right: 0;
        background: #38072a;
        padding: 0 20px;
        line-height: 37px;
        transition: all .5s ease;
        z-index: 999;
    }

    .menu input[type=checkbox] {
        display: none;
    }

    .menu :checked+.nav_links {
        display: block;
        left: 0;
        overflow: auto;
        padding-top: 20px;
    }

    .menu label {
        display: flex;
        background: #38072a;
        border-radius: 5px;
        padding: 2px 5px;
        margin-left: 10px;
    }

    .menu .nav_links {
        display: none;
    }

    .menu label img {
        height: 35px;
        width: auto;
    }

    .menu .nav_links ul {
        display: block;
        text-align: left;
    }

    .menu .nav_links ul li {
        border-bottom: #38072a solid 1px;
        font-size: 15px;
    }

    .nav_links ul li a {
        padding: 8px 0 8px;
        margin: 0;
        background: none;
    }

    .menu label svg {
        width: 17px;
        fill: #fff;
    }

    /*end mobile menu css*/

    .menu label a+img {
        margin-left: auto;
    }

    .menu .nav_links label {
        display: block;
        width: 35px;
        height: 35px;
        margin-left: auto;
    }

    .nav_links ul li a:hover,
    .nav_links ul li a.active {
        background: none;
    }

    .banner_bg {
        min-height: 284px;
    }

    .logo {
        margin-left: 5rem;
        margin-top: .6rem;
        margin-bottom: .6rem;
    }

    .logo img {
        height: 50px;
    }

    header .btn {
        margin-left: auto;
        margin-right: 10px;
        padding: 10px 25px;
    }

    h1 {
        font-size: 30px;
    }

    h2 {
        font-size: 27px;
    }

    .heading {
        font-size: 30px;
    }

    .heading_main .heading:after,
    .heading_main .heading:before {
        top: 8px;
    }

    .col-sm-5,
    .col-sm-7 {
        width: 100%;
    }

    .best_bg .col-sm-3,
    .escort_bg .col-sm-3 {
        width: 50%;
    }

    .area_bg .col-sm-4 {
        width: 50%;
    }

    .hot_bg img {
        max-width: 100%;
    }

    .text_height {
        height: auto;
        margin-bottom: 2rem;
    }

    .casual {
        margin-bottom: 1.5rem;
    }

    .faq_bg h2 {
        margin-top: 2rem;
    }

    .parallax_bg .heading {
        font-size: 35px;
    }

    footer .col-sm-3 {
        margin-bottom: 2.5rem;
        width: 33.333%;
    }

    footer .col-sm-3:last-child {
        width: 100%;
    }

    .copyright {
        margin-top: 1rem;
    }

    .category {
        margin: 0rem;
    }

    .category h3 {
        font-size: 18px;
    }

    .rate .price {
        font-size: 25px;
    }

    .hrs {
        font-size: 20px;
    }


}

@media (max-width:736px) {

    .escort_bg .col-sm-3,
    .category_row .col-sm-3 {
        width: 50%;
    }

    .banner_bg {
        min-height: 258px;
    }

    .category_bg .col-sm-3 {
        width: 50%;
        margin-bottom: 1.5rem;
    }

    .hot_bg .col-sm-8,
    .hot_bg .col-sm-4 {
        width: 100%;
    }

    .hot_bg .text_pad {
        padding-bottom: 0rem;
    }

    .rate_bg .row {
        justify-content: center;
    }

    .rate_bg .col-sm-4 {
        width: 70%;
    }

    .rate {
        margin-bottom: 1.5rem;
    }

}

@media (max-width:667px) {
    .parallax_bg .heading {
        font-size: 30px;
    }

    h1 {
        font-size: 27px;
    }

    h2,
    h3 {
        font-size: 25px;
    }

    .heading {
        font-size: 27px;
    }

    .banner_bg {
        min-height: 233px;
    }

    .select-option select {
        width: 100%;
    }

}

@media (max-width:640px) {
    .banner_bg {
        min-height: 224px;
    }

}

@media (max-width:568px) {
    .banner_bg {
        min-height: 199px;
    }

    ul.check {
        column-count: 2;
    }

}

@media (max-width:480px) {
    body {
        font-size: 15px;
    }

    .banner_bg {
        min-height: 145px;
    }

    .casual h2 {
        font-size: 18px;
    }

    .casual a svg {
        width: 20px;
    }

    .best_bg .col-sm-3 {
        width: 100%;
    }

    .type {
        display: block;
    }

    .escort_content {
        padding: 15px;
    }

    .type span {
        display: block;
    }

    .area_bg .col-sm-4 {
        width: 100%;
    }

    .rate_bg .col-sm-4 {
        width: 100%;
    }

    .panel-title>a {
        font-size: 16px;
    }

    footer .col-sm-3 {
        width: 100%;
    }

}

@media (max-width:375px) {
    .logo {
        margin-left: 4rem;
    }

    header .btn {
        padding: 7px 15px;
        font-size: 12px;
    }

    .banner_bg {
        min-height: 126px;
    }

    h1 {
        font-size: 25px;
    }

    h2,
    h3 {
        font-size: 23px;
    }

    .heading {
        font-size: 25px;
    }

    .category h3 {
        font-size: 16px;
        padding-left: 20px;
        padding-right: 20px;
    }

}

@media (max-width:320px) {
    .banner_bg {
        min-height: 112px;
    }

    header .btn {
        padding: 7px 10px;
        font-size: 10px;
    }

    .logo img {
        height: 40px;
    }

    .hot_bg .btn {
        padding-left: 23px;
        padding-right: 23px;
    }

    .category h3 {
        font-size: 14px;
    }

}

/* Services & Support Card Section */
.service_support_bg {
    background: #1a0213;
    padding: 2.5rem 0;
}

.service_support_bg .section_title {
    font-size: 32px;
    font-weight: 700;
    color: #e2b050;
    margin-bottom: 1.5rem;
}

.service_card_grid {
    display: flex;
    flex-wrap: wrap;
    margin-left: -10px;
    margin-right: -10px;
}

.service_card_col {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0 10px;
    margin-bottom: 20px;
}

.service_card {
    background: #f4f6fa;
    border-radius: 20px;
    padding: 22px 20px 20px;
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service_card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.service_card_badge {
    display: inline-flex;
    align-items: center;
    background: #00a859;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 14px;
    width: fit-content;
}

.service_card_badge.badge_icon {
    gap: 6px;
}

.service_card_title {
    color: #111827;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 15px;
}

.service_card_img_wrap {
    margin-top: auto;
    text-align: center;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
}

.service_card_img_wrap img {
    max-height: 220px;
    width: auto;
    object-fit: contain;
}

.service_card_arrow {
    position: absolute;
    bottom: 15px;
    left: 15px;
    width: 44px;
    height: 44px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    color: #111;
    font-size: 18px;
    z-index: 2;
}

@media (max-width: 991px) {
    .service_card_col {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 576px) {
    .service_card_col {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Escorts Table Styling */
.escorts-table-container {
    width: 100%;
    overflow-x: auto;
    margin-bottom: 35px;
    margin-top: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(226, 176, 80, 0.25);
}

.escorts-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #1e0416;
    color: #e4c2da;
    text-align: center;
    font-family: inherit;
    border-radius: 12px;
    overflow: hidden;
}

.escorts-table th,
.escorts-table td {
    padding: 14px 18px;
    border-bottom: 1px solid rgba(226, 176, 80, 0.15);
    font-size: 15px;
    letter-spacing: 0.3px;
}

.escorts-table td {
    border-right: 1px solid rgba(226, 176, 80, 0.1);
}

.escorts-table th {
    background: linear-gradient(135deg, #e2b050 0%, #f3ce7b 50%, #c8943a 100%);
    color: #1a0010;
    font-weight: 800;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 16px 18px;
    border-right: 1px solid rgba(0, 0, 0, 0.2);
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.15);
}

.escorts-table th:last-child,
.escorts-table td:last-child {
    border-right: none;
}

.escorts-table tbody tr {
    background-color: #250420;
    transition: all 0.25s ease;
}

.escorts-table tbody tr:nth-child(even) {
    background-color: #1e0416;
}

.escorts-table tbody tr:hover {
    background: rgba(226, 176, 80, 0.08);
    box-shadow: inset 0 0 20px rgba(226, 176, 80, 0.06);
}

.escorts-table tbody tr:hover td {
    color: #f3ce7b;
}

.escorts-table td:first-child {
    color: #e2b050;
    font-weight: 700;
}

.escorts-table .btn-call {
    color: #1a0010;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    padding: 7px 20px;
    border-radius: 25px;
    background: linear-gradient(135deg, #e2b050, #f3ce7b);
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(226, 176, 80, 0.35);
}

.escorts-table .btn-call:hover {
    background: linear-gradient(135deg, #f3ce7b, #e2b050);
    box-shadow: 0 5px 20px rgba(226, 176, 80, 0.6);
    transform: translateY(-2px);
    color: #1a0010;
}

@media (max-width: 600px) {

    .escorts-table th,
    .escorts-table td {
        padding: 10px 10px;
        font-size: 13px;
    }

    .escorts-table .btn-call {
        padding: 5px 12px;
        font-size: 12px;
    }
}

/* 12 Aerocity Hotels Circle Flip Styling - Responsive */
.hotel_circles_bg {
    padding: 40px 0;
    background: rgba(30, 4, 22, 0.4);
}

.hotel_circles_grid {
    display: flex;
    flex-wrap: wrap;
    margin-left: -10px;
    margin-right: -10px;
}

.hotel_circle_col {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0 10px;
    margin-bottom: 30px;
    box-sizing: border-box;
}

.hotel-flip-card {
    background-color: transparent;
    width: 210px;
    height: 210px;
    perspective: 1000px;
    margin: 0 auto;
}

.hotel-flip-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
    transform-style: preserve-3d;
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5), 0 0 0 3px rgba(226, 176, 80, 0.4);
    cursor: pointer;
}

.hotel-flip-card:hover .hotel-flip-inner,
.hotel-flip-card.hover .hotel-flip-inner {
    transform: rotateY(180deg);
}

.hotel-flip-front,
.hotel-flip-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px;
    box-sizing: border-box;
}

.hotel-flip-front {
    background-color: #2d0522;
}

.hotel-flip-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.5s ease;
}

.hotel-flip-card:hover .hotel-flip-front img {
    transform: scale(1.1);
}

.hotel-circle-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0));
    padding: 22px 10px 14px 10px;
    color: #fff;
}

.hotel-circle-title h3 {
    font-size: 14px;
    margin: 0;
    color: #fff;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.hotel-circle-title span {
    font-size: 11px;
    color: #e2b050;
    display: block;
}

.hotel-flip-back {
    background: linear-gradient(135deg, #009999 0%, #006666 100%);
    color: white;
    transform: rotateY(180deg);
    text-align: center;
    border: 2px solid #00ffff;
}

.hotel-flip-back h3 {
    font-size: 13px;
    color: #ffffff;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
}

.hotel-address {
    font-size: 10.5px;
    line-height: 1.3;
    color: #e0f7fa;
    margin: 0;
    word-break: break-word;
}

.hotel-bottom-name {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-top: 12px;
    line-height: 1.3;
}

/* Tablet view (2 columns or 3 columns) */
@media (max-width: 991px) {
    .hotel_circle_col {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .hotel-flip-card {
        width: 190px;
        height: 190px;
    }
}

@media (max-width: 768px) {
    .hotel_circle_col {
        flex: 0 0 50%;
        max-width: 50%;
        padding: 0 8px;
        margin-bottom: 25px;
    }

    .hotel-flip-card {
        width: 165px;
        height: 165px;
    }

    .hotel-flip-front,
    .hotel-flip-back {
        padding: 12px;
    }

    .hotel-circle-title h3 {
        font-size: 12px;
    }

    .hotel-circle-title span {
        font-size: 10px;
    }

    .hotel-flip-back h3 {
        font-size: 11px;
    }

    .hotel-address {
        font-size: 9.5px;
        line-height: 1.25;
    }

    .hotel-bottom-name {
        font-size: 12.5px;
        margin-top: 8px;
    }
}

/* Mobile view (2 circles per row, compact size) */
@media (max-width: 480px) {
    .hotel_circle_col {
        flex: 0 0 50%;
        max-width: 50%;
        padding: 0 5px;
        margin-bottom: 20px;
    }

    .hotel-flip-card {
        width: 145px;
        height: 145px;
    }

    .hotel-flip-front,
    .hotel-flip-back {
        padding: 10px;
    }

    .hotel-circle-title {
        padding: 15px 5px 8px 5px;
    }

    .hotel-circle-title h3 {
        font-size: 11px;
    }

    .hotel-circle-title span {
        font-size: 9px;
    }

    .hotel-flip-back h3 {
        font-size: 10px;
        margin-bottom: 2px;
    }

    .hotel-address {
        font-size: 8.5px;
        line-height: 1.2;
    }

    .hotel-bottom-name {
        font-size: 11px;
        margin-top: 6px;
    }
}

/* Small screen mobile view (Below 360px) */
@media (max-width: 360px) {
    .hotel-flip-card {
        width: 130px;
        height: 130px;
    }

    .hotel-address {
        font-size: 8px;
        line-height: 1.15;
    }

    .hotel-bottom-name {
        font-size: 10px;
    }
}