/* ================= GLOBAL ================= */
body {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  font-weight: 400;
  color: #222;
}

/* ================= HERO FINAL FIX ================= */
/* ================= HERO SLIDER ================= */
.hero {
  position: relative;
  height: 520px;
}

/* EACH SLIDE */
.hero-slide {
  height: 520px;
  background-size: cover;
  background-position: center;
}

/* DARK LEFT GRADIENT */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  color: #fff;

  background: linear-gradient(
    to right,
    rgba(0,0,0,0.85) 0%,
    rgba(0,0,0,0.7) 40%,
    rgba(0,0,0,0.3) 70%,
    rgba(0,0,0,0.05) 100%
  );
}

/* TEXT */
.hero-content h1 {
  font-size: 52px;
  font-weight: 700;
}

.hero-sub {
  font-size: 18px;
  color: #ddd;
}

/* INFO */
.hero-info p {
  margin: 6px 0;
  font-size: 15px;
}

/* RIGHT LOGOS */
.hero-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.logo-card {
  background: #fff;
  padding: 12px;
  border-radius: 12px;
  width: 180px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.logo-card img {
  max-width: 100%;
}

/* DOTS */
.carousel-indicators button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.carousel-indicators .active {
  background-color: #C8102E;
}
.hero-info i {
  color: #ff4d4d;
  width: 20px;
}
/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .hero-img {
    height: 420px;
  }

  .hero-overlay {
    padding: 30px 15px;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-right {
    display: none;
  }
}

/* ================= SECTIONS ================= */
.section {
  padding: 60px 0;
}

/* ================= TRACK ================= */
.track-card {
  background: #fff;
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 10px;
  text-align: center;
}

/* ================= SPEAKER ================= */
.speaker {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}
.speaker img {
  width: 100px;
  border-radius: 50%;
  margin-bottom: 10px;
}

/* ================= DATES ================= */
.dates li {
  margin-bottom: 10px;
}

/* ================= CTA ================= */
.cta {
  background: #C8102E;
  color: white;
  padding: 30px 0;
}

/* ================= HEADER (FINAL CLEAN) ================= */
.top-header {
  background: #fff;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  height: 70px;
}

/* TITLE */
.title-block h5 {
  font-size: 18px;
  font-weight: 700;
  color: #C8102E;
  margin: 0;
  font-weight: 600;
}

.title-block p {
  font-size: 12.5px;
  color: #444;
  margin: 0;
  line-height: 1.25;
  font-weight: 600;
}
.top-header {
  border-top: 3px solid #C8102E;
}
.title-block {
  border-left: 2px solid #eee;
  padding-left: 12px;
}

/* RIGHT SIDE */
.ucsi-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.org-text {
  font-size: 11px;
  color: #777;
  font-weight: 600;
}

.ucsi-logo {
  height: 50px;
}
.location {
  font-size: 11px;
  color: #555;
  font-weight: 600;
}

/* ================= NAVBAR ================= */
.main-nav {
  background: linear-gradient(90deg, #c8102e, #b30f2a);
  padding: 10px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.navbar-nav {
  align-items: center;
}

.navbar-nav .nav-item {
  margin-right: 12px;
}

.navbar-nav .nav-link {
  font-size: 15px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 10px;
  color: #fff !important;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  background: rgba(255,255,255,0.15);
}

.navbar-nav .nav-link.active {
  background: #000;
  padding: 10px 22px;
  border-radius: 12px;
  font-weight: 600;
}

/* ================= BUTTONS ================= */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ================= DROPDOWN ================= */
.dropdown-menu {
  border: none;
  border-radius: 10px;
  padding: 8px 0;
}

.dropdown-item {
  padding: 10px 20px;
}

.dropdown-item:hover {
  background: #f5f5f5;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .logo {
    height: 45px;
  }

  .title-block p {
    display: none;
  }

  .nav-actions {
    margin-top: 10px;
  }
}
.carousel-item.active .hero-slide {
  animation: zoomHero 10s ease-in-out;
}

@keyframes zoomHero {
  from { transform: scale(1); }
  to { transform: scale(1.05); }
}
.submit-btn {
  transition: all 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

/* COMMON BUTTON BASE (IMPORTANT) */
.submit-btn,
.register-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 44px;                 /* FIXED HEIGHT */
  padding: 0 22px;              /* horizontal only */

  font-size: 15px;
  font-weight: 600;

  border-radius: 10px;
  line-height: 1;

  transition: all 0.3s ease;
}

/* HOVER EFFECT */
.register-btn {
  background: rgba(0, 0, 0, 0.45);
  color: #fff;

  border: 1.5px solid rgba(255,255,255,0.6);

  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.register-btn:hover {
  background: #fff;
  color: #C8102E;

  border-color: #fff;

  transform: translateY(-2px);
}

.submit-btn {
  background: #e63946;
  color: #fff;
  border: none;
}

.submit-btn:hover {
  background: #c81d2a;
  transform: translateY(-2px);
}
.hero-btns {
  display: flex;
  gap: 12px;
}

@media (max-width: 768px) {
  .hero-btns {
    flex-direction: column;
    gap: 10px;
  }

  .submit-btn,
  .register-btn {
    width: 100%;
  }
}
.submit-btn:active,
.register-btn:active {
  transform: scale(0.97);
}

/* ================= ABOUT SECTION ================= */

/* ================= ABOUT SECTION ================= */
.about-section {
  padding: 60px 0;
  background: #f7f7f7;
}

/* BOX */
.about-box {
  background: #fff;
  padding: 25px;
  border-radius: 14px;

  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  height: 100%;
}

/* TITLE */
.section-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.section-title span {
  color: #C8102E;
}

/* TEXT */
.about-box p {
  font-size: 14px;
  color: #555;
}

/* LIST */
.about-list {
  list-style: none;
  padding: 0;
  margin-top: 10px;
}

.about-list li {
  font-size: 14px;
  margin-bottom: 6px;
}

.about-list i {
  color: #e63946;
  margin-right: 8px;
}

/* IMAGE */
.about-img {
  width: 100%;
  border-radius: 10px;
}

/* BUTTON */
.about-btn {
  display: inline-block;
  margin-top: 12px;

  background: #e63946;
  color: #fff;

  padding: 8px 18px;
  border-radius: 8px;
  font-size: 14px;
}

.about-btn:hover {
  background: #c81d2a;
}

/* HOVER */
.about-box:hover {
  transform: translateY(-3px);
  transition: 0.3s ease;
}
.about-section {
  padding: 60px 0;
  background: #f4f6f9;   /* light grey background */
}

.about-box {
  background: #ffffff;   /* PURE WHITE CARD */
  padding: 28px;
  border-radius: 18px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  height: 100%;
}

.about-img-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.about-img {
  width: 100%;
  max-width: 240px;
  border-radius: 12px;
}
.about-box p {
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
}

.about-list {
  margin-top: 10px;
}
.about-btn {
  margin-top: 12px;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .about-section {
    padding: 40px 0;
  }
}
.about-image-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.about-img {
  transition: transform 0.5s ease;
}

.about-image-card:hover .about-img {
  transform: scale(1.05);
}

/* ================= TRACKS FINAL ================= */
.tracks-section {
  padding: 70px 0;
  background: #ffffff;
}

/* ROW FIX FOR EQUAL HEIGHT */
.tracks-section .row {
  display: flex;
  flex-wrap: wrap;
}

/* CARD */
.track-card {
  background: #fff;
  border-radius: 16px;
  padding: 25px;

  border: 1px solid #eee;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);

  height: 100%;
  display: flex;
  flex-direction: column;

  text-align: left;   /* IMPORTANT */
  transition: all 0.3s ease;
}

/* HOVER */
.track-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

/* HEADER FLEX */
.track-header {
  display: flex;
  align-items: flex-start;
  gap: 5px;
  margin-bottom: 12px;
  text-align:center;
  color: #e63946;
}

/* ICON FIX */
.track-icon {
  font-size: 22px;  
  flex-shrink: 0;   /* prevents icon shrinking */
  margin-top: 3px;
}

/* TITLE FIX */
.track-card h5 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
}

/* LIST */
.track-card ul {
  padding-left: 18px;
  margin: 0;
}

.track-card ul li {
  font-size: 14px;
  margin-bottom: 6px;
  color: #444;
}

/* MAKE ALL CARDS SAME HEIGHT */
.tracks-section .col-md-4 {
  display: flex;
}
.section-heading span {
  color: #e63946;
}
.section-heading{
	font-size: 1.5rem;
	color: #000;
}

/* ================= SPEAKERS ================= */
.speakers-section {
  padding: 70px 0;
  background: #f9fafc;
}

/* CARD */
.speaker-box {
  display: flex;
  align-items: center;
  gap: 15px;

  background: #fff;
  padding: 18px;
  border-radius: 12px;

  border: 1px solid #eee;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);

  transition: all 0.3s ease;
}

.speaker-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* IMAGE */
.speaker-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

/* TEXT */
.speaker-info h5 {
  font-size: 15px;
  font-weight: 600;
  color: #e63946;
  margin-bottom: 4px;
}

.speaker-info p {
  font-size: 13px;
  color: #555;
  margin-bottom: 4px;
}

.speaker-info span {
  font-size: 13px;
  color: #333;
}

/* BUTTON */
.view-btn {
  display: inline-block;
  margin-top: 10px;

  background: #e63946;
  color: #fff;

  padding: 10px 25px;
  border-radius: 8px;

  font-size: 14px;
  font-weight: 600;

  transition: 0.3s;
}

.view-btn:hover {
  background: #c81d2a;
}
/* SCROLLER */
.speaker-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 10px;

  scroll-behavior: smooth;
}

/* HIDE SCROLLBAR (OPTIONAL) */
.speaker-scroll::-webkit-scrollbar {
  height: 6px;
}
.speaker-scroll::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

/* FIX CARD WIDTH */
.speaker-box {
  min-width: 320px;   /* IMPORTANT */
  max-width: 320px;

  display: flex;
  align-items: center;
  gap: 15px;

  background: #fff;
  padding: 18px;
  border-radius: 12px;

  border: 1px solid #eee;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);

  transition: 0.3s;
}

/* SAME HEIGHT FOR ALL */
.speaker-box {
  height: 120px;   /* FIX HEIGHT */
}

/* PREVENT SHRINK */
.speaker-box {
  flex-shrink: 0;
}

/* HOVER */
.speaker-box:hover {
  transform: translateY(-4px);
}

/* IMAGE */
.speaker-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

/* TEXT FIX */
.speaker-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* NAME */
.speaker-info h5 {
  font-size: 15px;
  color: #e63946;
  margin-bottom: 4px;
}

/* ORG */
.speaker-info p {
  font-size: 13px;
  margin: 0;
}

/* EXPERTISE */
.speaker-info span {
  font-size: 12.5px;
  color: #444;
}
/* WRAPPER */
.speaker-slider-wrapper {
  position: relative;
  padding: 0 40px;   /* SPACE FOR ARROWS */
}

/* SLIDER */
.speaker-slider {
  display: flex;
  gap: 20px;
  overflow: hidden;
}

/* CARD */
.speaker-box {
  min-width: calc((100% - 40px) / 3);  /* EXACT 3 CARDS */
  max-width: calc((100% - 40px) / 3);

  height: 120px;
  display: flex;
  align-items: center;
  gap: 15px;

  flex-shrink: 0;
}

/* IMAGE */
.speaker-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

/* TEXT */
.speaker-info h5 {
  font-size: 15px;
  color: #e63946;
  margin: 0 0 4px;
}

.speaker-info p {
  font-size: 13px;
  margin: 0;
}

.speaker-info span {
  font-size: 12px;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  width: 42px;
  height: 42px;

  border-radius: 50%;
  background: #fff;
  border: 1px solid #ddd;

  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  z-index: 10;
}

/* LEFT */
.slider-btn.left {
  left: 5px;   /* INSIDE */
}

/* RIGHT */
.slider-btn.right {
  right: 5px;  /* INSIDE */
}

/* HOVER */
.slider-btn:hover {
  background: #e63946;
  color: #fff;
}
h1, h2, h3, h4, h5 {
  font-weight: 600;   /* from 500 → 600 */
  letter-spacing: 0.2px;
}
.section-heading {
  font-weight: 700;   /* stronger like your design */
  letter-spacing: 0.5px;
}
.navbar-nav .nav-link {
  font-weight: 600;
}
.hero-content h1 {
  font-weight: 700;
}
.track-card h5 {
  font-weight: 600;
}
.speaker-info h5 {
  font-weight: 600;
}
.submit-btn,
.register-btn,
.about-btn,
.view-btn {
  font-weight: 600;
}
/* ================= INFO SECTION ================= */
.info-section {
  padding: 70px 0;
  background: #f9fafc;
}

/* CARD */
.info-box {
  background: #fff;
  padding: 25px;
  border-radius: 16px;

  border: 1px solid #eee;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);

  height: 100%;
}

/* ================= GALLERY ================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 10px;
}

.gallery-grid img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;

  transition: 0.3s;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

/* ================= DATES ================= */
.dates-list {
  list-style: none;
  padding: 0;
  margin-top: 10px;
}

.dates-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 12px 0;
  border-bottom: 1px solid #eee;
}

/* LEFT SIDE */
.dates-list li div {
  font-size: 14px;
  color: #444;
}

.dates-list i {
  color: #e63946;
  margin-right: 8px;
}

/* DATE */
.dates-list span {
  font-size: 13px;
  font-weight: 600;
  color: #C8102E;
}
.info-section {
  background: #ffffff;   /* change from grey to white */
  padding: 80px 0;
}
/* ================= FOOTER ================= */
.footer {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #fff;
  padding: 60px 0 0;
}

/* TITLE */
.footer-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
}

/* TEXT */
.footer-text {
  font-size: 13px;
  color: #cbd5e1;
  line-height: 1.6;
}

/* LINKS */
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  text-decoration: none;
  color: #cbd5e1;
  font-size: 13px;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #e63946;
  padding-left: 5px;
}

/* CONTACT */
.footer-contact {
  font-size: 13px;
  color: #cbd5e1;
  margin-bottom: 10px;
}

.footer-contact i {
  margin-right: 8px;
  color: #e63946;
}

/* SOCIAL */
.footer-social a {
  display: inline-block;
  margin-right: 10px;

  width: 35px;
  height: 35px;

  background: rgba(255,255,255,0.1);
  color: #fff;

  text-align: center;
  line-height: 35px;
  border-radius: 50%;

  transition: 0.3s;
}

.footer-social a:hover {
  background: #e63946;
}

/* BOTTOM BAR */
.footer-bottom {
  margin-top: 40px;
  background: rgba(0,0,0,0.2);
  padding: 12px 0;
}

.footer-bottom p {
  margin: 0;
  font-size: 12px;
  color: #cbd5e1;
}

.footer-bottom a {
  font-size: 12px;
  color: #cbd5e1;
  text-decoration: none;
  margin: 0 5px;
}

.footer-bottom a:hover {
  color: #e63946;
}

/* ================= BACK TO TOP ================= */
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;

  width: 45px;
  height: 45px;

  background: #e63946;
  color: #fff;

  border: none;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 16px;
  cursor: pointer;

  box-shadow: 0 6px 20px rgba(0,0,0,0.2);

  opacity: 0;
  visibility: hidden;

  transition: all 0.3s ease;
  z-index: 999;
}

/* SHOW BUTTON */
#backToTop.show {
  opacity: 1;
  visibility: visible;
}

/* HOVER */
#backToTop:hover {
  background: #c8102e;
  transform: translateY(-3px);
}

/* ===== BANNER ===== */
/* ===== INNER BANNER ===== */
.inner-banner {
  position: relative;

  background: url('../../assets/images/banner1.jpg') center/cover no-repeat;
  padding: 90px 0;

  color: #fff;
}

/* OVERLAY */
.inner-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background: rgba(0,0,0,0.6);
}

/* CONTENT */
.banner-content {
  position: relative;
  z-index: 2;
}

/* TITLE */
.inner-banner h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

/* BREADCRUMB */
.breadcrumb-nav {
  font-size: 14px;
}

.breadcrumb-nav a {
  color: #fff;
  text-decoration: none;
}

.breadcrumb-nav a:hover {
  color: #e63946;
}

.breadcrumb-nav span {
  margin: 0 6px;
  color: #ccc;
}

.breadcrumb-nav .active {
  color: #fff;
  font-weight: 600;
}

/* ===== SCHEDULE ===== */
.schedule-section {
  padding: 70px 0;
  background: #f9fafc;
}

/* TABS */
.schedule-tabs .nav-link {
  font-weight: 600;
  color: #444;
  border: none;
}

.schedule-tabs .nav-link.active {
  background: #e63946;
  color: #fff;
  border-radius: 6px;
}

/* ITEM */
.schedule-item {
  display: flex;
  gap: 20px;

  background: #fff;
  padding: 18px;
  border-radius: 12px;

  margin-bottom: 15px;

  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* TIME */
.schedule-item .time {
  min-width: 100px;
  font-weight: 600;
  color: #e63946;
}

/* DETAILS */
.schedule-item .details h5 {
  margin-bottom: 5px;
  font-size: 16px;
}

/* HIGHLIGHT (KEYNOTE) */
.schedule-item.highlight {
  border-left: 4px solid #e63946;
}
.schedule-item {
  position: relative;
}

.schedule-item::before {
  position: absolute;
  left: -10px;
  top: 20px;

  width: 8px;
  height: 8px;
  background: #e63946;
  border-radius: 50%;
}
@media (max-width: 768px) {
  .schedule-item {
    flex-direction: column;
  }
}
.important-dates-top {
  padding: 60px 0;
  background: #ffffff;
}

.date-card {
  background: #f8f9fb;
  padding: 20px;
  border-radius: 12px;
  text-align: center;

  transition: 0.3s;
  border: 1px solid #eee;
}

.date-card i {
  font-size: 20px;
  color: #e63946;
  margin-bottom: 10px;
}

.date-card h6 {
  font-weight: 600;
  margin-bottom: 5px;
}

.date-card p {
  font-size: 14px;
  color: #555;
  margin: 0;
}

.date-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* highlight */
.date-card.highlight {
  background: #e63946;
  color: #fff;
}

.date-card.highlight i,
.date-card.highlight p {
  color: #fff;
}
.schedule-tabs {
  justify-content: center;
  border: none;
  gap: 10px;
}

.schedule-tabs .nav-link {
  border: none;
  padding: 10px 22px;

  border-radius: 30px;
  background: #f1f3f6;

  font-weight: 600;
  color: #444;

  transition: all 0.3s ease;
}

/* ACTIVE TAB */
.schedule-tabs .nav-link.active {
  background: #e63946;
  color: #fff;

  box-shadow: 0 4px 12px rgba(230,57,70,0.4);
}

/* HOVER */
.schedule-tabs .nav-link:hover {
  background: #e63946;
  color: #fff;
}
.schedule-tabs small {
  font-size: 11px;
  opacity: 0.8;
}
/* ===== TIMELINE WRAPPER ===== */
.schedule-timeline {
  position: relative;
  padding-left: 120px;
}

/* VERTICAL LINE */
.schedule-timeline::before {
  content: '';
  position: absolute;
  left: 60px;
  top: 0;
  bottom: 0;

  width: 2px;
  background: #e5e7eb;
}

/* ITEM */
.timeline-item {
  position: relative;
  margin-bottom: 30px;
}

/* TIME */
.timeline-time {
  position: absolute;
  left: -120px;
  width: 100px;

  text-align: right;
  font-weight: 600;
  color: #e63946;
}

/* DOT */
.timeline-item::before {
  content: '';
  position: absolute;
  left: 52px;
  top: 5px;

  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ccc;
}

/* CARD */
.timeline-content {
  background: #fff;
  padding: 18px;
  border-radius: 12px;

  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  border-left: 4px solid transparent;

  transition: 0.3s;
}

.timeline-content:hover {
  transform: translateY(-3px);
}

/* TITLE */
.timeline-content h5 {
  font-size: 16px;
  margin-bottom: 5px;
}

/* TAG */
.tag {
  display: inline-block;
  margin-top: 8px;
  padding: 3px 10px;
  font-size: 12px;
  border-radius: 20px;
}

/* ===== TYPES ===== */

/* KEYNOTE */
.timeline-item.keynote::before {
  background: #e63946;
}

.timeline-item.keynote .timeline-content {
  border-left-color: #e63946;
}

.keynote-tag {
  background: #ffe5e7;
  color: #e63946;
}

/* SESSION */
.timeline-item.session::before {
  background: #2563eb;
}

.timeline-item.session .timeline-content {
  border-left-color: #2563eb;
}

.session-tag {
  background: #e0ecff;
  color: #2563eb;
}

/* BREAK */
.timeline-item.break::before {
  background: #10b981;
}

.timeline-item.break .timeline-content {
  border-left-color: #10b981;
}

.break-tag {
  background: #dcfce7;
  color: #10b981;
}
@media (max-width: 768px) {

  .schedule-timeline {
    padding-left: 0;
  }

  .schedule-timeline::before {
    left: 10px;
  }

  .timeline-time {
    position: relative;
    left: 0;
    text-align: left;
    margin-bottom: 5px;
  }

  .timeline-item::before {
    left: 2px;
  }
}
.inner-banner::before {
  background: linear-gradient(
    rgba(0,0,0,0.7),
    rgba(0,0,0,0.6)
  );
}
.banner-content h1 {
  animation: fadeUp 0.6s ease;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
/* ===== SECTION ===== */
.committee-section {
  padding: 70px 0;
  background: #f9fafc;
}

/* BLOCK SPACING */
.committee-block {
  margin-bottom: 60px;
}

/* CARD */
.committee-card {
  text-align: center;
  background: #fff;
  padding: 20px;
  border-radius: 14px;

  border: 1px solid #eee;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);

  transition: 0.3s;
}

/* IMAGE */
.committee-card img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 12px;
}

/* NAME */
.committee-card h5 {
  font-size: 16px;
  font-weight: 600;
  color: #e63946;
  margin-bottom: 5px;
}

/* ORG */
.committee-card p {
  font-size: 13px;
  color: #555;
  margin: 0;
}

/* HOVER */
.committee-card:hover {
  transform: translateY(-5px);
}

/* LIST STYLE */
.committee-list {
  text-align: center;
  font-size: 14px;
  color: #444;
}

.committee-list p {
  margin-bottom: 8px;
}
/* WRAPPER */
.committee-list-modern {
  max-width: 600px;
  margin: auto;
}

/* ITEM */
.committee-item {
  display: flex;
  align-items: center;
  gap: 15px;

  background: #fff;
  padding: 15px 18px;
  border-radius: 12px;

  margin-bottom: 12px;

  border: 1px solid #eee;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);

  transition: 0.3s;
}

/* ICON */
.committee-item .icon {
  width: 45px;
  height: 45px;

  background: #ffe5e7;
  color: #e63946;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  font-size: 16px;
}

/* TEXT */
.committee-item h6 {
  margin: 0;
  font-weight: 600;
  font-size: 15px;
}

.committee-item span {
  font-size: 13px;
  color: #666;
}

/* HOVER */
.committee-item:hover {
  transform: translateY(-3px);
}
/* ===== CONTACT SECTION ===== */
.contact-section {
  padding: 70px 0;
  background: #f9fafc;
}

/* ===== CONTACT CARDS ===== */
.contact-card {
  background: #fff;
  padding: 25px;
  text-align: center;

  border-radius: 12px;
  border: 1px solid #eee;

  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.contact-card i {
  font-size: 22px;
  color: #e63946;
  margin-bottom: 10px;
}

.contact-card h5 {
  font-weight: 600;
  margin-bottom: 5px;
}

.contact-card p {
  font-size: 14px;
  color: #555;
}

.contact-card:hover {
  transform: translateY(-5px);
}

/* ===== FORM ===== */
.contact-form-box {
  background: #fff;
  padding: 25px;
  border-radius: 12px;

  border: 1px solid #eee;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}

.contact-form-box h4 {
  margin-bottom: 15px;
}

/* INPUT */
.form-control {
  border-radius: 8px;
  padding: 10px;
}

/* BUTTON */
.contact-btn {
  background: #e63946;
  color: #fff;
  padding: 10px 18px;

  border: none;
  border-radius: 8px;
  font-weight: 600;

  transition: 0.3s;
}

.contact-btn:hover {
  background: #c62828;
}

/* ===== MAP ===== */
.map-box {
  height: 100%;
  min-height: 350px;

  border-radius: 12px;
  overflow: hidden;

  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}