/* ==== Global Styles ==== */
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: Arial, sans-serif;
}

/* ==== Hero Header with Background Image ==== */
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background: url('expertbg.png') center/cover no-repeat fixed;
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
  color: white; /* optional, for better contrast */
}
.header {
  background: transparent;
}
.top-logo {
  background-color: rgba(0, 0, 0, 0.85);
  padding: 0;
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  color: #f4f4f4;
  letter-spacing: 1px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header h1,
.header p {
  position: relative;
  z-index: 1;
}

.header h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}
.hero h1,
.hero p {
  font-family: 'Poppins', sans-serif;
}

.header p {
  font-size: 1.2rem;
}

/* ==== Hero Image Below Header ==== */
.coach-hero img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  display: block;
}

/* ==== Coach Cards ==== */
.coach-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  padding: 50px 20px;
  max-width: 1200px;
  margin: auto;
}

.card {
  background-color: #464242;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(234, 226, 226, 0.1);
  width: 300px;
  padding: 25px 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


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

.card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: top; /* shows the top part of the image (face) */
  border-radius: 10px;
  margin-bottom: 15px;
}


.card h2 {
  margin-bottom: 6px;
  font-size: 1.6rem;
  color: #fcfcfc;
}

.card p {
  font-weight: 600;
  margin-bottom: 10px;
}

.card span {
  color: #f9f3f3;
  font-size: 0.95rem;
}

/* ==== Section Styles ==== */
.coach-intro,
.coach-benefits,
.coach-reviews {
  padding: 60px 20px;
  background: transparent; /* was #fafafa */
  text-align: center;
}


.container {
  max-width: 1000px;
  margin: auto;
}

.coach-intro h2,
.coach-benefits h2,
.coach-reviews h2 {
  padding: 60px 20px;
  background: transparent; /* was #fafafa */
  text-align: center;
}


.coach-intro p,
.coach-benefits p,
.coach-reviews p {
  padding: 60px 20px;
  background: transparent; /* was #fafafa */
  text-align: center;
}


/* ==== Badges / Highlights ==== */
.coach-badges ul {
  list-style: none;
  padding: 0;
  margin-top: 10px;
}

.coach-badges li {
  margin-bottom: 12px;
  font-weight: bold;
  color: #111111;
  font-size: 1.05rem;
}

/* ==== Benefit Boxes ==== */
.benefit-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.benefit {
  flex: 1 1 250px;
  background: #8ba09be3;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.benefit h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  color: #151d18;
}

/* ==== Customer Reviews ==== */
.review-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.review {
  background: #101010;
  border-left: 5px solid #92c5dd;
  padding: 20px;
  max-width: 320px;
  border-radius: 8px;
  text-align: left;
  box-shadow: 0 4px 8px rgba(234, 231, 231, 0.05);
}

.review p {
  font-size: 1rem;
  color: #dcbf84;
  margin-bottom: 10px;
}

.review .reviewer {
  font-weight: bold;
  color: #eeede9;
  font-size: 0.95rem;
}

/* ==== Call to Action ==== */
.coach-cta {
  padding: 60px 20px;
  text-align: center;
  background-color: #d09ebc
  };

.coach-cta h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: #222;
}

.coach-cta p {
  font-size: 1.1rem;
  color: #4d3c51;
  margin-bottom: 25px;
}

.cta-button {
  display: inline-block;
  padding: 14px 30px;
  font-size: 1rem;
  background-color: #656076;
  color: #956c6c;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
  background-color: #0a0a0a;
  transform: translateY(-2px);
}

/* ==== Elite Coaches Hero Section ==== */
.elite-coaches-section {
  position: relative;
  text-align: center;
  padding: 100px 20px;
  color: white;
  z-index: 1;
}

.elite-coaches-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5); /* dark overlay */
  z-index: -1;
}

.elite-coaches-section h1 {
  font-size: 3rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 20px;
}

.elite-coaches-section p {
  font-size: 1.1rem;
  max-width: 900px;
  margin: 0 auto 30px;
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
}

/* Checklist Style */
.elite-checklist {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  max-width: 600px;
  margin: auto;
}

.elite-checklist-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(2px);
  padding: 12px 18px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  color: #fff;
  transition: 0.3s ease;
}

.elite-checklist-item:hover {
  background: rgba(0, 255, 179, 0.15);
  transform: scale(1.02);
}

.elite-checklist-item .icon {
  color: #00ffb3;
  margin-right: 10px;
  font-size: 1.2rem;
}
/* ==== Footer ==== */
.footer {
  background-color: rgba(0, 0, 0, 0.8);
  padding: 40px 20px 10px;
  font-family: 'Segoe UI', sans-serif;
  margin-top: 40px;
  color: #eee;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  gap: 30px;
}

.footer-column {
  flex: 1 1 250px;
  min-width: 240px;
}

.footer-logo .logo-text {
  font-size: 24px;
  color: #fff;
  margin-bottom: 10px;
}

.footer-column h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #fff;
}

.footer-column p,
.footer-column li,
.footer-column a {
  font-size: 14px;
  color: #ccc;
  line-height: 1.6;
  text-decoration: none;
}

.footer-column a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #444;
  padding-top: 10px;
  font-size: 13px;
  color: #888;
}

/* ==== Responsive Footer ==== */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .footer-column {
    flex: 1 1 100%;
  }

  .footer-logo .logo-text {
    font-size: 28px;
  }
}

/* ==== Animations ==== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

