* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #050816;
  color: white;
  overflow-x: hidden;
}

.cursor {
  width: 20px;
  height: 20px;
  background: #00ffb3;
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 999;
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
}

.gradient {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  z-index: -1;
}

.gradient.one {
  width: 400px;
  height: 400px;
  background: #00ff99;
  top: -100px;
  left: -100px;
}

.gradient.two {
  width: 350px;
  height: 350px;
  background: #005eff;
  right: -100px;
  bottom: -100px;
}

.hero {
  min-height: 100vh;
  padding: 30px 8%;
  position: relative;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-box {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-box img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  background: white;
  padding: 6px;
  border: 3px solid rgba(255,255,255,0.2);
}

.logo-box h1 {
  font-size: 28px;
}

.logo-box p {
  opacity: 0.7;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #00ffb3;
}

.hero-content {
  margin-top: 140px;
  max-width: 700px;
}

.tag {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 50px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(15px);
  margin-bottom: 30px;
}

.hero-content h2 {
  font-size: 76px;
  line-height: 1.1;
  margin-bottom: 25px;
}

.hero-content span {
  color: #00ffb3;
}

.hero-content p {
  font-size: 20px;
  line-height: 1.8;
  opacity: 0.85;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.primary-btn,
.secondary-btn,
.contact-btn {
  text-decoration: none;
  padding: 16px 34px;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s;
}

.primary-btn {
  background: linear-gradient(135deg,#00ffb3,#0077ff);
  color: white;
}

.secondary-btn {
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  backdrop-filter: blur(12px);
}

.primary-btn:hover,
.secondary-btn:hover,
.contact-btn:hover {
  transform: translateY(-5px);
}

.floating-card {
  position: absolute;
  padding: 18px 28px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  backdrop-filter: blur(15px);
  animation: float 4s ease-in-out infinite;
}

.card1 {
  top: 180px;
  right: 120px;
}

.card2 {
  top: 320px;
  right: 60px;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0);
  }
}

.stats,
.features {
  padding: 100px 8%;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 30px;
}

.stat-card,
.feature-box,
.course-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(15px);
  border-radius: 25px;
  padding: 40px;
  transition: 0.3s;
}

.stat-card:hover,
.feature-box:hover,
.course-card:hover {
  transform: translateY(-10px);
}

.stat-card h3 {
  color: #00ffb3;
  font-size: 42px;
}

.courses {
  padding: 100px 8%;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 54px;
  margin-bottom: 15px;
}

.section-title p {
  opacity: 0.7;
}

.course-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: 30px;
}

.course-card h3 {
  margin-bottom: 15px;
}

.course-card span {
  color: #00ffb3;
}

.contact {
  margin: 100px 8%;
  padding: 90px 30px;
  border-radius: 35px;
  text-align: center;
  background: linear-gradient(135deg,#00ffb3,#005eff);
}

.contact h2 {
  font-size: 58px;
  margin-bottom: 20px;
}

.contact p {
  margin-bottom: 35px;
}

.contact-btn {
  background: white;
  color: black;
  display: inline-block;
}

footer {
  text-align: center;
  padding: 40px;
  opacity: 0.7;
}

.whatsapp {
  position: fixed;
  right: 25px;
  bottom: 25px;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: #25d366;
  display: grid;
  place-items: center;
  text-decoration: none;
  color: white;
  font-size: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

@media(max-width: 768px) {

  .hero-content h2 {
    font-size: 48px;
  }

  .contact h2,
  .section-title h2 {
    font-size: 38px;
  }

  .navbar {
    flex-direction: column;
    gap: 25px;
  }

  .nav-links {
    gap: 15px;
  }

  .floating-card {
    display: none;
  }

}