/*
========================================================== */

/* --------------------------

--------------------------- */
.vti-hero-section,
.vti-program-section,
.vti-target-section,
.vti-details-section {
  padding: 120px 0;
}

@media (max-width: 767px) {
  .vti-hero-section,
  .vti-program-section,
  .vti-target-section,
  .vti-details-section {
    padding: 80px 0;
  }
}

/* --------------------------
  SECTION TITLES + SUBTITLES
--------------------------- */
.section-heading .sub-title {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  background: linear-gradient(90deg, #f74f37, #1d2c8d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 12px;
  display: inline-block;
}

.section-heading .title {
  color: #fff;
  font-size: 38px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.25;
  position: relative;
}

.section-heading .title::after {
  content: "";
  width: 70px;
  height: 3px;
  background: linear-gradient(90deg, #f74f37, #1d2c8d);
  border-radius: 6px;
  display: block;
  margin: 15px auto 0;
}

/* ==========================================================
   HERO SECTION
========================================================== */
.vti-hero-section {
  position: relative;
  background: radial-gradient(
      circle at top left,
      rgba(0, 255, 151, 0.08),
      transparent 60%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(44, 50, 254, 0.1),
      transparent 60%
    );
}

.vti-hero-content .vti-tag {
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 6px 14px;
  border-radius: 40px;
  background: #75453e;
  border: 1px solid #b93a26;
  color: white;
}

.vti-hero-title {
  font-size: 48px;
  color: #fff;
  font-weight: 500;
  line-height: 1.2;
  margin: 18px 0;
  letter-spacing: -0.03em;
}

.vti-hero-text {
  color: rgba(255, 255, 255, 0.65);
  font-size: 17px;
  line-height: 1.7;
  max-width: 520px;
}

/* Hero Image Glow */
.vti-hero-img {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.45);
}

.vti-hero-img img {
  border-radius: 18px;
}

.vti-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(0, 255, 151, 0.2), transparent 70%);
  opacity: 0.4;
  pointer-events: none;
}

/* ==========================================================
   TRAINING PROGRAM CARDS
========================================================== */
.vti-program-section {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(5px);
}

.vti-program-card {
  padding: 28px 26px;
  border-radius: 16px;
  background: rgba(11, 15, 20, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(30px);
  transition: all 0.3s ease;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
  position: relative;
  overflow: hidden;
}

.vti-program-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background: url("../img/service/noise.png");
  pointer-events: none;
}

.vti-program-card h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.vti-program-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  line-height: 1.6;
}

.vti-program-card:hover {
  border-color: rgba(0, 255, 151, 0.5);
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 255, 151, 0.25);
}

/* ==========================================================
   TARGET AUDIENCE
========================================================== */
.vti-target-section {
  background: radial-gradient(
    circle at center,
    rgba(0, 255, 151, 0.05),
    transparent 65%
  );
}

.vti-target-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.vti-target-item {
  padding: 14px 26px;
  background: rgba(11, 15, 20, 0.88);
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.75);
  transition: 0.25s;
}

.vti-target-item:hover {
  background: rgba(0, 255, 151, 0.18);
  border-color: rgba(0, 255, 151, 0.5);
  color: #00ff97;
}

/* ==========================================================
   DETAILS SECTION
========================================================== */
.vti-details-section {
  background: rgba(255, 255, 255, 0.02);
}

.vti-detail-card {
  padding: 40px 35px;
  border-radius: 18px;
  background: rgba(11, 15, 20, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(30px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
}

.vti-detail-title {
  color: #fff;
  font-size: 22px;
  margin-bottom: 10px;
}

.vti-detail-text {
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  font-size: 15px;
}

/* ----------------------------------------------------------
   BUTTON FIX — NO OVERRIDE OF GENERAL THEME BUTTONS
----------------------------------------------------------- */
.hero-btn .thm-btn {
  margin-top: 20px;
}

/* ==========================================================
   FIX: MAKE ALL CARDS EQUAL HEIGHT
========================================================== */

.row {
  display: flex;
  flex-wrap: wrap;
}

/* Make all cards equal height */
.col-lg-4,
.col-md-6 {
  display: flex;
}

.rh-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.rh-card-title {
  font-size: 28px;
  letter-spacing: -0.04em;
  font-weight: 600;
  color: #ffffff !important;
}
