/* Committee Hero Section */
.committee-hero-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #f5f5f5 0%, #fff 100%);
}

.committee-hero-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.committee-hero-left-content {
  position: relative;
  z-index: 2;
}

.committee-hero-subtitle {
  color: #d20049;
  font-family: "Open Sans";
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2.1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.committee-hero-title {
  color: var(--Blue-400, #00243d);
  font-family: "Playfair Display";
  font-size: 52px;
  font-weight: 600;
  line-height: 120%;
  margin-bottom: 32px;
}

.committee-hero-background-image {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: 300px;
  opacity: 0.3;
  z-index: 1;
}

.committee-hero-slider-container {
  position: relative;
}

.committee-hero-swiper {
  width: 100%;
}

.committee-slider-image {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  height: 400px;
}

/* Committee Section */
.committee-section {
  padding: 30px 0;
  background-color: #fff;
}

.committee-header {
  margin-bottom: 30px;
}

.committee-title {
  color: var(--Blue-300, #03489f);
  font-family: "Playfair Display";
  font-size: 30px;
  font-weight: 600;
  line-height: 120%; /* 36px */
}

.committee-cards-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.committee-card {
  border-radius: 20px;
  border-bottom: 1px solid var(--Blue-300, #03489f);
  background: var(--Blue-100, #e6f0f8);
  padding: 24px;
}

.committee-card2 {
  border-radius: 20px;
  border-bottom: 1px solid var(--Yellow-300, #fca312);
  background: var(--Yellow-100, #fff6e7);
  padding: 24px;

}

.card-icon {
  margin-bottom: 24px;
  display: flex;
}

.card-icon svg {
  width: 60px;
  height: 60px;
}

.card-title {
  color: var(--Blue-400, #00243d);
  font-family: "Playfair Display";
  font-size: 24px;
  font-weight: 500;
  line-height: 140%;
  margin-bottom: 13px;
}

.card-description {
  color: var(--Blue-400, #00243d);
  font-family: "Open Sans";
  font-size: 14px;
  font-weight: 400;
  line-height: 160%; /* 22.4px */
}
.pillar-wise-groups{
    margin-bottom: 60px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .committee-hero-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .committee-slider-image {
    height: 300px;
  }

  .committee-cards-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .committee-hero-section {
    padding: 40px 0;
  }

  .committee-hero-title {
    font-size: 36px;
  }

  .committee-section {
    padding: 60px 0;
  }

  .committee-header {
    margin-bottom: 20px;
  }

  .committee-title {
    font-size: 32px;
  }

  .committee-cards-wrapper {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .committee-card {
    padding: 30px 24px;
  }

  .committee-slider-image {
    height: 250px;
  }
  .pillar-wise-groups{
    margin-bottom: 30px;
  }
}

@media (max-width: 480px) {
  .committee-hero-section {
    padding: 30px 0;
  }

  .committee-hero-title {
    font-size: 28px;
  }

  .committee-hero-subtitle {
    font-size: 12px;
  }

  .committee-section {
    padding: 30px 0;
  }

  .committee-title {
    font-size: 24px;
  }

  .committee-card {
    padding: 20px 16px;
  }

  .card-title {
    font-size: 16px;
  }

  .card-description {
    font-size: 13px;
  }

  .card-icon svg {
    width: 50px;
    height: 50px;
  }

  .committee-slider-image {
    height: 200px;
  }
}
