/* Navbar CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body, html {
    overflow-x: hidden;
}

.o-header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    background: #2a1c2a;
    z-index: 1000;
    -webkit-backdrop-filter: blur(.375rem);
    backdrop-filter: blur(.375rem);
    transition: background-color 0.3s ease-in-out;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar {
    display: flex;
    margin: 0;
    padding: 0;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #391965!important;
    color: white;
    position: relative;
    transition: background-color 0.3s ease-in-out;
}

.navbar.scrolled {
    background: black !important;
}

.logo a {
    color: white;
    text-decoration: none;
    font-size: 22px;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: 1px;
}

.logo{
    flex-shrink: 0;
}

.divider {
    width: 0.6px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.3);
    margin: 0 15px;
}

.nav-links{
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

.nav-links ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-links ul li {
    margin-right: 20px;
    align-items: center;
}

.nav-links ul li:last-child {
    margin-right: 0;
}

.nav-links ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s;
    padding: 8px 12px;
    border-radius: 4px;
}

.nav-links ul li a:hover {
    background-color: white;
    color: #f5567d;
}

.booking-btn {
    margin-left: auto;
    padding: 0px 12px;
}

.btn-booking {
    background-color: #f63f64;
    color: white;
    margin: 0px 0px 0px 30px;
    text-decoration: none;
    padding: 12px 15px;
    border-radius: 2px;
    display: flex;
    gap: 5px;
    align-items: center;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn-booking svg {
    margin-right: 8px;
}

.btn-booking:hover {
    background-color: white;
    color: #f5567d;
    border: 1px solid #f5567d;
}

/* Responsive styles */
@media (max-width: 992px) {
    .container {
        flex-wrap: nowrap; /* Prevents wrapping */
        justify-content: space-between;
    }

    .nav-links {
        width: auto; /* Allow it to size naturally */
        margin-top: 0; 
    }

    .nav-links ul {
        justify-content: flex-end;
    }

    .booking-btn {
        margin-left: auto;
    }
}


@media (max-width: 768px) {
    .navbar {
        flex-wrap: nowrap;
        justify-content: flex-start;
        padding: 10px;
    }

    .logo {
        order: 1;
        flex: 1;
    }

    .divider {
        order: 2;
        margin: 0 10px;
        height: 90px;
    }

    .booking-btn {
        order: 3;
        margin-left: 0;
        margin-right: 60px;
        padding: 8px 10px;
        font-size: 14px;
    }

    .btn-booking svg {
        width: 16px;
        height: 16px;
        margin-right: 5px;
    }

    .hamburger {
        order: 4;
        position: static;
        margin-left: 50px;
    }

    .nav-links {
        display: none;
    }

    .mobile-nav {
        display: block;
    }
}

/* Hamburger Menu */
.hamburger {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    width: 30px;
    height: 24px;
    z-index: 1000;
    cursor: pointer;
    appearance: none;
    background: none;
    outline: none;
    border: none;
}

.hamburger .bar {
    display: block;
    width: 100%;
    height: 3px;
    background-color: white;
    margin: 5px 0;
    transition: 0.4s;
}

.hamburger.is-active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.is-active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.is-active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Navigation Styles */
.mobile-nav {
    position: fixed;
    top: 110px; /* Start below the hamburger */
    right: -100%;
    width: 100vw;
    height: 100vh;
    background-color: white;
    z-index: 999;
    transition: right 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center horizontally */
    padding-top: 20px; /* Reduce top space */
    opacity: 1;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    overflow-y: auto; /* Enable scrolling if needed */
}

/* Show menu when active */
.mobile-nav.is-active {
    right: 0;
}

/* Menu Links */
.mobile-nav a {
    color: #f63f64;
    text-decoration: none;
    font-size: 20px;
    padding: 10px 0; /* Reduce space */
    transition: all 0.3s ease;
    background-color: white;
    width: auto; 
    text-align: center;
    display: block;
}

/* Reduce gap between menu items */
.mobile-nav a:not(:last-child) {
    margin-bottom: 5px; /* Reduce space */
}

/* Hover effect */
.mobile-nav a:hover {
    color: #f5567d;
    background-color: #f8f8f8;
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}

/* Hide mobile menu on larger screens */
@media (min-width: 768px) {
    .mobile-nav {
        display: none;
    }
    .hamburger {
        display: none;
    }
}



.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    background: linear-gradient(to right, #e3a1c8, #6b3e8d);
}
  
.hero-image {
    width: 100%;
    max-width: 100%;
    display: block;
    animation: fadeIn 1.5s ease;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: auto;
    padding-top: 90px;
    display: block;
}

@media(max-width: 768px){
    .hero-image img {
        width: 100%;
        height: auto;
        padding-top: 110px;
        display: block;
    }
}
  
.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 50px;
    margin: 0 auto;
    color: #fff;
    text-align: left;
    background: linear-gradient(to right, #e3a1c8, #6b3e8d);
}
  
.hero-content h1 {
    font-size: 36px;
    text-align: center;
    margin-top: 2%;
    margin-bottom: 20px;
    margin-left: 25px;
    color: #ff3e6c;
}
  
.hero-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
}
  
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
  
/* For mobile responsiveness */
@media (max-width: 768px) {
    .hero-content {
        padding: 50px 5%;
    }
    
    .hero-image-img{
        padding-top: 90px;
    }
    .hero-content h1 {
        font-size: 28px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .book-now {
        padding: 10px 30px;
        font-size: 16px;
    }
}

/* Gallery Section Styles */
.gallery-section {
    background-color: #1c1e2a;
    padding: 80px 0;
    color: #ffffff;
    position: relative;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-header {
    text-align: center;
    margin: 50px 0;
    color: white;
}


.gallery__subheading{
    color: #888;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(1.125rem, 1.125rem + 0* 100vw, 1.125rem);
    line-height: clamp(1.4375rem, 1.4375rem + 0* 100vw, 1.4375rem);
    letter-spacing: .225rem;
    font-weight: 300;
    display: block;
    text-align: center;
}

.gallery__heading{
    color: white;
    position: relative;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(2rem, 2rem + 0* 100vw, 2rem);
    line-height: clamp(2.5rem, 3.1934900542rem + -.0144665461* 100vw, 2rem);
    letter-spacing: .2rem;
    font-weight: 600;
    margin-bottom: 3.625rem;
    text-align: center;
}

.gallery__heading::after{
    position: absolute;
    content: "";
    width: 1.875rem;
    height: .125rem;
    bottom: -1.5rem;
    left: 0;
    right: 0;
    margin: 0 auto;
    background: rgb(162, 168, 180);
}

/* Top Heading Section */
.gallery-section {
    background-color: #1c1e2a;
    padding: 40px 0 20px;
    text-align: center;
}

.gallery-section .container {
    display: block; /* Override the flex display */
}

.gallery-section .gallery__subheading {
    margin-bottom: 10px;
}

.gallery-section .gallery__heading {
    margin-bottom: 20px;
}

/* Gallery grid with 4 items per row */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.gallery-item {
    transition: all 0.3s ease;
    border-radius: 5px;
    overflow: hidden;
    transform-origin: center center;
}

.gallery-item:hover {
    transform: translateY(-5px) rotate(1deg);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.gallery-image {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.05);
}

.image-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #fff;
    color: #f5567d;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.image-icon:hover {
    transform: scale(1.1);
    background-color: #f5567d;
    color: #fff;
}

.image-icon svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
}

.gallery-info {
    padding: 15px;
    background-color: #282a36;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gallery-info h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.gallery-info p {
    font-size: 14px;
    color: #aaa;
    margin: 0;
}

.rating {
    color: #f5567d;
    font-size: 14px;
}

.star {
    display: inline-block;
    margin-right: 2px;
}

/* Responsive design for different screen sizes */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-header h3 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-image {
        height: 400px;
    }
    
    .section-header h3 {
        font-size: 24px;
    }
}

/* Category Grid Section - Updated */
.category-grid {
    background-color: #1c1e2a;
    padding: 0 0 80px 0;
    color: #ffffff;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1400px; /* Increased from 1200px to accommodate larger images */
    margin: 0 auto;
    padding: 0 15px;
}

.grid-item {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 5px;
    background-color: #1c1e2a;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column; /* Ensure proper layout of children */
}

.grid-item:hover {
    transform: translateY(-5px);
}

.image-container {
    width: 100%;
    height: 442px; /* Set to exact size requested */
    overflow: hidden;
    border: solid white 2px;
}

.imageContainerForSightcards {
    width: 100%;
    height: 442px; /* Set to exact size requested */
    overflow: hidden;
    border: solid white 2px;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.imageContainerForSightcards img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.grid-item:hover .image-container img {
    transform: scale(1.05);
    
}
.grid-item:hover .imageContainerForSightcards img {
    transform: scale(1.05);
    
}

.button-container {
    text-align: center;
    padding: 12px 0;
    width: 100%;
    background-color: none; 
    border-top: 1px solid #333; /* Adding a separator */
}

.curry-call-btn {
    display: inline-block;
    background-color: coral;
    color: white;
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(245, 86, 125, 0.3); /* Adding shadow for emphasis */
}
.curry-call-btn:hover {
    background-color: coral;
    transform: scale(1.05);
}

/* Responsive styles - adjusted for larger images */
@media (max-width: 1400px) {
    .image-container {
        height: 400px;
    }
}
@media (max-width: 1400px) {
    .imageContainerForSightcards {
        height: 400px;
    }
}

@media (max-width: 1200px) {
    .image-container {
        height: 350px;
    }
}
@media (max-width: 1200px) {
    .imageContainerForSightcards {
        height: 350px;
    }
}

@media (max-width: 992px) {
    .grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .image-container {
        height: 400px;
    }
    .imageContainerForSightcards {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .image-container {
        height: 350px;
    }
}
@media (max-width: 768px) {
    .imageContainerForSightcards {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .grid-container {
        grid-template-columns: 1fr;
    }
    
    .image-container {
        height: 442px; /* Return to original size for mobile view */
    }
    .imageContainerForSightcards {
        height: 442px; /* Return to original size for mobile view */
    }
}

/* service section */
.service-section {
    background: linear-gradient(to right, #e3a1c8, #6b3e8d);
    padding: 50px;
    color: #fff;
    text-align: center;
}

.service-section h1 {
    font-size: 50px;
    color: #212529;
    text-align: center;
    font-family: Basic;
    font-weight: 400;
    font-style: normal;
    margin-bottom: 0.625rem;
    margin-top: 0;
}

.underline {
    display: block;
    width: 700px;
    height: 6px;
    background-color: #fff;
    margin: 0 auto 20px;  
}

.service-container {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
    justify-content: space-between; /* Ensures spacing */
    gap: 150px;
}

.service-image {
    flex: 1;
    margin-top: -270px;
}

.emptyspace{
    box-sizing: border-box;
    margin-bottom: 55px;
}

.service-image img {
    width: 360px;
    height: 400px;
    margin: 0 !important;
    padding: 0 !important;
    
}

.service-content {
    flex: 1.5;
    padding: 20px;
    margin-left: 55px;  
    position: relative;
    top: -45px; /* Moves only the text section up */  
}

.service-content h2 {
    font-size: 40px;
    color: #212529;
    text-align: left;
    font-family: Basic;
    font-weight: 400;
    font-style: normal;
    margin-bottom: 0.625rem;
}

.mb-3 {
    margin-bottom: 1rem !important;
    color: #212529;
    font-size: 100%;
    font-weight: 500;
}

.service-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
    color: black;
}

/* Responsive */
@media (max-width: 768px) {
    .service-section{
        padding: 0 15px !important;
    }

    .service-section h1{
        margin-top: 30px;
        font-size: 30px;
    }

    .service-content .underline {
        margin-left: 20px;
        margin-right: 20px;
        padding: 0 15px !important;
    }

    .service-container {
        flex-direction: column;
        text-align: center;
        padding: 0px 
    }

    .service-content h2 {
        font-size: 35px;
        margin-bottom: 5% !important;
        text-align: center;
        margin: 0;
        padding: 0; 
    }

    .service-image {
        margin-top: 5%;
    }

    .service-content {
        padding: 0; 
        margin: 0; 
        text-align: center;
        width: 100%;
        display: block;
    }

    .service-content p {
        word-spacing: -1px;
        letter-spacing: 0px;
        text-align: justify;
        margin: 0 0 15px 0;
        padding: 0;
    } 
}

.banner-section {
    display: flex;
    justify-content: center; 
    align-items: center; 
    width: 100%; 
    overflow: hidden; 
}

.banner-image {
    height: auto;
    max-width: 100%;
    vertical-align: top;
}

@media (max-width: 768px) { 
    .banner-image { 
        margin: 0% !important;
    }
}


/* Reputable section */

.reputable-provider {
    background-color: #1b1e28; /* Dark background */
    color: #ffffff; /* White text */
    padding: 60px 20px;
}

.reputable-provider .container-1{
    width: 100%;
    padding: 0 50px;
}

.reputable-provider h2 {
    margin-bottom: 20px;
    padding-bottom: 5px;
    position: relative;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(1.625rem, 1.1048824593rem + .0108499096* 100vw, 2rem);
    line-height: clamp(2.0625rem, 1.4556962025rem + .0126582278* 100vw, 2.5rem);
    font-weight: 400;
}

.reputable-provider h3 {
    font-size: 22px;
    margin-top: 30px;
    color: #d1d1d1; /* Slightly lighter color */
    margin-bottom: 20px;
    font-family: "Plus Jakarta Sans", sans-serif;
}

.reputable-provider h4 {
    font-size: 18px;
    margin-top: 20px;
    color: #d1d1d1; 
    font-family: "Plus Jakarta Sans", sans-serif;
}

.reputable-provider p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    white-space: normal; /* Allow text to wrap naturally */
    text-align: justify; /* Optional: Justify text for better look */
    color: #d3d5e1;
    font-family: "Plus Jakarta Sans", sans-serif;
}

@media (max-width: 768px) { 
    .reputable-provider .container-1 { 
        padding: 0; 
    }
}


.testimonials-header {
    background-color: #1a1a23;
    color: white;
    font-family: Arial, sans-serif;
    padding: 50px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
  
  .header-content {
    position: relative;
    z-index: 2;
}
  
  .subtitle {
    text-align: center;
    font-size: 1.125rem;
    line-height: 1.4375rem;
    letter-spacing: .225rem;
    text-transform: uppercase;
    font-weight: 400;
    margin:0;
    color: white;
    font-weight: normal;
    font-family: "Plus Jakarta Sans", sans-serif;
}
  
  .main-title {
    font-size: 36px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}
  
  .heart {
    position: absolute;
    opacity: 0.3;
}
  
  .heart1 {
    left: 37%;
    top: 25%;
    transform: translateY(-50%) rotate(-41deg);
  }

 .heart2 {
    right: 21%;
    top: 10%;
    transform: translateY(-50%) rotate(-41deg);
}
  
  .heart3 {
    right: 18%;
    top: 30%;
    transform: translateY(-50%) rotate(-30deg);
}


/* Enhanced Responsive Booking Form Styles */
.booking-section {
    display: flex;
    min-height: 100vh;
    justify-content: center;
    align-items: center;
    background: url('../../../../../../images/Affordable Escort Service - Real VIP Models.png') no-repeat center center/cover !important;
    padding: 20px;
}

.booking-container {
    background: #2b2b33;
    border-radius: 16px;
    width: 100%;
    max-width: 1302px;
    height: 252px;
    display: flex;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    overflow: hidden;
}

.booking-text {
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 30%;
    padding: 0 40px;
}

.booking-text p {
    text-transform: uppercase;
    color: #a2a8b4;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 8px;
    text-align: left;
}


.book-heading{
    font-size: 34px !important;
    color: white !important;
    line-height: 1.2 !important;
    font-weight: 700 !important;
    text-align: left !important;
    padding: 0px !important;
}

.form-container {
    width: 70%;
    display: flex;
    align-items: center;
    padding: 0 40px 0 0;
}

.booking-form {
    width: 100%;
}

.form-group {
    display: flex;
    gap: 20px;
    width: 100%;
    margin-bottom: 10px;
}

.form-control {
    background-color: #5e5f7b;
    border: none;
    color: white;
    padding: 14px 18px;
    width: 100%;
    height: 50px;
    font-size: 16px;
    outline: none;
    border-radius: 8px;
}

.message-submit-container {
    display: flex;
    align-items: center;
    gap: 20px;
}

.message-area {
    background-color: #5e5f7b;
    border: none;
    color: white;
    padding: 14px 18px;
    width: 100%;
    font-size: 16px;
    overflow: hidden;
    resize: none;
    height: 50px;
    outline: none;
    border-radius: 8px;
}

.submit-btn {
    background-color: #ff3366;
    color: white;
    border: none;
    padding: 12px 40px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    height: 50px;
    white-space: nowrap;
}

.submit-btn:hover {
    background-color: #ff1a4d;
}

.input-wrapper {
    display: flex;
    flex-direction: column;
    width: calc(50% - 10px);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .booking-container {
        flex-direction: column;
        height: auto;
        padding: 20px;
    }

    .booking-text, .form-container {
        width: 100%;
        padding: 10px;
        text-align: center;
    }

    .form-group {
        flex-direction: column;
        gap: 10px;
    }

    .input-wrapper, .form-control, .message-area {
        width: 100%;
    }

    .message-submit-container {
        flex-direction: column;
        gap: 10px;
    }

    .booking-text h2 {
        font-size: 24px;
        text-align: center;
    }

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


.faq-footer {
    background: white;
}

.faq-container {
    padding: 50px 0;
    display: flex;
    justify-content: center; /* Centers the FAQ container */
    align-items: center;
    flex-direction: column;
    width: 100%;
    text-align: center;
}

.faq-footer h2 {
    text-align: center;
    padding: 20px;
    color: #f63f64;
    font-weight: 600;
    font-size: 18px;
}

.accordion {
    width: 90%; /* Adjust width as needed */
    margin: auto; /* Ensures it stays in the center */
}

.accordion-item {
    margin-bottom: 15px;
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
    width: 100%;
    text-align: left; /* Aligns text inside to the left */

}

.accordion-header {
    cursor: pointer;
    padding: 15px 20px;
    background-color: #fff;
    display: flex;
    gap: 10px;
    align-items: left;
    justify-content: left; 
    transition: transform 0.3s ease;
    font-weight: 500;
    font-size: 16px;
    text-align: left;
    width: 100%;
    position: relative;
    margin-left: 4px;
}

.vc_toggle_icon::before,
.vc_toggle_icon::after {
    display: none;
}

/* Rotate arrow when active */
.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

/* Smooth Arrow Animation */
.accordion-header i {
    font-size: 16px;
    transition: transform 0.4s ease-in-out, color 0.3s ease-in-out;
}


/* Accordion Content */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s ease-in-out,opacity 0.5s ease-in-out;
    background-color: #f9f9f9;
    padding: 0;
    font-size: 14px;
    line-height: 1.6;
    text-align: left;
    background: none;
}

/* Active accordion content styling */
.accordion-item.active .accordion-content {
    max-height: 500px;
    padding: 20px;
    opacity: 1;
    border-top: 1px solid #f0f0f0;
    animation: fadeIn 0.5s ease-in-out;
}


/* Fade-in Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Space between question and answer */
.accordion-item.active .accordion-header {
    margin-bottom: 0;
}

/* Footer */
.footer {
    margin-top: 50px;
    padding-bottom: 60px; /* Adds space inside footer */
}

.footer-links {
    display: flex;
    justify-content: space-around;
    gap: 50px;
    
}

.footer-links h3 {
    margin-bottom: 1rem;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(.875rem, .5282549729rem + .0072332731* 100vw, 1.125rem);
    line-height: clamp(1.75rem, 1.5766274864rem + .0036166365* 100vw, 1.875rem);
    font-weight: 500;
    color: var(--black);
}

.footer-links p {
    margin: 8px 0;
    color: #666;
}

@media (max-width: 768px) { 
    .footer { 
        margin: 10px 10px;
        font-size: 12px;
    }
}


/* Make all footer items clickable links */
.faq-footer a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease-in-out;
}

.faq-footer a:hover {
    color: rgb(252, 177, 190); /* Change color to pink on hover */
}

/* Half-line above copyright */
.copyright-container {
    width: 80%;
    height: 2px;
    background-color: #ccc;
    margin: 10px auto;
}

/* Style copyright section */
.copyright {
    display: block;
    border-top: .0625rem solid var(--blue1);
    padding: 1.25rem 0;
    font-size: 1.125rem;
    color: #666;
    text-align: left;
    margin-left: 187px;
    margin-top: -5px;
}

/* Contact Section - Desktop Styles (Keep this intact) */
.contact {
    display: flex; /* Ensures the buttons align properly */
    justify-content: center; 
    align-items: center; 
    position: fixed; /* Makes the buttons sticky */
    height: 3.375rem;
    z-index: 6;
    border-radius: 1.875rem;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%); /* Centers div itself */
    padding: 10px; /* Optional: Add some spacing */
}

.contact a {
    display: inline-block;
    padding: 10px 20px;
    margin: 10px;
    margin-top: 25px;
    border-radius: 5px;
    text-decoration: none;
    color: white;
}

.call {
    background-color: #2c80d3;
    padding: 10px 15px !important;
    font-size: 18px !important;
    border-radius: 10px;
    margin: 0 5px;
}

.whatsapp {
    background-color: #25d366;
    padding: 10px 15px !important;
    font-size: 18px !important;
    border-radius: 10px;
    margin: 0 5px;
}

/* Mobile Styles - Added for responsiveness */
@media screen and (max-width: 992px) {
    .contact {
        position: fixed !important;
        bottom: 20px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        width: auto !important;
        gap: 10px !important;
        z-index: 1002 !important;
    }

    .contact a {
        flex-grow: 1 !important;
        max-width: 160px !important;
        padding: 12px 15px !important;
        font-size: 16px !important;
        text-align: center !important;
        white-space: nowrap !important;
    }
}

@media screen and (max-width: 768px) {
    .contact {
        width: auto; /* Maintain desktop width */
        max-width: none;
        height: 3.375rem; /* Fixed height */
        flex-direction: row !important; /* Keep buttons in a row */
        align-items: center;
        background: transparent !important; /* Remove background */
        box-shadow: none !important;
        z-index: 1001 !important;
    }

    .contact a {
        width: auto !important;
        margin: 0 5px !important; /* Ensure spacing */
        padding: 10px 15px !important;
        font-size: 18px !important;
        white-space: nowrap; /* Prevent text wrapping */
    }
}





  .why-choose-us {
  padding: 40px 20px;
  text-align: center;
  background: black;
}

.why-choose-us .section-title {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 10px;
  color:#f63f64;
}

.why-choose-us .section-subtitle {
  font-size: 20px;
  margin-bottom: 40px;
  color:#a36b86;
}

.choose-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  flex-wrap: wrap;
}

.choose-left, .choose-right {
  flex: 1;
  min-width: 300px;
  max-width: 400px;
  text-align: left;
}

.choose-left p, .choose-right p {
  margin-bottom: 20px;
  line-height: 1.6;
  color:white;
text-align: justify;
}

.choose-left strong, .choose-right strong {
 color:#dbb707;
}

.choose-left i, .choose-right i {

    min-width: 30px;
    color: #ed7810;
    font-size:32px;
}

.choose-center {
  flex: 0 0 120px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.choose-center img {
  width: 100px;
  height: 100px;
}














.top-heading{
    padding: 0 70px 0 70px;
    text-align: justify;
}

@media (max-width: 600px) {
  .top-heading {
    padding: 0 15px;   /* kam padding */
    text-align: center; /* optional: text center bhi kar sakta hai */
  }
}

/* ===== Subheadings ===== */
.hero-highlights h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 30px 0 15px;
  border-left: 4px solid #f39c12;
  padding-left: 10px;
}

.hero-highlights h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 20px 0 10px;
}


.hero-highlights ul li strong {
  min-width: 200px;  /* sab strong ek line me align honge */
  display: inline-block;
  font-weight: 600;
 
  
}

/* ===== Paragraphs ===== */
.hero-left p {
  margin-bottom: 15px;
  font-size: 1rem;
  line-height: 1.6;
}

/* ===== Lists with Icons ===== */
.hero-highlights ul,
.escort-benefits ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-highlights ul li,
.escort-benefits ul li {
  display: flex;
  align-items: center;
  font-size: 1rem;
  margin-bottom: 10px;
}

.hero-highlights ul li i,
.escort-benefits ul li i {
  margin-right: 10px;
  color: #e67e22; /* soft orange/golden tone */
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ===== Escort Card (Right Side) ===== */
.escort-card {
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
 
}

.escort-card h2 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.escort-benefits h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  font-weight: 600;
}

/* ===== Highlighted Text ===== */
.highlight {
  color: #f39c12;
  font-weight: 600;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .hero-grid {
    display: block;
  }
  .hero-left, .hero-right {
    width: 100%;
  }
  .escort-card {
    margin-top: 25px;
  }
}










.breadcrumb {
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb a {
  color: #3498db;
  text-decoration: none;
}

.breadcrumb a:hover {
  color: #1d6fa5;
}

.breadcrumb .separator {
  color: #aaa;
}

.breadcrumb .active {
  font-weight: 600;
  color: #2c3e50;
}


/* Hero Section */
.escort-hero {
  background: linear-gradient(135deg, #1a1a1d, #470026, #7d0033);
  color: #fff;
  padding: 80px 20px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
  max-width: 1200px;
  margin: auto;
}

/* Left */
.hero-left h1 {
  font-size: 38px;
  font-weight: 700;
  color: #ff3366;
  line-height: 1.3;
  margin-bottom: 20px;
}
.hero-left h1 span {
  display: block;
  font-size: 20px;
  color: #f5c1da;
}
.hero-left p {
  font-size: 18px;
  line-height: 1.8;
  color: #ddd;
  margin-bottom: 0;
}

/* Right Card */
.escort-card {
  background: rgba(255,255,255,0.08);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}
.escort-card h2 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #fff;
}
.escort-card p {
  font-size: 16px;
  color: #ddd;
  line-height: 1.7;
}
.highlight {
  color: #ff6699;
  font-weight: 600;
}

/* Responsive */
@media(max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .escort-card {
    text-align: left;
    margin-top: 30px;
  }
}


     .breadcrumb-wrapper {
    background-color: #f4f6f9;
    padding: 15px 0;
}

.breadcrumb {
    font-size: 1rem;
    color: #7f8c8d;
}

.breadcrumb a {
    text-decoration: none;
    color: #3498db;
}

.breadcrumb span {
    margin: 0 8px;
}






.review-section {
  background: #fff;
  padding: 60px 20px;
}

.review-container {
  max-width: 900px;
  margin: auto;
}

.review-title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: #ff3366;
  margin-bottom: 40px;
}

.review-box {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
 background: linear-gradient(135deg, #1a1a1d, #470026, #7d0033);
  padding: 20px 25px;
  border-radius: 12px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.08);
}

.review-box.reverse {
  flex-direction: row-reverse;
  text-align: right;
}

.client-name {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}

.stars {
  font-size: 18px;
  color: #FFD700; /* Gold */
  margin-bottom: 10px;
}

.review-text {
  font-size: 15px;
  line-height: 1.6;
  color: #fff;
}





 
        
        .copyright a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease-in-out;
}
        
            .footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  background-color: #111;
  color: #ddd;
  padding: 60px 30px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
}

.footer-links h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: #ffffff;
  border-bottom: 2px solid #444;
  padding-bottom: 8px;
  letter-spacing: 0.5px;
}

.footer-links p {
  margin: 6px 0;
}

.footer-links a {
  color: #bbb;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: #fff;
  padding-left: 4px;
  border-left: 2px solid #fff;
}

.footer-links .new-locations a::before {
  content: "📍 ";
  margin-right: 4px;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.footer-links .new-locations a:hover::before {
  opacity: 1;
}

/* Responsive fine-tuning */
@media (max-width: 600px) {
  .footer-links {
    padding: 40px 20px;
    gap: 30px;
  }

  .footer-links h3 {
    font-size: 1.1rem;
  }

  .footer-links a {
    font-size: 0.9rem;
  }
}



.related-pages {
  margin-top: 20px;
}

.related-pages h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #333;
}

.page-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.page-link {
  flex: 1 1 calc(25% - 15px); /* 4 in a row */
  background-color: #f5f5f5;
  padding: 12px 16px;
  text-align: center;
  text-decoration: none;
  color: #333;
  border-radius: 6px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.page-link:hover {
  background-color: #007bff;
  color: white;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

        
        
        
                    @media(max-width: 768px)
                    {
                        .logoForMobile{
                            width: 130px;
                        }
                    }
              



@media (max-width: 768px) {
  .hero-grid {
    display: block!important;  /* grid hat gaya, normal block ban gaya */
  }
}




