/* ================================================
   NetTech India — Hero Section CSS
   ================================================ */

/* ── Single Slider Base ── */
.slider .single-slider {
  background: linear-gradient(153deg, rgb(3 62 141) 32%, rgb(0 67 158) 72%, rgb(0 54 171) 100%);
  height: auto;
  padding-bottom: 0;
}

/* ── Hero Row ── */
.hero-row {
  padding-bottom: 3rem;
  align-items: center;
}

/* ── Institute Badge ── */
.hero-badge {
  display: inline-block;
  background: rgba(255, 210, 48, 0.15);
  border: 1px solid rgba(255, 210, 48, 0.5);
  color: #FFD230;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
}

/* ── Headings ── */
.hero-heading-white {
  color: #ffffff;
  font-size: clamp(24px, 3.5vw, 30px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 6px;
}

.hero-heading-yellow {
  color: #FFD230;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 18px;
}

/* ── Subheading ── */
.hero-subheading {
  color: #e4e4e4;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 22px;
  max-width: 560px;
}

.hero-subheading strong {
  color: #FFD230;
}

/* ── What You Will Get Box ── */
.hero-benefits-box {
  border-radius: 14px;
  padding: 5px 22px;
  margin-bottom: 20px;
}

.hero-benefits-label {
  color: #FFD230;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.hero-benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
}

.hero-benefit-item {
  color: #e4e4e4;
  font-size: 13.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-benefit-item .check {
  color: #FFD230;
  font-size: 15px;
  flex-shrink: 0;
}

/* ── CTA Buttons ── */
.hero-cta-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 24px;
}

.btn-hero-primary {
  background: #FFD230;
  color: #000000;
  padding: 5px 15px;
  font-size: 15px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none !important;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.btn-hero-primary:hover {
  background: #e6bc20;
  color: #000;
  transform: translateY(-2px);
}

.btn-hero-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.4) !important;
  padding: 5px 15px;
  font-size: 15px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-hero-ghost:hover {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}

/* ── Association Logos Row ── */
.hero-association {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.hero-association p {
  color: #e4e4e4;
  font-size: 12px;
  font-weight: 700;
  margin: 0 4px 0 0;
}

.hero-association img {
  border-radius: 6px;
  background: white;
  padding: 10px;
}

/* ── Right Image ── */
.hero-image {
  border-radius: 20px;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.35));
  width: 100%;
  max-width: 500px;
}

/* ── Trust Stats Bar ── */
.hero-stats-bar {
  background: rgba(0, 0, 0, 0.25);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 20px;
}

.hero-stats-bar .container {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.hero-stat-item {
  text-align: center;
}

.hero-stat-item h3 {
  color: #FFD230;
  font-weight: 800;
  margin: 0;
  font-size: clamp(20px, 3vw, 25px);
}

.hero-stat-item p {
  color: #e4e4e4;
  margin: 0;
  font-size: 12px;
}

.hero-stat-divider {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .hero-benefits-grid {
    grid-template-columns: 1fr;
  }

  .hero-cta-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn-hero-primary,
  .btn-hero-ghost {
    width: 100%;
    justify-content: center;
  }
}
