






/* ======================================================
   INDEX HERO BANNER START
====================================================== */

.index-hero-banner {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: url("../imagess/e.webp")
        center / cover no-repeat;
    overflow: hidden;
}

.index-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.85),
        rgba(0, 0, 0, 0.55),
        rgba(0, 0, 0, 0.2)
    );
    z-index: 1;
}

.index-hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    color: #fff;
}

/* TAGLINE */
.index-hero-tagline {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ff3d6b;
    margin-bottom: 12px;
}

/* TITLE */
.index-hero-title {
    font-size: 52px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 15px;
}

.index-hero-title span {
    color: #ff3d6b;
}

/* TEXT */
.index-hero-text {
    font-size: 17px;
    line-height: 1.7;
    color: #ddd;
    margin-bottom: 30px;
}

/* BUTTONS */
.index-hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.index-btn-primary {
    background: linear-gradient(135deg, #ff3d6b, #ff004c);
    color: #fff;
    padding: 14px 34px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.index-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 61, 107, 0.4);
}

.index-btn-outline {
    border: 1px solid #ff3d6b;
    color: #ff3d6b;
    padding: 14px 34px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.index-btn-outline:hover {
    background: #ff3d6b;
    color: #fff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .index-hero-title {
        font-size: 38px;
    }

    .index-hero-text {
        font-size: 15px;
    }
}

/* ======================================================
   INDEX HERO BANNER END
====================================================== */



/* ================== ESCORT SECTION ================== */
.index-escort-section{
    padding:60px 15px;
    background:#050b1a;
}

.index-escort-grid{
    max-width:1300px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:25px;
}

.index-escort-card{
    background:#18191b;
    border-radius:18px;
    overflow:hidden;
    border:2px solid #e91e63;
    color:#fff;
    transition:0.3s ease;
}

.index-escort-card:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 40px rgba(0,0,0,0.5);
}

/* IMAGE */
.index-escort-image img{
    width:100%;
    height:360px;
    object-fit:cover;
}

/* CONTENT */
.index-escort-content{
    padding:16px;
}

.index-escort-name{
    font-size:20px;
    font-weight:700;
    text-align:center;
    margin-bottom:6px;
}

/* META */
.index-escort-meta{
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:13px;
}

.index-escort-category{
    color:#cfd6e6;
}

.index-verified-badge{
    background:rgba(0,200,0,0.18);
    color:#2ecc71;
    padding:4px 10px;
    border-radius:20px;
    font-weight:600;
}

/* DETAILS */
.index-escort-details{
    display:flex;
    justify-content:center;
    gap:8px;
    margin:12px 0;
    flex-wrap:wrap;
}

.index-detail{
    background:#f5b700;
    color:#000;
    font-size:12px;
    padding:4px 10px;
    border-radius:6px;
    font-weight:600;
}

/* CONTACT */
.index-escort-contact-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    border-top:1px solid rgba(255,255,255,0.1);
    padding-top:10px;
}

.index-escort-number{
    font-size:15px;
    color:#f5c97a;
    font-weight:600;
}

.index-escort-social{
    display:flex;
    gap:8px;
}

.index-escort-social a{
    width:34px;
    height:34px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
}

.index-call{background:#1e90ff;}
.index-whatsapp{background:#25d366;}

/* ================== RESPONSIVE ================== */

/* TABLET */
@media(max-width:992px){
    .index-escort-grid{
        grid-template-columns:repeat(2, 1fr);
    }
}

/* MOBILE */
@media(max-width:576px){
    .index-escort-grid{
        grid-template-columns:1fr;
    }

    .index-escort-image img{
        height:300px;
    }

    .index-escort-number{
        font-size:14px;
    }
}



/* ======================================================
   INDEX TRUST STRIP START
====================================================== */

.index-trust-strip{
    background:#111;
    border-bottom:2px solid #e91e63;
    padding:18px 0;
}

.index-trust-grid{
    display:flex;
    justify-content:space-between;
    gap:20px;
    flex-wrap:wrap;
}

.index-trust-item{
    display:flex;
    align-items:center;
    gap:10px;
    color:#ffd166;
    font-weight:700;
    font-size:14px;
}

.index-trust-item i{
    color:#2ecc71;
    font-size:18px;
}

/* RESPONSIVE */
@media(max-width:768px){
    .index-trust-grid{
        justify-content:center;
    }
}

/* ======================================================
   INDEX TRUST STRIP END
====================================================== */




/* ======================================================
   INDEX CONTENT SECTION START
====================================================== */

.index-content-wrap {
    width: 100%;
}

/* DARK BLOCK */
.index-content-dark {
    background: radial-gradient(circle at top, #1a1a1a, #000);
    border-top: 3px solid #ffd166;
    border-bottom: 3px solid #ffd166;
    padding: 70px 0;
    color: #ddd;
}

.index-content-title {
    font-size: 32px;
    font-weight: 800;
    text-transform: uppercase;
    color: #ffd166;
    margin-bottom: 25px;
}

.index-content-dark p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 18px;
}

/* GRADIENT BLOCK */
.index-content-highlight {
    background: linear-gradient(135deg, #981e55, #981d55);
    padding: 70px 0;
    color: #111;
}

.index-content-title.dark {
    color: #f6f0f0;
}

.index-content-highlight p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #ddd;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .index-content-title {
        font-size: 24px;
    }

    .index-content-dark,
    .index-content-highlight {
        padding: 45px 0;
    }
}

/* ======================================================
   INDEX CONTENT SECTION END
====================================================== */



/* ======================================================
   INDEX WHY CHOOSE US START
====================================================== */

.index-why-section{
    background:#050b1a;
    padding:80px 15px;
}

.index-why-title{
    text-align:center;
    font-size:38px;
    font-weight:900;
    color:#ffd166;
    margin-bottom:50px;
}

.index-why-title span{
    color:#ff3d6b;
}

.index-why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.index-why-card{
    background:#111;
    border:2px solid #e91e63;
    border-radius:18px;
    padding:30px 22px;
    text-align:center;
    color:#ddd;
}

.index-why-card i{
    font-size:36px;
    color:#ffd166;
    margin-bottom:15px;
}

.index-why-card h4{
    font-size:18px;
    font-weight:800;
    margin-bottom:10px;
}

/* RESPONSIVE */
@media(max-width:992px){
    .index-why-grid{grid-template-columns:repeat(2,1fr);}
}
@media(max-width:576px){
    .index-why-grid{grid-template-columns:1fr;}
}

/* ======================================================
   INDEX WHY CHOOSE US END
====================================================== */




/* ======================================================
   INDEX CALL GIRLS JAIPUR SECTION START
====================================================== */

.index-jaipur-section {
    width: 100%;
    background: linear-gradient(135deg, #8c0038, #a30044);
    padding: 70px 20px;
}

.index-jaipur-container {
    max-width: 1400px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 50px;
}

/* LEFT CONTENT */
.index-jaipur-content {
    flex: 1;
    color: #ffffff;
}

.index-jaipur-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #ffd966;
}

.index-jaipur-content h2 span {
    color: #ffffff;
}

.index-jaipur-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #f5f5f5;
}

.index-jaipur-highlight {
    font-size: 18px;
    font-weight: 600;
    color: #ffd966;
}

.index-jaipur-highlight span {
    color: #ffffff;
}

/* RIGHT IMAGE */
.index-jaipur-image {
    flex: 0.9;
}

.index-jaipur-image img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.45);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .index-jaipur-container {
        flex-direction: column;
        text-align: center;
    }

    .index-jaipur-content h2 {
        font-size: 34px;
    }
}

/* ======================================================
   INDEX CALL GIRLS JAIPUR SECTION END
====================================================== */


/* ======================================================
   INDEX TESTIMONIAL SECTION START
====================================================== */

.index-testimonial-section{
    background:#0b0f1a;
    padding:80px 15px;
}

.index-testimonial-title{
    text-align:center;
    font-size:38px;
    font-weight:900;
    color:#ffd166;
    margin-bottom:50px;
}

.index-testimonial-title span{
    color:#ff3d6b;
}

.index-testimonial-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.index-testimonial-card{
    background:#111;
    border:2px solid #e91e63;
    border-radius:18px;
    padding:28px;
    color:#ddd;
}

.index-testimonial-card h5{
    margin-top:15px;
    color:#ffd166;
    font-weight:700;
}

/* RESPONSIVE */
@media(max-width:992px){
    .index-testimonial-grid{grid-template-columns:1fr;}
}

/* ======================================================
   INDEX TESTIMONIAL SECTION END
====================================================== */





/* ================== WIDE ESCORT CARD ================== */
.index-wide-escort-card{
    position:relative;
    background:#fff;
    border-radius:18px;
    border:2px solid #e91e63;
    padding:18px;
    max-width:1400px;
    margin:10px auto;
}

.index-wide-escort-section{
    padding: 10px 15px;
    background:#050b1a; /* aap change bhi kar sakte ho */
}


/* VERIFIED TAG */
.index-verified-corner{
    position:absolute;
    top:14px;
    right:14px;
    background:linear-gradient(135deg,#28a745,#1e7e34);
    color:#fff;
    padding:6px 16px;
    border-radius:30px;
    font-size:13px;
    font-weight:700;
    display:flex;
    align-items:center;
    gap:6px;
    z-index:10;
    box-shadow:0 6px 18px rgba(0,0,0,0.3);
}

/* INNER LAYOUT */
.index-wide-escort-inner{
    display:flex;
    gap:22px;
}

/* IMAGE */
.index-wide-escort-image img{
    width:260px;
    height:260px;
    object-fit:cover;
    border-radius:14px;
}

/* CONTENT */
.index-wide-escort-title{
    font-size:22px;
    font-weight:800;
    margin-bottom:10px;
}

.index-wide-escort-text{
    font-size:15px;
    line-height:1.7;
    margin-bottom:14px;
    color:#333;
}

/* TAGS */
/* FIX CHIP SPACING */
.index-wide-escort-tags{
    display: flex;
    flex-wrap: wrap;
    gap: 8px 10px; /* vertical + horizontal gap */
}

.index-wide-escort-tags span{
    background:#2f7d00;
    color:#fff;
    padding:6px 14px;
    border-radius:22px;
    font-size:13px;
    display:inline-flex;
    align-items:center;
    white-space:nowrap;
}


/* BUTTONS */
.index-wide-escort-buttons{
    margin-top:16px;
    display:flex;
    gap:12px;
}

.index-btn-whatsapp{
    background:#2f4858;
    color:#fff;
    padding:10px 22px;
    border-radius:30px;
    text-decoration:none;
}

.index-btn-call{
    background:#b1003a;
    color:#fff;
    padding:10px 22px;
    border-radius:30px;
    text-decoration:none;
}

/* RESPONSIVE */
@media(max-width:768px){
    .index-wide-escort-inner{
        flex-direction:column;
    }

    .index-wide-escort-image img{
        width:100%;
        height:320px;
    }
}






/* ======================================================
   INDEX RIGHT LEFT CONTENT SECTION START
====================================================== */
.index-rl-section{
    background:#ffb000;
    padding:70px 20px;
}

/* IMAGE */
.index-rl-image img{
    width:100%;
    max-width:420px;
    border-radius:20px;
    box-shadow:0 20px 50px rgba(0,0,0,0.4);
}

/* CONTENT */
.index-rl-content{
    color:#111;
}

.index-rl-content h2{
    font-size:42px;
    font-weight:900;
    margin-bottom:25px;
    text-transform:uppercase;
}

.index-rl-content h2 span{
    display:block;
    color:#7b0036;
}

.index-rl-content p{
    font-size:16px;
    line-height:1.9;
    margin-bottom:18px;
}

/* RESPONSIVE */
@media(max-width:992px){
    .index-rl-content h2{
        font-size:32px;
        text-align:center;
    }

    .index-rl-content{
        text-align:center;
        margin-top:30px;
    }

    .index-rl-image img{
        max-width:300px;
    }
}
/* ======================================================
   INDEX RIGHT LEFT CONTENT SECTION END
====================================================== */



/* ======================================================
   INDEX FAQ SECTION START
====================================================== */

.index-faq-section{
    background:#050b1a;
    padding:70px 15px;
}

.index-faq-title{
    text-align:center;
    font-size:38px;
    font-weight:900;
    color:#ffd166;
    margin-bottom:40px;
}

.index-faq-title span{
    color:#ff3d6b;
}

.index-faq-accordion .accordion-item{
    background:#111;
    border:2px solid #e91e63;
    border-radius:14px;
    margin-bottom:15px;
    overflow:hidden;
}

.index-faq-accordion .accordion-button{
    background:#111;
    color:#ffd166;
    font-weight:700;
    font-size:16px;
}

.index-faq-accordion .accordion-button:not(.collapsed){
    background:linear-gradient(135deg,#981e55,#701135);
    color:#fff;
}

.index-faq-accordion .accordion-button:focus{
    box-shadow:none;
}

.index-faq-accordion .accordion-body{
    background:#0b0b0b;
    color:#ddd;
    font-size:15px;
    line-height:1.8;
}

/* RESPONSIVE */
@media(max-width:768px){
    .index-faq-title{
        font-size:28px;
    }

    .index-faq-accordion .accordion-button{
        font-size:15px;
    }
}

/* ======================================================
   INDEX FAQ SECTION END
====================================================== */




/* ======================================================
   INDEX RATE LIST SECTION START
====================================================== */

.index-rate-section{
    background:#050b1a;
}
.index-rate-title{
    color:#ffd166;
    font-size:38px;
    font-weight:900;
}

/* CARD */
.index-rate-card{
    background:#111;
    border:2px solid #e91e63;
    border-radius:22px;
    padding:35px 30px;
    color:#fff;
    position:relative;
    height:100%;
    transition:0.3s ease;
}

.index-rate-card:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 60px rgba(0,0,0,0.6);
}

/* TYPE */
.rate-type{
    text-align:center;
    color:#ff6fae;
    font-size:24px;
    font-weight:800;
    margin-bottom:25px;
}

/* LIST */
.rate-list{
    list-style:none;
    padding:0;
    margin:0 0 30px 0;
}

.rate-list li{
    display:flex;
    justify-content:space-between;
    padding:10px 0;
    border-bottom:1px dashed rgba(255,255,255,0.2);
    font-size:15px;
}

.rate-list li span{
    color:#ffd166;
    font-weight:600;
}

/* BUTTON */
.rate-btn{
    display:block;
    text-align:center;
    padding:12px 0;
    border-radius:30px;
    text-decoration:none;
    font-weight:700;
    background:#b1003a;
    color:#fff;
    transition:0.3s;
}

.rate-btn:hover{
    background:#ff3d6b;
}

/* POPULAR */
.index-rate-card.popular{
    background:linear-gradient(135deg,#981e55,#701135);
    border-color:#ffd166;
}

.rate-badge{
    position:absolute;
    top:-14px;
    left:50%;
    transform:translateX(-50%);
    background:#ffd166;
    color:#000;
    font-size:13px;
    font-weight:800;
    padding:6px 18px;
    border-radius:30px;
}

/* VIP */
.index-rate-card.vip{
    border-color:#f5b700;
}

.vip-btn{
    background:#2f7d00;
}

.vip-btn:hover{
    background:#3fae00;
}

/* RESPONSIVE */
@media(max-width:768px){
    .index-rate-title{
        font-size:28px;
    }
}
/* ======================================================
   INDEX RATE LIST SECTION END
====================================================== */



/* ======================================================
   INDEX LOCATION COVERAGE SECTION START
====================================================== */

.index-location-section{
    background:linear-gradient(135deg,#050b1a,#0b0f1a);
    padding:80px 15px;
    border-top:3px solid #ffd166;
}

.index-location-header h2{
    font-size:40px;
    font-weight:900;
    color:#ffd166;
    margin-bottom:15px;
}

.index-location-header h2 span{
    color:#ff3d6b;
}

.index-location-header p{
    color:#ddd;
    font-size:16px;
    max-width:750px;
    margin:0 auto 50px;
    line-height:1.8;
}

/* BLOCK */
.index-location-block{
    margin-bottom:45px;
}

.index-location-subtitle{
    font-size:24px;
    font-weight:800;
    color:#ffffff;
    margin-bottom:20px;
}

/* GRID */
.index-location-grid{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
}

/* CHIP */
.location-chip{
    padding:12px 22px;
    border-radius:30px;
    background:#111;
    border:2px solid #e91e63;
    color:#ffd166;
    text-decoration:none;
    font-weight:600;
    font-size:14px;
    transition:0.3s ease;
}

.location-chip:hover{
    background:#e91e63;
    color:#fff;
    transform:translateY(-2px);
}

/* LIGHT VARIANT */
.location-chip.light{
    background:#1a1a1a;
    border-color:#ffd166;
    color:#fff;
}

.location-chip.light:hover{
    background:#ffd166;
    color:#000;
}

/* DISCLAIMER */
.index-location-disclaimer{
    margin-top:40px;
    padding-top:20px;
    border-top:1px solid rgba(255,255,255,0.15);
    text-align:center;
}

.index-location-disclaimer p{
    color:#aaa;
    font-size:14px;
    line-height:1.7;
}

/* RESPONSIVE */
@media(max-width:768px){
    .index-location-header h2{
        font-size:28px;
    }

    .index-location-subtitle{
        font-size:20px;
    }

    .location-chip{
        font-size:13px;
        padding:10px 18px;
    }
}
/* ======================================================
   INDEX LOCATION COVERAGE SECTION END
====================================================== */



