
/* Banner Section */
.conference-banner {
  position: relative;
  height: 70vh;
  background: linear-gradient(
              to right,
              rgba(0, 0, 0, 0.75),
              rgba(31, 38, 51, 0.3)
            ),
            url('../uploads/Pages/publi/hero.jpg') no-repeat center center/cover;
}

.banner-content {
  padding-left: 80px;
  position: relative;
  z-index: 2;
}

.banner-title {
  font-family: "Libre Franklin", sans-serif;
  font-size: 70px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 30px;
}

.conference-info {
  gap: 35px;
  border: 1px solid rgba(255,255,255,0.6);
  padding: 24px 34px;
  border-radius: 6px;
  width: fit-content;
  font-size: 20px;
  backdrop-filter: blur(4px);
}

.conference-info i {
  margin-right: 8px;
  font-size: 18px;
}

.about-conference-section {
  padding: 75px 0;
  padding-left: 150px;
  padding-right: 150px;
  background: #f5f5f5;
}

.about-title {
  font-family: "Libre Franklin", sans-serif;
  font-size: 40px;
  font-weight: 600;
  color: rgb(31, 52, 108);
  margin-bottom: 20px;
}

.about-text {
  font-size: 16px;
  line-height: 1.8;
  text-align: justify;
  color: #333;
  margin-bottom: 15px;
}

.faculty-about-section {
  background-color: #1f346c;
  padding: 75px 0;
  color: #ffffff;
  padding-left: 150px;
  padding-right: 150px;
  font-family: "Libre Franklin", sans-serif;
}

.faculty-title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.faculty-description {
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 18px;
  text-align: justify;
  opacity: 0.95;
}



.committee-section {
  /* padding: 80px 0; */
  background: #f5f5f5;
  font-family: "Libre Franklin", sans-serif;
  padding-bottom: 30px;
}

/* Section Title */
.committee-title {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 40px;
  color: #000;
  margin-top: -20px;
}

/* Card */
.committee-card {
  background: #fff;
  padding: 22px 18px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  height: 100%;
  transition: all 0.3s ease;
}

.committee-card:hover {
  transform: translateY(-6px);
}
.committee-card-wrapper {
  width: 75%;      
  margin: 0 auto;  
}

.member-name {
  font-size: 18px;
  font-weight: 600;
  color: #0056b3;
  margin-bottom: 6px;
}

/* Role */
.member-role {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* =========================
   GLOBAL RESPONSIVENESS
========================= */

/* Large Screens (≤1200px) */
@media (max-width: 1200px) {

  .banner-content {
    padding-left: 40px;
  }

  .banner-title {
    font-size: 60px;
  }

  .about-conference-section,
  .faculty-about-section {
    padding-left: 80px;
    padding-right: 80px;
  }

}

/* =========================
   TABLET (≤992px)
========================= */
@media (max-width: 992px) {

  .conference-banner {
    height: 60vh;
  }

  .banner-content {
    padding-left: 20px;
    text-align: center;
  }

  .banner-title {
    font-size: 48px;
  }

  .conference-info {
    font-size: 16px;
    padding: 18px 22px;
    gap: 20px;
    margin: 0 auto;
  }

  .about-conference-section {
    padding: 60px 40px;
  }

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

  .about-text {
    font-size: 15px;
  }

  .faculty-about-section {
    padding: 60px 40px;
  }

  .faculty-title {
    font-size: 30px;
  }

  .faculty-description {
    font-size: 15px;
  }

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

}

/* =========================
   MOBILE (≤768px)
========================= */
@media (max-width: 768px) {

  .conference-banner {
    height: 50vh;
    text-align: center;
  }

  .banner-content {
    padding-left: 0;
  }

  .banner-title {
    font-size: 36px;
  }

  .conference-info {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    padding: 14px 16px;
  }

  .about-conference-section {
    padding: 50px 20px;
  }

  .about-title {
    font-size: 26px;
    text-align: center;
  }

  .about-text {
    font-size: 14px;
    text-align: left;
  }

  .faculty-about-section {
    padding: 50px 20px;
    text-align: center;
  }

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

  .faculty-description {
    font-size: 14px;
    text-align: left;
  }

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

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

}

/* =========================
   SMALL MOBILE (≤576px)
========================= */
@media (max-width: 576px) {

  .conference-banner {
    height: 45vh;
  }

  .banner-title {
    font-size: 28px;
  }

  .conference-info {
    font-size: 13px;
    padding: 12px;
  }

  .about-title {
    font-size: 22px;
  }

  .about-text {
    font-size: 13px;
  }

  .faculty-title {
    font-size: 20px;
  }

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

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

  .member-name {
    font-size: 16px;
  }

  .member-role {
    font-size: 13px;
  }

}

/* =========================
   EXTRA SMALL (≤400px)
========================= */
@media (max-width: 400px) {

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

  .conference-info {
    font-size: 12px;
  }

  .about-title {
    font-size: 20px;
  }

  .faculty-title {
    font-size: 18px;
  }

}