*,
/* ==================== SCROLLING FIX ==================== */
html, body {
    max-width: 100%;
    overflow-x: hidden;     /* Sirf horizontal scroll band */
    overflow-y: auto;       /* Vertical scroll chalu rahe */
    scroll-behavior: smooth;
}

/* Agar .contentmain mein bhi horizontal scroll aa raha hai */
.contentmain {
    max-width: 100%;
    overflow-x: hidden;
    overflow-y: visible;
}

/* Extra Safety */
img, video, iframe, table, .new_images {
    max-width: 100% !important;
    height: auto;
}
/* ==================== RESPONSIVE TABLE ==================== */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
    background: #1a0033;
}

td, th {
    border: 1px solid #6e00ff;
    padding: 12px 10px;
    color: #ddd;
    text-align: left;
    font-size: 15px;
}

th {
    background-color: #6e00ff;
    color: #fff;
    font-weight: 600;
}

/* Table Wrapper for Horizontal Scroll */
.table-wrapper {
    width: 100%;
    overflow-x: auto;
    margin: 15px 0;
    border: 1px solid #6e00ff;
    padding: 5px;
    background: #120022;
}

/* Mobile Friendly */
@media (max-width: 768px) {
    td, th {
        padding: 10px 8px;
        font-size: 14px;
        min-width: 100px;     /* Important for scroll */
    }
    
    th {
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    td, th {
        font-size: 13.5px;
        padding: 9px 6px;
    }
}
h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    text-align: left;
    margin-bottom: 18px;
}

mark,
mark a {
    color: #fff;
    background: #00ffcc;
    padding: 2px 6px;
}

*,
nav {
    color: #e0e0ff;
}

footer, nav {
    background-color: #1a0033;
}

.footer h5,
.navbar-brand h2 {
    font-size: 26px;
    font-weight: 700;
}

.contentmain p,
.footer p,
.pinkbg .container,
ol,
ul {
    text-align: justify;
    line-height: 1.7;
}

.card,
.card-body a,
.navbar,
.profile-items {
    position: relative;
}

.card-body a:hover,
.my-button,
.nav-link,
.navbar-brand,
.navbar-toggler:hover,
a {
    text-decoration: none;
}

*,
.areabutton,
::after,
::before {
    box-sizing: border-box;
}

.navbar-nav a,
nav,
td,
th {
    padding: 10px;
}

.areabutton,
.my-button,
button {
    cursor: pointer;
}

* {
    max-width: 100%;
}

body {
    background-color: #0a0a1f;
    font-family: 'Segoe UI', sans-serif;
    font-size: 17px;
    line-height: 26px;
}

strong {
    color: #00ffcc;
}

ol,
ul {
    margin: 10px 0;
}

body,
.contentmain {
    font-family: sans-serif;
    font-size: 17px;
    line-height: 26px;
}

h1,
h2 {
    font-size: 2.1rem;
    color: #00ffcc;
}

h3,
h4,
h5,
h6 {
    font-size: 1.55rem;
    color: #c4a1ff;
}

p a {
    color: #00ffcc;
}

mark {
    background-color: #8b00ff;
    color: #fff;
}

header {
    background: linear-gradient(135deg, #2a0066, #6e00ff);
    overflow: hidden;
}
.new_images {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border: 1px solid #6e00ff;
}

.new_images:hover {
    border-color: #00ffcc;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .new_images { height: 185px; }
}

@media (max-width: 576px) {
    .new_images { height: 165px; }
}

@media (max-width: 400px) {
    .new_images { height: 150px; }
}
/* ==================== MAIN BANNER - PREMIUM CLEAN LOOK (No Glow) ==================== */
.main-bannerx {
    position: relative;
    width: 100%;
    min-height: 520px;
    background: url('../coxx/call-girls-near-me.jpg') center/cover no-repeat fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

/* Dark Overlay */
.main-bannerx::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

/* Content */
.banner-contentx {
    position: relative;
    z-index: 2;
    max-width: 850px;
    padding: 0 20px;
}

.main-bannerx h1 {
    font-size: 3.6rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 18px;
    line-height: 1.1;
    letter-spacing: 0.5px;
}

.main-bannerx p {
    font-size: 1.45rem;
    color: #e0e0ff;
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Button */
.banner-btnx {
    display: inline-block;
    padding: 16px 45px;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(90deg, #6e00ff, #00d4aa);
    border: none;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.banner-btnx:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

/* ==================== MOBILE RESPONSIVE ==================== */
@media (max-width: 768px) {
    .main-bannerx {
        min-height: 400px;
    }
    .main-bannerx h1 {
        font-size: 2.6rem;
    }
    .main-bannerx p {
        font-size: 1.15rem;
    }
    .banner-btnx {
        padding: 14px 38px;
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .main-bannerx {
        min-height: 360px;
    }
    .main-bannerx h1 {
        font-size: 2.2rem;
    }
    .main-bannerx p {
        font-size: 1.05rem;
    }
}

@media (max-width: 380px) {
    .main-bannerx {
        min-height: 320px;
    }
    .main-bannerx h1 {
        font-size: 1.9rem;
    }
}
/* Navbar */
.navbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 10px;
    background: rgba(26, 0, 51, 0.98);
    border-bottom: 4px solid #00ffcc;
}

.navbar>.container {
    width: 100%;
    display: contents;
    align-items: center;
    justify-content: space-between;
}

.navbar-nav a {
    margin: 5px;
    border: 1px solid #00ffcc;
    padding: 8px 16px;
    font-weight: 600;
    background: transparent;
    white-space: nowrap;
}

.navbar-nav a:hover {
    background: #00ffcc;
    color: #1a0033;
}



section {
    width: 100%;
    background-color: #120022;
}

.footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    background: #1a0033;
}

.footer-box {
    margin: 1% 0;
    padding: 1%;
}

.container,
.container-fluid {
    margin-right: auto;
    margin-left: auto;
}

.footer-box li {
    overflow: hidden;
    list-style: none;
    padding: 2px 0 2px 22px;
    margin: 0 0 4px;
}

.contentmain h1,
.footer h5,
h2,
h3,
h4,
h5,
h6 {
    color: #00ffcc;
    margin-bottom: 12px;
}

.footer h5 {
    padding: 5px 0;
}

.footer-bar {
    border-top-style: solid;
    border-top-width: 2px;
    border-top-color: #6e00ff;
    text-align: center;
}

.footer-bar>.container {
    padding-top: 15px;
    padding-bottom: 15px;
    letter-spacing: .5px;
}

.container {
    padding-right: 15px;
    padding-left: 15px;
    text-align: center;
}

@media(min-width:320px) {
    .area-list li {
        width: 100%;
    }
}

@media screen and (min-width:425px) {
    .content-left,
    .content-right,
    .footer-box {
        width: 100%;
    }
}

@media(min-width:576px) {
    .container {
        max-width: 540px;
    }
}

@media(min-width:768px) {
    .container {
        max-width: 720px;
    }
    .footer-box {
        width: 31.33%;
    }
    .area-list li {
        width: 29.6%;
    }
    .content-left,
    .content-right {
        width: 65.7%;
    }
    .content-left {
        padding-right: 30px;
    }
    .content-right {
        float: right;
        padding-left: 30px;
    }
    .img-left,
    .img-right {
        width: 30%;
        border: 6px double #00ffcc;
    }
}

.areabutton,
.my-button,
.profile,
.testimonials,
.text-center,
td,
th {
    text-align: center;
}

@media(min-width:992px) {
    .container {
        max-width: 960px;
    }
    .area-list li {
        width: 22.29%;
    }
    .content-left,
    .content-right {
        width: 66.8%;
    }
}

@media(min-width:1200px) {
    .container {
        max-width: 1280px;
    }
}

.container-fluid {
    width: 100%;
    padding-right: 30px;
    padding-left: 30px;
}

footer>.container,
main>section>.container {
    padding-top: 30px;
    padding-bottom: 30px;
}

.pinkbg .container {
    background-color: #6e00ff;
}

.contentmain>p {
    margin-top: 15px;
    margin-bottom: 20px;
}

.collapse:not(.show) {
    display: none;
}

@media (min-width:992px) {
    nav .navbar-collapse {
        justify-content: flex-end;
    }
    .navbar-expand-lg .navbar-toggler {
        display: none;
    }
    .navbar-expand-lg .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
    }
    .navbar-expand-lg .navbar-nav {
        flex-direction: row;
    }
}

.navbar-light .navbar-toggler {
    color: rgba(255, 255, 255, 0.8);
    border-color: #00ffcc;
}

.navbar-toggler {
    padding: .25rem .75rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: transparent;
    border: 1px solid #00ffcc;
}

.navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}

.navbar-collapse {
    flex-basis: 100%;
    flex-grow: 1;
    align-items: center;
}

.m-auto {
    margin: auto !important;
}

.navbar-nav {
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.nav-link {
    display: block;
    padding: .5rem 1rem;
    color: #fff;
}

.row {
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: calc(var(--bs-gutter-y)* -1);
    margin-right: calc(var(--bs-gutter-x)* -.5);
    margin-left: calc(var(--bs-gutter-x)* -.5);
}

.content-left p,
.content-right p {
    text-align: justify;
    color: #ddd;
    font-size: 17px;
}

.content-left h1,
.content-right h1,
h2,
h3,
h4,
h5 {
    color: #00ffcc;
}

.call-button,
.whatsapp-button {
    width: 58px;
    height: 58px;
    background: #00ff88;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px #00ff88;
    padding: 5px;
    margin: 8px;
}

.card {
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(110, 0, 255, 0.35);
    border: 3px solid #6e00ff;
    background: linear-gradient(145deg, #1f0033, #2a004d);
    min-width: 0;
    word-wrap: break-word;
}

.card-img-top {
    object-fit: cover;
    border-bottom: 5px solid #00ffcc;
    margin: 12px;
}

.card-body {
    flex: 1 1 auto;
    padding: 1.4rem;
    text-align: left;
}

.card-title {
    margin-bottom: .75rem;
}

.card-text {
    color: #ddd;
    line-height: 28px;
    font-size: 17px;
}

.btns {
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 10px;
    margin-left: 7px;
}

.card-body a {
    color: #fff;
    font-size: 19px;
    font-weight: 700;
}

.card-body a:hover {
    color: #00ffcc;
}

a.profile-btn {
    background-color: #8b00ff;
    font-size: 18px;
    padding: 8px 14px;
    color: #fff;
    border: 2px solid #00ffcc;
    visibility: hidden;
}

.social-btn i,
.areabutton:hover,
button {
    background-color: #6e00ff;
}

.social-btn i {
    color: #fff;
    padding: 10px;
    margin: 8px;
    border: 2px solid #00ffcc;
}

.social-btn i:hover {
    background: transparent;
    border: 2px solid #00ffcc;
    color: #00ffcc;
}

.profile-view {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
    background: #1f0033;
    padding: 30px 15px;
    border: 2px solid #6e00ff;
}

.profile-items {
    overflow: hidden;
    border: 3px solid #00ffcc;
    background: #120022;
}

.profile-items:hover {
    box-shadow: 0 15px 35px rgba(110, 0, 255, 0.5);
}

.profile-items img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.profile-items:hover img {
}

.profile-items .mask {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(transparent, rgba(110,0,255,0.95));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    padding: 20px;
    text-align: center;
}

.profile-items:hover .mask {
    opacity: 1;
    visibility: visible;
}

.sticky-buttons {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: flex;
    flex-direction: column;
    z-index: 999;
}

.my-button {
    padding: 14px 32px;
    width: 80%;
    border: none;
    background: linear-gradient(90deg, #6e00ff, #00ffcc);
    color: #fff;
    font-size: 15px;
    margin: 6px 4px;
}

.my-button:hover {
    background: #fff;
    color: #6e00ff;
}

.shadow {
    border: 1px solid #00ffcc;
    width: 100%;
    background: #1f0033;
    font-size: 20px;
    box-shadow: 0 0 15px rgba(0, 255, 204, 0.4);
    border-bottom-right-radius: 25px;
    border-top-left-radius: 25px;
}

.faq {
    padding: 20px;
}

.faq-questions {
    display: grid;
    grid-gap: 20px;
    margin: 20px 0;
}

.faq-question {
    padding: 20px;
    background-color: #1f0033;
    border: 2px solid #00ffcc;
    text-align: left;
}

.faq-question h4 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #00ffcc;
    font-size: 20px;
}

.faq-question p,
.faq-question ul li {
    color: #ddd;
}

.areabutton {
    display: inline-block;
    background: linear-gradient(90deg, #8b00ff, #00ffcc);
    border: 3px solid #fff;
    color: #fff;
    font-size: 16px;
    padding: 10px 24px;
    width: auto;
    margin: 6px;
}

.areabutton:hover {
    background: #fff;
    color: #6e00ff;
}

table {
    width: 100%;
    border-collapse: collapse;
}

td,
th {
    border: 1px solid #6e00ff;
    color: #ddd !important;
    padding: 12px;
}

th {
    background-color: #6e00ff;
    color: #fff;
}

td {
    background: #1a0033 !important;
}

button {
    color: #fff;
    padding: 12px 20px;
    border: none;
}

.testimonial-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.testimonial-card {
    background-color: #1f0033;
    padding: 20px;
    margin: 10px;
    border: 2px dashed #00ffcc;
    width: 30%;
}

section.citixbg {
    background: #27000d;
}

div#profilegrids {
    background: #1f0033;
    padding: 20px;
    border: 2px solid #00ffcc;
}

.citiesxarea div#city {
    float: left;
}

.citiesxarea div#city a {
    background: #00ffcc;
    padding: 10px 22px;
    margin: 6px;
    float: left;
    color: #1a0033;
    font-weight: bold;
}

.clear { clear: both; }

.profile-pic {
    width: 100px;
    height: 100px;
}

.testimonial-text {
    margin-top: 10px;
    color: #fff;
}

.footer-box1 ul li {
    display: inline;
}

.footer-box1 ul li a {
    background: #6e00ff;
    color: #fff;
    padding: 8px 18px;
    margin: 5px;
}

.footer-box1 {
    width: 100%;
    float: left;
    border-bottom: 1px solid #6e00ff;
    padding-bottom: 25px;
    text-align: center;
    margin-bottom: 20px;
}

.img-left img,
.img-right img {
    width: 100%;
    
}

a#profwhatsapp {
    width: 100%;
    float: left;
    background: #00ff88;
    color: #001a0a;
    font-weight: 600;
    padding: 10px 0;
    margin: 6px 0;
}

a#profcall {
    width: 100%;
    float: left;
    background: #ff2d95;
    color: #ffffff;
    font-weight: 600;
    padding: 10px 0;
    margin: 6px 0;
}

.imgnew {
    max-width: 100%;
    border: 2px solid #6e00ff;
}

.profile {
    background-color: #1a0033;
    padding: 10px;
    border: 1px solid #6e00ff;
}

.profile:hover {
    border-color: #00ffcc;
}

/* Responsive */
@media (max-width:768px) {
    .areabutton {
        font-size: 15px;
        width: 160px;
    }
    .testimonial-card {
        width: 100%;
    }
    table { zoom: 0.85; }
}

@media (max-width:576px) {
    h1, h2 { font-size: 1.9rem; }
}
/* Profile Grid */
#profilegrids {
    background: #1f0033;
    padding: 25px 12px;
    border: 2px solid #6e00ff;
    margin: 20px 10px;
    box-shadow: 0 10px 30px rgba(110, 0, 255, 0.3);
}

.profile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(165px, 1fr));
    gap: 16px;
    width: 100%;
}

.profile {
    background: #120022;
    border: 2px solid #6e00ff;
    overflow: hidden;
}

.profile:hover {
    border-color: #00ffcc;
}

.profile img {
    width: 100%;
    height: 210px;
    object-fit: cover;
}

#profwhatsapp,
#profcall {
    display: block;
    width: 100%;
    text-align: center;
    font-weight: 700;
    padding: 13px 0;
    font-size: 15.5px;
    text-decoration: none;
}

#profwhatsapp {
    background: linear-gradient(90deg, #00cc66, #00ff88);
    color: #001a0a;
}

#profcall {
    background: linear-gradient(90deg, #e91e63, #ff2d95);
    color: #fff;
}

/* Cards & Other */
.card {
    box-shadow: 0 10px 30px rgba(110, 0, 255, 0.4);
    border: 3px solid #6e00ff;
    background: linear-gradient(145deg, #1f0033, #2a004d);
}

.card-img-top {
    object-fit: cover;
    border-bottom: 5px solid #00ffcc;
    margin: 12px;
}

.my-button {
    padding: 14px 32px;
    border: none;
    background: linear-gradient(90deg, #6e00ff, #00ffcc);
    color: #fff;
    font-size: 15px;
}

.areabutton {
    background: linear-gradient(90deg, #8b00ff, #00ffcc);
    color: #fff;
    font-size: 16px;
    padding: 10px 20px;
    margin: 6px;
}

table {
    width: 100%;
    border-collapse: collapse;
}

td, th {
    border: 1px solid #6e00ff;
    padding: 10px;
    color: #ddd;
}

th {
    background: #6e00ff;
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    h1, h2 { font-size: 1.95rem; }
    .navbar { padding: 12px 8px; }
    .profile img { height: 200px; }
    section { padding: 15px 8px; }
}

@media (max-width: 576px) {
    .profile-grid {
        grid-template-columns: repeat(auto-fit, minmax(155px, 1fr));
        gap: 14px;
    }
    .profile img { height: 190px; }
    #profilegrids { padding: 20px 10px; margin: 15px 8px; }
}

/* Final Safety */
img, table, iframe, video {
    max-width: 100% !important;
    height: auto;
}