* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

body {
    font-family: 'Manrope', sans-serif !important;
    color: #000000;
    line-height: 1.6;
    background-color: #ffffff;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Syne', sans-serif !important;
    font-weight: 600;
    line-height: 1.2;
}
p,a,li, span {
    font-family: 'Syne', sans-serif !important;
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    background: #928575;
    color: #ffffff;
    border: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: -1;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn:hover {
    color: #ffffff;
}

.btn:hover:before {
    left: 0;
}

/* Hero Slider */
.hero-slider {
    height: 90vh;
    position: relative;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    display: flex;
    align-items: center;
    background: #1c1c1c;
    color: #ffffff;
}

.hero-slide.active {
    opacity: 1;
}

.hero-content {
    width: 50%;
    z-index: 10;
    padding-left: 5%;
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 30px;
    line-height: 1.1;
    color: #ffffff;
}

.hero-title span {
    color: #928575;
}

.hero-text {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 500px;
    opacity: 0.9;
    color: #f0f0f0;
}

.hero-image {
    position: absolute;
    right: 0;
    top: 0;
    width: 60%;
    height: 100%;
    background-size: cover;
    background-position: top;
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}

.slide1 .hero-image {
    background-image: url(images/banner.png)
}

.slide2 .hero-image {
    background-image: url(images/banner4.jpg);
}

.slide3 .hero-image {
    background-image: url(images/beauty-salon-1.png);
}

.slide4 .hero-image {
    background-image: url(images/banner3.jpg);
}

.slider-controls {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.slider-dot.active {
    background: #928575;
    transform: scale(1.2);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-content {
        width: 100%;
        text-align: center;
    }
    
    .hero-text {
        margin: 0 auto 40px;
    }
    
    .hero-image {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 3rem;
    }
}

/*
====================================
New Animation Keyframes: Reveal Effect
====================================
*/

@keyframes textSlideUp {
    from {
        transform: translateY(100%); 
    }
    to {
        transform: translateY(0);
    }
}

@keyframes maskSlideUp {
    from {
        transform: translateY(0);
        opacity: 1; 
    }
    to {
        transform: translateY(-105%); 
        opacity: 0; 
    }
}

/*
====================================
Setup and Apply Animation
====================================
*/

.hero-title {
    overflow: hidden; 
    line-height: 1.1; 
    transform: none; 
}

.hero-title .text-reveal {
    display: block;
    position: relative;
    transform: translateY(100%); 
    color: #ffffff;
}


.hero-slide.active .hero-title .text-reveal {
    animation: textSlideUp 1s cubic-bezier(0.19, 1, 0.22, 1) 0.4s forwards;
}

.hero-title .text-reveal::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #928575;
    z-index: 2;
    opacity: 1; 
}

.hero-slide.active .hero-title .text-reveal::after {
    animation: maskSlideUp 1s cubic-bezier(0.19, 1, 0.22, 1) 0.4s forwards;
}

.hero-slide.active .hero-text {
    opacity: 0; 
    animation: slideDownFade 1s ease-out 0.8s forwards; 
}

.hero-slide.active .btn {
    opacity: 0; 
    animation: slideDownFade 1s ease-out 1s forwards;
}

@keyframes slideDownFade {
    from { opacity: 0; transform: translateY(-15px); }
    to { opacity: 1; transform: translateY(0); }
}


/* /////// Image and Text Section ////  */
.security-section {
    display: flex;
    width: 100%;
    background-color: #ffffff !important;
    padding: 70px 90px;
    gap: 40px;
}

/* Image Containers */
.image-container {
    display: flex;
    flex-grow: 1;
    gap: 15px;
    width: 50%;
    margin: 20px auto;
}

/* --- About Image Styles  --- */

.large-image, .top-image, .bottom-image {
    overflow: hidden; 
    position: relative;
}

.large-image {
    flex-basis: 50%;
    border-radius: 7px 0 0 7px;
}

.small-images {
    flex-basis: 50%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    border-radius: 0 7px 7px 0;
    overflow: hidden;
}

.top-image, .bottom-image {
    flex-grow: 1;
}

.large-image img {
    height: 350px;
}

.large-image img, .top-image img, .bottom-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), filter 0.6s ease; 
}

.large-image:hover img {
    transform: scale(1.1) translate(5%, 5%); 
    filter: brightness(0.9);
}

.top-image {
    position: relative;
}

.top-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.2);
    transform: scale(0);
    opacity: 0;
    transition: all 0.5s ease-out;
    pointer-events: none;
}

.top-image:hover::after {
    transform: scale(1);
    opacity: 1;
}

.top-image:hover img {
    transform: scale(0.98); 
}



.bottom-image {
    position: relative; 
}

.bottom-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transform: skewX(-25deg);
    transition: transform 0.6s ease;
    z-index: 2; 
}

.bottom-image:hover::before {
    transform: skewX(-25deg) translateX(250%);
}

.bottom-image:hover img {
    transform: scale(1.03); 
    filter: brightness(1.05);
}

/* Text Container */
.text-container {
    width: 50%;
    padding: 20px;
}

.about-us-tag {
    color: #928575;
    font-weight: 600;
    font-size: 0.9rem;
    position: relative;
    padding-left: 15px;
    margin-bottom: 10px;
    width: 200px;
    font-weight: 800;
}

.about-us-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 100%;
    background-color: #928575;
    border-radius: 2px;
}

.main-heading {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #000000;
    margin-bottom: 20px;
}

.body-text {
    font-size: 1.1rem;
    color: #333333;
    line-height: 1.7;
    margin-top: 20px;
}


.premium-text {
      font-size: 1rem;
      font-weight: 800;
      background: linear-gradient(90deg, #928575, #000, #fff, #928575);
      background-size: 300% 300%;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      display: inline-block;
      opacity: 0;
      transform: translateY(40px) scale(0.95);
      animation: fadeSlideUp 1.4s cubic-bezier(0.19, 1, 0.22, 1) forwards, shimmer 5s infinite linear;
    }

    @keyframes fadeSlideUp {
      0% {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
      }
      100% {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }

    @keyframes shimmer {
      0% {
        background-position: 200% 0;
      }
      100% {
        background-position: -200% 0;
      }
    }

/* Responsive Design */
@media (max-width: 768px) {
    .security-section {
        flex-direction: column;
        padding: 50px 10px;
    }

    .image-container {
        width: 100%;
    }
    .text-container{
        width: 100%;
        padding: 10px 0;
    }
}


/* //////services section//// */
.services-section{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    background-color: #e1d7cb;
    padding: 30px;
}
.service-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 200px;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.service-card:hover{
    transform: translateY(-10px);
}

.icon-wrapper {
    margin-bottom: 20px;
}

.icon-wrapper i {
    font-size: 60px;
    color: #928575;
}

.service-card h3 {
    font-size: 1.25rem;
    color: #000000;
    margin-bottom: 10px;
    font-weight: 500;
}

.service-card p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #333333;
}

/* --- Responsive Layout --- */

@media (max-width: 768px) {
    .service-container {
        flex-direction: row;
        justify-content: center;
    }
    .service-card {
        flex: 1 1 calc(50% - 30px);
    }
}

@media (max-width: 480px) {
    .service-card {
        flex: 1 1 100%;
    }
}

/* Main Container */
.spa-container {
    display: flex;
    width: 100%;
    background-color: #ffffff;
    overflow: hidden;
    margin-top: 40px;
}

/* Image Section */

.image-section {
  display: flex;
  gap: 5px;
  align-items: center;
  padding: 20px 40px;
  width: 45% !important;
}

.image-wrapper {
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.2);
  transition: flex 600ms cubic-bezier(.22,.9,.36,1);
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 600ms ease;
}

.image-section:hover .image-wrapper {
  flex: 1;
}

.image-section:hover .image-wrapper:hover {
  flex: 9;
  transform: scale(1.02);
}

.image-section:hover .image-wrapper:not(:hover) {
  filter: brightness(0.8);
  transition: filter 600ms ease;
}


/* Content Section */
.content-section {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.extra-width{
    width: 250px;
}

.section-title {
    font-size: 14px;
    color: #666666;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.main-heading {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #000000;
    margin-bottom: 20px;
}

.description-text {
    font-size: 16px;
    line-height: 1.6;
    color: #333333;
    margin-bottom: 30px;
    max-width: 500px;
}

/* Services List */
.services-list {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.list-column {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.list-item a {
    font-size: 16px;
    color: #333333;
    display: flex;
    align-items: start;
}

.icon {
    color: #928575;
    font-weight: bold;
    margin-right: 8px;
    transition: all 0.3s ease;
}

.list-item:hover .icon{
    padding-right: 2px;
}

/* Appointment Button */
.appointment-btn {
    padding: 15px 30px;
    border: 1px solid #000000;
    background-color: transparent;
    color: #000000;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    max-width: fit-content;
    margin-top: 10px;
}

.appointment-btn:hover {
    background-color: #000000;
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 992px) {
    .spa-container {
        flex-direction: column;
        border-radius: 0;
        box-shadow: none;
    }

    .image-section {
        padding: 40px 20px;
        width: 100% !important;
    }

    .image-wrapper {
        height: 400px;
        max-width: 400px;
    }

    .content-section {
        padding: 40px 20px;
    }

    .main-heading {
        font-size: 40px;
    }

    .services-list {
        align-items: start;
        gap: 20px;
    }

    .list-column {
        gap: 10px;
    }
}



.treatment-showcase1 .services-list{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.treatment-showcase1 .services-list h3{
    text-align: center;
}
.treatment-showcase1 .list-column{
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: start;
    flex-wrap: wrap;
    flex-direction: row;
}

.treatment-showcase1 .list-item{
    width: 48%;
}
.showcase-content1 a{
    color: #e1d7cb;
    font-size: 15px;
}

.sec-service-box{
    width: 100%;
    display: flex;
    justify-content: start;
    align-items: start;
}

.sec-service-box .list-item{
    width: 100%;
}

.button-box{
    width: 100%;
    text-align: center;
}

/* ===== KMO SIGNATURE FACIAL SECTION STYLES ===== */
.treatment-showcase1 {
    padding: 50px 5%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.treatment-showcase1::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 107, 107, 0.224);
    top: -200px;
    right: -200px;
}

.treatment-showcase1::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 107, 107, 0.148);
    bottom: -150px;
    left: -150px;
}

.showcase-container1 {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.showcase-content1 {
    flex: 1;
    padding-right: 50px;
}

.showcase-image1 {
    flex: 1;
    position: relative;
}

.showcase-img1 {
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}



/* ///image split//// */

.split-image-container {
  position: relative;
  width: 500px;
  height: 500px;
  margin: 0 auto;
}

.quadrant {
  position: absolute;
  width: 50%;
  height: 50%;
  background-image: url("images/kmo-sig\ \(3\).png");
  background-size: 500px 500px;
  transition: transform 0.3s ease;
}

.quadrant-1 {
  top: 0;
  left: 0;
  background-position: top left;
}

.quadrant-2 {
  top: 0;
  right: 0;
  background-position: top right;
}

.quadrant-3 {
  bottom: 0;
  left: 0;
  background-position: bottom left;
}

.quadrant-4 {
  bottom: 0;
  right: 0;
  background-position: bottom right;
}

.split-image-container:hover .quadrant-1 {
  transform: translate(-10px, -10px);
    border-bottom-right-radius: 10px;
}

.split-image-container:hover .quadrant-2 {
  transform: translate(10px, -10px);
   border-bottom-left-radius: 10px;
}

.split-image-container:hover .quadrant-3 {
  transform: translate(-10px, 10px);
  border-top-right-radius: 10px;
}

.split-image-container:hover .quadrant-4 {
  transform: translate(10px, 10px);
  border-top-left-radius: 10px;
}

/* // */

.feature-list1 {
    margin: 30px 0;
}

.feature-item1 {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.feature-icon1 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 107, 107, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.feature-icon1 i {
    color: #928575;
    font-size: 20px;
}

.feature-text1 {
    font-size: 18px;
}

.section-heading1.light1 {
    color: #fff;
}

.section-heading1.light1 span::after {
    background: rgba(255, 255, 255, 0);
}

.section-text1.light1 {
    color: rgba(255,255,255,0.8);
}

.btn-primary1 {
    background: #fff;
    color: #928575;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid #fff;
    display: inline-block;
    text-decoration: none;
}

.btn-primary1:hover {
    background: transparent;
    color: #fff;
}

/* ===== POPULAR TREATMENTS SECTION STYLES ===== */
.specialties-section1 {
    padding: 50px 5%;
    background: #fff;
}

.specialties-header1 {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.specialties-grid1 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.specialty-card1 {
    background: #fff;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
}

.specialty-card1:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.specialty-image1 {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.specialty-image1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.specialty-card1:hover .specialty-image1 img {
    transform: scale(1.1);
}

.specialty-overlay1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.specialty-card1:hover .specialty-overlay1 {
    opacity: 1;
}

.specialty-price1 {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
}

.specialty-content1 {
    padding: 25px;
}

.specialty-title1 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.specialty-desc1 {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.specialty-meta1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.specialty-duration1 {
    font-size: 14px;
    color: #888;
    display: flex;
    align-items: center;
}

.specialty-duration1 i {
    margin-right: 5px;
    color: #928575;
}

.specialty-link1 {
    color: #928575;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    text-decoration: none;
}

.specialty-link1:hover {
    color: #c3922e;
}

/* ===== SHARED STYLES ===== */
.section-tag1 {
    display: inline-block;
    color: #928575;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    position: relative;
    padding-left: 20px;
}

.section-tag1::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #928575;
    border-radius: 50%;
}

.section-heading1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.section-heading1 span {
    color: #928575;
    position: relative;
}

.section-heading1 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(255, 107, 107, 0.2);
    z-index: -1;
}

.section-text1 {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1024px) {
    .showcase-container1 {
        flex-direction: column;
    }
    
    .showcase-content1 {
        padding-right: 0;
        margin-bottom: 50px;
    }
    
    .showcase-img1 {
        height: 400px;
    }
    
    .specialties-grid1 {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .treatment-showcase1 {
        padding: 80px 5%;
    }
    
    .specialties-section1 {
        padding: 80px 5%;
    }
    
    .feature-item1 {
        margin-bottom: 15px;
    }
    
    .feature-icon1 {
        width: 40px;
        height: 40px;
        margin-right: 15px;
    }
    
    .feature-text1 {
        font-size: 16px;
    }
    
    .specialties-header1 {
        margin-bottom: 40px;
    }
    
    .specialties-grid1 {
        gap: 20px;
    }
    
    .specialty-image1 {
        height: 180px;
    }
    
    .specialty-content1 {
        padding: 20px;
    }
    
    .section-heading1 {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .treatment-showcase1 {
        padding: 60px 5%;
    }
    
    .specialties-section1 {
        padding: 60px 5%;
    }
    
    .showcase-img1 {
        height: 300px;
    }
    
    .feature-list1 {
        margin: 20px 0;
    }
    
    .specialties-grid1 {
        grid-template-columns: 1fr;
    }
    
    .specialty-image1 {
        height: 160px;
    }
    
    .specialty-meta1 {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .section-heading1 {
        font-size: 28px;
    }
    
    .section-text1 {
        font-size: 16px;
    }
}




/* ///////services /////// */
.wellness-services-section {
    color: #000000;
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0px;
    min-height: 100vh;
}

/* Main Container and Header */
.services-content-container {
    max-width: 1300px;
    width: 100%;
    text-align: center;
}

.services-header-section {
    margin-bottom: 50px
}

.services-pre-heading {
    font-size: 0.9rem;
    color: #928575;
    border-left: 4px solid #928575;
    text-transform: uppercase;
    margin: 0 auto;
    width: 200px;
    font-weight: 600;
    text-align: start;
    padding-left: 10px;
    align-self: center;
}

.services-main-heading {
    font-size: 50px;
    font-weight: 700;
    line-height: 1.2;
    color: #000000;
    margin-top: 20px;
}

/* Services Grid and Cards */
.services-card-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.service-offering-card {
    flex: 1 1 250px;
    max-width: 230px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-radius: 10px;
}

/* Image wrappers for different shapes */
.img-wrapper-dry-sauna,
.img-wrapper-cosmetology,
.img-wrapper-massage {
    width: 100%;
    max-width: 240px;
    aspect-ratio: 1 / 1;
    border-radius: 400px 400px 0 0;
    transition: all 0.3s ease;
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 260px;
}

.img-wrapper-relaxation,
.img-wrapper-finnish-sauna{
    width: 100%;
    max-width: 240px;
    aspect-ratio: 1 / 1;
    border-radius: 0 0 400px 400px; 
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    height: 260px;
}

.service-offering-card:hover .img-wrapper-relaxation,
.service-offering-card:hover .img-wrapper-finnish-sauna,
.service-offering-card:hover .img-wrapper-dry-sauna,
.service-offering-card:hover .img-wrapper-cosmetology,
.service-offering-card:hover .img-wrapper-massage{
    border-radius: 50%;
}

.img-wrapper-steam-room {
    width: 100%;
    max-width: 300px;
    aspect-ratio: 1 / 1;
    border-radius: 50% ;
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-offering-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Card Content */
.card-service-title {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 10px;
    color: #000000;
}

.card-service-description {
    font-size: 15px;
    color: #333333;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 280px;
}

.card-read-more-link {
    font-size: 14px;
    color: #928575;
    text-decoration: none;
    letter-spacing: 1px;
    font-weight: 500;
    transition: color 0.3s;
}

.card-read-more-link:hover {
    color: #c3922e;
}


/* Responsive Design */
@media (max-width: 768px) {
    .services-main-heading {
        font-size: 40px;
    }
    .service-offering-card {
    max-width: 300px;
    }
    .img-wrapper-relaxation,
.img-wrapper-finnish-sauna,
.img-wrapper-dry-sauna,
.img-wrapper-cosmetology,
.img-wrapper-massage{
    max-width: 300px;
    height: 310px;
}
}

@media (max-width: 480px) {
    .services-main-heading {
        font-size: 32px;
    }
}

/* ////under banner////// */
/* Main Container */
        .slider-container {
            position: relative;
            width: 100%;
            overflow: hidden;
        }

        .slider-wrapper {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .slide {
            min-width: 100%;
            display: flex;
            justify-content: center;
            align-items: end;
            min-height: 90vh;
            overflow: hidden;
            padding: 20px 20px 0 20px;
            background-position: center;
            background-size: cover;
            background-repeat: no-repeat;
        }

        /* First slide with your original styling */
        .slide-1 {
            background-image: url(images/h2-background.png);
        }

        /* Additional slides with different backgrounds */
        .slide-2 {
            background-image: linear-gradient(rgba(255, 231, 247, 0.35), rgba(255, 231, 254, 0.265)), url(images/h2-background.png);
        }

        .slide-3 {
            background-image: linear-gradient(rgba(255, 255, 243, 0.453), rgba(255, 253, 226, 0.556)), url(images/h2-background.png);
        }

        .slide-4 {
            background-image: linear-gradient(rgba(240, 245, 255, 0.555), rgba(242, 245, 255, 0.343)), url(images/h2-background.png);
        }

        /* Left and Right Image Sections */
        .image-section-2 {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .image-section-2 img {
            width: 100%;
            height: auto;
            display: block;
            object-fit: contain;
        }

        .right-image-3 {
            position: relative;
            border-radius: 300px 300px 0 0;
            height: 500px;
        }

        .right-image-3 video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 300px 300px 0 0;
            flex: .9;
        }

        .right-image-3::before {
            content: '';
            position: absolute;
            top: 0;
            left: -50px;
            width: 100px;
            height: 100%;
            background: #f0f0f0;
            transform: skewX(-20deg);
            z-index: -1;
        }

        /* Content Section */
        .content-section-4 {
            flex: 1.2;
            padding: 40px 20px;
            text-align: center;
            z-index: 1;
        }

        .logo-5 img {
            width: 70px;
            margin-bottom: 20px;
            filter: brightness(0);
        }

        .services-pre-heading {
            font-size: 0.8rem;
            letter-spacing: 2px;
            color: #666666;
            margin-bottom: 10px;
        }

        .pre-heading-center{
            width: 180px;
            text-align: center;
            margin: 0 auto;
        }

        .heading-7 {
            font-size: 3rem;
            font-weight: 700;
            color: #000000;
            line-height: 1.2;
            margin: 10px 0 20px 0;
        }

        .description-8 {
            color: #333333;
            font-size: 1rem;
            max-width: 400px;
            margin: 0 auto 30px;
        }

        .btn {
            background-color: #928575;
            color: #ffffff;
            border: none;
            padding: 15px 40px;
            font-size: 1rem;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: background-color 0.3s ease;
        }

        .btn:hover {
            background-color: #000;
        }

        /* Slider navigation */
        .slider-nav {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 10;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(0, 0, 0, 0.3);
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .slider-dot.active {
            background-color: #000;
        }

        .slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(0, 0, 0, 0.5);
            color: white;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            font-size: 18px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
            transition: background-color 0.3s ease;
        }

        .slider-arrow:hover {
            background-color: rgba(0, 0, 0, 0.8);
        }

        .slider-arrow.prev {
            left: 20px;
        }

        .slider-arrow.next {
            right: 20px;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .slide {
                flex-direction: column-reverse;
                align-items: center;
            }
            
            .image-section-2 {
                width: 100%;
            }

            .left-image-10{
                display: none;
            }
            
            .content-section-4 {
                width: 100%;
            }
            
            .heading-7 {
                font-size: 2rem;
            }
            
            .right-image-3 {
                height: 300px;
            }
            
            .slider-arrow {
                width: 35px;
                height: 35px;
                font-size: 16px;
            }
        }


        /* //////////reviews///// */

.review-headings {
  text-align: center;
  padding: 50px 0;
}

.review-headings h2 {
  font-size: 3rem;
  color: #000000;
  margin: 10px 0 30px 0;
}

   




