.about {
  background-color: #dbf0ff;
}


/* ULTRA GRADIENT TEXT */
.ultra-text {
  font-weight: 800;
  background: linear-gradient(90deg, #2563eb, #9333ea, #ff7a00, #2563eb);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientMove 4s linear infinite;
}

/* MOVING GRADIENT */
@keyframes gradientMove {
  0% {
    background-position: 0%
  }

  100% {
    background-position: 300%
  }
}

/* CURSOR BLINK */
.cursor {
  color: #2563eb;
  animation: blink 1s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

/* FADE + SLIDE */
.fade-slide {
  opacity: 0;
  transform: translateY(15px);
  transition: 0.4s ease;
}

.fade-slide.show {
  opacity: 1;
  transform: translateY(0);
}

/* EXTRA GLOW */
.ultra-text:hover {
  text-shadow: 0 0 12px rgba(37, 99, 235, 0.4);
}



/* ===== SECTION ===== */
.course {
  padding: 40px 20px;
  background: #f5f7ff;
}

.course-heading {
  text-align: center;
  margin-bottom: 30px;
}

.course-heading h2 {
  font-size: 38px;
  font-weight: 800;
  color: #111827;
  position: relative;
  display: inline-block;
}


.course-info {
  margin-top: 15px;
  background: #f3f4f6;
  padding: 8px 12px;
  border-radius: 8px;
  text-align: center;
}

.course-info p {
  margin: 0;
  font-size: 13px;
  color: #374151;
  font-weight: 500;
}


/* UNDERLINE EFFECT */
.course-heading h2::after {
  content: "";
  width: 60%;
  height: 4px;
  background: linear-gradient(90deg, #2563eb, #9333ea, #ff7a00);
  position: absolute;
  left: 20%;
  bottom: -8px;
  border-radius: 10px;
}

.course-heading p {
  margin-top: 15px;
  color: #6b7280;
  font-size: 15px;
}

/* ===== CARD ===== */
.course-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  transition: 0.4s;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

/* TOP COLOR BAR */
.course-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #2563eb, #9333ea, #ff7a00);
}

.course-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 45px rgba(37, 99, 235, 0.18);
}

/* BODY */
.course-card .card-body {
  padding: 22px;
}

/* TITLE */
.course-title {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  color: #1656d6;
}

.course-sub {
  text-align: center;
  font-weight: bolder;
  font-size: 14px;
  margin-bottom: 12px;
}

/* IMAGE */
.course-img img {
  width: 100%;
  border-radius: 12px;
  transition: 0.3s;
}

.course-card:hover img {
  transform: scale(1.05);
}

/* FLEX PRICE TOP */
.price-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}

.duration {
  font-size: 14px;
  color: #6b7280;
}

.perday {
  font-size: 20px;
  font-weight: 700;
  color: #16a34a;
}

/* PRICE */
.price-box {
  margin-top: 10px;
}

.main-price {
  display: flex;
  align-items: center;
  gap: 8px;
}

.new-price {
  font-size: 26px;
  font-weight: 800;
  color: #111827;
}

.price-box del {
  color: #9ca3af;
}



.final {
  font-size: 14px;
  color: #374151;
  margin-top: 5px;
}

/* TAG */
.tag {
  display: inline-block;
  margin-top: 14px;
  background: #f3e8ff;
  color: #9333ea;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.off {
  background: #ff7a00;
  color: #fff;
  margin-top: 10px;
  padding: 4px 10px;
  font-size: 12px;
  border-radius: 20px;
  font-weight: 600;
}

/* BUTTON */
.view-btn {
  width: 100%;
  margin-top: 18px;
  border: none;
  padding: 14px;
  border-radius: 12px;
  font-weight: 600;
  background: linear-gradient(90deg, #2563eb, #3b82f6);
  color: #fff;
  transition: 0.3s;
}

.view-btn:hover {
  background: linear-gradient(90deg, #1d4ed8, #2563eb);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.25);
}