/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
font-family: 'Inter', sans-serif; }

/* TOPBAR */
.topbar {
    background:#a24175;
    color: #fff;
    padding: 11px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}


/* Hide on mobile */
@media (max-width: 767px) {
    .topbar {
        display: none !important;
    }
}
/* Hide Book Appointment button on mobile */
@media (max-width: 767px) {
    .nav-btn {
        display: none !important;
    }
}



.topbar-left span {
    margin-right: 15px;
}

.topbar-right a {
    color: #fff;
    margin-left: 10px;
    text-decoration: none;
}

/* NAVBAR */
.navbar {
    background: #fff;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 999;
    padding-bottom: 0px;
    padding-top: 0px;
}

.logo img{
    width: 90px;
    height: 90px;
}

/* NAVLINKS */
.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    padding-left: 70px;
}

.nav-links li a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    transition: 0.3s;
}

.nav-links li a:hover {
    color: #a24175;
}

/* DROPDOWN */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    background: #fff;
    top: 20px;
    left: 0;
    min-width: 250px;
    box-shadow: 0px 5px 20px rgba(0,0,0,0.1);
    display: none;
    flex-direction: column;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    padding: 10px;
}

.dropdown-menu li a {
    color: #333;
}

.dropdown-menu li a:hover {
    color: #a24175;
}

/* RIGHT BUTTON */
.nav-btn {
    background: #a24175;
    color: #fff;
    padding: 10px 22px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.nav-btn:hover {
    background: #d66ea3;
    transform: translateY(-2px);
}


/* HAMBURGER */
.hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

#menu-toggle {
    display: none;
}

/* RESPONSIVE */
@media (max-width: 768px) {

    .topbar {
        flex-direction: column;
        text-align: center;
    }

    .navbar {
        flex-wrap: wrap;
    }

    .hamburger {
        display: block;
    }

    .nav-links {
        width: 100%;
        flex-direction: column;
        display: none;
        padding-top: 10px;
    }

    #menu-toggle:checked ~ .nav-links {
        display: flex;
    }

    .nav-links li {
        padding: 10px 0;
        text-align: center;
    }

    .dropdown-menu {
        position: relative;
        box-shadow: none;
    }
}
.dropdown-menu {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.dropdown-menu li {
    list-style-type: none;
}

.dropdown-menu {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.dropdown-menu li {
    list-style-type: none;
}



.dropdown-menu li a {
    display: block;
   margin-top: -8px;
    text-decoration: none;
}

.slider {
  width: 100%;
  height: 400px;
  position: relative;
  /* overflow: hidden; */
}

.slides {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  width: 100%;
  /* height: 100%; */
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.slide.active {
  opacity: 1;
}


/* Mobile Responsive Navigation Buttons */
@media (max-width: 768px) {
    .navigation button {
        top: 24% !important;
    }
}

/* Navigation Buttons */
.navigation button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  border: none;
  padding: 10px 15px;
  font-size: 20px;
  color: white;
  cursor: pointer;
  z-index: 10;
}

.prev { left: 15px; }
.next { right: 15px; }

/* Dots */
.dots {
  position: absolute;
  bottom: 15px;
  width: 100%;
  text-align: center;
}

.dot {
  height: 12px;
  width: 12px;
  background: rgba(255,255,255,0.6);
  display: inline-block;
  margin: 0 4px;
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background: #fff;
}

@media (max-width: 768px) {
  .slider {
    height: 250px;
  }
}

.about-section-new {
    padding: 150px 6%;
    background: #fff5fa;
}



.about-section-neww {
    padding: 40px 6%;
    background: #fff5fa;
}


.about-wrapper {
    max-width: 1300px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;
}
/* JUSTIFIED TEXT */
.about-text p {
    text-align: justify;
}
/* IMAGE COLUMN */
.about-image-column {
    width: 45%;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.about-img {
    width: 100%;
    border-radius: 22px;
    object-fit: cover;
    height: 300px;
    box-shadow: 0 10px 30px rgba(255, 140, 200, 0.2);
    border: 4px solid #ffe1ef;
}

.top-img {
    border-top-left-radius: 40px;
}

.bottom-img {
    border-bottom-right-radius: 40px;
}

/* TEXT COLUMN */
.about-text {
    width: 55%;
}

.section-tag {
    display: inline-block;
    padding: 6px 18px;
    background: #ffbee8;
    color: #ad0061;
    border-radius: 20px;
    font-weight: 600;
    font-size: 15px;
}

.about-title {
    margin: 18px 0 20px;
    font-size: 42px;
    line-height: 1.3;
    color: #ad0061;
    font-weight: 800;
}

.about-text p {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 18px;
}

/* PREMIUM BUTTON */
.about-btn-new {
    display: inline-block;
    padding: 14px 40px;
    background: #ad0061;
    color: #fff;
    font-size: 18px;
    border-radius: 35px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.about-btn-new:hover {
    background: #ff4fb5;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .about-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .about-image-column,
    .about-text {
        width: 100%;
    }
}


.services-dynamic {
    position: relative;
    padding: 90px 6%;
    background-image: url('../img/servicebg3.jpg'); /* Your fixed background */
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
}

.services-dynamic .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}




.services-dynamics {
    position: relative;
    padding: 90px 6%;
background: linear-gradient(rgb(162 65 117 / 67%), rgb(162 65 117 / 82%)), url(../img/bg2.jpg);    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
}

.services-dynamics .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.services-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    margin: auto;
    text-align: center;
}

.services-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 50px;
}

/* GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

/* SERVICE BOX */
.service-card {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 20px;
    border: 1px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(6px);
    transition: 0.3s;
    text-align: center;
}

/* IMAGE INSIDE BOX */
.service-card img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 15px;
}

/* TEXT */
.service-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 15px;
    line-height: 1.5;
    opacity: 0.9;
}

/* HOVER EFFECT */
.service-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}
.about-btn-new1 {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background: #ad0061;
    color: #fff;
    font-size: 16px;
    border-radius: 7px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}


.gallery-section {
    padding: 90px 6%;
    text-align: center;
    background: #fff;
}

.gallery-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 50px;
    color: #a24175;
}

/* GRID SETTINGS */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* IMAGE CARD */
.gallery-item {
    overflow: hidden;
    border-radius: 18px;
    position: relative;
    box-shadow: 0 8px 28px rgba(162, 65, 117, 0.25);
}

/* IMAGE STYLING */
.gallery-item img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    transition: 0.4s ease;
    border-radius: 18px;
}

/* HOVER ZOOM EFFECT */
.gallery-item:hover img {
    transform: scale(1.08);
    filter: brightness(0.85);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item img {
        height: 220px;
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item img {
        height: 220px;
    }
}


.why-choose-spa {
    padding: 90px 6%;
    background: #fdeff5; /* soft pink background */
}

.why-container {
    max-width: 1300px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

/* LEFT IMAGES */
.why-images {
    width: 45%;
    display: flex;
    gap: 20px;
}

.img-left,
.img-right {
    width: 50%;
    height: 450px;
    object-fit: cover;
    border-radius: 10px;
}

.img-left {
    border-radius: 10px;
}

.img-right {
    border-radius: 10px;
}

/* RIGHT CONTENT */
.why-content {
    width: 55%;
}

.why-tag {
    font-size: 16px;
    color: #a24175;
    font-weight: 600;
}

.why-content h2 {
    font-size: 42px;
    margin: 10px 0;
    font-weight: 800;
}

.why-content h4 {
    font-size: 20px;
    color: #a24175;
    margin-bottom: 15px;
}

.why-desc {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 35px;
}

/* FEATURES */
.why-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-icon {
    width: 55px;
    height: 30px;
    background: #a24175;
    color: #fff;
    border-radius: 50%;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-text h3 {
    font-size: 20px;
    margin-bottom: 5px;
    font-weight: 700;
}

.feature-text p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .why-container {
        flex-direction: column;
    }

    .why-images,
    .why-content {
        width: 100%;
    }

    .img-left,
    .img-right {
        height: 350px;
    }
}

@media (max-width: 600px) {
    .why-features {
        grid-template-columns: 1fr;
    }

    .img-left,
    .img-right {
        height: 260px;
    }
}



.testimonial-slider-section {
    position: relative;
    padding: 100px 6%;
    background: linear-gradient(135deg, #a24175, #d67ea1);
    text-align: center;
    color: #fff;
}

/* Improve overlay look */
.testimonial-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.15);
    backdrop-filter: blur(2px);
}

.testimonial-wrapper {
    position: relative;
    z-index: 2;
}

.testimonial-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 55px;
}

/* Better looking card */
.testimonial-card {
    background: rgba(255, 255, 255, 0.18);
    padding: 30px 20px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.25);
    max-width: 600px;
    margin: auto;
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
    text-align: center;
    width: 100%;
    max-width: 100%;
    
}

.quote-icon i {
    font-size: 60px;
    color: #ffe4f0;
    margin-bottom: 20px;
}

.review-text {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.client-name {
    font-size: 20px;
    font-weight: 700;
}

/* Pagination dots */
.swiper-pagination-bullet {
    background: #fff !important;
    opacity: 0.8;
}

.swiper-pagination-bullet-active {
    background: #a24175 !important;
}

/* Make Swiper Arrows White */
/* Smaller, cleaner Swiper arrows */
/* Base arrow buttons */
.swiper-button-next,
.swiper-button-prev {
    color: #fff !important;
    z-index: 20;
    transition: 0.3s ease;
}

/* ↓ This controls the actual icon size ↓ */
.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 22px !important;    /* change size here */
}

/* Hover effect */
.swiper-button-next:hover::after,
.swiper-button-prev:hover::after {
    color: #ffe7f5 !important;
    transform: scale(1.1);
}


/* Responsive */
@media (max-width: 768px) {
    .testimonial-title {
        font-size: 25px;
    }
    .testimonial-card {
        padding: 30px 20px;
    }
}



/* MAIN FOOTER */
.spa-footer {
    background: #1a0811;
    color: #fff;
    padding: 70px 6% 20px;
    margin-top: 00px;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* LOGO */
.footer-logo {
    width: 120px;
    margin-bottom: 15px;
}

/* ABOUT TEXT */
.footer-about {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* SOCIAL */
.footer-social a {
    display: inline-block;
    width: 38px;
    height: 38px;
    line-height: 38px;
    background: #fff;
    color: #a24175;
    text-align: center;
    margin-right: 8px;
    border-radius: 50%;
    font-size: 18px;
    transition: 0.3s;
    padding-left: 6px;
}
.footer-social a:hover {
    background: #ffe6f3;
}

/* HEADINGS */
.footer-col h3 {
    font-size: 20px;
    margin-bottom: 18px;
    font-weight: 700;
}

/* LIST */
.footer-col ul li {
    margin-bottom: 10px;
    list-style: none;
}

.footer-col ul li a {
    color: #ffe6f3;
    font-size: 15px;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #fff;
    padding-left: 5px;
}

/* CONTACT */
.footer-col p {
    font-size: 15px;
    margin-bottom: 10px;
    line-height: 25px;
}
.footer-col i {
    margin-right: 8px;
}

/* COPYRIGHT BAR */
.footer-bottom {
    margin-top: 40px;
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.35);
    font-size: 14px;
    opacity: 0.9;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social a {
        margin: 5px;
    }
}



/* CTA Section */
.cta-section {
    position: relative;
    padding: 120px 6%;
    background-image: url('spa-bg.jpg'); /* replace with your image */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    color: #fff;
}

/* Overlay */
.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 140, 200, 0.2); /* #a24175 overlay */
    backdrop-filter: blur(2px);
}

/* Content */
.cta-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: auto;
}

.cta-content h2 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000000; 
}

.cta-content h2 span {
    font-weight: 800;
    color: #a24175; 
    
}

.cta-content p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 35px;
    color: #000000; 
}

/* Button */
.cta-btn {
    display: inline-block;
    padding: 15px 35px;
    background: #a24175;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
}

.cta-btn:hover {
    background: #5f113a;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    .cta-content h2 {
        font-size: 25px;
    }
    .cta-content p {
        font-size: 17px;
    }
}

/* HERO SECTION */
.inner-hero {
    position: relative;
    background-image: url('../img/servicebg3.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
    color: #fff;
}
.inner-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.50);
}
.inner-hero h1 {
    position: relative;
    font-size: 52px;
    z-index: 2;
}
.inner-hero p {
    position: relative;
    margin-top: 10px;
    z-index: 2;
    font-size: 18px;
}


/* ABOUT INNER SECTION */
.about-inner-section {
    padding: 80px 6%;
}
.about-inner-wrapper {
    display: flex;
    gap: 40px;
}
.about-inner-images {
    width: 45%;
    position: relative;
}
.about-inner-images .img-top {
    width: 90%;
    border-radius: 10px;
}
.about-inner-images .img-bottom {
    width: 65%;
    border-radius: 10px;
    position: absolute;
    bottom: -40px;
    left: 120px;
}
.about-inner-text {
    width: 55%;
}
.about-label {
    font-size: 18px;
    color: #a24175;
    font-weight: 700;
}
.about-inner-text h2 {
    font-size: 34px;
    margin: 15px 0;
}
.about-inner-text p {
    margin-top: 10px;
    line-height: 1.8;
}


/* STATS SECTION */
.stats-section {
    background: #a92a6e;
    color: #fff;
    padding: 60px 6%;
    display: flex;
    justify-content: space-between;
    text-align: center;
}
.stats-box i {
    font-size: 34px;
    color: #ffcc00;
}
.stats-box h2 {
    font-size: 38px;
    margin: 10px 0;
}


/* MISSION & VISION */
.mission-vision-section {
    padding: 80px 6%;
    display: flex;
    justify-content: center;
    gap: 40px;
}
.mv-card {
    width: 45%;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}
.mv-card i {
    font-size: 40px;
    color: #a24175;
    margin-bottom: 10px;
}
.mv-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
}
.mv-card p {
    font-size: 17px;
    line-height: 1.7;
}


/* RESPONSIVE */
@media (max-width: 992px){
    .about-inner-wrapper {
        flex-direction: column;
    }
    .about-inner-images,
    .about-inner-text {
        width: 100%;
    }
    .mission-vision-section {
        flex-direction: column;
    }
    .mv-card {
        width: 100%;
    }
}

@media (max-width: 768px){
    .stats-section {
        flex-direction: column;
        gap: 30px;
    }
}

/* ---------------- HERO (Same as about page) ---------------- */
.inner-hero {
    position: relative;
     background-image: url('../img/servicebg3.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
    color: #fff;
}
.inner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.50);
}
.inner-hero h1 {
    position: relative;
    font-size: 52px;
    font-weight: 800;
    z-index: 2;
}
.inner-hero p {
    position: relative;
    z-index: 2;
    margin-top: 8px;
}


/* ---------------- GALLERY SECTION ---------------- */
.gallery-page-section {
    padding: 80px 6%;
    text-align: center;
}
.gallery-heading {
    font-size: 36px;
    color: #a24175;
    font-weight: 700;
}
.gallery-subtext {
    font-size: 16px;
    margin-top: 5px;
    margin-bottom: 40px;
    color: #444;
}

/* Gallery Grid */
.gallery-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.gallery-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 12px;
    transition: 0.4s ease;
    box-shadow: 0 4px 18px rgba(0,0,0,0.15);
}

/* Hover Effect */
.gallery-item img:hover {
    transform: scale(1.05);
    border-radius: 14px;
    box-shadow: 0 6px 25px rgba(162, 65, 117, 0.4);
}


/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 992px) {
    .gallery-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .gallery-wrapper {
        grid-template-columns: 1fr;
    }
    .gallery-item img {
        height: 220px;
    }
}


/* CONTACT PAGE MAIN */
.contact-section-page {
    padding: 80px 6%;
}
.contact-wrapper {
    display: flex;
    gap: 40px;
}


/* LEFT INFO BOX */
.contact-info-box {
    width: 40%;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.1);
}
.contact-info-box h2 {
    font-size: 32px;
    color: #a24175;
    margin-bottom: 10px;
}
.contact-info-item {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    align-items: center;
}
.contact-info-item i {
    font-size: 30px;
    color: #a24175;
}
.contact-info-item h4 {
    margin-bottom: 3px;
}
.contact-social {
    margin-top: 20px;
}
.contact-social a {
    font-size: 18px;
    color: #fff;
    background: #a24175;
    padding: 10px;
    border-radius: 50%;
    margin-right: 8px;
    display: inline-block;
    width: 45px;
    height: 45px;
    justify-content: center;
    align-items: center;
}


/* RIGHT FORM */
.contact-form-box {
    width: 60%;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.1);
}
.contact-form-box h2 {
    font-size: 32px;
    color: #a24175;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
}
.submit-btn {
    padding: 12px 30px;
    background: #a24175;
    border: none;
    color: #fff;
    font-size: 18px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}
.submit-btn:hover {
    background: #d96aa3;
}


/* MAP */
.contact-map-section {
    margin-top: 40px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .contact-wrapper {
        flex-direction: column;
    }
    .contact-info-box,
    .contact-form-box {
        width: 100%;
    }
}


@media (max-width: 768px) {
    .about-section-new {
        margin-top: 0 !important;
        padding: 50px 6%;  /* optional: adjusts spacing for mobile */
    }
}
@media (max-width: 768px) {
    .about-section-new {
        margin-top: -150px !important;
        padding: 60px 5%;
    }
}

@media (max-width: 768px) {
    .about-section-neww {
        margin-top: 0 !important;
        padding: 50px 6%;  /* optional: adjusts spacing for mobile */
    }
}
@media (max-width: 768px) {
    .about-section-neww {
        /* margin-top: -150px !important; */
        padding: 60px 5%;
    }
}

@media (max-width: 480px) {
    .about-title {
        font-size: 18px;
    }

    .services-title {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 50px;
}


.gallery-title {
    font-size: 30px;
    margin-top: -48px;
    font-weight: 800;
    margin-bottom: 50px;
    color: #a24175;
}
.why-content h2 {
    font-size: 25px;
    margin: 10px 0;
    font-weight: 800;
}


}


 section {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: rgb(255, 255, 255);
            margin-bottom: 15px;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 3px;
            background-color: var(--accent);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .benefits-grid h3{
            color:black;
        }
        
        .benefit-card {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
            text-align: center;
        }
        
        .benefit-card:hover {
            transform: translateY(-10px);
        }
        
        .benefit-icon {
            font-size: 2.5rem;
            color: #a24175;;
            margin-bottom: 20px;
        }
        
        .benefit-card h3 {
            margin-bottom: 15px;
            color:#a24175;
        }
           .benefit-card p {
            margin-bottom: 15px;
            color:black;
        }
        
        /* Experience Section */
        .experience {
            background-color: var(--primary);
            color: white;
        }
        
        .experience-content {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 40px;
        }
        
        .experience-text {
            flex: 1;
            min-width: 300px;
        }
        
        .experience-image1{
            flex: 1;
            min-width: 300px;
            height: 400px;
            background: url('../img/servicess1.png') center/cover;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }


        .experience-image2{
            flex: 1;
            min-width: 300px;
            height: 400px;
            background: url('../img/servicess2.png') center/cover;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }


        .experience-image3{
            flex: 1;
            min-width: 300px;
            height: 400px;
            background: url('../img/servicess3.png') center/cover;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }


        .experience-image4{
            flex: 1;
            min-width: 300px;
            height: 400px;
            background: url('../img/servicess4.png') center/cover;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }


        .experience-image5{
            flex: 1;
            min-width: 300px;
            height: 400px;
            background: url('../img/servicess5.png') center/cover;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }


        .experience-image6{
            flex: 1;
            min-width: 300px;
            height: 400px;
            background: url('../img/servicess6.png') center/cover;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }


.experience-image7{
            flex: 1;
            min-width: 300px;
            height: 400px;
            background: url('../img/servicess7.png') center/cover;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        
        .features-list {
            list-style: none;
            margin: 20px 0;
        }
        
        .features-list li {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        
        .features-list i {
            margin-right: 10px;
            color: var(--secondary);
        }
        
        /* Ideal For Section */
        .ideal-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
        }
        
        .ideal-card {
                background-color: #a24175;
    color: white;
            border-radius: 10px;
            padding: 25px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }
        
        .ideal-card:hover {
               background-color: #a24175;
    color: white;   
        }
        
        .ideal-card:hover h3 {
            color: white;
        }
        
        .ideal-card h3 {
            margin-bottom: 15px;
            color: var(--primary);
        }
        
        /* Why Choose Us */
        .why-choose {
            background-color: #f0ebe3;
        }
        
        .reasons {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .reason {
            text-align: center;
            padding: 20px;
            background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px #0000001a;
 


        }
        
        .reason i {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        .reason h3 {
            margin-bottom: 15px;
            color: var(--primary);
        }
        
        /* Gallery Section */
        .gallery {
            padding: 80px 0;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
        }
        
        .gallery-item {
            height: 250px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }
        
        .gallery-item:hover {
            transform: scale(1.03);
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        /* CTA Section */
        .cta {
            text-align: center;
            background: linear-gradient(rgb(162 65 117 / 72%), rgb(162 65 117 / 80%)),
             url('../img/bg3.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 100px 20px;
            background-attachment: fixed;
    
        }
        
        .cta h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .cta p {
            max-width: 700px;
            margin: 0 auto 30px;
            font-size: 1.1rem;
        }
        
 
        
        /* Responsive Design */
        @media (max-width: 768px) {
            header h1 {
                font-size: 2.5rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .experience-content {
                flex-direction: column;
            }
            
            .experience-image {
                width: 100%;
            }
        }

                
        .containery {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        

        .btnx{
            background: #ffffff;
    color: #a24175;
    padding: 10px 22px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
        text-decoration: none !important;

        }


        
.faq-section{
    padding:60px 20px;
    max-width:900px;
    margin:auto;
}

.faq-section h2{
    text-align:center;
    margin-bottom:40px;
    font-size:32px;
    color:#222;
}

.faq{
    background:#fff;
    margin-bottom:15px;
    border-radius:8px;
    box-shadow:0 4px 10px rgba(0,0,0,0.05);
    overflow:hidden;
}

.faq-question{
    padding:18px 20px;
    cursor:pointer;
    font-weight:600;
    position:relative;
}

.faq-question::after{
    content:"+";
    position:absolute;
    right:20px;
    font-size:22px;
    transition:0.3s;
}

.faq.active .faq-question::after{
    content:"−";
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height 0.4s ease;
    padding:0 20px;
}

.faq-answer p{
    padding:15px 0;
    margin:0;
    color:#555;
    line-height:1.6;
}

/* Responsive */
@media (max-width:768px){
    .faq-section{
        padding:40px 15px;
    }
    .faq-section h2{
        font-size:24px;
    }
    .faq-question{
        font-size:14px;
    }
}