/* ====================================================== */
/* FINAL CORRECTED STYLES - styles.css                  */
/* ====================================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #1e3a8a;
  --secondary-color: #3b82f6;
  --accent-color: #f59e0b;
  --background-color: #f8f9fa;
  --text-color: #1f2937;
  --light-gray: #e5e7eb;
  --white: #ffffff;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--background-color);
}

html {
  scroll-behavior: smooth;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: background-color 0.3s ease;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--primary-color);
}
/* Make all logos the same height */
.logo-container img {
  height: 100px; /* adjust as needed */
  width: auto; /* maintains aspect ratio */
  object-fit: contain;
}

/* Center align them if needed */
.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 240px; /* space between logos */
  flex-wrap: wrap; /* allows responsiveness */
  margin-bottom: 24px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: var(--accent-color);
}

.cta-button {
  background: var(--accent-color);
  color: var(--white);
  padding: 12px 24px;
  border: none;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition:
    background 0.3s,
    transform 0.2s;
}

.cta-button:hover {
  background: #e55a2b;
  transform: translateY(-2px);
}

/* .mobile-menu {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary-color);
  cursor: pointer;
} */

/* Hero Section */
.hero {
  background-color: white;
  color: var(--primary-color);
  padding: 150px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 200"><path fill="rgba(255,255,255,0.1)" d="M0,100 Q300,150 600,100 T1200,100 V200 H0 Z"/></svg>')
    no-repeat bottom;
  background-size: cover;
}

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

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: var(--primary-color);
}

.hero-year {
  color: #f59e0b;
  font-size: 2rem;
  font-weight: bold;
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}

/* Style for the new theme/tagline in the hero section */
.hero-theme {
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 500;
  color: var(--primary-color);
  margin-top: 1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.logos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  justify-items: center;
  align-items: center;
  margin-bottom: 2rem;
}

.logo-img {
  max-width: 150px;
  height: auto;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.stat-card {
  background: rgba(238, 238, 249, 0.9);
  padding: 1.5rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
  font-size: 2rem;
  font-weight: bold;
  color: var(--accent-color);
}

/* Main Section Titles */
.section-title {
  display: table;
  margin: 0 auto 4rem auto;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  position: relative;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.section-title::after {
  content: "";
  width: 100%;
  height: 5px;
  background: var(--accent-color);
  position: absolute;
  bottom: -15px;
  left: 0;
}

/* About Section */
#about {
  padding: 80px 0;
}

#about h3,
#about .section-subtitle {
  font-size: 1.5rem; /* Smaller Font Size */
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
  margin-top: 2rem;
}

#about .section-subtitle {
  text-align: center;
  font-size: 1.8rem; /* Smaller Font Size */
  margin-top: 4rem;
}

#about p {
  color: #4a5568;
  line-height: 1.8;
}

#about .about-grid {
  gap: 3rem;
  margin-bottom: 3rem;
}

#about .feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
#about .feature-box {
  background: #ffffff;
  padding: 2rem;
  border-radius: 15px;
  border-left: 5px solid var(--accent-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
#about .feature-box h4 {
  color: var(--primary-color);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}
#about .feature-box ul {
  list-style-type: none;
  padding-left: 0;
}
#about .feature-box li {
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}
#about .feature-box li::before {
  content: "✔";
  color: var(--accent-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Accordion styles */
#about .accordion-container {
  max-width: 900px;
  margin: 0 auto;
}
#about .accordion-item {
  background-color: #ffffff;
  border-radius: 10px;
  margin-bottom: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}
#about .accordion-header {
  width: 100%;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 1rem 1.5rem;
  border: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#about .accordion-header:hover {
  background-color: var(--secondary-color);
}
#about .accordion-icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}
#about .accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}
#about .accordion-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  transition:
    max-height 0.4s ease-out,
    padding 0.4s ease-out;
  line-height: 1.7;
  color: #555;
}

/* Intro paragraph above "Subthemes:" */
#about .accordion-content > p:first-of-type {
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}

/* "Subthemes:" label */
#about .accordion-content p strong {
  color: var(--primary-color);
  display: inline-block;
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

#about .accordion-content ul {
  padding-left: 20px;
  margin-top: 0.5rem;
  list-style: none;
}

/* Space + a subtle left border per subtheme for scannability */
#about .accordion-content ul li {
  margin-bottom: 1.1rem;
  padding-left: 1rem;
  border-left: 3px solid #eef0f5;
}
#about .accordion-content ul li:last-child {
  margin-bottom: 1;
}
#about .accordion-content ul li strong {
  display: block;
  color: #1a1a1a;
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.accordion-item.active .accordion-content {
  max-height: 1000px;
  padding: 1.75rem 1.5rem 1.75rem 1.75rem;
}

#about .info-box-container {
  margin-top: 4rem;
}
#about .info-box {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
}
#about .info-box p {
  color: #fff;
}

#about .info-box h4 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--accent-color);
}
#about .outcomes-section {
  margin-top: 4rem;
}
#about .outcomes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
#about .outcome-card {
  background-color: var(--light-gray);
  padding: 1.5rem;
  border-radius: 10px;
  text-align: left;
}
#about .outcome-card h5 {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

#about .final-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 4rem;
}
#about .info-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
#about .info-card h4 {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* University & Institute Section */
.university {
  padding: 80px 0;
  background: var(--white);
}

.institution-block {
  margin-bottom: 4rem;
}

.institution-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.institution-content.reverse {
  direction: rtl;
}

.institution-content.reverse > * {
  direction: ltr;
}

.institution-text h3 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.institution-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  text-align: justify;
}

.institution-highlights {
  display: flex;
  gap: 2rem;
  width: 100%;
}

.highlight-item {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
  background: var(--background-color);
  border-radius: 10px;
  border-left: 4px solid var(--accent-color);
  box-sizing: border-box;
  height: 100%;
}

.highlight-icon {
  font-size: 2rem;
  color: var(--primary-color);
}

.highlight-item h4 {
  color: var(--primary-color);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.highlight-item p {
  color: var(--text-color);
  font-size: 0.9rem;
  margin: 0;
}

.institution-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-placeholder {
  background: none;
  padding: 0;
  transition: transform 0.3s ease;
}

.image-placeholder img {
  width: 500px;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0px 10px 10px 0.5px rgba(75, 75, 75, 0.1);
}

.image-placeholder:hover {
  transform: translateY(-5px);
}

/* Speakers Section */
.speakers {
  padding: 80px 0;
  background: var(--background-color);
}

.speakers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.speaker-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.speaker-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.speaker-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--light-gray);
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--primary-color);
}

.speaker-name {
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.speaker-title {
  color: var(--accent-color);
  font-weight: 500;
  margin-bottom: 1rem;
}

/* Timeline Section */
.timeline {
  padding: 80px 0;
  background: var(--white);
}

.timeline-container {
  max-width: 800px;
  margin: 0 auto;
}

.timeline-item {
  display: flex;
  margin-bottom: 2rem;
  position: relative;
}

.timeline-date {
  background: var(--accent-color);
  color: var(--white);
  padding: 1rem;
  border-radius: 10px;
  min-width: 200px;
  font-weight: bold;
  text-align: center;
}

.timeline-content {
  background: var(--light-gray);
  padding: 1rem 2rem;
  border-radius: 10px;
  margin-left: 2rem;
  flex: 1;
}

/* Registration Section */
.registration {
  padding: 80px 0;
  background: var(--background-color);
}

/* STYLES FOR THE ENHANCED REGISTRATION TABLE */
.registration-table {
  background: var(--white);
  border-radius: 15px; /* Rounded corners for the container */
  overflow: hidden; /* Ensures the header corners are rounded */
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08); /* A soft shadow */
  padding: 2rem; /* Adds space inside the card */
  margin-top: 2rem;
}

.registration-table h3 {
  font-size: 1.5rem;
  color: var(--text-color);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.registration-table table {
  width: 100%;
  border-collapse: collapse; /* Removes gaps between cells */
}

/* Styling the table header (thead) */
.registration-table th {
  background-color: var(--primary-color); /* Dark blue background */
  color: var(--white); /* White text */
  font-weight: 600;
  padding: 1rem 1.5rem;
  text-align: left;
}

/* Styling the table cells (tbody) */
.registration-table td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--light-gray); /* Separator line between rows */
  color: #333;
}

/* Removes the bottom border from the last row for a cleaner look */
.registration-table tr:last-child td {
  border-bottom: none;
}

/* Styling for the notes below the table */
.registration-table p {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #555;
  text-align: left;
}

tr:hover {
  background: rgba(255, 107, 53, 0.1);
}

/* Committee Section */
.committee {
  padding: 80px 0;
  background: var(--white);
}

.committee-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.committee-card {
  background: var(--light-gray);
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
}

.committee-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--primary-color);
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
}

/* Footer */
footer {
  width: 100%;
  background: var(--primary-color);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  margin-bottom: 1rem;
  color: var(--accent-color);
}

.footer-section p,
.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  line-height: 1.8;
}

.footer-section a:hover {
  color: var(--accent-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.7;
}

/* Utility & Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--accent-color);
  color: var(--white);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s;
  z-index: 1000;
}

.back-to-top:hover {
  transform: translateY(-2px);
}

a:focus,
button:focus {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}

/* Heading with icon styles */
.title-with-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.heading-logo {
  width: 50px;
  height: 50px;
}

/* ================================================= */
/* === FINAL RESPONSIVE STYLES (Mobile View) === */
/* ================================================= */
@media (max-width: 768px) {
  /* --- Mobile Navigation --- */
  /*.nav-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 80%;
    height: 100vh;
    background: var(--white);
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    padding-top: 5rem;
    gap: 1.5rem;
    align-items: center;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    z-index: 999;
  }
  .nav-menu.nav-menu--open {
    transform: translateX(0);
  }
  .nav-menu a {
    font-size: 1.2rem;
  }
  .cta-button {
    display: none;
  }
  .mobile-menu {
    display: block;
    z-index: 1001;
  }*/

  /* --- General Layout --- */
  section {
    padding: 60px 0;
  }
  .container {
    padding: 0 15px;
  }

  /* --- Main Section Titles (Reverted to your original style) --- */
  .section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
  }
  .section-title::after {
    width: 80px;
    height: 4px;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
  }
  /* --- Hero Section --- */
  .hero {
    padding: 120px 0 60px;
  }
  .hero h1 {
    font-size: 2.2rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  /* Make the new theme/tagline smaller on mobile */
  .hero-theme {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
  }
  .logos-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* FINAL SINGLE-LINE LOGO STYLES FOR MOBILE */
  .logo-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0.5rem;
  }

  .logo-img {
    max-width: 50px;
    object-fit: contain;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Heading with icon styles for mobile */
  .title-with-icon {
    gap: 0.5rem;
  }

  .heading-logo {
    width: 40px;
    height: 40px;
  }

  /* --- About & University Sections --- */
  .about-grid,
  .institution-content,
  .institution-content.reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
    direction: ltr;
  }
  .institution-highlights {
    flex-direction: column;
  }
  .image-placeholder img {
    width: 100%;
    max-width: 400px;
  }

  /* --- Other Sections --- */
  .speakers-grid,
  .committee-grid {
    grid-template-columns: 1fr;
  }

  /* --- Timeline Section --- */
  .timeline-item {
    flex-direction: column;
    align-items: flex-start;
  }
  .timeline-date {
    width: 100%;
    margin-bottom: 1rem;
  }
  .timeline-content {
    margin-left: 0;
  }

  /* === MOBILE STYLES FOR REGISTRATION TABLE === */
  .table-container {
    overflow-x: auto; /* Adds the horizontal scrollbar */
    -webkit-overflow-scrolling: touch; /* For smooth scrolling on iOS */
  }

  .registration-table th,
  .registration-table td {
    font-size: 0.9rem;
    white-space: nowrap; /* Prevents text from wrapping to the next line */
    padding: 0.8rem 1rem;
  }
}

/* ===== FAQ Section ===== */
.faq {
  padding: 5rem 1.5rem;
  background-color: #ffffff;
}

.faq .section-title {
  text-align: center;
  font-size: 1.5rem;
  color: #1e3a8a;
  font-weight: 700;
  margin-bottom: 2.5rem;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background-color: #f7f8fc;
  border-radius: 999px;
  overflow: hidden;
  transition:
    border-radius 0.25s ease,
    box-shadow 0.25s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.faq-item.active {
  border-radius: 24px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 1.1rem 1.75rem;
  text-align: left;
  font-family: inherit;
}

.faq-question span:first-child {
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a2e;
}

.faq-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  font-size: 1rem;
  color: #6b7280;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: #f39c12;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding 0.3s ease;
  padding: 0 1.75rem;
}

.faq-answer p {
  margin: 0 0 1.1rem;
  color: #4b5563;
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 400px;
  padding: 0 1.75rem 1.1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .faq {
    padding: 3.5rem 1rem;
  }

  .faq .section-title {
    font-size: 1.75rem;
    margin-bottom: 2rem;
  }

  .faq-question {
    padding: 1rem 1.25rem;
  }

  .faq-question span:first-child {
    font-size: 0.9rem;
  }

  .faq-answer {
    padding: 0 1.25rem;
  }

  .faq-item.active .faq-answer {
    padding: 0 1.25rem 1rem;
  }
}

@media (max-width: 480px) {
  .faq-question span:first-child {
    font-size: 0.85rem;
  }

  .faq-answer p {
    font-size: 0.85rem;
  }
}

/* ===== Conference Highlights / Slider Section ===== */
.highlights {
  padding: 5rem 1.5rem;
  background-color: #ffffff;
}

.highlights .highlights-eyebrow {
  display: block;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f39c12;
  margin-bottom: 0.6rem;
}

.highlights .section-title {
  text-align: center;
  font-size: 1.5rem;
  color: #1e3a8a;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.highlights .highlights-subtitle {
  text-align: center;
  color: #6b7280;
  font-size: 1rem;
  max-width: 620px;
  margin: 0 auto 2.5rem;
}

/* Slider */
.slider {
  position: relative;
  max-width: 1100px;
  margin: 0 auto 2.5rem;
}

.slider-track-wrapper {
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease;
}

.slider-slide {
  min-width: 100%;
  aspect-ratio: 16 / 8;
  position: relative;
}

.slider-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: #ffffff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  color: #1a1a2e;
  font-size: 1.4rem;
  z-index: 5;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.slider-arrow:hover {
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
}

.slider-arrow.prev {
  left: -1.5rem;
}

.slider-arrow.next {
  right: -1.5rem;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.slider-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #d1d5db;
  border: none;
  cursor: pointer;
  padding: 0;
  transition:
    background 0.2s ease,
    width 0.2s ease;
}

.slider-dot.active {
  background: #f39c12;
  width: 1.5rem;
  border-radius: 999px;
}

/* Stat cards */
.highlights-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.highlight-stat-card {
  background: #ffffff;
  border: 1px solid #eceef2;
  border-radius: 16px;
  padding: 1.75rem 1.25rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.highlight-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.highlight-stat-icon {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 1rem;
  border-radius: 12px;
  background: #eef1fb;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4c5fd5;
}

.highlight-stat-icon svg {
  width: 1.4rem;
  height: 1.4rem;
}

.highlight-stat-number {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 0.25rem;
}

.highlight-stat-label {
  font-size: 0.85rem;
  color: #6b7280;
}

/* Responsive */
@media (max-width: 900px) {
  .highlights-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .highlights {
    padding: 3.5rem 1rem;
  }

  .highlights .section-title {
    font-size: 1.65rem;
  }

  .slider-arrow {
    width: 2.4rem;
    height: 2.4rem;
    font-size: 1.1rem;
  }

  .slider-arrow.prev {
    left: 0.5rem;
  }

  .slider-arrow.next {
    right: 0.5rem;
  }

  .slider-slide {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 480px) {
  .highlights-stats {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .highlight-stat-number {
    font-size: 1.5rem;
  }

  .highlight-stat-card {
    padding: 1.25rem 0.75rem;
  }
}

/* ===== Modern Navbar Override ===== */
/* Keeps existing color theme (navy text + orange accent), just modernizes layout, spacing & interactions */

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

header nav.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0.9rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
}

/* Logo */
header .logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1e3a8a;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

/* Nav links */
header .nav-menu {
  display: flex;
  align-items: center;
  gap: 2.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  justify-content: center;
}

header .nav-menu li {
  position: relative;
}

header .nav-menu a {
  position: relative;
  text-decoration: none;
  color: #374151;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.4rem 0.1rem;
  transition: color 0.2s ease;
}

header .nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: #f39c12;
  border-radius: 2px;
  transition: width 0.25s ease;
}

header .nav-menu a:hover {
  color: #1a1a2e;
}

header .nav-menu a:hover::after {
  width: 100%;
}

/* CTA button */
header .cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f5a623, #f39c12);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.7rem 1.5rem;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(243, 156, 18, 0.35);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

header .cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(243, 156, 18, 0.45);
}

header .cta-button:active {
  transform: translateY(0);
}

/* Mobile menu button */
header .mobile-menu {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #1a1a2e;
  cursor: pointer;
  padding: 0.35rem;
  border-radius: 8px;
  transition: background 0.2s ease;
}

header .mobile-menu:hover {
  background: rgba(0, 0, 0, 0.05);
}

/* Responsive */
@media (max-width: 992px) {
  header .nav-menu {
    gap: 1.4rem;
  }

  header nav.container {
    padding: 0.85rem 1.5rem;
  }
}

@media (max-width: 860px) {
  header .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  header .nav-menu.open {
    max-height: 400px;
  }

  header .nav-menu li {
    width: 100%;
  }

  header .nav-menu a {
    display: block;
    width: 100%;
    padding: 0.9rem 1.5rem;
  }

  header .nav-menu a::after {
    display: none;
  }

  header .cta-button {
    display: none;
  }

  header .mobile-menu {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  header nav.container {
    flex-wrap: wrap;
    padding: 0.85rem 1.25rem;
  }
}

@media (max-width: 480px) {
  header .logo {
    font-size: 1.25rem;
  }
}

/* ====================================================== */
/* CONFERENCE VENUE SECTION                               */
/* ====================================================== */

.venue-section {
  padding: 80px 0;
  background-color: #fdfdfd; /* Slight off-white to differentiate from sections */
}

.venue-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

/* Left Side Info */
.venue-title {
  font-size: 2rem;
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 2.5rem;
  padding-left: 1rem;
  border-left: 5px solid var(--accent-color);
  line-height: 1.2;
}

.venue-detail {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.venue-icon {
  flex-shrink: 0;
  width: 45px;
  height: 45px;
  background-color: rgba(245, 158, 11, 0.15); /* Light orange background */
  color: var(--accent-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.venue-text h3 {
  font-size: 1.15rem;
  color: var(--primary-color);
  margin-bottom: 0.35rem;
  font-weight: 600;
}

.venue-text p {
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

.venue-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--accent-color); /* Solid orange by default */
  color: #ffffff;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 1rem;
  box-shadow: 0 4px 10px rgba(245, 158, 11, 0.3); /* Subtle drop shadow */
}

.venue-btn:hover {
  transform: translateY(-2px);
  /* The inset white shadow gives the shiny inner edge, while the outer shadow creates a glow */
  box-shadow:
    0 0 15px rgba(245, 158, 11, 0.7),
    inset 0 0 10px rgba(255, 255, 255, 0.6);
}

/* Right Side Map Container */
.venue-map-container {
  width: 100%;
  height: 400px;
  background-color: #f1f2f6;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
}

.venue-map-container iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

/* Responsive Styles for Mobile */
@media (max-width: 768px) {
  .venue-grid {
    grid-template-columns: 1fr; /* Stacks the text and map on top of each other */
    gap: 3rem;
  }

  .venue-title {
    font-size: 1.75rem;
  }

  .venue-map-container {
    height: 350px;
  }
}
/* .patrons-list {
    text-align: center;
    margin: 40px auto;
    padding: 20px;
    max-width: 700px;
}

.patrons-list h3 {
    color: #1f3c88;
    margin-bottom: 20px;
}

.patrons-list p {
    margin: 15px 0;
    line-height: 1.8;
} */
.committee-section {
  text-align: center;
  padding: 50px 20px;
}

.committee-title {
  color: #2c4ea2;
  font-size: 42px;
  margin-bottom: 40px;
}

.committee-card {
  max-width: 700px;
  margin: auto;
  background: #ffffff;
  padding: 50px;
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-left: 5px solid orange;
}

.member-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #3562cc;
  color: white;
  font-size: 52px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 25px;
}

.committee-card h3 {
  color: #1e3f95;
  font-size: 36px;
  margin-bottom: 15px;
}
.committee-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.single-card .committee-card {
  max-width: 420px;
}
.committee-card {
  width: 280px;
  min-height: 320px;

  padding: 25px 20px;

  background: #fff;

  border-radius: 18px;

  border-left: 4px solid orange;

  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);

  text-align: center;

  transition: 0.3s ease;
}

.committee-card:hover {
  transform: translateY(-5px);
}

.member-avatar {
  width: 85px;
  height: 85px;

  margin: 0 auto 18px;

  border-radius: 50%;

  font-size: 30px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.member-name {
  font-size: 26px;

  font-weight: 700;

  line-height: 1.3;

  margin-bottom: 15px;

  color: #2f55b5;
}

.member-designation {
  font-size: 16px;

  line-height: 1.5;

  margin-bottom: 12px;

  color: #444;
}

.member-role {
  font-size: 18px;

  font-weight: 700;

  color: orange;
}

.committee-title {
  text-align: center;

  color: #2f55b5;

  font-size: 48px;

  margin-bottom: 40px;
}
