body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #000;
}

.hero-section {
  min-height: 100vh;
  background: linear-gradient(90deg, #0d1b2a, #000814);
  padding: 80px 0;
  overflow: hidden;
}

.hero-section .highlight {
  color: #16e0a7;
}

.hero-section h1 {
  line-height: 1.2;
}

.hero-section p {
  color: #e0e0e0;
  font-size: 1rem;
}

.hero-section .btn {
  font-size: 1rem;
  border-radius: 0;
}

@media (max-width: 768px) {
  .hero-section {
    text-align: center;
  }

  .hero-section .btn {
    margin-top: 20px;
  }
}
.coaching-section {
  background-color: #fff;
}

.gradient-bar {
  height: 6px;
  width: 100%;
  background: linear-gradient(to right, #ffe680, #bdf4a9, #00c9a7);
}
.timeline-section {
  background-color: #fafafa;
}



.timeline-item {
  position: relative;
}

.timeline-content {
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  position: relative;
}

@media (max-width: 768px) {
  .timeline::before {
    left: 8%;
  }

  .timeline-item {
    flex-direction: column !important;
  }

  .timeline-content {
    margin: 0 auto;
    text-align: center;
  }
}
.skills-section ul li {
  margin-bottom: 6px;
  font-size: 0.95rem;
}
.btn-gradient {
  background: linear-gradient(90deg, #00ffff, #00ffff);
  border: none;
  color: #000;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-gradient:hover {
  background: linear-gradient(90deg, #00ffff, #00ffff);
  color: #000;
}