 /* banner  */
 .about-banner {
  padding:20px;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.decorative-elements .star {
  position: absolute;
  font-size: 24px;
  color: gold;
  animation: twinkle 2s infinite ease-in-out;
}

@keyframes twinkle {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 1; }
}

.about-banner-container {
  max-width: 1200px;
  margin: auto;
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  /* flex-wrap: wrap; */
}

/* .about-text {
  flex: 1 1 500px;
} */

.section-title {
  font-size: 1rem;
  color: #473391;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.main-heading {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #222;
}

.description {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.6;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 1.8rem;
  font-weight: bold;
  color: #473391;
}

.stat-label {
  font-size: 0.95rem;
  color: #666;
}

.cta-button {
  background: #473391;
  color: #fff;
  padding: 12px 28px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.cta-button:hover {
  background: #000;
}

/* TROPHY IMAGE */
.about-image {
  /* flex: 1 1 400px; */
  text-align: center;
}

.about-image img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 992px) {
  .about-content {
    flex-direction: column-reverse;
    text-align: center;
  }

  .about-text {
    padding-top: 10px;
  }
}

@media (max-width: 600px) {
  .main-heading {
    font-size: 2rem;
  }

  .description {
    font-size: 1rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-button {
    padding: 10px 20px;
  }
}
