

/* Mobile text improvement */
@media (max-width: 768px) {
    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 24px;
        color: #813333;
        
    }

    p {
        font-size: 16px;
    }
}


/* ================= HOME BASE END ================= */

/* ================= LUXURY NAVBAR START ================= */
.luxury-navbar {
    padding: 14px 0;
    background: linear-gradient(135deg,
            rgba(30, 30, 30, 0.92),
            rgba(80, 20, 90, 0.92));
    backdrop-filter: blur(8px);
    padding: 14px 0;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

/* Brand */
.luxury-navbar .navbar-brand {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff !important;
}

.luxury-navbar .navbar-brand span {
    color: #e91e63;
}

/* Nav links */
.luxury-navbar .nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 500;
    margin-left: 18px;
    position: relative;
    transition: all 0.3s ease;
}

/* Hover underline effect */
.luxury-navbar .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #e91e63, #9c27b0);
    transition: width 0.3s ease;
}

.luxury-navbar .nav-link:hover::after,
.luxury-navbar .nav-link.active::after {
    width: 100%;
}

.luxury-navbar .nav-link:hover {
    color: #fff !important;
}

/* Mobile toggler */
.luxury-navbar .navbar-toggler {
    border: none;
}

.luxury-navbar .navbar-toggler-icon {
    filter: brightness(1.2);
}

/* ================= LUXURY NAVBAR END ================= */



/* ================= HOME HERO START ================= */
.home-hero {
    min-height: 80vh;
    padding: 0;
    /* padding hata di */
    padding-top: 80px;
    display: flex;
    align-items: center;
    /* vertical center */
    text-align: center;
    position: relative;
    background:
        linear-gradient(rgba(233, 30, 99, 0.35), rgba(156, 39, 176, 0.35)),
        url("../img/h1.webp") center top / cover no-repeat;

}

/* Content wrapper control */
.home-hero .container {
    margin-top: 60px;
    /* yahin se upar-niche adjust hoga */
}

.home-hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to bottom, transparent, #fff5f8);
}



.home-hero h1 {
    font-family: "Oswald", sans-serif;  
    font-size: 42px;
    font-weight: 700;
    margin-top: 0;
    /* negative margin remove */
}

.home-hero p {
    font-size: 18px;
}

@media (max-width: 768px) {
    .home-hero {
        min-height: 70vh;
        padding: 140px 20px;
        background-position: center top;
    }

    .home-hero .container {
        margin-top: 40px;
    }
}




/* ================= HOME HERO END ================= */


/* ================= HOME BUTTON START ================= */
.home-btn-primary {
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    color: #fff;
    padding: 14px 38px;
    border-radius: 50px;
    border: none;
    font-size: 18px;
    transition: all 0.3s ease;
}

.home-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(233, 30, 99, 0.4);
}

/* ================= HOME BUTTON END ================= */


/* ================= HOME FEATURES START ================= */
.home-features {
    padding: 80px 0;
    background: linear-gradient(180deg, #fff5f8, #ffffff);
}

.home-feature-card {
    background: linear-gradient(145deg,
            rgba(255, 255, 255, 0.95),
            rgba(255, 245, 248, 0.9));
    backdrop-filter: blur(6px);
    border-radius: 22px;
    padding: 26px;
    height: 100%;
    border: 1px solid rgba(233, 30, 99, 0.12);
    box-shadow: 0 12px 30px rgba(233, 30, 99, 0.15);
    transition: all 0.35s ease;
}

.home-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 22px 45px rgba(233, 30, 99, 0.28);
}

/* Image styling */
.home-feature-card img {
    border-radius: 16px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.15);
}

.home-feature-card h3 {
    margin-top: 18px;
    font-weight: 700;
    position: relative;
}

.home-feature-card h3::after {
    content: "";
    display: block;
    width: 45px;
    height: 3px;
    margin: 10px auto;
    border-radius: 10px;
    background: linear-gradient(90deg, #e91e63, #9c27b0);
}


/* ================= HOME FEATURES END ================= */



/* ================= HOME ABOUT START ================= */
.home-about {
    padding: 30px 0;
    background: linear-gradient(180deg, #ffffff, #fff5f8);
    text-align: center;
}

.home-about h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2c2c2c;
    position: relative;
}

.home-about h2::after {
    content: "";
    display: block;
    width: 70px;
    height: 4px;
    margin: 14px auto 0;
    border-radius: 10px;
    background: linear-gradient(90deg, #e91e63, #9c27b0);
}

.home-about p {
    max-width: 820px;
    margin: 18px auto 0;
    font-size: 16.5px;
    color: #555;
}

/* ================= HOME ABOUT END ================= */



/* ================= HOME INDUSTRIES ================= */
.home-industries {
    background: linear-gradient(180deg, #ffffff, #fff5f8);
}

.industry-box {
    background: #ffffff;
    padding: 22px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.industry-box h6 {
    font-weight: 700;
    margin-bottom: 10px;
}

/* ===== READ MORE – ALL CARDS EQUAL ===== */

/* ===== READ MORE – FINAL CLEAN VERSION ===== */

.readmore-box {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* hide checkbox */
.readmore-box input {
    display: none;
}

/* paragraph control */
.industry-text {
    font-size: 15px;
    color: #555;
    line-height: 1.6;

    display: -webkit-box;
    -webkit-line-clamp: 4;
    /* default visible lines */
    -webkit-box-orient: vertical;
    overflow: hidden;

    transition: all 0.3s ease;
}

/* expand text */
.readmore-box input:checked~.industry-text {
    -webkit-line-clamp: unset;
    overflow: visible;
}

/* button – always bottom aligned */
.read-more-btn {
    margin-top: auto;
    align-self: center;

    margin-top: 16px;
    padding: 7px 22px;
    border-radius: 30px;
    font-size: 14px;
    cursor: pointer;

    background: linear-gradient(135deg, #e91e63, #9c27b0);
    color: #fff;
    box-shadow: 0 6px 18px rgba(233, 30, 99, 0.3);
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(233, 30, 99, 0.45);
}

/* dynamic text */
.read-more-btn::after {
    content: "Read More";
}

.readmore-box input:checked+.industry-text+.read-more-btn::after {
    content: "Read Less";
}




/* ================= TRUST ADVANCED START ================= */

.home-trust-advanced {
    padding: 30px 0;
    background: linear-gradient(180deg, #fff5f8, #ffffff);
}

.trust-title {
    font-size: 36px;
    font-weight: 700;
    color: #2c2c2c;
}

.trust-title span {
    color: #9c27b0;
}

.trust-text {
    font-size: 17px;
    margin: 18px 0;
    color: #555;
}

.trust-points {
    margin-top: 20px;
}

.trust-point {
    background: #ffffff;
    padding: 12px 18px;
    border-radius: 12px;
    margin-bottom: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    font-weight: 500;
}

.trust-image-box {
    position: relative;
    display: inline-block;
}

.trust-image-box img {
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(156, 39, 176, 0.35);
    max-width: 100%;
}

.trust-badge {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    color: #fff;
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

/* Mobile */
@media (max-width: 768px) {
    .trust-title {
        font-size: 28px;
    }

    .home-trust-advanced {
        text-align: center;
    }
}

/* ================= TRUST ADVANCED END ================= */



/* ================= HOME FAQ ================= */
.home-faq {
    padding: 40px 0;
    background: #fff5f8;
}

.home-faq h2 {
    font-weight: 700;
}

.home-faq .accordion-item {
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* ================= END ================= */



/* ================= HOME FOOTER START ================= */
/* ================= NEXT LEVEL SPA FOOTER ================= */
.home-footer {
    background: linear-gradient(135deg,
            #0f0612,
            #2a0f2f,
            #1a0b20);
    color: #e0e0e0;
    font-size: 15px;
    position: relative;
    overflow: hidden;
}

/* Luxury glow line */
.home-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #e91e63, #9c27b0);
}

/* CTA block */
.footer-cta h5 {
    color: #ffffff;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
}

.footer-cta p {
    color: #d5d5d5;
    max-width: 680px;
    margin: 0 auto 18px;
    line-height: 1.7;
}

.footer-btn {
    display: inline-block;
    padding: 12px 34px;
    border-radius: 40px;
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    color: #ffffff;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.35s ease;
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.35);
}

.footer-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(233, 30, 99, 0.5);
    color: #ffffff;
}

/* Headings */
.home-footer h5,
.home-footer h6 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 14px;
}

/* Text */
.home-footer p {
    color: #cccccc;
    line-height: 1.7;
}

/* Links */
.home-footer a {
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s ease;
}

.home-footer a:hover {
    color: #e91e63;
    padding-left: 6px;
}

/* Divider */
.home-footer hr {
    border: none;
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            rgba(233, 30, 99, 0.6),
            transparent);
    margin: 40px 0;
}

/* Copyright */
.home-footer .small {
    color: #bdbdbd;
    font-size: 13px;
    letter-spacing: 0.3px;
}

/* Mobile */
@media (max-width: 768px) {
    .home-footer {
        text-align: center;
    }

    .footer-btn {
        width: 100%;
        max-width: 260px;
    }
}


/* ================= HOME FOOTER END ================= */

/* ================= HOME PRICING ================= */
.home-pricing {
    padding: 90px 0;
    background: linear-gradient(180deg, #ffffff, #fff5f8);
}

.pricing-title {
    font-size: 36px;
    font-weight: 700;
}

.pricing-subtitle {
    max-width: 720px;
    margin: 14px auto 0;
    color: #555;
}

.pricing-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px 22px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: all 0.35s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(233, 30, 99, 0.25);
}

.pricing-card h5 {
    font-weight: 700;
    margin-bottom: 10px;
}

.price-text {
    color: #777;
    font-size: 14px;
}

.price-range {
    font-size: 22px;
    font-weight: 700;
    color: #9c27b0;
    margin: 10px 0;
}

.pricing-desc {
    font-size: 15px;
    color: #555;
    margin-bottom: 18px;
}

.pricing-btn {
    display: inline-block;
    padding: 10px 26px;
    border-radius: 30px;
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.pricing-btn:hover {
    transform: translateY(-2px);
    color: #fff;
}

.pricing-card.featured {
    border: 2px solid #e91e63;
}

.pricing-note {
    font-size: 14px;
    color: #777;
}

/* ================= END ================= */

/* ================= SEO SOFT SECTION TITLES ================= */
/* Purpose: SEO headings ko premium underline dena (NO gradient text) */

.seo-soft-title {
  font-weight: 700;
  color: #2c2c2c;
  position: relative;
}

.seo-soft-title::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  margin-top: 8px;
  border-radius: 10px;
  background: linear-gradient(135deg, #e91e63, #9c27b0);
}

/* ================= SEO SOFT SECTION TITLES END ================= */


/* ================= HOME SEO CONTENT ================= */
.home-seo-content {
    padding: 40px 0;
    background: #ffffff;
}

.home-seo-content h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 18px;
}

.home-seo-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 32px;
    margin-bottom: 10px;
    color: #2c2c2c;
}

.home-seo-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 14px;
}

.seo-note {
    margin-top: 30px;
    font-style: italic;
    color: #666;
}



/* ================= END ================= */


/* about page start  */

/* ================= ABOUT HERO ================= */
.about-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
    position: relative;

    /* 👇 overlay kam, image visible */
    background:
        linear-gradient(rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.22)),
        url("../img/h1.webp") center / cover no-repeat;
}

/* Content positioning */
.about-hero .container {
    margin-top: 60px;
    /* 👈 yahin se fine control */
}


.about-hero h1 {
    font-size: 42px;
    font-weight: 700;
}

.about-hero p {
    max-width: 720px;
    margin: 16px auto 0;
    font-size: 18px;
}

/* ================= ABOUT INTRO ================= */
.about-intro {
    padding: 80px 0;
    background: #ffffff;
    text-align: center;
}

.about-intro img,
.about-experience img {
    border-radius: 24px;
    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.12),
        inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}

.about-intro .col-lg-6 img {
    position: relative;
}

.about-intro .col-lg-6::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 28px;
    background: linear-gradient(100deg,
            rgba(255, 255, 255, 0.15),
            rgba(255, 245, 248, 0.4));
    pointer-events: none;
}

.about-hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to bottom, transparent, #fff5f8);
}



.about-intro h2 {
    font-weight: 700;
    margin-bottom: 14px;
}

.about-intro p {
    max-width: 850px;
    margin: auto;
    color: #555;
}

/* ================= ABOUT CARDS ================= */
.about-mission {
    padding: 80px 0;
    background: #fff5f8;
}

.about-card {
    background: #fff;
    padding: 28px;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.about-card h3 {
    font-size: 20px;
    font-weight: 700;
}

/* ================= ABOUT WHY US ================= */
.about-why-us {
    padding: 80px 0;
    background: #ffffff;
    text-align: center;
}

.about-why-us h2 {
    font-weight: 700;
    margin-bottom: 20px;
}

.about-points {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: auto;
}

.about-points li {
    background: #fff;
    padding: 12px 18px;
    margin-bottom: 12px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

/* ================= ABOUT EXPERIENCE ================= */
.about-experience {
    padding: 80px 0;
    background: #fff5f8;
    text-align: center;
}

.about-location {
    padding: 80px 0;
    background: #ffffff;
    text-align: center;
}

.about-philosophy {
    padding: 90px 0;
    background: linear-gradient(180deg, #ffffff, #fff5f8);
}

.about-philosophy h2 {
    font-weight: 700;
    margin-bottom: 14px;
}

.about-philosophy p {
    max-width: 800px;
    margin: auto;
    color: #555;
    font-size: 17px;
}


@media (max-width: 768px) {
    .about-hero {
        min-height: 70vh;
        padding: 120px 20px;
    }

    .about-hero .container {
        margin-top: 40px;
    }
}

/* about page end  */


/* service page start  */

/* ================= SERVICE HERO (HOME STYLE MATCH) START ================= */

.service-hero {
    min-height: 70vh;                     /* Home se thoda chhota */
    padding-top: 80px;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;

    background:
        linear-gradient(
            rgba(233, 30, 99, 0.35),
            rgba(156, 39, 176, 0.35)
        ),
        url("../img/h1.webp") center top / cover no-repeat;
}

/* same fade effect like home */
.service-hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to bottom, transparent, #fff5f8);
}

/* content spacing */
.service-hero .container {
    margin-top: 60px;
}

/* heading */
.service-hero h1 {
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
}

/* paragraph */
.service-hero p {
    font-size: 18px;
    color: rgba(255,255,255,0.95);
    max-width: 820px;
    margin: 18px auto 0;
}

/* button same as home */
.service-hero .home-btn-primary {
    margin-top: 24px;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
    .service-hero {
        min-height: 60vh;
        padding: 140px 20px;
        background-position: center top;
    }

    .service-hero .container {
        margin-top: 40px;
    }

    .service-hero h1 {
        font-size: 28px;
    }

    .service-hero p {
        font-size: 16px;
    }
}

/* ================= SERVICE HERO END ================= */


/* ================= CORE SPA SERVICES START ================= */

.spa-services-advanced {
    padding: 100px 0;
    background:
        radial-gradient(circle at top left,
            rgba(233,30,99,0.08),
            transparent 45%),
        radial-gradient(circle at bottom right,
            rgba(156,39,176,0.10),
            transparent 45%),
        linear-gradient(180deg, #ffffff, #fff5f8);
}

/* Title */
.spa-services-title {
    font-size: 36px;
    font-weight: 700;
    color: #2c2c2c;
}

.spa-services-subtitle {
    max-width: 760px;
    margin: 12px auto 0;
    font-size: 16px;
    color: #555;
}

/* Card */
.spa-service-card {
    height: 100%;
    padding: 38px 30px;
    border-radius: 28px;

    background: linear-gradient(
        145deg,
        rgba(255,255,255,0.96),
        rgba(255,245,248,0.92)
    );

    backdrop-filter: blur(8px);
    border: 1px solid rgba(233,30,99,0.15);

    box-shadow: 0 20px 45px rgba(0,0,0,0.10);
    transition: all 0.45s ease;
    text-align: center;
}

/* Highlighted middle card */
.spa-service-card.featured {
    border: 2px solid #e91e63;
    transform: translateY(-10px);
}

/* Hover */
.spa-service-card:hover {
    transform: translateY(-14px);
    box-shadow: 0 35px 70px rgba(233,30,99,0.30);
}

/* Icon */
.spa-service-icon {
    width: 78px;
    height: 78px;
    margin: 0 auto 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 36px;
    border-radius: 50%;

    background: linear-gradient(135deg, #e91e63, #9c27b0);
    color: #ffffff;

    box-shadow: 0 12px 30px rgba(233,30,99,0.45);
}

/* Headings */
.spa-service-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #2c2c2c;
}

/* Description */
.spa-service-desc {
    font-size: 15.5px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 18px;
}

/* Bullet points */
.spa-service-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.spa-service-points li {
    font-size: 14.5px;
    color: #444;
    margin-bottom: 8px;
}

/* Mobile */
@media (max-width: 768px) {
    .spa-services-title {
        font-size: 28px;
    }

    .spa-service-icon {
        width: 64px;
        height: 64px;
        font-size: 30px;
    }

    .spa-service-card.featured {
        transform: none;
    }
}

/* ================= CORE SPA SERVICES END ================= */



/* ================= HOW SPA SESSION WORKS START ================= */

.spa-process {
    padding: 100px 0;
    background:
        radial-gradient(circle at top left,
            rgba(233,30,99,0.08),
            transparent 45%),
        radial-gradient(circle at bottom right,
            rgba(156,39,176,0.10),
            transparent 45%),
        linear-gradient(180deg, #ffffff, #fff5f8);
}

/* Title */
.spa-process-title {
    font-size: 36px;
    font-weight: 700;
    color: #2c2c2c;
}

.spa-process-subtitle {
    max-width: 760px;
    margin: 12px auto 0;
    font-size: 16px;
    color: #555;
}

/* Card */
.spa-process-card {
    position: relative;
    height: 100%;
    padding: 42px 28px 34px;

    background: linear-gradient(
        145deg,
        rgba(255,255,255,0.96),
        rgba(255,245,248,0.92)
    );

    border-radius: 26px;
    border: 1px solid rgba(233,30,99,0.15);
    backdrop-filter: blur(6px);

    box-shadow: 0 18px 40px rgba(0,0,0,0.10);
    transition: all 0.45s ease;
}

/* Hover */
.spa-process-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 65px rgba(233,30,99,0.28);
}

/* Step Number */
.spa-step {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);

    width: 42px;
    height: 42px;
    border-radius: 50%;

    background: linear-gradient(135deg, #e91e63, #9c27b0);
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 16px;
    font-weight: 700;

    box-shadow: 0 10px 25px rgba(233,30,99,0.45);
}

/* Icon */
.spa-process-icon {
    width: 70px;
    height: 70px;
    margin: 10px auto 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 34px;
    border-radius: 50%;

    background: linear-gradient(135deg, #e91e63, #9c27b0);
    color: #fff;

    box-shadow: 0 12px 30px rgba(233,30,99,0.45);
}

/* Text */
.spa-process-card h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #2c2c2c;
}

.spa-process-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

/* Mobile */
@media (max-width: 768px) {
    .spa-process-title {
        font-size: 28px;
    }

    .spa-process-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
}

/* ================= HOW SPA SESSION WORKS END ================= */

/* ================= SPA GALLERY START ================= */

.home-gallery {
    padding: 100px 0;
    background:
        radial-gradient(circle at top left,
            rgba(233,30,99,0.08),
            transparent 45%),
        radial-gradient(circle at bottom right,
            rgba(156,39,176,0.10),
            transparent 45%),
        linear-gradient(180deg, #ffffff, #fff5f8);
}

/* Title */
.gallery-title {
    font-size: 36px;
    font-weight: 700;
    color: #2c2c2c;
}

.gallery-subtitle {
    max-width: 720px;
    margin: 12px auto 0;
    color: #555;
    font-size: 16px;
}

/* Image Card */
.gallery-img-box {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 26px;

    background: #ffffff;
    padding: 8px;

    box-shadow:
        0 18px 40px rgba(0,0,0,0.12),
        inset 0 0 0 1px rgba(255,255,255,0.6);

    transition: all 0.45s ease;
}

.gallery-img-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.18);
}

.gallery-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.6s ease;
}

.gallery-img-box:hover img {
    transform: scale(1.08);
}

/* Overlay */
.gallery-overlay {
    position: absolute;
    inset: 0;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;

    padding-bottom: 26px;

    background:
        linear-gradient(to top,
            rgba(0,0,0,0.60),
            rgba(0,0,0,0.20),
            transparent);

    border-radius: 20px;
}

/* Overlay Title */
.gallery-overlay h4 {
    margin: 0;
    padding: 10px 30px;

    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.4px;

    color: #ffffff;

    background: linear-gradient(135deg, #e91e63, #9c27b0);
    border-radius: 40px;

    box-shadow: 0 10px 30px rgba(233,30,99,0.45);
    transition: all 0.35s ease;
}

/* Overlay Subtitle */
.gallery-overlay span {
    margin-top: 10px;
    font-size: 13px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: #f1f1f1;
    opacity: 0.9;
}

/* Hover micro animation */
.gallery-img-box:hover .gallery-overlay h4 {
    transform: translateY(-4px);
}

/* Mobile Fix */
@media (max-width: 768px) {
    .gallery-title {
        font-size: 28px;
    }

    .gallery-overlay h4 {
        font-size: 16px;
        padding: 8px 24px;
    }

    .gallery-overlay span {
        font-size: 12px;
    }
}

/* ================= SPA GALLERY END ================= */

/* ================= WHO IT IS FOR SECTION START ================= */

.spa-audience {
    padding: 100px 0;
    background:
        radial-gradient(circle at top left,
            rgba(233,30,99,0.10),
            transparent 45%),
        radial-gradient(circle at bottom right,
            rgba(156,39,176,0.12),
            transparent 45%),
        linear-gradient(180deg, #ffffff, #fff5f8);
}

/* Title */
.spa-audience-title {
    font-size: 36px;
    font-weight: 700;
    color: #2c2c2c;
}

.spa-audience-subtitle {
    max-width: 720px;
    margin: 12px auto 0;
    font-size: 16px;
    color: #555;
}

/* Card */
.spa-audience-card {
    height: 100%;
    padding: 34px 26px;
    border-radius: 24px;

    background: linear-gradient(
        145deg,
        rgba(255,255,255,0.95),
        rgba(255,245,248,0.9)
    );

    backdrop-filter: blur(6px);
    border: 1px solid rgba(233,30,99,0.15);

    box-shadow: 0 18px 40px rgba(0,0,0,0.10);
    transition: all 0.45s ease;
}

/* Hover */
.spa-audience-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 65px rgba(233,30,99,0.25);
}

/* Icon */
.spa-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 32px;
    border-radius: 50%;

    background: linear-gradient(135deg, #e91e63, #9c27b0);
    color: #fff;

    box-shadow: 0 10px 25px rgba(233,30,99,0.45);
}

/* Text */
.spa-audience-card h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #2c2c2c;
}

.spa-audience-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.65;
}

/* Mobile */
@media (max-width: 768px) {
    .spa-audience-title {
        font-size: 28px;
    }

    .spa-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
}

/* ================= WHO IT IS FOR SECTION END ================= */


/* =====================================================
   SERVICE PAGE SEO CONTENT STYLES
   Page: services.html
   Purpose: Ranking + Readability + Clean Layout
===================================================== */

.service-seo-content {
    padding: 90px 0;
    background: #ffffff;
}

.service-seo-title {
    font-size: 34px;
    font-weight: 700;
    color: #2c2c2c;
    text-align: center;
    margin-bottom: 18px;
}

.service-seo-subtitle {
    font-size: 22px;
    font-weight: 600;
    margin-top: 36px;
    margin-bottom: 10px;
    color: #2c2c2c;
}

.service-seo-text {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .service-seo-title {
        font-size: 26px;
    }

    .service-seo-subtitle {
        font-size: 20px;
    }

    .service-seo-text {
        font-size: 15px;
    }
}


/* ================= SPA FAQ SECTION START ================= */

.spa-faq {
    padding: 100px 0;
    background:
        radial-gradient(circle at top left,
            rgba(233,30,99,0.08),
            transparent 45%),
        radial-gradient(circle at bottom right,
            rgba(156,39,176,0.10),
            transparent 45%),
        linear-gradient(180deg, #ffffff, #fff5f8);
}

/* Title */
.spa-faq-title {
    font-size: 36px;
    font-weight: 700;
    color: #2c2c2c;
}

.spa-faq-subtitle {
    max-width: 720px;
    margin: 12px auto 0;
    font-size: 16px;
    color: #555;
}

/* FAQ Card */
.spa-faq-card {
    display: flex;
    gap: 22px;
    padding: 26px 28px;
    margin-bottom: 22px;

    background: linear-gradient(
        145deg,
        rgba(255,255,255,0.96),
        rgba(255,245,248,0.92)
    );

    border-radius: 22px;
    border: 1px solid rgba(233,30,99,0.15);
    backdrop-filter: blur(6px);

    box-shadow: 0 18px 40px rgba(0,0,0,0.10);
    transition: all 0.4s ease;
}

/* Hover */
.spa-faq-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 60px rgba(233,30,99,0.22);
}

/* Icon */
.spa-faq-icon {
    min-width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 22px;
    border-radius: 50%;

    background: linear-gradient(135deg, #e91e63, #9c27b0);
    color: #ffffff;

    box-shadow: 0 10px 25px rgba(233,30,99,0.45);
}

/* Content */
.spa-faq-content h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #2c2c2c;
}

.spa-faq-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* Mobile */
@media (max-width: 768px) {
    .spa-faq-title {
        font-size: 28px;
    }

    .spa-faq-card {
        flex-direction: column;
        text-align: left;
    }

    .spa-faq-icon {
        margin-bottom: 6px;
    }
}

/* ================= SPA FAQ SECTION END ================= */


.home-city-links {
  padding: 40px 0;
  background: linear-gradient(180deg, #ffffff, #fff5f8);
}

.city-card {
  position: relative;
  display: block;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,0.15);
  transition: all 0.45s ease;
}

.city-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.city-card:hover img {
  transform: scale(1.1);
}

.city-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding-bottom: 26px;
  background: linear-gradient(to top,
    rgba(0,0,0,0.65),
    rgba(0,0,0,0.25),
    transparent);
}

.city-overlay h4 {
  background: linear-gradient(135deg, #e91e63, #9c27b0);
  color: #fff;
  padding: 10px 30px;
  border-radius: 40px;
  font-size: 18px;
  font-weight: 700;
}

.city-overlay span {
  font-size: 13px;
  color: #f1f1f1;
  margin-top: 6px;
}




/* service page end  */


/* City page start  */




