
body{
    margin:0;
    font-family:Poppins,sans-serif;
    background:#f8f9fb;
    color:#222;
}

/* Header */
header{
    background:linear-gradient(135deg,#111,#333);
    color:#fff;
    padding:5px;
    text-align:center;
}

/* Navigation */
nav{
    background:#000;
    padding:12px;
    text-align:center;
}

nav a{
    color:#fff;
    margin:0 15px;
    text-decoration:none;
    font-size:15px;
}

nav a:hover{
    color:#ff4f7b;
}

/* Hero */
.hero{
    background:url('/images/delhi-escort-book-now.jpg') center/cover;
    height:400px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.hero h1{
    background:rgba(0,0,0,0.6);
    color:#fff;
    padding:25px;
    border-radius:6px;
}

/* Container */
.container{
    max-width:1200px;
    margin:auto;
    padding:10px 20px;
}

/* Section Title */
.section-title{
    text-align:center;
    margin-bottom:30px;
}

.section-title h2{
    font-weight:600;
    font-size:28px;
}

.section-title p{
    color:#666;
}

/* Gallery */
.gallery{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

.gallery-card{
    background:#fff;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 4px 15px rgba(0,0,0,0.1);
    transition:0.3s;
}

.gallery-card:hover{
    transform:translateY(-5px);
}

.gallery-card img{
    width:100%;
    height:320px;
    object-fit:cover;
}

.gallery-info{
    padding:15px;
    text-align:center;
}

.gallery-info h3{
    margin:5px 0;
}

.gallery-info span{
    font-size:13px;
    color:#777;
}

.btn{
    display:inline-block;
    background:#ff4f7b;
    color:#fff;
    padding:8px 15px;
    margin-top:10px;
    border-radius:4px;
    text-decoration:none;
    font-size:14px;
}

/* SEO Content - Premium UX */

.delhi-content{
    background:linear-gradient(180deg,#ffffff,#fafafa);
    padding:20px 35px;
    margin-top:0px;
    border-radius:14px;

    line-height:1.9;
    font-size:14px;
    color:#222;

    box-shadow:0 8px 25px rgba(0,0,0,0.08);
    border:1px solid rgba(0,0,0,0.05);

    transition:all 0.3s ease;
}


/* Headings */
.delhi-content h1,
.delhi-content h2,
.delhi-content h3{
    font-weight:600;
    margin-bottom:15px;
    color:#111;
    letter-spacing:0.3px;
      text-align:center;

}

/* Paragraphs */
.delhi-content p{
    margin-bottom:18px;
    text-align:justify;
}

/* Links */
.delhi-content a{
    color:#ff4f7b;
    text-decoration:none;
    font-weight:500;
}

.delhi-content a:hover{
    text-decoration:underline;
}

/* Lists */
.delhi-content ul{
    padding-left:22px;
    margin:15px 0;
}

.delhi-content li{
    margin-bottom:8px;
}

/* Highlight Box (Optional) */
.seo-highlight{
    background:#fff5f8;
    padding:15px 20px;
    border-left:4px solid #ff4f7b;
    border-radius:6px;
    margin:20px 0;
    font-size:15px;
}

/* Mobile Optimization */
@media(max-width:768px){

    .delhi-content{
        padding:25px 20px;
        font-size:15px;
        line-height:1.8;
        border-radius:10px;
    }

}

/* Footer */
footer{
    background:#111;
    color:#ccc;
    text-align:center;
    padding:25px;
    margin-top:40px;
}

footer a{
    color:#ff4f7b;
    text-decoration:none;
}

/* Mobile */
@media(max-width:600px){

.hero{
    height:250px;
}

.hero h1{
    font-size:20px;
}

}

.thumbmain {
    margin: auto 0;
    width: 100%;
    float: left;
    padding: 0px 0px;
    margin: 0px 0px;
    padding: 1% 1%;
    margin: 16px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    border: 2px solid #f70058;
    position: relative;
    background-color: #fff;
}
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

/* FAQ Section */

.faq-section{
    max-width:900px;
    margin:60px auto;
    padding:0 20px;
}

.faq-title{
    text-align:center;
    font-size:32px;
    margin-bottom:35px;
    color:#222;
    font-weight:600;
}

.faq-box{
    background:#fff;
    border-radius:14px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    overflow:hidden;
}

/* FAQ Item */
.faq-item{
    border-bottom:1px solid #eee;
}

.faq-item:last-child{
    border-bottom:none;
}

/* Question */
.faq-question{
    width:100%;
    padding:18px 22px;
    background:none;
    border:none;
    text-align:left;

    font-size:17px;
    font-weight:500;
    color:#222;

    cursor:pointer;
    display:flex;
    justify-content:space-between;
    align-items:center;

    transition:background 0.3s;
}

.faq-question:hover{
    background:#fafafa;
}

/* Plus Icon */
.faq-question span{
    font-size:22px;
    font-weight:600;
    color:#ff4f7b;
    transition:transform 0.3s;
}

/* Answer */
.faq-answer{
    max-height:0;
    overflow:hidden;

    padding:0 22px;
    background:#fcfcfc;

    font-size:15px;
    line-height:1.7;
    color:#555;

    transition:max-height 0.4s ease, padding 0.3s ease;
}

/* Active State */
.faq-item.active .faq-answer{
    max-height:200px;
    padding:15px 22px 20px;
}

.faq-item.active .faq-question span{
    transform:rotate(45deg);
}

.area-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr); /* Desktop 4x4 */
  gap:12px;
  max-width:1000px;
  margin:30px auto;
}

.grid-btn{
  display:block;
  text-align:center;
  padding:12px 10px;
  background:#ff4f7b;
  color:#fff;
  text-decoration:none;
  font-size:14px;
  font-weight:600;
  border-radius:8px;
  transition:0.3s ease;
}

.grid-btn:hover{
  background:#e63c68;
  transform:translateY(-3px);
}

/* Tablet */
@media(max-width:992px){
  .area-grid{
    grid-template-columns:repeat(3, 1fr);
  }
}

/* Mobile → 2 Columns */
@media(max-width:600px){
  .area-grid{
    grid-template-columns:repeat(2, 1fr); /* 2 columns mobile */
  }

  .grid-btn{
    font-size:13px;
    padding:11px 8px;
  }
}



element.style {
}
.row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}


.single-profile .post {
    display: flex;
    justify-content: space-between;
    border: 1px solid #e9f0f5;
    border-radius: 8px;
    margin-bottom: 15px;
    height: 180px;
    overflow: hidden;
    cursor: pointer;
    position: relative
}

.single-profile .post .image-col {
    min-width: 115px;
    position: relative
}

.post #pro {
    position: absolute;
    margin-left: 8px;
    margin-top: 8px;
    z-index: 1
}

.pl-10 {
    padding-left: 2.5rem
}

.post .post-content-col .text .post-title {
    font-size: 16px;
    line-height: 24px;
    max-height: 3em;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: initial;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical
}

.geo-list-elem {
    font-size: 12px;
    display: inline-block;
    color: #fff
}

.post .contact-icons {
    position: absolute;
    right: 5px;
    bottom: 5px;
    display: flex;
    flex-direction: column;
    justify-content: right;
    background-color: #fff;
    z-index: 2;
    white-space: nowrap
}

@media only screen and (min-width: 1200px) {
    .post .post-content-col .text {
        padding-left:30px;
        display: grid
    }
}

@media only screen and (min-width: 992px) {
    .post .post-content-col .text {
        padding-left:20px;
        padding-right: 20px
    }

    .post .contact-icons {
        flex-direction: row;
        justify-content: right;
        align-items: center
    }
}

@media only screen and (min-width: 768px) {
    .post .post-content-col .text {
        padding:10px 55px 10px 10px
    }

    .post .contact-icons {
        right: 10px;
        bottom: 8px
    }
}

@media only screen and (min-width: 576px) {
    .post .post-content-col .text {
        padding:10px 55px 10px 10px
    }

    .post .contact-icons {
        left: auto;
        top: auto;
        right: 10px;
        bottom: 8px;
        display: flex;
        flex-direction: column;
        justify-content: right
    }
}

@media (max-width: 576px) {
    p.post-excerpt {
        visibility:hidden!important
    }

    .logo {
        position: absolute;
        top: 2px;
        left: 0;
        display: inline-block;
        height: 46px;
        width: 29%;
        text-align: center;
        padding: 10px 0 0;
        float: none
    }
}

.flexc {
    display: flex
}

.single-profile {
    padding: 0
}

.content .itemContainer .item div.itemLink {
    display: block;
    height: 216px;
    overflow: hidden
}

.content .itemContainer .item div.itemLink .itemInfoRight {
    width: calc(100% - 220px);
    float: right;
    padding: 20px 15px
}

.itemLink a img {
    width: 219px;
    padding: 5px
}

.content .itemContainer .item div.itemLink .itemInfoRight p {
    font-size: 15px;
    color: #000000;
    line-height: 26px
}

.content .itemContainer .item div.itemLink .itemInfoRight .itemFlagge {
    position: absolute;
    top: 8px;
    right: 8px;
    border: 1px solid rgba(0,0,0,.1)
}

.content .itemContainer .item div.itemLink .itemInfoRight .itemTitle {
    border-bottom: 1px solid rgba(0,0,0,.1);
    padding-bottom: 15px;
    margin-bottom: 15px
}

.content .itemContainer .item {
    position: relative;
    z-index: 5;
    border: 3px double #fff;
    margin-bottom: 30px
}

.content .itemContainer .item .itemInfoBottom {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: calc(100% - 294px);
    background-color: #030303;
    overflow: hidden
}

.content .itemContainer .item div.itemLink .itemInfoRight .premiumBox {
    display: inline-block;
    background-color: #000000;
    color: #fff;
    text-transform: uppercase;
    padding: 3px 5px;
    font-size: 14px;
    margin-right: 5px;
    border-bottom-right-radius: 10px
}

.content .itemContainer .item div.itemLink .itemInfoRight span {
    font-size: 25px;
    font-weight: 600;
    color: #ff0755
}

.content .itemContainer .item div.itemLink .itemInfoRight .itemPhone {
    display: inline-block;
    background-color: #e30000;
    color: #000;
    -webkit-text-fill-color: #fff;
    text-transform: uppercase;
    padding: 3px 5px;
    font-size: 14px;
    margin-right: 5px;
    border-radius: 5px
}

.bottomBox {
    color: #fff;
    margin-left: 17px
}

.content .itemContainer .item div.itemLink .itemInfoRight h4 {
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #e8ce88
}

@media (min-width: 574px) {
    .itemLink {
        display:inline-flex!important
    }
}

.list .listbutton,.pop-button {
    color: #fff;
    cursor: pointer;
    display: inline-block;
    margin-bottom: 10px;
}

@media only screen and (max-width: 575px) {
    .content .itemContainer .item div.itemLink {
        height:auto
    }

    .content .itemContainer .item div.itemLink .itemInfoRight {
        width: 100%
    }

    .content .itemContainer .item .itemInfoBottom {
        position: absolute;
        bottom: 8px;
        left: 0;
        width: 100%;
        background-color: #030303;
        overflow: hidden
    }

    .itemLink a img {
        width: 100%;
        height: 450px
    }
}

.pop-button {
    background-color: #2a8b09;
    padding: 15px 30px;
    border: none;
    font-size: 18px;
    width: 100%;
    border-radius: 5px;
    transition: .3s ease-in-out
}

.pop-button:hover {
    transform: scale(1.1);
    box-shadow: 0 2px 5px rgba(0,0,0,.2)
}

.pop-button:active {
    transform: scale(.9)
}

.profile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(150px,1fr));
    grid-gap: 20px;
    margin: 0 auto;
    padding: 20px
}

.profile {
    background-color: #aa0002;
    border-radius: 5px;
    padding: 5px;
    text-align: center;
    transition: transform .3s cubic-bezier(.2, .8, .2, 1)
}

.profile:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 10px rgba(0,0,0,.1)
}

.profile img {
    width: 100%;
    border-radius: 5%;
    margin-bottom: 5px
}

.profile p {
    margin-top: 2px;
    font-size: 20px;
    text-align: center
}

@media (max-width: 768px) {
    .geo-list {
        list-style:none;
        position: absolute;
        bottom: -6px;
        left: -31px
    }

    .profile-grid {
        grid-template-columns: repeat(auto-fit,minmax(200px,1fr))
    }
}

@media (max-width: 480px) {
    .profile-grid {
        grid-template-columns:repeat(auto-fit,minmax(150px,1fr))
    }
}

.list {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between
}

.list .listbutton {
    background-color: #ba1b1b;
    padding: 10px 20px;
    margin: 5px;
    border: none;
    border-radius: 4px;
    font-size: 14px
}

.content .itemContainer .item {
    position: relative;
    z-index: 5;
    border: 3px double #5f0026;
    margin-bottom: 30px;
}

@media screen and (not (flex-box:auto)) {
    .list {
        overflow: hidden
    }

    .listbutton {
        float: left;
        width: 48%;
        margin-right: 2%
    }

    .listbutton:nth-child(2n) {
        margin-right: 0
    }

    @media screen and (max-width: 768px) {
        .listbutton {
            padding:8px 16px;
            width: 100%
        }
    }
}


.pricing-section{
  padding:60px 20px;
  background:#f9f9f9;
  text-align:center;
}

.pricing-heading{
  font-size:30px;
  font-weight:700;
  margin-bottom:40px;
  color:#222;
}

.pricing-container{
  display:flex;
  justify-content:center;
  gap:30px;
  flex-wrap:wrap;
}

.price-card{
  background:#fff;
  width:300px;
  padding:30px 20px;
  border-radius:15px;
  box-shadow:0 8px 25px rgba(0,0,0,0.08);
  transition:0.3s ease;
}

.price-card:hover{
  transform:translateY(-10px);
}

.price-card h3{
  font-size:22px;
  margin-bottom:15px;
}

.price{
  font-size:26px;
  font-weight:700;
  color:#ff4f7b;
  margin-bottom:20px;
}

.price span{
  font-size:14px;
  color:#666;
}

.price-card ul{
  list-style:none;
  padding:0;
  margin:0 0 25px;
}

.price-card ul li{
  margin:10px 0;
  font-size:14px;
  color:#555;
}

.price-btn{
  display:inline-block;
  padding:10px 20px;
  background:#ff4f7b;
  color:#fff;
  text-decoration:none;
  border-radius:8px;
  font-weight:600;
  transition:0.3s;
}

.price-btn:hover{
  background:#e63c68;
}

.featured{
  background:linear-gradient(135deg,#ff4f7b,#ff7fa2);
  color:#fff;
}

.featured .price,
.featured span,
.featured ul li{
  color:#fff;
}

.featured .price-btn{
  background:#fff;
  color:#ff4f7b;
}


