/* === HERO SECTION (revamped) === */
.hero-section {
  position: relative;
  padding: 140px 8%;
  display: flex;
  align-items: center;
  justify-content: center;
  
  overflow: hidden;
  /* background: linear-gradient(135deg, #0a0a0a 0%, #101010 50%, #00ff88 10%) !important */
  /* background: url("../images/2.jpg") no-repeat center center/cover; */
  color: #fff;
}

.hero-overlay {
  position: absolute;
  inset: 0;
    background: rgba(0, 0, 0, 0.4) !important;
  backdrop-filter: blur(4px);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.hero-text {
  flex: 1 1 500px;
  color: #fff;
}

.hero-text h1 {
  font-size: 3.4rem;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-text h1 span {
  color: #00ff88;
  text-shadow: 0 0 50px #00ff88;
}

.hero-text p {
  font-size: 1.1rem;
  color: #ddd;
  line-height: 1.8;
  margin-bottom: 35px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

.btn-neon {
  background: #00ff88;
  color: #000;
  padding: 14px 35px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 0 15px #00ff88;
  transition: all 0.3s ease;
}

.btn-outline {
  border: 2px solid #00ff88;
  color: #00ff88;
  padding: 14px 35px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: #00ff88;
  color: #000;
}

.hero-image {
  position: relative;
}

.glow-circle {
  position: absolute;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(0,255,136,0.25), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 0;
}

.hero-image img {
  position: relative;
  z-index: 2;
  width: 420px;
  border-radius: 25px;
  box-shadow: 0 0 50px rgba(0,255,136,0.25);
}

/* === STORY SECTION (modern timeline) === */
.our-story {
  background: #0f0f0f;
  /* background: linear-gradient(120deg, #0a0a0a, #1a1a1a); */
  padding: 100px 8%;
  text-align: center;
  position: relative;
}

.our-story h2 {
  font-size: 2.8rem;
  margin-bottom: 40px;
  color: #00ff88;
}

.our-story h2 span {
  color: #fff;
}

.story-intro {
  max-width: 750px;
  margin: 0 auto 60px;
  color: #ccc;
  line-height: 1.8;
}

.story-timeline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  position: relative;
}

.connector {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, #00ff88, transparent);
}

.story-card {
  height: 310px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 255, 136, 0.2);
  /* border-radius: 20px; */
  padding: 50px 30px;
  width: 280px;
  transition: 0.3s;
  box-shadow: 0 0 20px rgba(0,255,136,0.1);
}

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

.story-card .icon {
  background: #00ff88;
  color: #000;
  font-size: 1.6rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin: 0 auto 15px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-card h3 {
  color: #fff;
  margin-bottom: 10px;
}

.story-card p {
  color: #bbb;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* === Mission & Vision Cards (Glass Effect) === */
.mv-section {
  /* background: radial-gradient(circle at top, #0a0a0a, #101010); */
  /* background: linear-gradient(120deg, #0a0a0a, #1a1a1a); */
  margin-top: -5%;
  background: #0f0f0f;
  padding: 120px 4%;
  text-align: center;
}

.mv-title {
  font-size: 2.5rem;
  color: #00ff88;
  margin-bottom: 40px;
}

.mv-title span {
  color: #fff;
}

.mv-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
}

.mv-card {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0,255,136,0.3);
  /* border-radius: 20px; */
  padding: 50px 30px;
  width: 280px;
  transition: all 0.3s ease;
  box-shadow: 0 0 30px rgba(0,255,136,0.1);
  height: 310px;
}

.mv-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 0 50px rgba(0,255,136,0.4);
}

.mv-icon {
  font-size: 2.5rem;
  color: #00ff88;
  margin-bottom: 20px;
}

.mv-card h3 {
  color: #fff;
  margin-bottom: 15px;
}

.mv-card p {
  color: #ccc;
  line-height: 1.8;
}



/* Trainers Section */
.trainers {
   /* background: linear-gradient(120deg, #0a0a0a, #1a1a1a); */
  background: #0f0f0f;
  padding: 80px 10%;
  text-align: center;
  margin-top: -5%;
}

.trainers h2 {
  font-size: 2.8rem;
  color: #00ff88;
  margin-bottom: 40px;
}

.trainers h2 span {
  color: #fff;
}


.trainer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.trainer-card {
  position: relative;
  height: 310px;
  background-color: #f9f9f9;
  /* border-radius: 15px; */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  /* border-radius: 20px; */
  padding: 50px 30px;
  width: 280px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.trainer-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Trainer image */
.trainer-card img {
  width: 100%;

  margin-bottom: 15px;
  transition: transform 0.4s ease;
}

.trainer-card:hover img {
  transform: scale(1.05);
  filter: brightness(70%);
}

/* Trainer name and role */
.trainer-card h3 {
  color: #4CAF50;
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.trainer-card p {
  color: #666;
  font-size: 0.95rem;
}

/* --- Overlay Section (Appears on Hover) --- */
.trainer-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.trainer-card:hover::before {
  opacity: 1;
}

.trainer-socials {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  display: flex;
  gap: 15px;
  opacity: 0;
  z-index: 2;
  transition: all 0.3s ease;
}

.trainer-card:hover .trainer-socials {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* Social icons */
.trainer-socials a {
  background-color: white;
  color: #4CAF50;
  font-size: 1.2rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.trainer-socials a:hover {
  background-color: #4CAF50;
  color: #fff;
  transform: translateY(-4px);
}

/* Responsive Design */
@media (max-width: 992px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }
  .about-image img {
    max-width: 350px;
  }
  .trainer-container {
    gap: 25px;
  }
}
/* --- Social Icon Hover Animation --- */
.trainer-socials a {
  transition: transform 0.3s ease, background-color 0.3s ease;
}

/* Float & spin on hover */
.trainer-card:hover .trainer-socials a {
  animation: floatSpin 1.5s ease-in-out infinite alternate;
  transform: scale(1.2);
  background-color: #4CAF50;
  color: #fff;
}
* Staggered animation delays for smooth sequential effect */
.trainer-card:hover .trainer-socials a:nth-child(1) { animation-delay: 0s; }
.trainer-card:hover .trainer-socials a:nth-child(2) { animation-delay: 0.1s; }
.trainer-card:hover .trainer-socials a:nth-child(3) { animation-delay: 0.2s; }

/* Keyframes: float up/down + slight spin */
@keyframes floatSpin {
  0% { transform: translateY(0) scale(1.2) rotate(0deg); }
  50% { transform: translateY(-6px) scale(1.25) rotate(10deg); }
  100% { transform: translateY(0) scale(1.2) rotate(0deg); }
}

/* Optional: slight staggered bounce effect when hovering trainer card */
.trainer-card:hover .trainer-socials a:nth-child(1) {
  transition-delay: 0s;
}
.trainer-card:hover .trainer-socials a:nth-child(2) {
  transition-delay: 0.05s;
}
.trainer-card:hover .trainer-socials a:nth-child(3) {
  transition-delay: 0.1s;
}



/* Responsive Design */
@media (max-width: 992px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }
  .about-image img {
    max-width: 350px;
  }
}
@media (max-width: 768px) {
  .about-highlights li {
    font-size: 0.95rem;
  }

  .about-highlights i {
    font-size: 1.3rem;
  }
}
