.about-hero {
  background: white;
  color: #585858;
  text-align: center;
  padding: 80px 20px;
  position: relative;
  
}
/* Overlay repeating logos */
.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: 
  url("/assets/images/bharat-sports-logo-lg.png")
    ;
  background-repeat: repeat, repeat;
  background-size: 120px, 100px; /* adjust sizes */
  background-position: 0 0, 60px 60px; /* stagger logos */
  opacity: 0.07; /* subtle effect */
  z-index: 0;
}

.about-hero h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.about-hero p {
  font-size: 18px;
  opacity: 0.9;
}

.about-intro, .about-journey, .about-vision, .about-cta {
  padding: 60px 20px;
  max-width: 900px;
  margin: auto;
}

.timeline {
  border-left: 3px solid #e63946;
  padding-left: 20px;
  margin-top: 20px;
}

.timeline-item {
  margin-bottom: 30px;
  position: relative;
}

.timeline-item::before {
  content: '';
  width: 14px;
  height: 14px;
  background: #e63946;
  border-radius: 50%;
  position: absolute;
  left: -9px;
  top: 4px;
}

.timeline-item .year {
  font-weight: bold;
  color: #1b263b;
  margin-bottom: 5px;
  display: block;
}

.about-cta {
  text-align: center;
  background: #f8f9fa;
  border-radius: 12px;
}

.about-cta .cta-btn {
  display: inline-block;
  margin: 10px;
  padding: 12px 24px;
  background: #e63946;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.about-cta .cta-btn:hover {
  background: #d62828;
}
