
img{
    max-width: 100%;
    object-fit: cover;
    display: block;
}
a{
    color: inherit;
    text-decoration: none;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #1a1a1a;
  color: #fff;
  overflow-x: hidden;
  line-height: 1.4;
}

.container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  background: linear-gradient(90deg, #ff4d4d, #ff8c00);
  z-index: 1000;
  padding: 20px 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 2.5rem;
  color: #fff;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

nav ul li a:hover {
  color: #ff4d4d;
  transform: scale(1.1);
}

.burger {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: #fff;
}

section {
  padding: 80px 0;
}

section p{
    margin-bottom: 10px;
}
.section-top{
    padding: 250px 0 200px;
}
.btn {
  display: inline-block;
  padding: 15px 30px;
  background: #ff4d4d;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.2rem;
  margin-top: 10px;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
  transform: scale(1.1);
  background: #ff8c00;
  box-shadow: 0 0 20px rgba(255, 140, 0, 0.5);
}

footer {
  background: #1a1a1a;
  padding: 40px 0;
  color: #ccc;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}
.footer-grid div{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-grid h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.footer-grid a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-grid a:hover {
  color: #ff4d4d;
}

/* Index Page Styles */
.hero {
  height: 100vh;
  max-height: 1200px;
  background: url('image/gym.webp') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  animation: fadeIn 1.5s ease-in-out;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 5rem;
  text-transform: uppercase;
  background: linear-gradient(45deg, #ff4d4d, #ff8c00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: slideInLeft 1s ease-out;
}

.hero p {
  font-size: 1.5rem;
  margin: 20px auto;
  max-width: 600px;
  animation: slideInRight 1s ease-out;
}

.vibe {
  background: linear-gradient(135deg, #1a1a1a, #2c2c2c);
  text-align: center;
}

 h2 {
  font-size: 3rem;
  margin-bottom: 40px;
  animation: fadeIn 1s ease-in-out;
}

.vibe-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 30px;
}

.vibe-card {
  background: #333;
  padding: 20px;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vibe-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 20px rgba(255, 77, 77, 0.3);
}

.vibe-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  animation: fadeIn 1.2s ease-in-out;
}

.story .container{
  display: flex;
  align-items: center;
  gap: 40px;
}

.story img {
  width: 50%;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
  animation: fadeIn 1.5s ease-in-out;
}

.slider {
  position: relative;
  overflow: hidden;
}

.slider-container {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  position: relative;
}

.slide img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.slider-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.7);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  animation: fadeIn 1s ease-in-out;
}

.slider-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}

.slider-nav button {
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: #fff;
  font-size: 2rem;
  padding: 10px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.slider-nav button:hover {
  background: #ff4d4d;
}

.accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  margin-bottom: 10px;
}

.accordion-header {
  background: #ff4d4d;
  padding: 15px;
  cursor: pointer;
  border-radius: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.accordion-header:hover {
  background: #ff8c00;
}

.accordion-content {
  display: none;
  background: #333;
  padding: 15px;
  border-radius: 5px;
  animation: slideDown 0.5s ease-in-out;
}

.accordion-item.active .accordion-content {
  display: block;
}

.workouts {
  text-align: center;
}

.workout-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 30px;
}

.workout-card {
  background: #333;
  padding: 20px;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.workout-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 20px rgba(255, 77, 77, 0.3);
}
.workout-card ul{
    list-style: none;
}
.workout-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

.contact form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact input, .contact textarea {
  padding: 15px;
  background: #333;
  border: none;
  border-radius: 5px;
  color: #fff;
  transition: transform 0.3s ease;
}

.contact input:focus, .contact textarea:focus {
  transform: scale(1.02);
  outline: none;
}

.contact button {
  align-self: flex-start;
}

/* About Page Styles */
.mission {
  text-align: center;
  position: relative;
  background: url(image/banner.webp) top center / cover no-repeat;
}

.mission p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  animation: slideInUp 1s ease-in-out;
}

.vision .container{
  display: flex;
  align-items: center;
  gap: 40px;
}

.vision img {
  width: 50%;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
  animation: fadeIn 1.5s ease-in-out;
}

.trainers {
  text-align: center;
}


.trainer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 30px;
}

.trainer-card {
  background: #333;
  padding: 20px;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trainer-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 20px rgba(255, 77, 77, 0.3);
}

.trainer-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}
.fundamentals, .recovery {
      text-align: center;
    }

    .card-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
      gap: 30px;
    }

    .card {
      background: #333;
      padding: 20px;
      border-radius: 10px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .card:hover {
      transform: translateY(-10px);
      box-shadow: 0 0 20px rgba(255, 77, 77, 0.3);
    }

    .card i {
      font-size: 2.5rem;
      color: #ff4d4d;
      margin-bottom: 15px;
    }

    .card h3 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.8rem;
      margin-bottom: 10px;
    }

    .card p {
      font-size: 1.1rem;
    }

    .schedule {
      text-align: center;
    }

    .schedule-table {
      width: 100%;
      max-width: 800px;
      margin: 0 auto;
      border-collapse: collapse;
      background: #333;
      border-radius: 10px;
      overflow: hidden;
    }

    .schedule-table th, .schedule-table td {
      padding: 15px;
      font-size: 1.1rem;
      border-bottom: 1px solid #444;
      text-align: left;
    }

    .schedule-table th {
      background: #ff4d4d;
      color: #fff;
    }

    .schedule-table tr:last-child td {
      border-bottom: none;
    }

    .mindset {
      text-align: center;
      background: linear-gradient(135deg, #1a1a1a, #2c2c2c);
    }

    .mindset p {
      font-size: 1.2rem;
      max-width: 800px;
      margin: 0 auto 20px;
    }

    .mindset ul {
      list-style: disc;
      margin-left: 20px;
      max-width: 800px;
      margin: 0 auto;
      text-align: left;
    }

    .mindset ul li {
      font-size: 1.1rem;
      margin-bottom: 10px;
    }

    .tracker {
      text-align: center;
    }

    .tracker-grid {
      display: grid;
      margin-top: 30px;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
    }

    .tracker-item {
      background: #333;
      padding: 20px;
      border-radius: 10px;
      transition: transform 0.3s ease;
    }

    .tracker-item:hover {
      transform: scale(1.05);
    }

    .tracker-item h3 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.8rem;
      margin-bottom: 10px;
    }

    .tracker-item p {
      font-size: 1.1rem;
    }
.approach {
  background: url('image/yoga-hall.jpg') center/cover no-repeat;
  position: relative;
  text-align: center;
  color: #fff;
}

.approach::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.approach-content {
  position: relative;
  z-index: 1;
}

.stats {
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.stat-item {
  padding: 20px;
  background: #ff4d4d;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: scale(1.05);
}

.values {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.value-item + .value-item{
    margin-top: 60px;
}
.value-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.value-item img {
  width: 40%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
}

.testimonials {
  text-align: center;
  background: linear-gradient(135deg, #1a1a1a, #2c2c2c);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: #333;
  padding: 20px;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px);
}

.journey {
  text-align: center;
}

.journey p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.2rem;
}

/* Programs Page Styles */
.intro {
  text-align: center;
  position: relative;
  background: url(image/banner2.webp) center / cover no-repeat;
}
.intro:before, .mission:before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
}
.intro .container, .mission .container{
    position: relative;
    z-index: 5;
}
.intro h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  animation: fadeIn 1s ease-in-out;
}

.intro p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  animation: slideInUp 1s ease-in-out;
}

.programs {
  text-align: center;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 30px;
}

.program-card {
  background: #333;
  padding: 20px;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 20px rgba(255, 77, 77, 0.3);
}

.program-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

.program-card p {
  margin: 15px 0;
}

.benefits .container{
  display: flex;
  align-items: center;
  gap: 40px;
}

.benefits img {
  width: 50%;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
  animation: fadeIn 1.5s ease-in-out;
}

.tabs {
  text-align: center;
}

.tab-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.tab-nav button {
  background: #333;
  border: none;
  padding: 10px 20px;
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.tab-nav button.active {
  background: #ff4d4d;
}

.tab-nav button:hover {
  background: #ff8c00;
}

.tab-content {
  display: none;
  background: #333;
  padding: 20px;
  border-radius: 10px;
  animation: slideInUp 0.5s ease-in-out;
}

.tab-content.active {
  display: block;
}

.equipment {
  text-align: center;
}

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.equipment-item {
  background: #333;
  padding: 20px;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.equipment-item:hover {
  transform: scale(1.05);
}

.equipment-item img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
}

.nutrition {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.nutrition-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nutrition-item img {
  width: 40%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
}

.progress {
  text-align: center;
}

.progress p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.2rem;
}

/* Privacy Policy and Terms & Conditions Styles */
.privacy, .terms {
    padding-top: 130px;
  max-width: 800px;
  margin: 0 auto;
}

.privacy h1, .terms h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.privacy h2, .terms h2 {
  font-size: 1.8rem;
  margin: 30px 0 15px;
}

.privacy p, .terms p {
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.privacy ul, .terms ul {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 15px;
}

.privacy ul li, .terms ul li {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

/* Thanks Page Styles */
.thanks {
  padding: 80px 0;
  text-align: center;
}

.thanks h1 {
  font-size: 4rem;
  background: linear-gradient(45deg, #ff4d4d, #ff8c00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  animation: slideInUp 1s ease-in-out;
}

.thanks p {
  font-size: 1.3rem;
  max-width: 600px;
  margin: 0 auto 30px;
  animation: fadeIn 1.2s ease-in-out;
}
.steps {
      background: linear-gradient(135deg, #1a1a1a, #2c2c2c);
    }

    .steps-container {
      max-width: 800px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 30px;
    }

    .step-item {
      background: #333;
      padding: 30px;
      border-radius: 10px;
      position: relative;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border-left: 5px solid #ff4d4d;
    }

    .step-item:hover {
      transform: translateY(-10px);
      box-shadow: 0 0 20px rgba(255, 77, 77, 0.3);
    }

    .step-item i {
      font-size: 3rem;
      color: #ff4d4d;
      margin-bottom: 15px;
      display: block;
    }

    .step-item h3 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2rem;
      margin-bottom: 10px;
      background: linear-gradient(45deg, #ff4d4d, #ff8c00);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .step-item p {
      font-size: 1.1rem;
    }

    .step-number {
      position: absolute;
      top: 20px;
      right: 20px;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2.5rem;
      color: rgba(255, 77, 77, 0.2);
    }
/* Animations */
@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
  0% { transform: translateX(-50px); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}

@keyframes slideInRight {
  0% { transform: translateX(50px); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}

@keyframes slideInUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes slideDown {
  0% { height: 0; opacity: 0; }
  100% { height: auto; opacity: 1; }
}

/* Responsive Styles */
@media (max-width: 768px) {
  nav ul {
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    position: fixed;
    top: 87px;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #1a1a1a;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
  }

  nav ul.active {
    transform: translateX(0%);
  }

  .burger {
    display: block;
  }

  .close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
  }

  body.no-scroll {
    overflow: hidden;
  }

  .story .container, .vision .container, .benefits  .container{
    flex-direction: column;
  }

  .story img, .vision img, .benefits img {
    width: 100%;
  }

  .value-item, .nutrition-item {
    flex-direction: column;
  }

  .value-item img, .nutrition-item img {
    width: 100%;
  }

  .tab-nav {
    flex-direction: column;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero p {
    font-size: 1.2rem;
  }

  .thanks h1 {
    font-size: 2.5rem;
  }

  .thanks p {
    font-size: 1.1rem;
  }
  .container{
    padding: 0 10px;
  }
  .privacy h1, .terms h1, .logo, h2 {
    font-size: 2rem;
  }
  .intro h1 {
    font-size: 2.5rem;
  }
  .slider-text {
    width: 80%;
  }
  .step-item i {
        font-size: 2.5rem;
      }

      .step-item h3 {
        font-size: 1.8rem;
      }

      .step-number {
        font-size: 2rem;
      }
  .schedule-table th, .schedule-table td {
        font-size: 0.9rem;
        padding: 5px;
      }
}