    :root {
      --dark-bg: #121212;
      --dark-accent: #1e1e1e;
      --primary: #E51D30;
      --text: #ffffff;
      --text-secondary: #b3b3b3;
    }
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Open Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    
    body {
      background-color: var(--dark-bg);
      color: var(--text);
      overflow-x: hidden;
    }
    
    body.no-scroll {
      overflow: hidden;
    }
    
    /* Animation Classes */
    section {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }
    
    section.animate {
      opacity: 1;
      transform: translateY(0);
    }
    
    /* Header Styles */
    header {
      background-color: rgba(18, 18, 18, 0.95);
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 5%;
      position: fixed;
      width: 100%;
      top: 0;
      z-index: 1000;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      transition: all 0.3s ease;
    }
    
    header.scrolled {
      padding: 0.7rem 5%;
      background-color: rgba(18, 18, 18, 0.98);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }
    
    .logo {
      display: flex;
      align-items: center;
    }
    
.logo img {
  height: 120px; /* Changed from 50px to 120px */
  transition: height 0.3s ease;
}
    
header.scrolled .logo img {
  height: 80px; /* Changed from 40px to 80px to maintain proportion */
}
    
.logo h1 {
  margin-left: 10px;
  font-size: 32px; /* Increased from 24px to 32px to match larger logo */
  font-weight: 700;
  color: var(--text);
  transition: font-size 0.3s ease; /* Added for smooth text scaling */
}

header.scrolled .logo h1 {
  font-size: 28px; /* Added to scale down text when scrolled */
}
    
    /* Desktop Navigation */
    .desktop-nav {
      display: flex;
    }
    
    .desktop-nav ul {
      display: flex;
      list-style: none;
    }
    
    .desktop-nav > ul {
      flex-direction: row;
    }
    
    .desktop-nav ul li {
      margin-left: 2rem;
      position: relative;
    }
    
    .desktop-nav ul li a {
      color: var(--text);
      text-decoration: none;
      font-weight: 600;
      font-size: 16px;
      position: relative;
      transition: color 0.3s;
      display: flex;
      align-items: center;
    }
    
    .desktop-nav ul li a i:first-child {
      margin-right: 8px;
    }
    
    .desktop-nav ul li a:hover {
      color: var(--primary);
    }
    
    .desktop-nav ul li a:after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      bottom: -5px;
      left: 0;
      background-color: var(--primary);
      transition: width 0.3s;
    }
    
    .desktop-nav ul li a:hover:after {
      width: 100%;
    }
    
    /* Dropdown Menu */
    .desktop-nav ul li.has-dropdown > a {
      padding-right: 0;
    }
    
    .desktop-nav ul li.has-dropdown > a:after {
      display: none;
    }
    
    .desktop-nav ul li.has-dropdown .dropdown-icon {
      margin-left: 5px;
      font-size: 0.7rem;
    }
    
    
    .desktop-nav .dropdown {
      position: absolute;
      top: 100%;
      left: 0;
      background-color: var(--dark-bg);
      width: 200px;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
      border-radius: 5px;
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
      z-index: 1000;
      padding: 10px 0;
      margin-top: 10px;
      display: flex;
      flex-direction: column;
    }
    
    .desktop-nav ul li.has-dropdown:hover .dropdown {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }
    
    .desktop-nav .dropdown li {
      margin: 0;
      padding: 0;
      width: 100%;
    }
    
    .desktop-nav .dropdown li a {
      padding: 10px 15px;
      display: block;
      font-weight: 500;
      width: 100%;
    }
    
    .desktop-nav .dropdown li a:after {
      display: none;
    }
    
    .desktop-nav .dropdown li a:hover {
      background-color: rgba(255, 77, 77, 0.1);
    }
    
    /* Nested Dropdown */
    .desktop-nav .dropdown li.has-dropdown {
      position: relative;
    }
    
    .desktop-nav .dropdown li.has-dropdown > a {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    
    .desktop-nav .dropdown li.has-dropdown .dropdown-icon {
      margin-left: auto;
    }
    
    .desktop-nav .nested-dropdown {
      position: absolute;
      top: 0;
      left: 100%;
      width: 200px;
      background-color: var(--dark-bg);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
      border-radius: 5px;
      opacity: 0;
      visibility: hidden;
      transform: translateX(10px);
      transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
      z-index: 1001;
      padding: 10px 0;
      display: flex;
      flex-direction: column;
    }
    
    .desktop-nav .dropdown li.has-dropdown:hover .nested-dropdown {
      opacity: 1;
      visibility: visible;
      transform: translateX(0);
    }
    
    /* Mobile Menu Button */
    .menu-btn {
      display: none;
      flex-direction: column;
      justify-content: space-between;
      width: 30px;
      height: 20px;
      cursor: pointer;
      z-index: 1200;
    }
    
    .menu-btn span {
      width: 100%;
      height: 2px;
      background-color: var(--text);
      transition: all 0.3s ease;
    }
    
    .menu-btn.active span:nth-child(1) {
      transform: translateY(9px) rotate(45deg);
    }
    
    .menu-btn.active span:nth-child(2) {
      opacity: 0;
    }
    
    .menu-btn.active span:nth-child(3) {
      transform: translateY(-9px) rotate(-45deg);
    }
    
    /* Mobile Navigation Overlay */
    .mobile-nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background-color: rgba(18, 18, 18, 0.98);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      z-index: 1100;
      transform: translateX(100%);
      transition: transform 0.5s ease;
      overflow-y: auto;
      padding: 50px 0;
    }
    
    .mobile-nav.active {
      transform: translateX(0);
    }
    
    .mobile-nav .close-btn {
      position: absolute;
      top: 20px;
      right: 20px;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text);
      font-size: 1.5rem;
      cursor: pointer;
      z-index: 1200;
      transition: color 0.3s ease;
    }
    
    .mobile-nav .close-btn:hover {
      color: var(--primary);
    }
    
    .mobile-nav ul {
      list-style: none;
      text-align: center;
      width: 100%;
      padding: 0 20px;
    }
    
    .mobile-nav ul li {
      margin: 1.5rem 0;
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    
    .mobile-nav ul li > div {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
    }
    
    .mobile-nav ul li a {
      color: var(--text);
      text-decoration: none;
      font-size: 1.5rem;
      font-weight: 700;
      transition: color 0.3s;
    }
    
    .mobile-nav ul li a i {
      margin-right: 10px;
      font-size: 1.2rem;
    }
    
    .mobile-nav ul li a:hover {
      color: var(--primary);
    }
    
    /* Mobile Dropdown */
    .mobile-nav .dropdown-toggle {
      background: none;
      border: none;
      color: var(--text);
      font-size: 1.2rem;
      cursor: pointer;
      padding: 5px;
      margin-left: 10px;
      transition: color 0.3s ease;
    }
    
    .mobile-nav .dropdown-toggle:focus {
      outline: none;
    }
    
    .mobile-nav .dropdown-toggle:hover {
      color: var(--primary);
    }
    
    .mobile-nav .dropdown {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.5s ease;
      margin-top: 0.5rem;
      background-color: rgba(255, 255, 255, 0.05);
      border-radius: 5px;
      width: 80%;
    }
    
    .mobile-nav .dropdown.active {
      max-height: 500px;
      padding: 10px 0;
    }
    
    .mobile-nav .dropdown li {
      margin: 0.8rem 0;
    }
    
    .mobile-nav .dropdown li a {
      font-size: 1.2rem;
      padding: 0.5rem 1rem;
      font-weight: 500;
    }
    
    /* Nested Mobile Dropdown */
    .mobile-nav .nested-dropdown {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.5s ease;
      margin-top: 0.5rem;
      background-color: rgba(255, 255, 255, 0.05);
      border-radius: 5px;
      width: 90%;
    }
    
    .mobile-nav .nested-dropdown.active {
      max-height: 500px;
      padding: 10px 0;
    }
    
    .mobile-nav .nested-dropdown li {
      margin: 0.5rem 0;
    }
    
    .mobile-nav .nested-dropdown li a {
      font-size: 1rem;
      padding: 0.5rem 1rem;
      opacity: 0.9;
    }
    
    .mobile-nav .social-links {
      margin-top: 2rem;
    }
    
    .mobile-nav .social-links a {
      margin: 0 10px;
      font-size: 1.5rem;
      color: var(--text);
      transition: color 0.3s;
    }
    
    .mobile-nav .social-links a:hover {
      color: var(--primary);
    }
    
    /* Video Header */
    .video-header {
    margin-top: 140px; /* Added to accommodate the taller header */
      height: 100vh;
      width: 100%;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .video-header video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    .video-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.4);
      z-index: 1;
    }
    
    .header-content {
      position: relative;
      z-index: 2;
      text-align: center;
      max-width: 800px;
      padding: 0 2rem;
    }
    
    .header-content h2 {
      font-size: 3rem;
      margin-bottom: 1.5rem;
      font-weight: 700;
      text-transform: uppercase;
    }
    
    .header-content p {
      font-size: 1.2rem;
      margin-bottom: 2rem;
      color: var(--text-secondary);
    }
    
    .cta-btn {
      background-color: var(--primary);
      color: var(--text);
      border: none;
      padding: 0.8rem 2rem;
      font-size: 1rem;
      font-weight: 600;
      border-radius: 30px;
      cursor: pointer;
      transition: transform 0.3s, background-color 0.3s;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    
    .cta-btn:hover {
      transform: translateY(-3px);
      background-color: #ff3333;
    }
    
    /* About Section */
    .about-section {
      display: flex;
      padding: 6rem 5%;
      background-color: var(--dark-accent);
      align-items: center;
    }
    
    .about-text {
      flex: 1;
      padding-left: 3rem;
    }
    
    .about-text h2 {
      font-size: 2.5rem;
      margin-bottom: 1.5rem;
      position: relative;
      padding-bottom: 15px;
    }
    
    .about-text h2:after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      width: 60px;
      height: 4px;
      background-color: var(--primary);
    }
    
    .about-text p {
      font-size: 1.1rem;
      line-height: 1.8;
      color: var(--text-secondary);
      margin-bottom: 2rem;
    }
    
    .about-video {
      flex: 1;
      position: relative;
      overflow: hidden;
      border-radius: 10px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }
    
    .about-video img {
      width: 100%;
      display: block;
      transition: transform 0.5s;
    }
    
    .about-video:hover img {
      transform: scale(1.05);
    }
    
    .play-btn {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 80px;
      height: 80px;
      background-color: var(--primary);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 10;
      transition: transform 0.3s, background-color 0.3s;
    }
    
    .play-btn:hover {
      transform: translate(-50%, -50%) scale(1.1);
    }
    
    .play-btn:before {
      content: '';
      width: 0;
      height: 0;
      border-top: 15px solid transparent;
      border-bottom: 15px solid transparent;
      border-left: 25px solid white;
      margin-left: 5px;
    }
    
    /* Amenities Section - SIMPLIFIED */
    .amenities-section {
      padding: 6rem 0;
      background-color: var(--dark-bg);
      text-align: center;
    }
    
    .section-heading {
      font-size: 2.5rem;
      margin-bottom: 3rem;
      position: relative;
      display: inline-block;
      padding-bottom: 15px;
    }
    
    .section-heading:after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      width: 60px;
      height: 4px;
      background-color: var(--primary);
      transform: translateX(-50%);
    }
    
    .coming-soon {
      font-size: 1.8rem;
      color: var(--text-secondary);
      margin: 2rem 0;
      font-weight: 300;
      letter-spacing: 1px;
    }
    
    /* Testimonials Section */
    .testimonials-section {
      padding: 6rem 5%;
      background-color: var(--dark-accent);
      text-align: center;
    }
    
    .testimonials-container {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      margin-top: 3rem;
    }
    
    .testimonial {
      background-color: rgba(255, 255, 255, 0.05);
      padding: 2rem;
      border-radius: 10px;
      width: calc(33.33% - 2rem);
      margin-bottom: 2rem;
      text-align: left;
      position: relative;
    }
    
    .testimonial:before {
      content: '"';
      font-size: 5rem;
      color: var(--primary);
      opacity: 0.2;
      position: absolute;
      top: 0;
      left: 15px;
      line-height: 1;
    }
    
    .testimonial p {
      font-style: italic;
      margin-bottom: 1.5rem;
      color: var(--text-secondary);
      line-height: 1.7;
      font-size: 1.1rem;
    }
    
    .client-info {
      display: flex;
      align-items: center;
    }
    
    .client-info img {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      object-fit: cover;
      margin-right: 15px;
    }
    
    .client-name {
      font-weight: 600;
    }
    
    .client-role {
      font-size: 0.9rem;
      color: var(--text-secondary);
    }
    
    /* Footer Section */
    footer {
      background-color: var(--dark-bg);
      padding-top: 4rem;
    }
    
    .map-container {
      width: 100%;
      height: 400px;
      margin-bottom: 3rem;
    }
    
    .map-container iframe {
      width: 100%;
      height: 100%;
      border: none;
    }
    
    .footer-content {
      display: flex;
      justify-content: space-between;
      padding: 0 5% 3rem;
      flex-wrap: wrap;
    }
    
    .footer-col {
      width: 23%;
    }
    
    .footer-col h3 {
      font-size: 1.3rem;
      margin-bottom: 1.5rem;
      position: relative;
      padding-bottom: 10px;
    }
    
    .footer-col h3:after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      width: 40px;
      height: 3px;
      background-color: var(--primary);
    }
    
    .footer-col p, .footer-col li {
      color: var(--text-secondary);
      margin-bottom: 0.8rem;
      line-height: 1.6;
    }
    
    .footer-col ul {
      list-style: none;
    }
    
    .footer-col a {
      color: var(--text-secondary);
      text-decoration: none;
      transition: color 0.3s;
    }
    
    .footer-col a:hover {
      color: var(--primary);
    }
    
    .social-links {
      display: flex;
      margin-top: 1.5rem;
    }
    
    .social-icon {
      width: 40px;
      height: 40px;
      background-color: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 10px;
      transition: background-color 0.3s;
    }
    
    .social-icon:hover {
      background-color: var(--primary);
    }
    
    .copyright {
      text-align: center;
      padding: 1.5rem 0;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      color: var(--text-secondary);
      font-size: 0.9rem;
    }

    .copyright a {
    color:#F2F2F2;
    text-decoration: none;
    }

    .copyright a:hover {
    color:#F6F6F6;
    }
    
    /* Responsive */
    @media (max-width: 1024px) {
      .about-section {
        flex-direction: column;
      }
      
      .about-text, .about-video {
        width: 100%;
      }
      
      .about-text {
        margin-top: 3rem;
        padding-left: 0;
      }
      
      .testimonial {
        width: calc(50% - 2rem);
      }
      
      .footer-col {
        width: 48%;
        margin-bottom: 2rem;
      }
    }
    
    @media (max-width: 768px) {
      header {
        padding: 1rem 3%;
      }
      
  .logo img {
    height: 100px; /* Adjusted for mobile from 40px */
  }
      
   .logo h1 {
    font-size: 28px; /* Adjusted from 20px */
  }

  header.scrolled .logo img {
    height: 70px; /* Added for scrolled state on mobile */
  }

  .video-header {
    margin-top: 120px; /* Adjusted for mobile */
  }
   
      .desktop-nav {
        display: none;
      }
      
      .menu-btn {
        display: flex;
      }
      
      .header-content h2 {
        font-size: 2.5rem;
      }
      
      .testimonial {
        width: 100%;
      }
      
      .footer-col {
        width: 100%;
      }
    }
    
    @media (max-width: 576px) {
      .header-content h2 {
        font-size: 2rem;
      }
      
      .about-text h2, .section-heading {
        font-size: 2rem;
      }

  .logo img {
    height: 80px; /* Further adjusted for smaller screens */
    border:0px;
  }
  
  header.scrolled .logo img {
    height: 60px; /* Added for scrolled state on small mobile */
  }
  
  .video-header {
    margin-top: 100px; /* Adjusted for smaller screens */
  }
    }

       /* Reset and base styles */
        .gym-slider * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        /* Main container */
        .gym-slider {
            --primary-color: #D43639;
            --dark-bg: #121212;
            --dark-secondary: #1E1E1E;
            --text-primary: #FFFFFF;
            --text-secondary: #CCCCCC;
            
            max-width: 1440px;
            margin: 0 auto;
            background-color: var(--dark-bg);
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
            position: relative;
            overflow: hidden;
            font-family: 'Open Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            padding-bottom: 20px;
        }
        
        /* Slider container */
        .gym-slider-container {
            position: relative;
            overflow: hidden;
        }
        
        /* Slide wrapper */
        .gym-slides {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        /* Individual slide */
        .gym-slide {
            flex: 0 0 100%;
            min-width: 100%;
            padding: 20px;
            transition: all 0.3s ease;
        }
        
        /* Three item view for desktop */
        @media (min-width: 769px) {
            .gym-slide {
                flex: 0 0 33.333%;
                min-width: 33.333%;
            }
            
            /* Center active slide */
            .gym-slide.active {
                opacity: 1;
                transform: scale(1.05);
                z-index: 2;
            }
            
            .gym-slide:not(.active) {
                opacity: 0.7;
                transform: scale(0.95);
            }
        }
        
        /* Slide card */
        .gym-slide-card {
            background-color: var(--dark-secondary);
            border-radius: 8px;
            overflow: hidden;
            height: 100%;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
            transition: box-shadow 0.3s ease;
        }
        
        .gym-slide.active .gym-slide-card {
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        
        /* Slide image */
        .gym-slide-img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            display: block;
        }
        
        /* Slide content */
        .gym-slide-content {
            padding: 20px;
        }
        
        /* Slide title */
        .gym-slide-title {
            color: var(--text-primary);
            font-size: 22px;
            margin-bottom: 10px;
            font-weight: 600;
        }
        
        /* Slide description */
        .gym-slide-desc {
            color: var(--text-secondary);
            font-size: 16px;
            line-height: 1.5;
        }
        
        /* Navigation arrows */
        .gym-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 48px;
            height: 48px;
            background-color: var(--primary-color);
            border-radius: 50%;
            border: none;
            outline: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
        }
        
        .gym-arrow:hover {
            opacity: 0.9;
        }
        
        .gym-arrow-prev {
            left: 20px;
        }
        
        .gym-arrow-next {
            right: 20px;
        }
        
        .gym-arrow svg {
            width: 24px;
            height: 24px;
            fill: white;
        }
        
        /* Dots navigation */
        .gym-dots {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin: 15px 0;
        }
        
        .gym-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: #666;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        
        .gym-dot.active {
            background-color: var(--primary-color);
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .gym-slide {
                padding: 15px;
            }
            
            .gym-slide-img {
                height: 220px;
            }
            
            .gym-slide-title {
                font-size: 20px;
            }
            
            .gym-slider-container {
                padding-bottom: 80px; /* Space for navigation elements */
            }
            
            .gym-arrow {
                top: auto;
                bottom: 30px;
                width: 40px;
                height: 40px;
            }
            
            .gym-arrow-prev {
                left: calc(50% - 50px);
            }
            
            .gym-arrow-next {
                right: calc(50% - 50px);
            }
            
            .gym-arrow svg {
                width: 20px;
                height: 20px;
            }
            
            .gym-dots {
                position: absolute;
                bottom: 15px;
                left: 0;
                right: 0;
                margin: 0;
            }
        }
        
        @media (max-width: 480px) {
            .gym-slide-img {
                height: 180px;
            }
            
            .gym-slide-title {
                font-size: 18px;
            }
            
            .gym-slide-desc {
                font-size: 14px;
            }
            
            .gym-arrow {
                width: 36px;
                height: 36px;
            }
        }