* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
}

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap");

body {
  background-image: url("https://t3.ftcdn.net/jpg/01/19/59/74/360_F_119597487_SnvLBdheEGOxu05rMQ5tCzo250cRrTz9.jpg");
  background-size: cover;
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  color: white;
  overflow-x: hidden;
}

/* Explore More Section */
.explore-more {
  text-align: center;
  margin-top: 4rem;
  margin-bottom: 3rem;
  position: relative;
  bottom: 0;
}

.explore-more a {
  text-decoration: none;
  font-size: 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: pulse 2s infinite;
  background: linear-gradient(to right, #00ff88, #00b4db);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 2px 10px rgba(0, 255, 136, 0.3);
}

.bounce-arrow {
  animation: bounce 2s infinite;
  font-size: 2rem;
  background: linear-gradient(to right, #00ff88, #00b4db);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 2px 10px rgba(0, 255, 136, 0.3);
}

@keyframes pulse {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-10px);
  }
}

/* Gym Plans Section */
.gym-plans-section {
  min-height: 100vh;
  padding: 4rem 2rem;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
  align-items: center;
  scroll-margin-top: 2rem;
}

.gym-plans-section h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  background: linear-gradient(to right, #00ff88, #00b4db);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 2px 10px rgba(0, 255, 136, 0.3);
}

.plans-container {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.plan-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 2rem;
  width: 300px;
  text-align: center;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.plan-card.featured {
  border: 1px solid #00ff88;
  transform: scale(1.05);
}

.featured-tag {
  position: absolute;
  top: -15px;
  right: 20px;
  background: linear-gradient(to right, #00ff88, #00b4db);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: bold;
}

.plan-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  background: linear-gradient(to right, #00ff88, #00b4db);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.price {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: white;
}

.price span {
  font-size: 1rem;
  opacity: 0.8;
}

.plan-card ul {
  list-style: none;
  margin-bottom: 2rem;
  text-align: left;
}

.plan-card ul li {
  margin-bottom: 0.8rem;
  color: white;
}

.plan-card ul li i {
  color: #00ff88;
  margin-right: 8px;
}

.join-now {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(to right, #00ff88, #00b4db);
  border-radius: 25px;
  color: black;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.join-now:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .plans-container {
    flex-direction: column;
    align-items: center;
  }

  .plan-card {
    width: 100%;
    max-width: 350px;
  }

  .plan-card.featured {
    transform: scale(1);
  }
}

/* Animated background */

/* Floating particles */
.particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.particle {
  position: absolute;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  animation: float 15s infinite linear;
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  100% {
    transform: translateY(-1000px) rotate(720deg);
  }
}

/* Loader */
#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #111;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.6s ease;
}

.loader {
  width: 48px;
  height: 48px;
  border: 5px solid #00ff88;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Content */
header {
  text-align: center;
  padding: 2rem;
  animation: fadeIn 1s ease-out;
}

header h1 {
  font-size: 3.5rem;
  background: linear-gradient(to right, #00ff88, #00b4db);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 2px 10px rgba(0, 255, 136, 0.3);
  margin-bottom: 1rem;
}

header p {
  font-size: 1.2rem;
  opacity: 0.8;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  padding: 2rem;
  animation: slideUp 1s ease-out;
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 2rem;
  color: white;
  position: relative;
  display: inline-block;
}

h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #00ff88;
  border-radius: 2px;
}

.login-options {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2rem;
}

.login-options a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: white;
  text-decoration: none;
  padding: 1.5rem 2.5rem;
  border-radius: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  width: 220px;
  height: 180px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.login-options a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: 0.5s;
}

.login-options a:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 255, 136, 0.3);
  background: rgba(0, 255, 136, 0.2);
}

.login-options a:hover::before {
  left: 100%;
}

.login-options i {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #00ff88;
}

footer {
  text-align: center;
  padding: 2rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .login-options {
    flex-direction: column;
  }

  header h1 {
    font-size: 2.5rem;
  }
}
/* Facilities Section */
.facilities-section {
  padding: 4rem 2rem;
  background: rgba(0, 0, 0, 0.85);
  text-align: center;
}

.facilities-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
}

.facility-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 2rem;
  width: 250px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.facility-card i {
  font-size: 2.5rem;
  color: #00ff88;
  margin-bottom: 1rem;
}

.facility-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.facility-card h3 {
  margin-bottom: 0.5rem;
  color: white;
}

.facility-card p {
  font-size: 0.95rem;
  opacity: 0.8;
  color: white;
}

/* Coaches Section */
.coaches-section {
  padding: 4rem 2rem;
  background: rgba(0, 0, 0, 0.9);
  text-align: center;
}

.coaches-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
}

.coach-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 1.5rem;
  width: 220px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.coach-card img {
  width: 150px;
  height: 150px;
  border-radius: 50%;      /* Perfect circle */
  object-fit: cover;       /* Maintain aspect ratio, crop if needed */
  margin-bottom: 1rem;
  border: 2px solid #00ff88; /* Optional: adds a glowing border */
  box-shadow: 0 4px 15px rgba(0, 255, 136, 0.4); /* Optional: subtle glow */
}

.coach-card h3 {
  margin-bottom: 0.3rem;
  color: white;
}

.coach-card p {
  font-size: 0.9rem;
  opacity: 0.8;
  color: white;
}

.coach-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

/* Reviews Section */
.reviews-section {
  padding: 4rem 2rem;
  background: rgba(0, 0, 0, 0.8);
  text-align: center;
}

.reviews-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
}

.review-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 1.5rem;
  width: 300px;
  text-align: center;
  color: white;
  font-style: italic;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card h4 {
  margin-top: 1rem;
  font-weight: bold;
  font-style: normal;
}

.review-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
  .facilities-container,
  .coaches-container,
  .reviews-container {
    flex-direction: column;
    align-items: center;
  }

  .facility-card,
  .coach-card,
  .review-card {
    width: 90%;
    max-width: 300px;
  }
}

