/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  h1, h2, h3 {
    color: #333;
  }
  
  p {
    color: #666;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  .btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ff6b6b;
    color: #fff;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }
  
  .btn:hover {
    background-color: #ff4c4c;
  }
  
  /* Header Styles */
  header {
    background-color: #000000;
    color: #fff;
    padding: 20px 0;
  }
  
  header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  header .logo {
    font-size: 24px;
    font-weight: bold;
  }
  
  header .logo span {
    color: #ff6b6b;
  }
  
  header nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
  }
  
  header nav ul li a {
    color: #fff;
    transition: color 0.3s ease;
  }
  
  header nav ul li a:hover {
    color: #ff6b6b;
  }
  
  .menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
  }
  
  .menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 4px 0;
  }
  
  /* Hero Section */
  .hero {
    color: #fff;
    text-align: center;
    padding: 100px 0;
    height: 500px;
  }
  
  .hero h1 {
    font-size: 60px;
    margin-bottom: 20px;
    color: white;
  }
  
  .hero p {
    font-size: 18px;
    margin-bottom: 30px;
    color: whitesmoke;
    opacity: 60%;
  }
  
  /* About Section */
  .about .container {
    display: flex;
    align-items: flex-start;
    gap: 40px;
  }
  
  .about-content {
    flex: 1;
    text-align: center;
  }
  
  .about-content h2 {
    font-size: 50px;
  }
  
  .about-content p {
    font-size: 18px;
    text-align: left;
  }
  
  .about-image {
    flex: 0 0 40%;
  }
  
  .about-image img {
    width: 350px;
    height: 450px;
    border-radius: 10px;
    margin-top: 100px;
    margin-left: 100px;
  }
  
  /* Services Section */
  .services {
    padding: 50px 0;
    text-align: center;
  }
  
  .services .service-cards {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .services .card {
    background-color: #f4f4f4;
    padding: 20px;
    border-radius: 10px;
    width: 30%;
    min-width: 250px;
  }
  
  .services .card i {
    font-size: 40px;
    margin-bottom: 20px;
    color: #ff6b6b;
  }
  
  /* Trainers Section */
  .trainers {
    padding: 50px 0;
    text-align: center;
    background-color: #f9f9f9; /* Light background for the section */
  }
  
  .trainers .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .trainers h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #333; /* Dark text for the heading */
  }
  
  .trainers .trainer-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
  }
  
  .trainers .card {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    width: 300px; /* Fixed width for each card */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth hover effect */
  }
  
  .trainers .card:hover {
    transform: translateY(-10px); /* Lift the card on hover */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Enhanced shadow on hover */
  }
  
  .trainers .card img {
    width: 150px; /* Fixed size for the image */
    height: 150px;
    border-radius: 50%;
    object-fit: cover; /* Ensure the image fits well */
    margin-bottom: 20px;
    border: 4px solid #ff6f61; /* Add a border to the image */
  }
  
  .trainers .card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333; /* Dark text for the name */
  }
  
  .trainers .card p {
    font-size: 1rem;
    color: #777; /* Lighter text for the description */
    margin-bottom: 0;
  }
  
  /* Contact Section */
  .contact {
    padding: 50px 0;
    text-align: center;
  }
  
  .contact form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .contact input, .contact textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  /* Footer Section */
  footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
  }
  
  footer .social-links {
    margin-top: 10px;
  }
  
  footer .social-links a {
    color: #fff;
    margin: 0 10px;
    font-size: 20px;
  }
  
  footer .social-links a:hover {
    color: #ff6b6b;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    header nav ul {
      display: none;
      flex-direction: column;
      background-color: #333;
      position: absolute;
      top: 60px;
      left: 0;
      width: 100%;
      text-align: center;
    }
  
    header nav ul.active {
      display: flex;
    }
  
    .menu-toggle {
      display: flex;
    }
  
    .services .card, .trainers .card {
      width: 100%;
    }
  }
  @media (max-width: 1200px) {
    .about-image img {
      margin-left: 50px;
    }
  }
  
  @media (max-width: 992px) {
    .about .container {
      flex-direction: column;
      align-items: center;
      gap: 20px;
    }
  
    .about-image {
      flex: 0 0 auto;
      text-align: center;
    }
  
    .about-image img {
      margin-top: 50px;
      margin-left: 0;
    }
  }
  
  @media (max-width: 768px) {
    .about-content h2 {
      font-size: 40px;
    }
  
    .about-content p {
      font-size: 16px;
    }
  
    .about-image img {
      max-width: 300px;
      margin-top: 30px;
    }
  }
  
  @media (max-width: 576px) {
    .about-content h2 {
      font-size: 32px;
    }
  
    .about-content p {
      font-size: 14px;
    }
  
    .about-image img {
      max-width: 250px;
      margin-top: 20px;
    }
  }