.quniHero {
  width: 100%;
  padding: 60px 170px;
  position: relative;
  overflow: hidden;
  background: 
    
    url("../assets/images/IILMbanerimage.png") center/cover no-repeat;
}

.quniHero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* LEFT */
.quniHero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.quniHero-title {
  font-size: 40px;
  line-height: 48px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.quniHero-text {
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  margin: 0;
}

/* BUTTONS */
.quniHero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* OUTLINE BUTTON */
.btn-outline {
  width: 240px;
  padding: 12px;
  text-align: center;
  border-radius: 8px;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s ease;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
}

/* PRIMARY BUTTON */
.btn-primary {
  width: 240px;
  padding: 12px;
  text-align: center;
  border-radius: 8px;
  background: linear-gradient(139deg, #FCCD0E 0%, #C19E0D 100%);
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
}

/* RIGHT IMAGE */
.quniHero-image {
  flex: 1;
  height: 400px;
  overflow: hidden;
  border-radius: 12px;
}

.quniHero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ======================
   RESPONSIVE
====================== */

@media (max-width: 1024px) {
  .quniHero {
    padding: 50px 60px;
  }

  .quniHero-title {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .quniHero-container {
    flex-direction: column;
    text-align: center;
  }

  .quniHero {
    padding: 40px 20px;
  }

  .quniHero-image {
    width: 100%;
    height: 260px;
  }

  .btn-outline,
  .btn-primary {
    width: 100%;
  }
}



.vx-course-wrap1 {
    width: 100%;
    padding: 60px 20px;
    background: none !important;
}