/* Modern Header Styles */
.header-gradient {
    background: #2d382f;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  .header-nav {
    transition: all 0.3s ease;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
  }
  .header-nav:hover {
    transform: translateY(-2px);
    color: #e2e8f0;
    background: rgba(255, 255, 255, 0.2);
  }
  .header-logo {
    position: relative;
    overflow: hidden;
  }
  .header-logo::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ffffff, transparent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
  }
  .header-logo:hover::after {
    transform: scaleX(1);
  }
  .header-button {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  .header-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
  }
  .header-button:hover::before {
    left: 100%;
  }
  .header-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }
  .user-avatar {
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
  }
  .user-avatar:hover {
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.5);
  }
  .welcome-text {
    opacity: 0.9;
    transition: all 0.3s ease;
  }
  .welcome-text:hover {
    opacity: 1;
  }
  .dashboard-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
  }
  .dashboard-link:hover {
    background: rgba(255, 255, 255, 0.1);
  }
  .glass-card {
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(16px);
    border-radius: 2rem;
    box-shadow: 0 8px 32px 0 rgba(31,38,135,0.12);
    border: 1px solid rgba(255,255,255,0.18);
    transition: box-shadow 0.3s, transform 0.3s;
  }
  .glass-card:hover {
    box-shadow: 0 16px 48px 0 rgba(31,38,135,0.18);
    transform: translateY(-4px) scale(1.02);
  }
  .green-gradient {
    background: linear-gradient(135deg, #e6f4ea 0%, #b7e4c7 100%);
  }
  .bubble {
    position: absolute;
    border-radius: 9999px;
    opacity: 0.25;
    z-index: 0;
    filter: blur(2px);
    animation: float-bubble 8s ease-in-out infinite alternate;
  }
  @keyframes float-bubble {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(-40px) scale(1.08); }
  }
  .hero-slide {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease;
  }
  .hero-content {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
  }
  .swiper-slide-active .hero-content {
    opacity: 1;
    transform: translateY(0);
  }
  .swiper-slide-active .hero-slide {
    transform: scale(1.02);
  }
  .kenburns-bg {
    animation: kenburns 8s ease-in-out infinite alternate;
    will-change: transform;
  }
  @keyframes kenburns {
    0% { transform: scale(1) translateY(0); }
    100% { transform: scale(1.08) translateY(-2%); }
  }
  .hero-nav-btn {
    background: #fff;
    border-radius: 9999px;
    width: 48px;
    height: 48px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    top: 50%;
    transform: translateY(-50%);
    color: #222;
  }
  .swiper-button-next.hero-nav-btn, .swiper-button-prev.hero-nav-btn {
    background: #fff;
    color: #222;
  }
  .swiper-button-next.hero-nav-btn:after, .swiper-button-prev.hero-nav-btn:after {
    font-size: 1.5rem;
  }
  /* Fitness Icons Animation */
  .fitness-icon {
    position: absolute;
    opacity: 0.08;
    z-index: 0;
    animation: float 8s ease-in-out infinite;
    filter: blur(1px);
  }
  .fitness-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
  }
  @keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
    50% { transform: translateY(-30px) rotate(5deg) scale(1.1); }
  }
  .services-bg {
    position: relative;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    overflow: hidden;
  }
  .services-content {
    position: relative;
    z-index: 1;
  }
  /* Qualifications List Styles */
  .qualifications-list p {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
  }
  .qualifications-list p::before {
    content: '';
    display: inline-block;
    width: 1rem;
    height: 1rem;
    margin-right: 0.5rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%237a9873'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    flex-shrink: 0;
  }