  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: fangsong;
  }
  body {
    overflow-x: hidden;
    background: linear-gradient(90deg,
        #071d18 55%,
        #0d5c44 100%);
  }
.home-banner-area {
  /* background: url('../image/home-banner-bg3.png') no-repeat center center/cover; */
  height: 100vh;
}

.hero-section {
  min-height: 100vh;
  width: 100%;

  padding: 160px 80px 80px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;

  position: relative;
  overflow: hidden;
}

/* LEFT SIDE */

.hero-left {
  flex: 1;
  color: #fff;
}

.tagline {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 50px;

  background: rgba(255, 255, 255, 0.12);

  border: 1px solid rgba(255, 255, 255, 0.2);

  font-size: 14px;
  margin-bottom: 25px;

  backdrop-filter: blur(10px);
}

.hero-left h1 {
  font-size: 65px;
  line-height: 1.2;
  margin-bottom: 25px;
  font-weight: 800;
}

.hero-left p {
  font-size: 18px;
  line-height: 1.8;
  max-width: 650px;
  color: #ebebeb;
  margin-bottom: 35px;
}

/* BUTTONS */

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 45px;
}

.explore-btn,
.demo-btn {
  padding: 15px 32px;
  border: none;
  border-radius: 50px;

  font-size: 16px;
  font-weight: 600;
  cursor: pointer;

  transition: 0.4s ease;
}

.explore-btn {
  background: linear-gradient(135deg, #d8ff67, #5eff7a);
  color: #111;

  box-shadow: 0 8px 25px rgba(184, 255, 84, 0.4);
}

.explore-btn:hover {
  transform: translateY(-5px);
}

.demo-btn {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;

  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.demo-btn:hover {
  background: #fff;
  color: #111;
}

/* STATS */

.hero-stats {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.stat-box {
  min-width: 140px;

  padding: 20px;

  border-radius: 20px;

  background: rgba(255, 255, 255, 0.08);

  border: 1px solid rgba(255, 255, 255, 0.12);

  backdrop-filter: blur(12px);
}

.stat-box h2 {
  color: #d8ff67;
  font-size: 30px;
  margin-bottom: 8px;
}

.stat-box span {
  color: #fff;
}

/* RIGHT SIDE */

.hero-right {
  flex: 1;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

/* COURSE CARD */

.course-card {
  padding: 35px 25px;
  border-radius: 25px;

  background: rgba(255, 255, 255, 0.08);

  border: 1px solid rgba(255, 255, 255, 0.12);

  backdrop-filter: blur(12px);

  color: #fff;

  transition: 0.4s ease;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.course-card:hover {
  transform: translateY(-10px) scale(1.03);
}

.course-card h3 {
  font-size: 28px;
  margin-bottom: 15px;
}

.course-card p {
  color: #e5e5e5;
  line-height: 1.6;
}

/* Different Glow Colors */

.python {
  border-top: 4px solid #ffe66d;
}

.js {
  border-top: 4px solid #7dffb3;
}

.react {
  border-top: 4px solid #7ae7ff;
}

.marketing {
  border-top: 4px solid #ff9ae6;
}

/* RESPONSIVE */

@media(max-width:1000px) {

  .hero-section {
    flex-direction: column;
    padding: 140px 25px 60px;
  }

  .hero-left h1 {
    font-size: 45px;
  }

  .hero-right {
    width: 100%;
  }

}

@media(max-width:700px) {

  .hero-right {
    grid-template-columns: 1fr;
  }

  .hero-left h1 {
    font-size: 36px;
  }

  .hero-buttons {
    flex-direction: column;
  }

}

