/* 🌄 Parallax Background Section */
.parallax-section {
  background-image: url('Indore1.jpg'); /* your background image */
  background-attachment: fixed; /* enables parallax effect */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 0;
  position: relative;
}

/* 🖤 Optional overlay for contrast */
.parallax-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5); /* dark overlay */
  z-index: 0;
}

/* 🧱 Content styling inside parallax */
.highlights-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin-left: 10%; /* Push content from left edge */
  margin-right: auto;
  border-radius: 10px;
  color: white;
  text-align: left;
}

.highlights-content h3 {
  text-align: start;
  margin-bottom: 1.2rem;
  font-size: 1.6rem;
  color: white;
}

.highlights-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  line-height: 1.8;
  font-size: 1rem;
  color: white;
}

/* Existing classes (keep your earlier code) */
.center-content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 1rem 0;
}

.committee-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.committee-member-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  /* background: #f9f9f9; */
  border-radius: 10px;
  padding: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.image-section img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
}

.member-name {
  font-weight: bold;
  margin-top: 0.5rem;
}

.member-title {
  font-size: 0.9rem;
  color: #555;
}

h3 {
  margin-bottom: 0.75rem;
}

.center-cards {
  display: flex;            /* flex container */
  flex-wrap: wrap;          /* allows cards to wrap to next line */
  justify-content: center;  /* centers all cards horizontally */
  gap: 2rem;                /* space between cards */
}

.center-cards .committee-member {
  display: flex;            /* keeps vertical layout inside each card */
  flex-direction: column;   /* stack name and title vertically */
  align-items: center;      /* centers content inside the card */
  min-width: 250px;         /* optional for uniform size */
}
.fs-20{
  font-size: larger;
}
