/* Hero Section */
.hero-section {
    background: 
        linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url("https://www.fortray.com/assets/img/culture/banner-img-1x.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    padding: 80px 20px;
}
.youtube-badge {
    background: #ff0000;
    color: #fff;
}

.youtube-badge:hover {
    background: #cc0000;
}

.hero-section h1{
font-size: 72px;
}
/* Mobile screens */
@media (max-width: 767.98px) {
    .hero-section h1 {
        font-size: 28px;
    }
}

.hero-content .highlight {
    color: #df451d;
    font-weight: 500;
}


.intro-text {
    font-size: 18px;
    line-height: 1.7;
    color: #2b2b2b;
}

.intro-text .dot {
    color: var(--secondary-color);
    font-weight: bold;
}

.section-label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--secondary-color);
    position: relative;
    padding-left: 40px;
    display: inline-block;
}

.section-label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 28px;
    height: 3px;
    background-color: var(--secondary-color);
    transform: translateY(-50%);
}

.mission-text {
    font-size: 28px;
    line-height: 1.6;
    color: #222;
    font-weight: 500;
}

.mission-text .highlight {
    color: var(--secondary-color);
    font-weight: 600;
}
/* Program Stats Section */
.program-stats {
  background-color: #ffffff;
}

.stats-card,
.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--rounded-lg);
  padding: var(--space-4);
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.stats-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-color);
}

.stats-icon {
  margin-bottom: var(--space-4);
}

.stats-icon i {
  font-size: var(--text-4xl);
  display: flex;
  justify-content: center;
  background-image: var(--bg-gradient);
  background-clip: text;
  color: transparent !important;
}
