/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #fff;
  }
  
  /* Navbar Styles */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #333;
    padding: 10px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo h2 {
    color: #fff;
    font-size:  20px; ;
}


.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0 10px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    display: flex;
    align-items: center;
    padding: 10px 15px;
    transition: background-color 0.3s, color 0.3s;
}

.nav-links a:hover {
    background-color: #555;
}

.nav-links a i {
    margin-right: 8px;
}


.nav-links a.active {
    background-color: #777;
    color:#ff6b6b;
}


.menu-icon {
    display: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}


  
  /* Hero Section */
  .hero {
    background: linear-gradient(rgba(0, 0, 0, 0.719), rgba(36, 36, 36, 0.9)), url('https://t3.ftcdn.net/jpg/05/62/71/86/360_F_562718625_BM93noP9JDAR8kiBPfRy0h4WTvUwYXNH.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
  }
  
  .hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  
  .hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .hero-content .btn {
    background-color:#ff6b6b;
    color: #333;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    font-size: 1rem;
    border-radius: 5px;
  }
  
  .hero-content .btn:hover {
    background-color: #ff6b6b;
  }
  
  /* About Section */
  
.section__container {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section__header {
  font-size: 2.5rem;
  font-weight: bold;
  color: #222;
  text-align: center;
  margin-bottom: 1rem;
}

.section__description {
  font-size: 1.1rem;
  color: #555;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 2rem;
}


.about__header {
  margin-bottom: 3rem;
}


.about__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center; 
}

.about__card {
  background: #f9f9f9;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex: 1 1 calc(33.333% - 2rem); 
  max-width: calc(33.333% - 2rem); 
}

.about__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}


.about__icon {
  font-size: 2.5rem; 
  color: #ff6b6b; 
  margin-bottom: 1rem; 
}

.about__card h4 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #222;
  margin-bottom: 1rem;
}

.about__card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}
.trainer__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

/* Trainer Card Styling */
.trainer__card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: 250px;
  text-align: center;
  transition: transform 0.3s ease;
}

.trainer__card:hover {
  transform: translateY(-10px);
}

.trainer__card img {
  width: 100%;
  height: auto;
  display: block;
}

.trainer__card h4 {
  font-size: 1.5rem;
  margin: 1rem 0 0.5rem;
  color: #333;
}

.trainer__card p {
  font-size: 1rem;
  color: #777;
  margin-bottom: 1rem;
}

/* Trainer Social Icons Styling */
.trainer__socials {
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: 1rem;
  background: #f9f9f9;
}

.trainer__socials a {
  color: #555;
  font-size: 1.5rem;
  transition: color 0.3s ease, transform 0.3s ease;
  text-decoration: none;
}

.trainer__socials a:hover {
  color: #0073e6; 
  transform: scale(1.2); 
}


.trainer__socials a[href*="facebook.com"]:hover {
  color: #1877f2; 
}

.trainer__socials a[href*="twitter.com"]:hover {
  color: #1da1f2; 
}

.trainer__socials a[href*="youtube.com"]:hover {
  color: #e45899;
}
  


.main-container {
  text-align: center;
  max-width: 1400px;
  padding: 20px;
  background-color: rgb(243, 243, 243);
 
}

.main-heading {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 40px;
}

.main-heading .icon {
  color: #e74c3c;
  margin-right: 10px;
}

.plans-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.plan {
  text-align: center;
  max-width: 300px;
  padding: 20px;
  transition: transform 0.3s ease;
}

.plan:hover {
  transform: translateY(-10px);
}

.plan .icon {
  font-size: 3rem;
  color: #e74c3c;
  margin-bottom: 15px;
}

.plan-heading {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 10px;
}

.plan-description {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}


.blog-container {
  text-align: center;
  max-width: 1200px;
  padding: 20px;
  margin-left: 80px;

  
}

.blog-heading {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 40px;
}

.blog-sections {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.blog-section {
  text-align: center;
  max-width: 350px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.blog-section:hover {
  transform: translateY(-10px);
}

.blog-image {
  width: 100%;
  height: auto;
  display: block;
}

.blog-title {
  font-size: 1.8rem;
  color: #333;
  margin: 20px 0 10px;
}

.blog-description {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  padding: 0 20px 20px;
}


.logo__banner {
  display: flex;
  justify-content: center; 
  align-items: center; 
  gap: 150px;
  padding: 20px; 
  background-color: #f9f9f9; 
}


.logo__banner img {
  max-width: 100%;
  height: auto; 
  width: 150px; 
  transition: transform 0.3s ease; 
}


.logo__banner img:hover {
  transform: scale(1.1); 
}




h4 {
  text-align: center;
  color: #333;
  font-size: 30px;
  font-style: italic;
}
.gym-gallery {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}
.gym-category {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.gym-category h3 {
  margin-top: 0;
  color: #e74c3c;
  font-size: 24px;
}
.images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}
.images img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s ease;
}
.images img:hover {
  transform: scale(1.05);
}

 
.footer {
  background-color: #1a1a1a;
  color: #fff;
  padding: 60px 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
}

.newsletter-card {
  flex: 1 1 300px;
  background-color: #2a2a2a;
  padding: 20px;
  border-radius: 10px;
}

.card-icon ion-icon {
  font-size: 40px;
  color: #ff6b6b; /* Gym-themed color */
}

.card-title {
  font-size: 24px;
  margin: 15px 0;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.label {
  font-size: 14px;
  color: #ccc;
}

.email-field {
  padding: 10px;
  border: 1px solid #444;
  border-radius: 5px;
  background-color: #333;
  color: #fff;
}

.btn-primary {
  background-color: #ff6b6b; /* Gym-themed color */
  color: #fff;
  padding: 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: #ff5252; /* Darker shade */
}

.footer-list {
  flex: 1 1 200px;
}

.h6 {
  font-size: 18px;
  margin-bottom: 15px;
  position: relative;
}

.has-after::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: #ff6b6b; /* Gym-themed color */
}

.footer-text {
  font-size: 14px;
  color: #ccc;
  line-height: 1.6;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #ff6b6b; /* Gym-themed color */
  border: 1px solid #ff6b6b;
  padding: 8px 15px;
  border-radius: 5px;
  text-decoration: none;
}

.btn-outline:hover {
  background-color: #ff6b6b;
  color: #fff;
}

.footer-link {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
}

.footer-link:hover {
  color: #ff6b6b; /* Gym-themed color */
}

.contact-link {
  color: #ff6b6b; /* Gym-themed color */
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #444;
  padding-top: 20px;
}

.footer-bottom-list {
  display: flex;
  gap: 15px;
  list-style: none;
  padding: 0;
}

.footer-bottom-link {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
}

.footer-bottom-link:hover {
  color: #ff6b6b; /* Gym-themed color */
}

.copyright {
  font-size: 14px;
  color: #ccc;
  margin-top: 10px;
}

.social-list {
  display: flex;
  gap: 15px;
  list-style: none;
  padding: 0;
}

.social-link ion-icon {
  font-size: 24px;
  color: #ccc;
}

.social-link:hover ion-icon {
  color: #ff6b6b; /* Gym-themed color */
}
.review-heading {
  text-align: center;
  margin: 40px 0;
 
}

.review-heading h4 {
  font-size: 18px;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.review-heading h2 {
  font-size: 36px;
  color: #222;
  margin: 0;
}

/* Reviews Container */
.reviews-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 10px;
}

/* Review Box */
.review-box {
  background-color:black;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  width: 30%;
  margin-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Stars */
.stars {
  font-size: 24px;
  color: #ffcc00;
  margin-bottom: 10px;
}

/* Review Text */
.review-text {
  font-size: 16px;
  line-height: 1.6;
  color:white;
  margin-bottom: 15px;
}

/* Reviewer Info */
.reviewer-info {
  display: flex;
  align-items: center;
}

.reviewer-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
}

.reviewer-info h4 {
  font-size: 18px;
  color:white;
  margin: 0;
}

.reviewer-info h5 {
  font-size: 14px;
  color: #777;
  margin: 5px 0 0;
}

@media (max-width: 768px) {
  /* Hide Menu Items and Show Hamburger Icon */
  .nav-links {
      display: none;
      flex-direction: column;
      width: 100%;
      background-color: #333;
      position: absolute;
      top: 60px;
      left: 0;
  }

  .nav-links li {
      margin: 0;
  }

  .nav-links a {
      padding: 15px;
      text-align: center;
  }

  .menu-icon {
      display: block;
  }

  /* Show Menu When Hamburger Icon is Clicked */
  .nav-links.active {
      display: flex;
  }
}





 
  
    
  
  @media (max-width: 768px) {
    .section__header {
      font-size: 2rem;
    }
  
    .section__description {
      font-size: 1rem;
    }
  
    .about__card {
      flex: 1 1 calc(50% - 2rem); 
      max-width: calc(50% - 2rem);
    }
  }
  
  @media (max-width: 480px) {
    .about__card {
      flex: 1 1 100%; 
      max-width: 100%;
    }
  }


  @media (max-width: 768px) {
    .trainer__grid {
      gap: 1.5rem;
    }
  
    .trainer__card {
      width: 200px; 
    }
  
    .trainer__card h4 {
      font-size: 1.3rem; 
    }
  
    .trainer__card p {
      font-size: 0.9rem;
    }
  
    .trainer__socials a {
      font-size: 1.3rem;
    }
  }
  

  @media (max-width: 480px) {
    .trainer__grid {
      flex-direction: column; 
      align-items: center;
      gap: 1rem;
    }
  
    .trainer__card {
      width: 100%; 
      max-width: 300px; 
    }
  
    .trainer__card h4 {
      font-size: 1.2rem;
    }
  
    .trainer__card p {
      font-size: 0.85rem;
    }
  
    .trainer__socials a {
      font-size: 1.2rem;
    }
  }




  @media (max-width: 768px) {
    .plans-container {
        flex-direction: column;
        align-items: center;
    }

    .plan {
        max-width: 100%;
    }

    .main-heading {
        font-size: 2rem;
    }

    .plan-heading {
        font-size: 1.5rem;
    }

    .plan-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .main-heading {
        font-size: 1.8rem;
    }

    .plan-heading {
        font-size: 1.3rem;
    }

    .plan-description {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
  .blog-sections {
      flex-direction: column;
      align-items: center;
  }

  .blog-section {
      max-width: 100%;
  }

  .blog-heading {
      font-size: 1rem;
  }

  .blog-title {
      font-size: 1.5rem;
  }

  .blog-description {
      font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .blog-heading {
      font-size: 1.8rem;
  }

  .blog-title {
      font-size: 1.3rem;
  }

  .blog-description {
      font-size: 0.85rem;
  }
}


@media (max-width: 768px) {
  .logo__banner {
      gap: 15px;
      padding: 15px; 
  }

  .logo__banner img {
      width: 120px; 
  }
}


@media (max-width: 480px) {
  .logo__banner {
      flex-wrap: wrap; 
      gap: 10px;
      padding: 10px; 
  }

  .logo__banner img {
      width: 100px; 
  }
}
/* Media Queries for Responsive Footer */
@media (max-width: 1200px) {
  .container {
    padding: 0 15px;
  }

  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .newsletter-card,
  .footer-list {
    flex: 1 1 100%;
    max-width: 80%;
  }

  .btn-outline {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .footer-top {
    gap: 20px;
  }

  .newsletter-card,
  .footer-list {
    max-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-bottom-list {
    flex-direction: column;
    gap: 10px;
  }

  .social-list {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .card-title {
    font-size: 20px;
  }

  .h6 {
    font-size: 16px;
  }

  .footer-text {
    font-size: 12px;
  }

  .btn-primary,
  .btn-outline {
    font-size: 14px;
    padding: 8px 12px;
  }

  .copyright {
    font-size: 12px;
  }

  .social-link ion-icon {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .review-box {
      width: 45%;
  }
}

@media (max-width: 480px) {
  .review-box {
      width: 100%;
  }

  .review-heading h2 {
      font-size: 28px;
  }
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
  h4 {
    font-size: 28px; 
  }
  .gym-category h3 {
    font-size: 20px; 
  }
  .images {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); 
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 24px; 
  }
  .gym-category h3 {
    font-size: 18px;
  }
  .images {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); 
  }
}