   @import url('https://fonts.googleapis.com/css2?family=Syne:wght@400..800&display=swap');
   @import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900&display=swap');

   * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background-color: #f8f9fa;
        }

  /* Desktop Navbar - Your existing styles */
        .navbar {
            background-color: #fff;
            padding: 8px 16px;
            overflow: visible;
            position: relative;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .nav-list {
            display: flex;
            justify-content: center;
            align-items: center;
            list-style: none;
            padding: 0;
            margin: 0;
            gap: 40px;
            flex-wrap: nowrap;
        }

        .nav-item {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        
        .nav-item.dropdown {
       position: relative;
      }

        .nav-item a {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .nav-item a img {
            display: block;
            height: 50px;
            object-fit: contain;
            transition: transform 0.2s ease;
        }

        .nav-item a:hover img {
            transform: scale(1.05);
        }

        .nav-item.logo img {
            height: 70px;
        }

        .nav-item a.active img {
            filter: brightness(0) saturate(100%) invert(45%) sepia(72%) saturate(500%) hue-rotate(75deg) brightness(95%) contrast(90%);
        }

        /* Mobile Header */
        .mobile-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: white;
            padding: 12px 20px;
            display: none;
            justify-content: space-between;
            align-items: center;
            z-index: 1001;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            border-bottom: 1px solid #e8e8e8;
        }

        .mobile-logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .mobile-logo img {
            height: 40px;
            width: auto;
        }

        .mobile-menu-toggle {
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .hamburger-line {
            width: 25px;
            height: 3px;
            background-color: #333;
            transition: all 0.3s ease;
        }

        .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        .mobile-menu-toggle.active .hamburger-line:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        /* Sidebar Overlay */
        .sidebar-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .sidebar-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Main Sidebar */
        .mobile-sidebar {
            position: fixed;
            top: 0;
            left: -270px;
            width: 270px;
            height: 100vh;
            background: white;
            z-index: 1000;
            transition: left 0.3s ease;
            display: flex;
            flex-direction: column;
            box-shadow: 2px 0 10px rgba(0,0,0,0.1);
        }

        .mobile-sidebar.active {
            left: 0;
        }

        /* Navigation Content */
        .nav-content {
            flex: 1;
            padding-top: 60px;
        }

        /* Main Navigation Items */
        .nav-main-item {
            display: flex;
            align-items: center;
            padding: 16px 20px;
            color: #333;
            text-decoration: none;
            border-bottom: 1px solid #e8e8e8;
            font-size: 15px;
            font-weight: 400;
            position: relative;
        }

        .nav-main-item:hover {
            background-color: #f8f9fa;
        }

        .nav-main-item.active {
            color: #4CAF50;
            background-color: rgba(76, 175, 80, 0.08);
        }

        /* Icon styling */
      .nav-icon {
  width: 24px;
  height: 24px;
  margin-right: 10px;
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
}


        .icon-home {
            background-image: url('spahead.png');
        }
        
        .icon-about {
            background-image: url('aboutlogo.png');
        }
        
        .icon-services {
            background-image: url('spa-services.png');
        }
        
        .icon-classes {
            background-image: url('classes.png');
        }

        /* Active state icon color filter */
        .nav-main-item.active .nav-icon,
        .nav-dropdown-header.active .nav-icon {
            filter: brightness(0) saturate(100%) invert(45%) sepia(72%) saturate(500%) hue-rotate(75deg) brightness(95%) contrast(90%);
        }

        /* Dropdown Sections */
        .nav-dropdown {
            border-bottom: 1px solid #e8e8e8;
        }

        .nav-dropdown-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 20px;
            color: #333;
            text-decoration: none;
            font-size: 15px;
            font-weight: 400;
            cursor: pointer;
            position: relative;
        }

        .nav-dropdown-header:hover {
            background-color: #f8f9fa;
        }

        .nav-dropdown-header.active {
            color: #4CAF50;
            background-color: rgba(76, 175, 80, 0.08);
        }

        .dropdown-header-content {
            display: flex;
            align-items: center;
        }

        .dropdown-menu {
  display: none;
  position: absolute; /* Ensures it drops OVER content */
  top: 100%;           /* Positions directly below nav item */
  left: 0;
  background: white;
  border-radius: 8px;
  padding: 16px;
  min-width: 250px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  z-index: 999;        /* Keeps it above other elements */
}

        /* Hover behavior */
.nav-item.dropdown:hover .dropdown-menu {
  display: block;
}

        .dropdown-arrow {
            transition: transform 0.2s ease;
            font-size: 10px;
            color: #999;
            font-weight: bold;
        }

        .nav-dropdown.open .dropdown-arrow {
            transform: rotate(180deg);
        }

        .nav-subitems {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            background-color: white;
        }

        .nav-dropdown.open .nav-subitems {
            max-height: 400px;
        }

        /* Category Headers */
        .category-header {
            padding: 12px 20px 6px 20px;
            font-size: 11px;
            font-weight: 600;
            color: #4CAF50;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            background-color: white;
        }



       .nav-subitem {
  display: block;
  padding: 8px 20px 8px 53px;
  color: #666;
  text-decoration: none;
  font-size: 13px;
  line-height: 1.4;
  transition: all 0.2s ease;
}

.nav-subitem:hover {
  background-color: rgba(76, 175, 80, 0.2);
  border-radius: 6px;
  color: #000;
}

        .nav-item {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    padding: 1rem;
    z-index: 999;
    min-width: 250px;
    border-radius: 8px;
}

.dropdown-section {
    margin-bottom: 1rem;
}

.dropdown-section strong {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #333;
}

.dropdown-section a {
    display: block;
    text-decoration: none;
    color: #555;
    padding: 0.25rem 0;
    font-size: 14px;
}

.dropdown-section a {
    display: block;
    text-decoration: none;
    color: #555;
    padding: 0.25rem 0;
    font-size: 14px;
}

.dropdown-section a:hover {
    background-color: #0096400F;
}

.dropdown:hover .dropdown-menu,
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
}

        /* Footer in sidebar */
        .sidebar-footer {
            padding: 20px;
            border-top: 1px solid #e8e8e8;
            font-size: 11px;
            color: #666;
            text-align: center;
            line-height: 1.4;
        }

        /* Main Content */
        .main-content {
            padding: 6rem 1rem 2rem;
            max-width: 800px;
            margin: 0 auto;
        }

        .content-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            margin-bottom: 2rem;
        }

        .content-card h2 {
            color: #4CAF50;
            margin-bottom: 1rem;
        }

        .content-card p {
            line-height: 1.6;
            color: #555;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .navbar {
                display: none;
            }

            .mobile-header {
                display: flex;
            }

            .nav-list {
                gap: 24px;
            }

            .nav-item a img {
                height: 38px;
            }

            .nav-item.logo img {
                height: 55px;
            }

            .main-content {
                padding: 6rem 1rem 1rem;
            }
        }

        @media (max-width: 480px) {
            .nav-list {
                gap: 16px;
            }

            .nav-item a img {
                height: 30px;
            }

            .nav-item.logo img {
                height: 45px;
            }

            .content-card {
                padding: 1.5rem;
            }
        }

 .spa-hero-carousel {
            position: relative;
            height: 100vh;
            overflow: hidden;
            font-family: 'Syne', sans-serif;
        }

        .carousel-container {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .carousel-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transform: translateX(100%);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            display: flex;
            align-items: center;
            padding-left: 100px;
            padding-right: 20px;
            color: white;
        }

        .carousel-slide.active {
            opacity: 1;
            transform: translateX(0);
        }

        .carousel-slide.prev {
            transform: translateX(-100%);
        }

        /* Slide backgrounds */
        .slide-1 {
          background: url("hero.png") no-repeat center center;
          background-size: cover;
        }
        .slide-2 {
          background:
            linear-gradient(rgba(2, 45, 21, 0.55), rgba(2, 45, 21, 0.55)),
            url("hero2.png") no-repeat center center;
          background-size: cover;
        }

        .slide-3 {
          background:
             linear-gradient(rgba(2, 45, 21, 0.55), rgba(2, 45, 21, 0.55)),
            url("yoga.png") no-repeat center center;
          background-size: cover;}

        .slide-4 {
            background: linear-gradient(rgba(2, 45, 21, 0.55), rgba(2, 45, 21, 0.55));
        }

        .spa-hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 100%;
            background: rgba(0, 0, 0, 0.3);
            z-index: 1;
        }

        .spa-hero-content {
            position: relative;
            z-index: 2;
            max-width: 650px;
            animation: slideInContent 0.8s ease-out 0.3s both;
        }

        @keyframes slideInContent {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .carousel-slide h1 {
            font-size: 2rem;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 24px;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .carousel-slide p {
            font-size: 1.2rem;
            font-weight: 300;
            line-height: 1.7;
            margin-bottom: 35px;
            opacity: 0.95;
            max-width: 550px;
        }

        .spa-cta-button {
            background-color: #009245;
            color: #fff;
            padding: 10px 20px;
            text-decoration: none;
            border-radius: 5px;
            font-weight: 600;
            transition: background 0.3s;
                  }

        .spa-cta-button:hover {
            background-color: #008f46;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 166, 81, 0.4);
        }

        /* Navigation dots */
        .carousel-nav {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
            z-index: 3;
        }

        .nav-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .nav-dot.active {
            background: white;
            transform: scale(1.2);
        }

        .nav-dot:hover {
            background: rgba(255, 255, 255, 0.8);
        }
        
        
        .nav-item a.active img {
             filter: hue-rotate(90deg) saturate(5);
          }

        /* Progress bar */
    
        /* Arrow navigation */
        .carousel-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: white;
            font-size: 24px;
            padding: 15px 20px;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 3;
            backdrop-filter: blur(10px);
            border-radius: 50%;
        }

        .carousel-arrow:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-arrow.prev {
            left: 20px;
        }

        .carousel-arrow.next {
            right: 20px;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .carousel-slide {
                padding-left: 30px;
                padding-right: 30px;
                text-align: left;
            }
            
            .carousel-slide h1 {
                font-size: clamp(1.8rem, 5vw, 2.8rem);
                letter-spacing: 1px;
            }
            
            .carousel-slide p {
                font-size: 1.1rem;
            }
            
            .spa-cta-button {
                padding: 14px 28px;
                font-size: 1rem;
            }

            .carousel-arrow {
                display: none;
            }
        }

        @media (max-width: 480px) {
            .carousel-slide {
                padding-left: 20px;
                padding-right: 20px;
            }
            
            .carousel-slide h1 {
                font-size: clamp(1.5rem, 4vw, 2.2rem);
            }
        }


.best-services {
  position: relative;
    background: linear-gradient(to bottom, #edf7f3 50%, #fff 50%);
    padding: 60px 20px;
    font-family: 'Roboto', sans-serif;
  }

  .best-services .container {
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
  }

  .best-services .heading {
    font-size: 18px;
    color: #444;
    margin-bottom: 5px;
  }

  .best-services .subheading {
    font-size: 30px;
    color: #009245;
    font-weight: bold;
    margin-bottom: 40px;
  }

  .best-services .services {
    display: flex;
    gap: 20px;
    justify-content: center;
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  }

  .best-services .service {
    flex: 1;
    min-width: 250px;
    text-align: center;
  }

  .best-services .service img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
  }

  .best-services .service-title {
    margin-top: 15px;
    color: #009245;
    font-size: 18px;
    font-weight: bold;
  }

  @import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

  .best-services .service-description {
    font-size: 14px;
    color: #666;
    margin-top: 8px;
    font-family: 'Inter', sans-serif;
  }

  @media (max-width: 900px) {
    .best-services .services {
      flex-direction: column;
      padding: 20px;
    }
  }
 .bottom-left-decor,
.bottom-right-decor {
  position: absolute;
  bottom: 0;
  width: 180px;
  z-index: 1;
  
}

.bottom-left-decor {
  left: 0;
}

.bottom-right-decor {
  right: 0;
}

@media (max-width: 900px) {
  .best-services .services {
    flex-direction: column;
    padding: 20px;
  }

  .bottom-left-decor,
  .bottom-right-decor {
    width: 120px;
  }
}

.psychotherapy-section {
  position: relative;
  background: url('therapy.png') no-repeat center center/cover;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 40px;
  font-family: 'Segoe UI', sans-serif;
  color: #fff;
}

.psychotherapy-overlay {

  padding: 40px;
  max-width: 500px;
  border-radius: 10px;
  text-align: left;
  color: #333;
}

.psychotherapy-content .subtitle {
  font-size: 18px;
  color: #666;
  margin-bottom: 8px;
}

.psychotherapy-content .title {
  font-size: 32px;
  color: #009245;
  font-weight: bold;
  margin-bottom: 16px;
}

.psychotherapy-content .description {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.read-more-btn {
  background-color: #009245;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: background 0.3s;
}

.read-more-btn:hover {
  background-color: #007b36;
}

@media (max-width: 768px) {
  .psychotherapy-section {
    justify-content: center;
    padding: 20px;
    text-align: center;
  }

  .psychotherapy-overlay {
    padding: 30px 20px;
    max-width: 90%;
  }

  .psychotherapy-content .title {
    font-size: 26px;
  }
  
}
.popular-section {
  padding: 60px 20px;
  background: #fff;
}

.popular-header {
  margin-bottom: 30px;
}

.popular-header h2 {
  font-size: 32px;
  margin: 10px 0;
  font-family: 'syne', sans-serif;
}

.popular-header p {
  color: #444;
  font-size: 15px;
  max-width: 420px;
  line-height: 1.6;
  font-family: 'Inter', sans-serif;
}

.popular-wrapper {
  display: flex;
  flex-direction: column; /* Stack vertically on mobile */
  gap: 30px;
}

.popular-left {
  width: 100%;
}

.slider-controls {
  margin-top: 20px;
}

.slider-controls button {
  background: #d1f5e2;
  border: none;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  margin-right: 10px;
  font-size: 20px;
  cursor: pointer;
}

.popular-cards {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 10px;
}

.popular-cards::-webkit-scrollbar {
  display: none;
}

.card {
  min-width: 250px;
  max-width: 280px; /* Prevents cards from getting too wide */
  background: #f0fdf4;
  border-radius: 10px;
  overflow: hidden;
  scroll-snap-align: start;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-3px);
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card-content {
  padding: 15px;
}

.card-content h4 {
  margin: 0;
  font-size: 18px;
  font-family: 'syne', sans-serif;
  font-weight: 600;
  font-style: 'semi-bold';
}

.card-content p {
  font-size: 14px;
  margin: 10px 0;
  color: #555;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-style: 'light';
}

.card-content a {
  font-size: 14px;
  color: green;
  text-decoration: none;
  font-weight: bold;
}

.card-content a::after {
  content: ' →';
}

@media (min-width: 769px) {
  .popular-wrapper {
    flex-direction: row; /* Side-by-side on desktop */
    align-items: flex-start;
  }

  .popular-left {
    flex: 1 1 300px;
  }

  .popular-cards {
    flex: 3 1 0%;
    overflow-x: auto;
  }

   .card {
    min-width: 250px; /* Adjust this value */
    max-width: 300px;
    flex-shrink: 0; /* Prevent cards from shrinking */
    flex-grow: 0; /* Prevent cards from growing */
  }
}


.massage-hero {
  background: #f8f6f7 url('massage.png') no-repeat bottom center;
  background-size: cover;
  padding: 60px 20px;
}

.massage-hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.massage-image img {
  max-width: 500px;
  width: 100%;
  height: auto;
}

.massage-text {
  max-width: 550px;
}

.massage-subheading {
  font-size: 1.4rem;
  color: #555;
  margin-bottom: 10px;
  font-family: 'inter' sans-serif;
  font-weight: 400;
  font-style: 'regular';
}

.massage-text h2 {
  font-size: 2.5rem;
  color: #1d1d1f;
  font-weight: 500;
  font-family:'syne', sans-serif;
  font-style: 'medium';

}

.massage-description {
  font-size: 1.1rem;
  color: #555;
  font-family: 'inter', sans-serif;
  line-height: 1.6;
  font-weight: 300;
  font-style: 'light';
  
}

.massage-button {
  display: inline-block;
  padding: 15px 30px;
  background-color: #00953b;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.massage-button:hover {
  background-color: #007e31;
}

.massage-footer {
  background-color: #f8f6f7;
  padding: 60px 20px 30px;
  font-family: 'Segoe UI', sans-serif;
  color: #1d1d1f;
  border-top: 1px solid #e0e0e0;
}

  .footer {
            background-color: #ffffff;
            padding: 40px 0 0;
            border-top: 1px solid #e9ecef;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr 1fr;
            gap: 60px;
            margin-bottom: 30px;
        }

          /* Logo Section */
        .logo-section {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .logo-placeholder {
            margin-bottom: 20px;
        }

        .logo-placeholder img {
            max-width: 90px;
            height: auto;
            display: block;
        }

        .company-tagline {
            color: #6c757d;
            font-size: 14px;
            line-height: 1.5;
            margin-bottom: 20px;
        }

        .social-media {
  display: flex;
  gap: 15px;
  align-items: center;
}

.social-media-label {
  color: #333;
  font-weight: 600;
  font-size: 14px;
}

.social-links {
  display: flex;
  gap: 10px;
  /* remove incorrect fixed width/height */
}

.social-link {
  width: 32px; /* smaller button */
  height: 32px;
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  padding: 4px;
}

.social-link:hover {
  background-color: #28a745;
  border-color: #28a745;
}

.social-link img {
  width: 18px;  /* control image size */
  height: 18px;
  object-fit: contain;
  transition: transform 0.3s ease;
  filter: grayscale(100%);
  opacity: 0.8;
}

.social-link:hover img {
  transform: scale(1.1);
  filter: grayscale(0%);
  opacity: 1;
}


        /* Services Section */
        .services-section h3 {
            color: #333;
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 20px;
            position: relative;
        }

        .services-section h3::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 3px;
            background-color: #28a745;
        }

        .services-list {
            list-style: none;
        }

        .services-list li {
            margin-bottom: 12px;
            position: relative;
            padding-left: 15px;
        }

        .services-list li::before {
            content: '▷';
            position: absolute;
            left: 0;
            color: #28a745;
            font-size: 12px;
        }

        .services-list li a {
            color: #6c757d;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .services-list li a:hover {
            color: #28a745;
        }

               /* Instagram Section */
        .instagram-section h3 {
            color: #333;
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 20px;
            position: relative;
        }

        .instagram-section h3::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 3px;
            background-color: #28a745;
        }

        .instagram-collage {
            width: 100%;
            height: 150px;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-bottom: 15px;
            overflow: hidden;
        }

        .instagram-collage img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 8px;
            transition: transform 0.3s ease;
        }

        .instagram-collage:hover img {
            transform: scale(1.05);
        }


        /* Contact Section */
        .contact-section h3 {
            color: #333;
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 20px;
            position: relative;
        }

        .contact-section h3::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 3px;
            background-color: #28a745;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .contact-item {
            font-size: 14px;
            color: #6c757d;
            line-height: 1.4;
        }

        .contact-item strong {
            color: #333;
            font-weight: 600;
        }

        .contact-item a {
            color: #6c757d;
            text-decoration: none;
        }

        .contact-item a:hover {
            color: #28a745;
        }

        /* Footer Bottom */
        .footer-bottom {
            background-color: #f8f9fa;
            padding: 20px 0;
            border-top: 1px solid #dee2e6;
            margin-top: 30px;
        }

        .footer-bottom-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .copyright {
            color: #6c757d;
            font-size: 14px;
        }

        .footer-links {
            display: flex;
            gap: 30px;
        }

        .footer-links a {
            color: #6c757d;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: #28a745;
        }

        @media (max-width: 768px) {
            .footer-content {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: left;
            }

            .footer-bottom-content {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }

            .footer-links {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }

            .social-media {
                justify-content: flex-start;
            }
        }

.history-section {
  padding:5.556vw 8.889vw;
  background-color: #fff;
  font-family: 'Segoe UI', sans-serif;
  color: #1d1d1f;
}

.history-content {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.history-text {
  flex: 1;
  min-width: 300px;
  margin-top: 90px;
}

.history-text h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 1px;
  font-family: 'syne', sans-serif;
}

.history-text p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
  font-family: 'Inter', sans-serif;
}

.history-images {
  flex: 1;
  min-width: 280px;
}

.image-collage-wrapper {
  position: relative;
}

.image-collage {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  display: block;
}

.green-box {
  position: absolute;
  bottom: 15px;
  right: 20px;
  background-color: #00953b;
  color: white;
  padding: 12px 18px;
  font-size: 14px;
  border-radius: 10px;
  font-weight: 500;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  text-align: center;
  line-height: 1.4;
}


.image {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
  display: block;
}

.image-top {
  height: 120px;
}

.image-middle {
  height: 120px;
}

.image-bottom-wrapper {
  position: relative;
}

.image-bottom {
  height: 180px;
}

.green-box {
  position: absolute;
  bottom: 15px;
  right: -10px;
  background-color: #00953b;
  color: white;
  padding: 12px 18px;
  font-size: 14px;
  border-radius: 10px;
  font-weight: 500;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  text-align: center;
  line-height: 1.4;
}
 .mission-section {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      padding: 60px 20px;
      gap: 40px;
      background-color: #0096400F
    }

    .mission-section img {
      max-width: 500px;
      width: 100%;
      border-radius: 20px;
    
    }

    .mission-text {
      max-width: 600px;
      color: #333;
    }

    .mission-text h2 {
      font-size: 32px;
      margin-bottom: 20px;
      font-weight: 700;
      color: #111;
      font-family: 'syne', sans-serif;
      text-align: right;
    
    }

    .mission-text p {
      font-size: 16px;
      line-height: 1.8;
      margin-bottom: 20px;
    }

    .bold {
      font-weight: 600;
    }
/* Spa Hero Section */

 
        .spa-hero-container {
            position: relative;
            height: 80vh;
            background-image:  url('spabgd.png'); 
            /* Add your background image here */
       
            /* background-image: url('your-background-image.jpg'); */
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
               /* Mobile fixes */
            background-attachment: scroll; /* Instead of fixed */
            min-height: 100vh;
            min-height: 100dvh; /* Dynamic viewport height for mobile */
            
            /* Force hardware acceleration on mobile */
            -webkit-transform: translateZ(0);
            transform: translateZ(0);
            
            /* Ensure container has proper dimensions */
            width: 100%;
            position: relative;
}

/* Mobile-specific media query */
@media (max-width: 768px) {
    .spa-hero-container {
        background-attachment: scroll; /* Critical for mobile */
        min-height: 50vh; /* Adjust height as needed */
        background-size: cover;
        background-position: center;
    }
}

/* iOS Safari specific fix */
@supports (-webkit-touch-callout: none) {
    .spa-hero-container {
        background-attachment: scroll;
        min-height: -webkit-fill-available;
    }
        }

        .spa-content-wrapper {
            text-align: center;
            color: white;
            z-index: 2;
            max-width: 1200px;
            padding: 0 20px;
        }

        .spa-logo-placeholder {
          width: 100px;
          height: 100px;
          margin: 0 auto 30px;
          display: flex;
          align-items: center;
          justify-content: center;
          /* Removed background, border-radius, and border */
        }

        /* Replace this with your actual icon */
        .spa-logo-placeholder::before {
          content: "";
          display: block;
          width: 80px;
          height: 80px;
          background: url('flower.png') no-repeat center center;
          background-size: contain;
          margin: 0 auto;
        }
        .spa-main-title {   font-size: 4rem;
            font-weight: 300;
            letter-spacing: 2px;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .spa-subtitle {
            font-size: 1.2rem;
            font-weight: 300;
            margin-bottom: 40px;
            opacity: 0.9;
            letter-spacing: 1px;
        }

        .spa-services-menu {
          position: absolute;
          top: 0;
          right: 270px; /* moved even further left from the right */
          transform: none;
          background: rgba(255, 255, 255, 0.95);
          padding: 40px 30px;
          border-radius: 0 0 0 15px;
          box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
          backdrop-filter: blur(10px);
          min-width: 300px;
          z-index: 10;
        }

        .spa-menu-section {
          margin-bottom: 30px;
        }

        .spa-menu-section:last-child {
          margin-bottom: 0;
        }

        .spa-menu-heading {
          color: #2c3e50;
          font-size: 1rem;
          font-weight: 600;
          text-transform: uppercase;
          letter-spacing: 1px;
          margin-bottom: 15px;
          position: relative;
          cursor: pointer;
          transition: color 0.3s ease;
        }

        .spa-menu-heading:hover {
          color: #8b4513;
        }

        .spa-menu-heading::after {
          content: "▼";
          position: absolute;
          right: 0;
          font-size: 0.8rem;
          transition: transform 0.3s ease;
        }

        .spa-menu-heading.spa-active::after {
          transform: rotate(180deg);
        }

        .spa-menu-items {
          list-style: none;
          padding-left: 0;
          max-height: 0;
          overflow: hidden;
          transition: max-height 0.3s ease, opacity 0.3s ease;
          opacity: 0;
        }

        .spa-menu-items.spa-open {
          max-height: 300px;
          opacity: 1;
          margin-top: 10px;
        }

        .spa-menu-item {
          color: #666;
          font-size: 0.9rem;
          margin-bottom: 8px;
          padding: 5px 0;
          border-bottom: 1px solid rgba(0, 0, 0, 0.05);
          transition: color 0.3s ease, padding-left 0.3s ease;
          cursor: pointer;
        }

        .spa-menu-item:hover {
          color: #8b4513;
          padding-left: 10px;
        }

        .spa-menu-item:last-child {
          border-bottom: none;
          margin-bottom: 0;
        }

        /* Responsive Design */
        

        @media (max-width: 1024px) {
          .spa-services-menu {
            position: static;
            transform: none;
            margin-top: 0;
            max-width: 400px;
            margin-left: auto;
            margin-right: auto;
            border-radius: 0 0 15px 15px;
            right: 0; /* reset for static */
          }
        }

        @media (max-width: 768px) {
          .spa-main-title {
            font-size: 2.5rem;
          }
          
          .spa-subtitle {
            font-size: 1rem;
          }
          
          .spa-services-menu {
            min-width: auto;
            width: 90%;
            padding: 30px 20px;
            position: static;
            border-radius: 0 0 15px 15px;
            right: 0; /* reset for static */
          }
        }

        @media (max-width: 480px) {
          .spa-hero-container {
            height: 100vh;
            padding: 20px 0;
          }
          
          .spa-main-title {
            font-size: 2rem;
          }
          
          .spa-services-menu {
            width: 95%;
            padding: 20px 15px;
            position: static;
            border-radius: 0 0 15px 15px;
            right: 0; /* reset for static */
          }
        }

  .orchid-container {
            max-width: 1200px;
            margin: 0 auto;
            background: white;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            padding: 60px 40px;
        }

        .bamboo-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 20px;
        }

        .lotus-card {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
            transition: all 0.3s ease;
            cursor: pointer;
            height: 250px;
        }

        .lotus-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.2);
        }

        .jasmine-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .lotus-card:hover .jasmine-image {
            transform: scale(1.05);
        }

        .sage-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.7) 100%);
            color: white;
            padding: 20px;
            text-align: center;
        }

        .mint-label {
            background: rgba(76, 175, 80, 0.9);
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            display: inline-block;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
        }

        .eucalyptus-title {
            text-align: center;
            color: #515253;
            font-size: 2.5rem;
            margin-bottom: 10px;
            font-weight: 200;
            font-family: 'Syne', sans-serif;
        }

        .lavender-subtitle {
            text-align: center;
            color: #7f8c8d;
            font-size: 1.1rem;
            margin-bottom: 40px;
            font-family: 'inter', sans-serif;
        }

        @media (max-width: 768px) {
            .bamboo-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .orchid-container {
                padding: 40px 20px;
            }
            
            .eucalyptus-title {
                font-size: 2rem;
            }
        }

        /* Hover effects for individual cards */
        .lotus-card:nth-child(1):hover .mint-label {
            background: rgba(156, 39, 176, 0.9);
        }

        .lotus-card:nth-child(2):hover .mint-label {
            background: rgba(255, 152, 0, 0.9);
        }

        .lotus-card:nth-child(3):hover .mint-label {
            background: rgba(233, 30, 99, 0.9);
        }

        .lotus-card:nth-child(4):hover .mint-label {
            background: rgba(244, 67, 54, 0.9);
        }

        .lotus-card:nth-child(5):hover .mint-label {
            background: rgba(63, 81, 181, 0.9);
        }

        .lotus-card:nth-child(6):hover .mint-label {
            background: rgba(0, 150, 136, 0.9);
        }
.membership-section {
  background: url('100.png') center/cover no-repeat;
  padding: 60px 20px;
  text-align: center;
  color: white;
  margin-top: 30px;
}

.membership-content {
  max-width: 800px;
  margin: 0 auto;
}

.membership-content h2 {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 20px;
}

.membership-button {
  display: inline-block;
  background-color: #097c42;
  color: white;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.membership-button:hover {
  background-color: #066d38;
}


 .wellness-classes-section {
            position: relative;
            height: 70vh;
            /* Replace 'your-background-image.jpg' with your actual image path */
            background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                        url('background-image.png');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            overflow: hidden;
        }

        .hero-content {
            text-align: center;
            z-index: 2;
            max-width: 800px;
            padding: 0 20px;

        }
        .hero-content h1{

          font-family: 'Syne';
          font-weight: 700; 
          font-style: bold; 
          font-size: 3rem;
        }

        .hero-content p{
          font-family: 'inter';
          font-weight: 400;
          font-style: 'regular';

        }

        .icon-container {
            width: 80px;
            height: 80px;
            margin: 0 auto 30px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .icon-container img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

       

        .subtitle {
            font-size: 1.2rem;
            font-weight: 300;
            letter-spacing: 1px;
            line-height: 1.6;
        }

        .offer-dropdown {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 10;
}

.offer-toggle {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    border: none;
    padding: 15px 25px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 180px;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.offer-toggle:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.offer-toggle::after {
    content: '▽';
    font-size: 12px;
    transition: transform 0.3s ease;
}

.offer-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    min-width: 180px;
    border-radius: 5px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 5px;
}

.offer-dropdown:hover .offer-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.offer-dropdown:hover .offer-toggle::after {
    transform: rotate(180deg);
}

.offer-item {
    padding: 12px 20px;
    color: #666;
    text-decoration: none;
    display: block;
    font-size: 14px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.offer-item:hover {
    background: #f8f9fa;
    color: #333;
    border-left-color: #007bff;
}

.offer-item:first-child {
    border-radius: 5px 5px 0 0;
}

.offer-item:last-child {
    border-radius: 0 0 5px 5px;
}

        
         .yoga-section {
  background: linear-gradient(to bottom right, #f0fcf8, #e6f8f0);
  padding: 4rem 1rem;
  display: flex;
  justify-content: center;
}

.yoga-container {
  max-width: 900px;
  text-align: center;
}

.yoga-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-family: 'Syne';
  font-weight: 700; 
  font-style: bold; 
}

.yoga-description {
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 1.5rem auto;
  font-family: 'inter';
  font-weight: 400;
  font-style: 'regular';
}

.yoga-button {
  background-color: #069647;
  color: white;
  border: none;
  padding: 0.7rem 1.5rem;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  margin-bottom: 2rem;
  transition: background-color 0.3s ease;
}

.yoga-button:hover {
  background-color: #057c3b;
}

.yoga-image-wrapper {
  display: flex;
  justify-content: center;
}

.yoga-image {
  width: 100%;
  max-width: 700px;
  border-radius: 6px;
  object-fit: cover;
}

/* Container */
/* Section container must be relative */
.section-container {
    position: relative;
    padding: 40px;
}

/* Position dropdown to top right */
.custom-dropdown {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 100;
}

/* Keep rest of styles the same */
.custom-toggle {
    background-color: #0066cc;
    color: #fff;
    padding: 12px 20px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.custom-menu {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 220px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 5px;
    margin-top: 5px;
    z-index: 99;
}

.custom-link {
    display: block;
    padding: 12px 16px;
    color: #333;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.custom-link:hover {
    background-color: #f0f0f0;
}

.custom-dropdown:hover .custom-menu {
    display: block;
}

/* CSS to make the spa services dropdown look normal */

.dropdown-header-content {
    display: flex;
    align-items: center;
    flex: 1;
    text-decoration: none;
    color: inherit; /* Inherit color from parent */
}

.dropdown-header-content:hover {
    text-decoration: none;
    color: inherit; /* Keep the same color on hover */
}

.dropdown-header-content:visited {
    color: inherit; /* Keep the same color for visited links */
}

.dropdown-header-content:focus {
    outline: none; /* Remove focus outline if desired */
}

/* Ensure the dropdown header maintains its original styling */
.nav-dropdown-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Make sure the arrow stays clickable */
.dropdown-arrow {
    cursor: pointer;
    user-select: none;
}

