* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #0b0b0b;
  color: #fff;
  font-family: Arial, sans-serif;
}

/* LOADER */
#loader {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle, #000, #050505);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.bolt {
  font-size: 90px;
  color: red;
  animation: thunder 1s infinite;
}
#loader p {
  margin-top: 15px;
  letter-spacing: 2px;
}
@keyframes thunder {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.6; }
  100% { transform: scale(1); opacity: 1; }
}

/* NAVBAR */
.navbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 15px;
  background: #111;
  border-bottom: 2px solid red;
}
.logo { width: 60px; }
.navbar h1 { color: red; }

/* TOP DETAILS */
.top-details {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px;
  background: #111;
}
.detail-box {
  background: #1a1a1a;
  padding: 15px 20px;
  border-radius: 25px;
  border: 1px solid red;
  font-weight: bold;
  text-align: center;
}
.enquire-btn {
  display: inline-block;
  margin-top: 8px;
  padding: 6px 14px;
  background: red;
  color: white;
  text-decoration: none;
  border-radius: 20px;
  font-size: 13px;
}

/* COACHES */
.coaches {
  text-align: center;
  padding: 60px 20px;
}
.coach-card {
  display: inline-block;
  width: 280px;
  margin: 20px;
  background: #1a1a1a;
  padding: 20px;
  border-radius: 14px;
}
.coach-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 10px;
}
.coach-card h3 { color: red; margin: 10px 0; }

/* SLIDER */
.slider-section {
  overflow: hidden;
  background: black;
}
.slider-track {
  display: flex;
  width: calc(260px * 8);
  animation: slide 20s linear infinite;
}
.slider-track img {
  width: 260px;
  height: 320px;
  margin: 10px;
  border-radius: 12px;
  object-fit: cover;
}
@keyframes slide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* SERVICES */
.services {
  text-align: center;
  padding: 50px 20px;
  background: #0f0f0f;
}
.services h2 { color: red; margin-bottom: 20px; }
.services ul { list-style: none; }
.services li { padding: 10px; font-size: 18px; }

/* VIDEO */
.video-section {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 40px;
  flex-wrap: wrap;
  background: black;
}
.video-section video {
  width: 480px;
  max-width: 90%;
  border-radius: 12px;
  border: 2px solid red;
}

/* CONTACT & FOOTER */
.contact, footer {
  text-align: center;
  padding: 20px;
  background: #111;
}

/* FLOATING BUTTONS */
.whatsapp-btn, .insta-btn {
  position: fixed;
  right: 20px;
  padding: 14px 16px;
  border-radius: 50%;
  font-size: 24px;
  color: #fff;
  text-decoration: none;
}
.whatsapp-btn {
  bottom: 20px;
  background: #25D366;
}
.insta-btn {
  bottom: 80px;
  background: #E1306C;
}

/* MOBILE */
@media (max-width: 768px) {
  .coach-card { width: 90%; }
}
