/* 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: linear-gradient(to right, #44333B, #281E33, #201831);
    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: #f5567d;
    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: #ff3e6c;
    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 */
    }
}
