 

   
    body {
      box-sizing: border-box;
    }

 

    a,
    button,
    .schedule-tab,
    .faq-question,
    .mobile-menu,
    .mobile-nav-dropdown-toggle {
      cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect x="4" y="14" width="6" height="4" rx="1" fill="%2300f5ff"/><rect x="22" y="14" width="6" height="4" rx="1" fill="%2300f5ff"/><rect x="10" y="12" width="12" height="8" rx="2" fill="%2300f5ff"/><circle cx="13" cy="16" r="1.5" fill="%23ffffff"/><circle cx="19" cy="16" r="1.5" fill="%23ffffff"/></svg>'), pointer !important;
    }

    html,
    body {
      height: 100%;
      font-family: 'Poppins', sans-serif;
      background: #0a0a0a;
      color: #ffffff;
      overflow-x: hidden;
    }

    /* Animations */
    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(30px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes slideRight {
      from {
        opacity: 0;
        transform: translateX(-50px);
      }

      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    @keyframes slideLeft {
      from {
        opacity: 0;
        transform: translateX(50px);
      }

      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    @keyframes scaleUp {
      from {
        opacity: 0;
        transform: scale(0.9);
      }

      to {
        opacity: 1;
        transform: scale(1);
      }
    }

    @keyframes pulse {

      0%,
      100% {
        transform: scale(1);
      }

      50% {
        transform: scale(1.05);
      }
    }

    @keyframes rotate {
      from {
        transform: rotate(0deg);
      }

      to {
        transform: rotate(360deg);
      }
    }

    @keyframes gradientMove {
      0% {
        background-position: 0% 50%;
      }

      50% {
        background-position: 100% 50%;
      }

      100% {
        background-position: 0% 50%;
      }
    }

    /* Header */
    .header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      background: rgba(10, 10, 10, 0.95);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      padding: 20px 0;
      animation: fadeIn 0.8s ease;
    }

    .header-container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 40px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .logo-image {
      width: 200px;
      
    
    }

    .nav-links {
      display: flex;
      gap: 40px;
      list-style: none;
      align-items: center;
    }

    .nav-links a {
      color: rgba(255, 255, 255, 0.8);
      text-decoration: none;
      font-weight: 500;
      font-size: 15px;
      transition: all 0.3s ease;
      position: relative;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 2px;
      background: linear-gradient(135deg, #00f5ff, #0066ff);
      transition: width 0.3s ease;
    }

    .nav-links a:hover {
      color: #00f5ff;
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .nav-dropdown {
      position: relative;
    }

    .nav-dropdown-toggle {
      cursor: pointer;
    }

    .nav-dropdown-menu {
      position: absolute;
      top: 100%;
      left: 0;
      background: rgba(10, 10, 10, 0.98);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 12px;
      padding: 12px 0;
      min-width: 220px;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-10px);
      transition: all 0.3s ease;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
      z-index: 1000;
      margin-top: 20px;
    }

    .nav-dropdown:hover .nav-dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .nav-dropdown-menu a {
      display: block;
      padding: 12px 24px;
      color: rgba(255, 255, 255, 0.8);
      text-decoration: none;
      font-weight: 500;
      font-size: 14px;
      transition: all 0.3s ease;
      border-left: 3px solid transparent;
    }

    .nav-dropdown-menu a::after {
      display: none;
    }

    .nav-dropdown-menu a:hover {
      background: rgba(0, 245, 255, 0.1);
      color: #00f5ff;
      border-left-color: #00f5ff;
      padding-left: 28px;
    }

    .header-cta {
      background: linear-gradient(135deg, #00f5ff, #0066ff);
      color: #ffffff;
      padding: 12px 30px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: 600;
      font-size: 14px;
      transition: all 0.3s ease;
      box-shadow: 0 4px 20px rgba(0, 102, 255, 0.3);
    }

    .header-cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 30px rgba(0, 102, 255, 0.5);
    }

    .mobile-menu {
      display: none;
      background: none;
      border: none;
      color: #ffffff;
      font-size: 28px;
      cursor: pointer;
      z-index: 1001;
    }

    .mobile-nav {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(10, 10, 10, 0.98);
      backdrop-filter: blur(20px);
      z-index: 999;
      padding: 100px 40px 40px;
      overflow-y: auto;
    }

    .mobile-nav.active {
      display: block;
      animation: fadeIn 0.3s ease;
    }

    .mobile-nav-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 24px;
      margin-bottom: 40px;
      margin-top: 20px;
    }

    .mobile-nav-links a {
      color: #ffffff;
      text-decoration: none;
      font-size: 24px;
      font-weight: 600;
      display: block;
      padding: 12px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      transition: all 0.3s ease;
    }

    .mobile-nav-links a:hover {
      color: #00f5ff;
      padding-left: 12px;
    }

    .mobile-nav-dropdown {
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mobile-nav-dropdown-toggle {
      width: 100%;
      background: none;
      border: none;
      color: #ffffff;
      text-decoration: none;
      font-size: 24px;
      font-weight: 600;
      display: block;
      padding: 12px 0;
      text-align: left;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .mobile-nav-dropdown-toggle:hover {
      color: #00f5ff;
    }

    .mobile-nav-dropdown-menu {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease;
      padding-left: 20px;
    }

    .mobile-nav-dropdown.active .mobile-nav-dropdown-menu {
      max-height: 500px;
    }

    .mobile-nav-dropdown.active .mobile-nav-dropdown-toggle {
      color: #00f5ff;
    }

    .mobile-nav-sublink {
      font-size: 20px;
      padding: 10px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .mobile-nav-cta {
      display: block;
      background: linear-gradient(135deg, #00f5ff, #0066ff);
      color: #ffffff;
      padding: 18px 40px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: 600;
      font-size: 18px;
      text-align: center;
      box-shadow: 0 8px 30px rgba(0, 102, 255, 0.4);
    }

     

    .btn-primary {
      background: linear-gradient(135deg, #00f5ff, #0066ff);
      color: #ffffff;
      padding: 18px 40px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: 600;
      font-size: 16px;
      transition: all 0.3s ease;
      box-shadow: 0 8px 30px rgba(0, 102, 255, 0.4);
      border: none;
      cursor: pointer;
      display: inline-block;
    }

    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 40px rgba(0, 102, 255, 0.6);
    }

    .btn-secondary {
      background: rgba(255, 255, 255, 0.05);
      color: #ffffff;
      padding: 18px 40px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: 600;
      font-size: 16px;
      border: 2px solid rgba(255, 255, 255, 0.1);
      transition: all 0.3s ease;
      cursor: pointer;
      display: inline-block;
    }

    .btn-secondary:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: rgba(0, 245, 255, 0.5);
    }



     
    .floating-stats {
      position: absolute;
      background: rgba(10, 10, 10, 0.9);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 20px;
      padding: 24px 32px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    }

    .stat-1 {
      top: 10%;
      right: -40px;
      animation: fadeIn 1s ease 0.5s backwards;
      z-index: 1;
    }

    .stat-2 {
      bottom: 15%;
      left: -40px;
      animation: fadeIn 1s ease 0.7s backwards;
      z-index: 1;
    }

    .stat-number {
      font-size: 36px;
      font-weight: 800;
      background: black;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      display: block;
      margin-bottom: 4px;
    }

    .stat-label {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.6);
      font-weight: 500;
    }

    /* About Section */
    .about {
      padding: 120px 40px;
      background: #0a0a0a;
      position: relative;
    }

    .about-container {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .about-images {
      position: relative;
    }

    .about-images {
      position: relative;
      height: 600px;
      display: flex;
      align-items: center;
    }

    .about-image-main {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 30px;
      box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    }

    .about-image-float {
      position: absolute;
      width: 280px;
      height: 280px;
      object-fit: cover;
      border-radius: 20px;
      border: 8px solid #0a0a0a;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
      bottom: -40px;
      right: -40px;
    }

    .about-content {
      display: flex;
      flex-direction: column;
      justify-content: center;
      min-height: 600px;
    }

    .about-content h2 {
      font-size: 48px;
      font-weight: 800;
      margin-bottom: 24px;
      line-height: 1.2;
    }

    .about-content p {
      font-size: 18px;
      line-height: 1.8;
      color: white;
      margin-bottom: 32px;
    }

    .about-features {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
      margin-bottom: 40px;
    }

    .about-feature {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .about-feature-icon {
      width: 48px;
      height: 48px;
      background: linear-gradient(135deg, rgba(0, 245, 255, 0.1), rgba(0, 102, 255, 0.1));
      border: 1px solid rgba(0, 245, 255, 0.3);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .about-feature-icon svg {
      width: 24px;
      height: 24px;
    }

    .about-feature-text {
      font-size: 15px;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.9);
    }

    /* Services Section */
    .services {
      padding: 120px 40px;
      background: linear-gradient(180deg, #0a0a0a 0%, #0f0f1a 100%);
    }

    .section-header {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 80px;
    }

    .section-tag {
      display: inline-block;
      background: rgba(0, 245, 255, 0.1);
      border: 1px solid rgba(0, 245, 255, 0.3);
      color: #00f5ff;
      padding: 8px 20px;
      border-radius: 30px;
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 2px;
      margin-bottom: 20px;
      width: 203px;
    }

    .section-title {
      font-size: 48px;
      font-weight: 800;
      margin-bottom: 20px;
      line-height: 1.2;
    }

    @media (max-width:900px){

       .about-image-float {
      position: absolute;
      width: 210px;
      height: 210px;
      object-fit: cover;
      border-radius: 20px;
      border: 8px solid #0a0a0a;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
      bottom: -40px;
      right: -40px;
    }
    }

    .section-description {
      font-size: 18px;
      color: rgba(255, 255, 255, 0.6);
      line-height: 1.6;
    }

    .services-grid {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
    }

    .service-card {
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 24px;
      padding: 40px;
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
    }

    .service-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, rgba(0, 245, 255, 0.05), rgba(0, 102, 255, 0.05));
      opacity: 0;
      transition: opacity 0.4s ease;
    }

    .service-card:hover {
      transform: translateY(-10px);
      border-color: rgba(0, 245, 255, 0.3);
      box-shadow: 0 20px 60px rgba(0, 102, 255, 0.2);
    }

    .service-card:hover::before {
      opacity: 1;
    }

    .service-icon {
      width: 64px;
      height: 64px;
      background: linear-gradient(135deg, rgba(0, 245, 255, 0.1), rgba(0, 102, 255, 0.1));
      border: 1px solid rgba(0, 245, 255, 0.3);
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 24px;
      position: relative;
      z-index: 1;
    }

    .service-icon svg {
      width: 32px;
      height: 32px;
    }

    .service-card h3 {
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 12px;
      position: relative;
      z-index: 1;
    }

    .service-card p {
      font-size: 15px;
      line-height: 1.6;
      color: rgba(255, 255, 255, 0.6);
      position: relative;
      z-index: 1;
    }

    /* Trainers Section */
    .trainers {
      padding: 120px 40px;
      background: #0a0a0a;
    }

    .trainers-grid {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 32px;
    }

    .trainer-card {
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 24px;
      overflow: hidden;
      transition: all 0.4s ease;
    }

    .trainer-card:hover {
      transform: translateY(-10px);
      border-color: rgba(0, 245, 255, 0.3);
      box-shadow: 0 20px 60px rgba(0, 102, 255, 0.2);
    }

    .trainer-image-container {
      position: relative;
      width: 100%;
      height: 320px;
      overflow: hidden;
    }

    .trainer-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }

    .trainer-card:hover .trainer-image {
      transform: scale(1.1);
    }

    .trainer-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.9) 100%);
      display: flex;
      align-items: flex-end;
      justify-content: center;
      padding: 24px;
      opacity: 0;
      transition: opacity 0.4s ease;
    }

    .trainer-card:hover .trainer-overlay {
      opacity: 1;
    }

    .trainer-socials {
      display: flex;
      gap: 12px;
    }

    .trainer-social-link {
      width: 40px;
      height: 40px;
      background: rgba(0, 245, 255, 0.2);
      border: 1px solid rgba(0, 245, 255, 0.5);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
    }

    .trainer-social-link:hover {
      background: #00f5ff;
      transform: translateY(-3px);
    }

    .trainer-social-link:hover svg {
      fill: #0a0a0a;
    }

    .trainer-info {
      padding: 24px;
      text-align: center;
    }

    .trainer-info h3 {
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 8px;
    }

    .trainer-role {
      font-size: 14px;
      color: #00f5ff;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    /* Pricing Section */
    .pricing {
      padding: 120px 40px;
      background: linear-gradient(180deg, #0a0a0a 0%, #0f0f1a 100%);
    }

    .pricing-grid {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
    }

    .pricing-card {
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 24px;
      padding: 48px 32px;
      text-align: center;
      transition: all 0.4s ease;
      position: relative;
    }

    .pricing-card:hover {
      transform: translateY(-10px);
      border-color: rgba(0, 245, 255, 0.3);
      box-shadow: 0 20px 60px rgba(0, 102, 255, 0.2);
    }

    .pricing-card.featured {
      background: linear-gradient(135deg, rgba(0, 245, 255, 0.05), rgba(0, 102, 255, 0.05));
      border: 2px solid rgba(0, 245, 255, 0.3);
      transform: scale(1.05);
    }

    .pricing-card.featured:hover {
      transform: scale(1.05) translateY(-10px);
    }

    .pricing-badge {
      display: inline-block;
      background: rgba(255, 255, 255, 0.05);
      padding: 6px 16px;
      border-radius: 20px;
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 24px;
      color: rgba(255, 255, 255, 0.6);
    }

    .pricing-card.featured .pricing-badge {
      background: linear-gradient(135deg, #00f5ff, #0066ff);
      color: #ffffff;
    }

    .pricing-card h3 {
      font-size: 28px;
      font-weight: 800;
      margin-bottom: 24px;
    }

    .pricing-amount {
      margin-bottom: 32px;
    }

    .pricing-currency {
      font-size: 24px;
      font-weight: 600;
      color: #00f5ff;
      vertical-align: top;
    }

    .pricing-price {
      font-size: 56px;
      font-weight: 900;
      color: #ffffff;
    }

    .pricing-period {
      font-size: 16px;
      color: rgba(255, 255, 255, 0.5);
    }

    .pricing-features {
      list-style: none;
      margin-bottom: 32px;
      text-align: left;
    }

    .pricing-features li {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 16px;
      font-size: 15px;
      color: white;
    }

    .pricing-features svg {
      flex-shrink: 0;
    }

    .pricing-btn {
      display: block;
      background: linear-gradient(135deg, #00f5ff, #0066ff);
      color: #ffffff;
      padding: 16px 40px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: 600;
      font-size: 16px;
      transition: all 0.3s ease;
      box-shadow: 0 8px 30px rgba(0, 102, 255, 0.3);
    }

    .pricing-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 40px rgba(0, 102, 255, 0.5);
    }

    .pricing-card.featured .pricing-btn {
      background: #ffffff;
      color: #0066ff;
    }

    /* Testimonials Section */
    .testimonials {
      padding: 120px 40px;
      background: #0a0a0a;
    }

    /* Success Stories Section */
    .success-stories {
      padding: 120px 40px;
      background: linear-gradient(180deg, #0a0a0a 0%, #0f0f1a 100%);
    }

    .success-container {
      max-width: 1400px;
      margin: 0 auto;
    }

    .success-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
    }

    .success-card {
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 24px;
      overflow: hidden;
      transition: all 0.4s ease;
    }

    .success-card:hover {
      transform: translateY(-10px);
      border-color: rgba(0, 245, 255, 0.3);
      box-shadow: 0 20px 60px rgba(0, 102, 255, 0.2);
    }

    .success-image-wrapper {
      position: relative;
      width: 100%;
      height: 320px;
      overflow: hidden;
    }

    .success-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }

    .success-card:hover .success-image {
      transform: scale(1.1);
    }

    .success-badge {
      position: absolute;
      top: 20px;
      right: 20px;
      background: linear-gradient(135deg, #00f5ff, #0066ff);
      color: #ffffff;
      padding: 8px 20px;
      border-radius: 20px;
      font-size: 14px;
      font-weight: 700;
      box-shadow: 0 4px 20px rgba(0, 102, 255, 0.4);
    }

    .success-content {
      padding: 32px;
    }

    .success-content h3 {
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 4px;
    }

    .success-role {
      font-size: 14px;
      color: #00f5ff;
      font-weight: 600;
      margin-bottom: 16px;
    }

    .success-story {
      font-size: 15px;
      line-height: 1.6;
      color: white;
      margin-bottom: 24px;
    }

    .success-stats {
      display: flex;
      gap: 32px;
      padding-top: 24px;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .success-stat-item {
      text-align: center;
    }

    .success-stat-value {
      display: block;
      font-size: 28px;
      font-weight: 800;
      color: #00f5ff;
      margin-bottom: 4px;
    }

    .success-stat-label {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.5);
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    /* Mobile App Section */
    .mobile-app {
      padding: 120px 40px;
      background: #0a0a0a;
    }

    .mobile-app-container {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      min-height: 700px;
    }

    .mobile-app-container>div {
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .mobile-app-description {
      font-size: 18px;
      line-height: 1.8;
      color: white;
      margin-bottom: 40px;
    }

    .app-features-list {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      margin-bottom: 40px;
    }

    .app-feature-item {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 15px;
      color: rgba(255, 255, 255, 0.8);
    }

    .app-feature-icon {
      flex-shrink: 0;
    }

    .app-download-buttons {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }

    .app-store-btn {
      display: flex;
      align-items: center;
      gap: 12px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      padding: 14px 24px;
      border-radius: 12px;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .app-store-btn:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: rgba(0, 245, 255, 0.5);
      transform: translateY(-2px);
    }

    .app-store-btn div {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }

    .app-store-small {
      font-size: 11px;
      color: rgba(255, 255, 255, 0.6);
    }

    .app-store-large {
      font-size: 16px;
      font-weight: 700;
      color: #ffffff;
    }

    .phone-mockup {
      position: relative;
      width: 320px;
      height: 640px;
      margin: 0 auto;
      background: linear-gradient(135deg, #1a1a2e, #16213e);
      border-radius: 40px;
      padding: 12px;
      box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
      border: 8px solid #0a0a0a;
    }

    .phone-screen {
      width: 100%;
      height: 100%;
      background: #0f0f1a;
      border-radius: 32px;
      overflow: hidden;
    }

    .app-screenshot {
      padding: 24px;
      height: 100%;
      overflow-y: auto;
    }

    .app-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 24px;
    }

    .app-logo {
      width: 48px;
      height: 48px;
      background: linear-gradient(135deg, #00f5ff, #0066ff);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 900;
      font-size: 16px;
      color: #ffffff;
    }

    .app-user {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.8);
    }

    .app-stats-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      margin-bottom: 24px;
    }

    .app-stat-card {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 16px;
      padding: 16px;
      text-align: center;
    }

    .app-stat-icon {
      font-size: 24px;
      margin-bottom: 8px;
    }

    .app-stat-value {
      font-size: 20px;
      font-weight: 800;
      color: #00f5ff;
      display: block;
      margin-bottom: 4px;
    }

    .app-stat-label {
      font-size: 11px;
      color: rgba(255, 255, 255, 0.5);
    }

    .app-section-title {
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 16px;
      color: #ffffff;
    }

    .app-class-card {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 12px;
      padding: 16px;
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .app-class-time {
      font-size: 13px;
      font-weight: 700;
      color: #00f5ff;
      min-width: 60px;
    }

    .app-class-info {
      flex: 1;
    }

    .app-class-name {
      font-size: 14px;
      font-weight: 600;
      color: #ffffff;
      margin-bottom: 2px;
    }

    .app-class-trainer {
      font-size: 11px;
      color: rgba(255, 255, 255, 0.5);
    }

    .app-class-btn {
      background: linear-gradient(135deg, #00f5ff, #0066ff);
      color: #ffffff;
      padding: 8px 16px;
      border-radius: 8px;
      font-size: 12px;
      font-weight: 700;
    }

    /* Location & Contact Section */
    .location-contact {
      padding: 120px 40px;
      background: linear-gradient(180deg, #0a0a0a 0%, #0f0f1a 100%);
    }

    .location-container {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      min-height: 700px;
    }

    .location-container>div {
      display: flex;
      flex-direction: column;
      justify-content: center;
      height: 100%;
    }

    .location-map {
      position: relative;
      height: 700px;
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 24px;
      overflow: hidden;
    }

    .map-placeholder {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      height: 100%;
      text-align: center;
      padding: 40px;
    }

    .map-placeholder svg {
      margin-bottom: 24px;
      opacity: 0.5;
    }

    .map-placeholder h3 {
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 12px;
    }

    .map-placeholder p {
      font-size: 16px;
      color: rgba(255, 255, 255, 0.6);
      line-height: 1.6;
    }

    .location-description {
      font-size: 18px;
      line-height: 1.8;
      color: white;
      margin-bottom: 40px;
    }

    .contact-info-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
      margin-bottom: 40px;
    }

    .contact-info-card {
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 16px;
      padding: 24px;
      display: flex;
      gap: 16px;
      transition: all 0.3s ease;
    }

    .contact-info-card:hover {
      background: rgba(255, 255, 255, 0.05);
      border-color: rgba(0, 245, 255, 0.3);
    }

    .contact-icon {
      flex-shrink: 0;
      width: 56px;
      height: 56px;
      background: linear-gradient(135deg, rgba(0, 245, 255, 0.1), rgba(0, 102, 255, 0.1));
      border: 1px solid rgba(0, 245, 255, 0.3);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .contact-info-content h4 {
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 8px;
      color: #ffffff;
    }

    .contact-info-content p {
      font-size: 14px;
      line-height: 1.6;
      color: rgba(255, 255, 255, 0.6);
    }

    .location-cta {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }

    /* Programs Section */
    .programs {
      padding: 120px 40px;
      background: #0a0a0a;
    }

    .programs-grid {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
    }

    .program-card {
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 24px;
      padding: 40px;
      transition: all 0.4s ease;
      position: relative;
      display: flex;
      flex-direction: column;
    }

    .program-card:hover {
      transform: translateY(-10px);
      border-color: rgba(0, 245, 255, 0.3);
      box-shadow: 0 20px 60px rgba(0, 102, 255, 0.2);
    }

    .program-card.featured {
      background: linear-gradient(135deg, rgba(0, 245, 255, 0.05), rgba(0, 102, 255, 0.05));
      border: 2px solid rgba(0, 245, 255, 0.3);
      transform: scale(1.05);
    }

    .program-card.featured:hover {
      transform: scale(1.05) translateY(-10px);
    }

    .program-badge {
      position: absolute;
      top: 20px;
      right: 20px;
      background: linear-gradient(135deg, #00f5ff, #0066ff);
      color: #ffffff;
      padding: 6px 16px;
      border-radius: 20px;
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .program-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 24px;
    }

    .program-icon {
      width: 64px;
      height: 64px;
      background: linear-gradient(135deg, rgba(0, 245, 255, 0.1), rgba(0, 102, 255, 0.1));
      border: 1px solid rgba(0, 245, 255, 0.3);
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .program-icon svg {
      width: 32px;
      height: 32px;
    }

    .program-duration {
      background: rgba(0, 245, 255, 0.1);
      border: 1px solid rgba(0, 245, 255, 0.3);
      color: #00f5ff;
      padding: 8px 16px;
      border-radius: 20px;
      font-size: 13px;
      font-weight: 600;
    }

    .program-card h3 {
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 16px;
    }

    .program-card>p {
      font-size: 15px;
      line-height: 1.6;
      color: rgba(255, 255, 255, 0.6);
      margin-bottom: 24px;
      flex-grow: 1;
    }

    .program-features {
      list-style: none;
      margin-bottom: 32px;
    }

    .program-features li {
      font-size: 14px;
      color: white;
      margin-bottom: 12px;
      padding-left: 8px;
    }

    .program-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 24px;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .program-price {
      font-size: 28px;
      font-weight: 800;
      color: #00f5ff;
    }

    .program-btn {
      background: linear-gradient(135deg, #00f5ff, #0066ff);
      color: #ffffff;
      padding: 12px 28px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: 600;
      font-size: 14px;
      transition: all 0.3s ease;
      box-shadow: 0 4px 20px rgba(0, 102, 255, 0.3);
    }

    .program-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 30px rgba(0, 102, 255, 0.5);
    }

    /* Equipment Section */
    .equipment {
      padding: 120px 40px;
      background: linear-gradient(180deg, #0a0a0a 0%, #0f0f1a 100%);
    }

    .equipment-container {
      max-width: 1400px;
      margin: 0 auto;
    }

    .equipment-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
    }

    .equipment-card {
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 24px;
      padding: 40px;
      text-align: center;
      transition: all 0.4s ease;
    }

    .equipment-card:hover {
      transform: translateY(-10px);
      border-color: rgba(0, 245, 255, 0.3);
      box-shadow: 0 20px 60px rgba(0, 102, 255, 0.2);
    }

    .equipment-image {
      margin-bottom: 24px;
      display: flex;
      justify-content: center;
    }

    .equipment-card h3 {
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 16px;
    }

    .equipment-card p {
      font-size: 15px;
      line-height: 1.6;
      color: rgba(255, 255, 255, 0.6);
    }

    /* Wellness Section */
    .wellness {
      padding: 120px 40px;
      background: #0a0a0a;
    }

    .wellness-container {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .wellness-content .section-tag {
      display: inline-block;
      margin-bottom: 20px;
    }

    .wellness-content .section-title {
      margin-bottom: 24px;
    }

    .wellness-description {
      font-size: 18px;
      line-height: 1.8;
      color: white;
      margin-bottom: 40px;
    }

    .wellness-features {
      display: grid;
      gap: 24px;
    }

    .wellness-feature {
      display: flex;
      gap: 20px;
      align-items: flex-start;
    }

    .wellness-feature-icon {
      width: 56px;
      height: 56px;
      background: linear-gradient(135deg, rgba(0, 245, 255, 0.1), rgba(0, 102, 255, 0.1));
      border: 1px solid rgba(0, 245, 255, 0.3);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .wellness-feature-content h4 {
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 8px;
    }

    .wellness-feature-content p {
      font-size: 15px;
      line-height: 1.6;
      color: rgba(255, 255, 255, 0.6);
    }

    .wellness-content {
      display: flex;
      flex-direction: column;
      justify-content: center;
      min-height: 700px;
    }

    .wellness-visual {
      position: relative;
      height: 700px;
      display: flex;
      align-items: center;
    }

    .wellness-image-wrapper {
      position: relative;
      border-radius: 30px;
      overflow: hidden;
      box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
      height: 100%;
      width: 100%;
    }

    .wellness-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .wellness-stats {
      position: absolute;
      bottom: 40px;
      left: 40px;
      right: 40px;
      display: flex;
      gap: 24px;
    }

    .wellness-stat {
      background: rgba(10, 10, 10, 0.9);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 20px;
      padding: 24px 32px;
      flex: 1;
      text-align: center;
    }

    .wellness-stat-number {
      font-size: 36px;
      font-weight: 800;
      background: linear-gradient(135deg, #00f5ff, #0066ff);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      display: block;
      margin-bottom: 4px;
    }

    .wellness-stat-label {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.6);
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    /* Consistent section padding for all devices */
    @media (min-width: 1025px) {

      .hero,
      .about,
      .services,
      .trainers,
      .pricing,
      .testimonials,
      .success-stories,
      .mobile-app,
      .location-contact,
      .programs,
      .equipment,
      .wellness,
      .gallery,
      .blog,
      .faq,
      .schedule {
        padding: 120px 40px;
      }

      .stats {
        padding: 80px 40px;
      }

      .cta {
        padding: 120px 40px;
      }
    }

    /* Stats Section */
    .stats {
      padding: 80px 40px;
      background: linear-gradient(135deg, #00f5ff, #0066ff);
      position: relative;
      overflow: hidden;
    }

    .stats::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
      background-size: 40px 40px;
      animation: rotate 80s linear infinite;
    }

    .stats-container {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 48px;
      position: relative;
      z-index: 2;
    }

    .stat-item {
      text-align: center;
    }

    .stat-icon {
      width: 80px;
      height: 80px;
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(10px);
      border: 2px solid rgba(255, 255, 255, 0.3);
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 24px;
      transition: all 0.4s ease;
    }

    .stat-item:hover .stat-icon {
      transform: scale(1.1) rotate(5deg);
      background: rgba(255, 255, 255, 0.25);
    }

    .stat-icon svg {
      width: 40px;
      height: 40px;
    }

    .stat-number {
      font-size: 56px;
      font-weight: 900;
      color: #ffffff;
      margin-bottom: 8px;
      display: block;
    }

    .stat-label {
      font-size: 16px;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.9);
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    /* Gallery Section */
    .gallery {
      padding: 120px 40px;
      background: linear-gradient(180deg, #0a0a0a 0%, #0f0f1a 100%);
    }

    .gallery-grid {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-auto-rows: 280px;
      gap: 20px;
    }

    .gallery-item {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      cursor: pointer;
      transition: all 0.4s ease;
    }

    .gallery-item:hover {
      transform: scale(1.02);
      box-shadow: 0 20px 60px rgba(0, 102, 255, 0.3);
    }

    .gallery-large {
      grid-column: span 2;
      grid-row: span 2;
    }

    .gallery-tall {
      grid-row: span 2;
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }

    .gallery-item:hover img {
      transform: scale(1.1);
    }

    .gallery-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.95) 100%);
      padding: 32px 24px 24px;
      transform: translateY(100%);
      transition: transform 0.4s ease;
    }

    .gallery-item:hover .gallery-overlay {
      transform: translateY(0);
    }

    .gallery-overlay h3 {
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 8px;
      color: #ffffff;
    }

    .gallery-overlay p {
      font-size: 14px;
      color: white;
    }

    /* Schedule Section */
    .schedule {
      padding: 120px 40px;
      background: #0a0a0a;
    }

    .schedule-container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .schedule-tabs {
      display: flex;
      gap: 12px;
      margin-bottom: 40px;
      overflow-x: auto;
      padding-bottom: 8px;
    }

    .schedule-tab {
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(255, 255, 255, 0.05);
      color: rgba(255, 255, 255, 0.6);
      padding: 14px 28px;
      border-radius: 30px;
      font-size: 15px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      white-space: nowrap;
    }

    .schedule-tab:hover {
      background: rgba(255, 255, 255, 0.05);
      color: rgba(255, 255, 255, 0.9);
    }

    .schedule-tab.active {
      background: linear-gradient(135deg, #00f5ff, #0066ff);
      border-color: transparent;
      color: #ffffff;
    }

    .schedule-content {
      position: relative;
    }

    .schedule-day {
      display: none;
      animation: fadeIn 0.5s ease;
    }

    .schedule-day.active {
      display: block;
    }

    .schedule-class {
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 16px;
      padding: 20px;
      margin-bottom: 16px;
      display: grid;
      grid-template-columns: 160px 1fr auto;
      gap: 20px;
      align-items: center;
      transition: all 0.3s ease;
    }

    .schedule-class:hover {
      background: rgba(255, 255, 255, 0.05);
      border-color: rgba(0, 245, 255, 0.3);
      transform: translateX(8px);
    }

    .schedule-time {
      font-size: 15px;
      font-weight: 700;
      color: #00f5ff;
      white-space: nowrap;
    }

    .schedule-info h4 {
      font-size: 17px;
      font-weight: 700;
      margin-bottom: 4px;
    }

    .schedule-info p {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.5);
    }

    .schedule-badge {
      background: rgba(0, 245, 255, 0.1);
      border: 1px solid rgba(0, 245, 255, 0.3);
      color: #00f5ff;
      padding: 8px 18px;
      border-radius: 20px;
      font-size: 12px;
      font-weight: 600;
      white-space: nowrap;
    }

    /* Blog Section */
    .blog {
      padding: 120px 40px;
      background: linear-gradient(180deg, #0a0a0a 0%, #0f0f1a 100%);
    }

    .blog-grid {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
    }

    .blog-card {
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 24px;
      overflow: hidden;
      transition: all 0.4s ease;
    }

    .blog-card:hover {
      transform: translateY(-10px);
      border-color: rgba(0, 245, 255, 0.3);
      box-shadow: 0 20px 60px rgba(0, 102, 255, 0.2);
    }

    .blog-image {
      position: relative;
      width: 100%;
      height: 240px;
      overflow: hidden;
    }

    .blog-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }

    .blog-card:hover .blog-image img {
      transform: scale(1.1);
    }

    .blog-category {
      position: absolute;
      top: 16px;
      left: 16px;
      background: linear-gradient(135deg, #00f5ff, #0066ff);
      color: #ffffff;
      padding: 6px 16px;
      border-radius: 20px;
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .blog-content {
      padding: 32px;
    }

    .blog-meta {
      display: flex;
      gap: 16px;
      margin-bottom: 16px;
      font-size: 13px;
      color: rgba(255, 255, 255, 0.5);
    }

    .blog-card h3 {
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 12px;
      line-height: 1.4;
    }

    .blog-card p {
      font-size: 15px;
      line-height: 1.6;
      color: rgba(255, 255, 255, 0.6);
      margin-bottom: 20px;
    }

    .blog-link {
      color: #00f5ff;
      text-decoration: none;
      font-weight: 600;
      font-size: 15px;
      transition: all 0.3s ease;
      display: inline-flex;
      align-items: center;
      gap: 4px;
    }

    .blog-link:hover {
      gap: 8px;
    }

    /* FAQ Section */
    .faq {
      padding: 120px 40px;
      background: #0a0a0a;
    }

    .faq-container {
      max-width: 900px;
      margin: 0 auto;
    }

    .faq-item {
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 16px;
      margin-bottom: 16px;
      overflow: hidden;
      transition: all 0.3s ease;
    }

    .faq-item:hover {
      border-color: rgba(0, 245, 255, 0.3);
    }

    .faq-question {
      width: 100%;
      background: none;
      border: none;
      padding: 24px 32px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      color: #ffffff;
      font-size: 18px;
      font-weight: 600;
      text-align: left;
      transition: all 0.3s ease;
    }

    .faq-question:hover {
      color: #00f5ff;
    }

    .faq-icon {
      flex-shrink: 0;
      transition: transform 0.3s ease;
      stroke: #00f5ff;
    }

    .faq-item.active .faq-icon {
      transform: rotate(180deg);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, padding 0.4s ease;
    }

    .faq-item.active .faq-answer {
      max-height: 500px;
      padding: 0 32px 24px;
    }

    .faq-answer p {
      font-size: 16px;
      line-height: 1.8;
      color: white;
    }

    /* CTA Section */
    .cta {
      padding: 120px 40px;
      background: linear-gradient(135deg, #00f5ff, #0066ff);
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .cta::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
      background-size: 50px 50px;
      animation: rotate 60s linear infinite;
    }

    .cta-content {
      max-width: 800px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    .cta h2 {
      font-size: 56px;
      font-weight: 900;
      margin-bottom: 24px;
      line-height: 1.2;
    }

    .cta p {
      font-size: 20px;
      margin-bottom: 40px;
      opacity: 0.9;
    }

    .btn-white {
      background: #ffffff;
      color: #0066ff;
      padding: 18px 48px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: 700;
      font-size: 18px;
      transition: all 0.3s ease;
      display: inline-block;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    }

    .btn-white:hover {
      transform: translateY(-3px) scale(1.05);
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    }

    /* Back to Top Button */
     
    /* Footer */
    .footer {
      background: #050505;
      padding: 80px 40px 40px;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .footer-content {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 60px;
      margin-bottom: 40px;
    }

    .footer-logo {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 16px;
    }

    .footer-logo-image {
      width: 200px;
      
    }

    .footer-brand p {
      color: rgba(255, 255, 255, 0.5);
      line-height: 1.6;
      margin-bottom: 0;
    }

    .footer-column h4 {
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 20px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .footer-links {
      list-style: none;
    }

    .footer-links li {
      margin-bottom: 12px;
    }

    .footer-links a {
      color: rgba(255, 255, 255, 0.5);
      text-decoration: none;
      font-size: 16px;
      transition: color 0.3s ease;
    }

    .footer-links a:hover {
      color: #00f5ff;
    }

    .footer-bottom {
      text-align: center;
      padding-top: 40px;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      color: rgba(255, 255, 255, 0.4);
      font-size: 16px !important;
    }

    /* Responsive */
    @media (max-width: 1024px) {

      .hero-grid,
      .about-container {
        grid-template-columns: 1fr;
        gap: 60px;
      }

      .hero-visual {
        order: -1;
      }

      .services-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .trainers-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .programs-grid,
      .equipment-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .wellness-container,
      .mobile-app-container,
      .location-container {
        grid-template-columns: 1fr;
      }

      .success-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .stats-container {
        grid-template-columns: repeat(2, 1fr);
      }

      .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .pricing-grid {
        grid-template-columns: 1fr;
      }

      .pricing-card.featured {
        transform: scale(1);
      }

      .footer-content {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 768px) {
      .header-container {
        padding: 0 20px;
      }

      .nav-links {
        display: none;
      }

      .header-cta {
        display: none;
      }

      .mobile-menu {
        display: block;
      }

      .hero {
        padding: 100px 20px 60px;
        min-height: auto;
      }

      .hero-content {
        min-height: auto;
      }

      .hero-visual {
        height: auto;
      }

      .hero-image-wrapper {
        height: 400px;
      }

      .hero h1 {
        font-size: 36px;
        margin-bottom: 20px;
      }

      .hero-description {
        font-size: 16px;
        margin-bottom: 32px;
      }

      .hero-badge {
        font-size: 12px;
        padding: 6px 16px;
        margin-bottom: 24px;
      }

      .hero-buttons {
        flex-direction: column;
        width: 100%;
      }

      .btn-primary,
      .btn-secondary {
        width: 100%;
        text-align: center;
        padding: 16px 32px;
        font-size: 15px;
      }

      .stat-1,
      .stat-2 {
        display: none;
      }

      .about,
      .services,
      .trainers,
      .pricing,
      .cta,
      .testimonials,
      .gallery,
      .programs,
      .equipment,
      .wellness,
      .mobile-app,
      .location-contact,
      .success-stories,
      .blog,
      .faq {
        padding: 60px 20px;
      }

      .stats {
        padding: 50px 20px;
      }

      .section-title {
        font-size: 32px;
        margin-bottom: 16px;
      }

      .section-description {
        font-size: 16px;
      }

      .section-header {
        margin-bottom: 40px;
      }

      .about-content h2,
      .wellness-content .section-title,
      .cta h2 {
        font-size: 32px;
      }

      .about-content p,
      .wellness-description,
      .location-description,
      .mobile-app-description {
        font-size: 16px;
        margin-bottom: 24px;
      }

      .about-features {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 32px;
      }

      .about-image-main,
      .location-map,
      .phone-mockup {
        height: 300px;
      }

      .about-images {
        height: 300px;
      }

      .about-content,
      .wellness-content {
        min-height: auto;
      }

      /* Wellness section mobile optimization */
      .wellness-visual {
        height: 400px;
      }

      .wellness-image-wrapper {
        height: 100%;
        border-radius: 20px;
      }

      .wellness-stats {
        display: none;
      }

      /* Consistent mobile padding */
      .hero {
        padding: 100px 20px 60px;
      }

      .about,
      .services,
      .trainers,
      .pricing,
      .cta,
      .testimonials,
      .gallery,
      .programs,
      .equipment,
      .wellness,
      .mobile-app,
      .location-contact,
      .success-stories,
      .blog,
      .faq,
      .schedule {
        padding: 60px 20px;
      }

      .stats {
        padding: 50px 20px;
      }

      .cta h2 {
        font-size: 32px;
        margin-bottom: 16px;
      }

      .cta p {
        font-size: 16px;
        margin-bottom: 32px;
      }

      .btn-white {
        padding: 16px 40px;
        font-size: 16px;
      }

      .footer-content {
        gap: 40px;
      }

      .service-card,
      .program-card,
      .equipment-card,
      .blog-card {
        padding: 32px 24px;
      }

      .pricing-card {
        padding: 40px 24px;
      }

      .services-grid,
      .trainers-grid,
      .stats-container,
      .gallery-grid,
      .blog-grid,
      .programs-grid,
      .equipment-grid,
      .success-grid {
        grid-template-columns: 1fr;
      }

      /* Gallery mobile - one image per row */
      .gallery-grid {
        grid-auto-rows: 280px;
        gap: 16px;
      }

      .gallery-large,
      .gallery-tall {
        grid-column: span 1;
        grid-row: span 1;
      }

      .program-card.featured {
        transform: scale(1);
      }

      .app-features-list,
      .contact-info-grid {
        grid-template-columns: 1fr;
      }

      .location-map {
        height: 400px;
      }

      .wellness-image {
        height: 400px;
      }

      .wellness-stats {
        position: static;
        margin-top: 20px;
      }

      .schedule-class {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 16px;
      }

      .schedule-time {
        font-size: 14px;
      }

      .schedule-info h4 {
        font-size: 16px;
      }

      .schedule-info p {
        font-size: 12px;
      }

      .schedule-badge {
        justify-self: start;
        padding: 6px 14px;
        font-size: 11px;
      }

      .schedule-tabs {
        gap: 8px;
      }

      .schedule-tab {
        padding: 12px 20px;
        font-size: 14px;
      }
    }

    @media (max-width: 640px) {
      .schedule {
        padding: 80px 16px;
      }

      .schedule-container {
        padding: 0;
      }

      .schedule-tabs {
        gap: 6px;
        padding-bottom: 6px;
      }

      .schedule-tab {
        padding: 10px 16px;
        font-size: 13px;
      }

      .schedule-class {
        padding: 14px;
        margin-bottom: 12px;
        border-radius: 12px;
      }

      .schedule-time {
        font-size: 13px;
      }

      .schedule-info h4 {
        font-size: 15px;
      }

      .schedule-info p {
        font-size: 11px;
      }

      .schedule-badge {
        padding: 5px 12px;
        font-size: 10px;
      }
    }

    @media (max-width: 480px) {
      .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 48px;
        height: 48px;
      }

      .back-to-top svg {
        width: 20px;
        height: 20px;
      }

      .header-container {
        padding: 0 16px;
      }

      .hero {
        padding: 90px 16px 50px;
      }

      .hero h1 {
        font-size: 28px;
      }

      .hero-description {
        font-size: 15px;
      }

      .hero-image-wrapper {
        height: 300px;
      }

      .about,
      .services,
      .trainers,
      .pricing,
      .cta,
      .testimonials,
      .gallery,
      .programs,
      .equipment,
      .wellness,
      .mobile-app,
      .location-contact,
      .success-stories,
      .blog,
      .faq,
      .schedule {
        padding: 60px 16px;
      }

      .stats {
        padding: 50px 16px;
      }

      /* Wellness visual for smallest screens */
      .wellness-visual {
        height: 350px;
      }

      .section-title {
        font-size: 26px;
      }

      .section-description {
        font-size: 14px;
      }

      .about-content h2,
      .wellness-content .section-title,
      .cta h2 {
        font-size: 26px;
      }

      .service-card,
      .program-card,
      .equipment-card,
      .blog-card {
        padding: 24px 20px;
      }

      .pricing-card {
        padding: 32px 20px;
      }

      .stat-icon {
        width: 60px;
        height: 60px;
      }

      .stat-icon svg {
        width: 30px;
        height: 30px;
      }

      .stat-number {
        font-size: 40px;
      }

      .stat-label {
        font-size: 13px;
      }

      .schedule-tabs {
        gap: 4px;
      }

      .schedule-tab {
        padding: 8px 12px;
        font-size: 12px;
      }

      .schedule-class {
        padding: 12px;
        margin-bottom: 10px;
      }

      .schedule-time {
        font-size: 12px;
      }

      .schedule-info h4 {
        font-size: 14px;
      }

      .schedule-info p {
        font-size: 10px;
      }

      .schedule-badge {
        padding: 4px 10px;
        font-size: 9px;
      }

      .gallery-grid {
        grid-auto-rows: 200px;
        gap: 12px;
      }

      .footer-content {
        padding: 0;
      }

      .mobile-nav {
        padding: 80px 20px 20px;
      }

      .mobile-nav-links {
        gap: 16px;
      }

      .mobile-nav-links a {
        font-size: 20px;
        padding: 10px 0;
      }

      .mobile-nav-cta {
        padding: 16px 32px;
        font-size: 16px;
      }
    }

    @media (min-width: 1025px) and (max-width: 1280px) {
      .schedule-class {
        grid-template-columns: 150px 1fr auto;
        gap: 18px;
        padding: 20px;
      }

      .schedule-time {
        font-size: 14px;
      }

      .schedule-info h4 {
        font-size: 16px;
      }
    }

    @media (min-width: 769px) and (max-width: 1024px) {
      .schedule-class {
        grid-template-columns: 140px 1fr auto;
        gap: 16px;
        padding: 18px;
      }

      .schedule-time {
        font-size: 14px;
      }

      .schedule-info h4 {
        font-size: 16px;
      }

      .schedule-badge {
        padding: 7px 16px;
        font-size: 11px;
      }
    }

    @media (min-width: 641px) and (max-width: 768px) {
      .schedule-class {
        grid-template-columns: 130px 1fr;
        gap: 14px;
        padding: 16px;
      }

      .schedule-badge {
        grid-column: 1 / -1;
        justify-self: start;
      }

      .gallery-large,
      .gallery-tall {
        grid-column: span 1;
        grid-row: span 1;
      }

      .about-image-float {
        position: static;
        width: 100%;
        height: 200px;
        margin-top: 20px;
        border: 4px solid #0a0a0a;
        border-radius: 16px;
      }

      .trainer-image-container,
      .blog-image,
      .success-image-wrapper {
        height: 280px;
      }

      .gallery-grid {
        grid-auto-rows: 240px;
        gap: 16px;
      }

      .wellness-stats {
        flex-direction: column;
        gap: 16px;
      }

      .app-features-list {
        gap: 16px;
      }

      .contact-info-grid {
        gap: 16px;
      }

      .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .logo-image,
      .footer-logo-image {
        width: 200px;
        
      }
    }
 

 @media (max-width:900px){
  .dcs{
    justify-content: center;
  }

  .ds{
    font-size: 12px;
  }
 }

 .nkm{
  padding-top: 50px !important;
  padding-bottom: 50px !important;
 }



