/* ============================================
   NCVERF - Pure CSS (converted from Tailwind)
   ============================================ */

@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap");

/* === CSS Variables === */
:root {
  --foreground: #011627;
  --background: #fdfffc;
  --primary: #0033AB;
  --font-montserrat: 'Montserrat', sans-serif;
  --font-inter: 'Inter', sans-serif;
}

/* === Reset & Base === */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out, border-color 0.3s ease-in-out;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-inter);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  font-family: inherit;
  background: none;
}

/* === Button Styles === */
.btn-primary {
  padding: 12px 24px;
  background-color: var(--primary);
  color: white;
  font-weight: 600;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}

.btn-secondary {
  padding: 12px 24px;
  border: 2px solid var(--primary);
  color: var(--primary);
  font-weight: 600;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  background: transparent;
}

.btn-secondary:hover {
  background-color: var(--primary);
  color: white;
  transform: translateY(-2px);
}

/* =====================
   HEADER
   ===================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background-color: rgba(253, 255, 252, 0.85);
  border-bottom: 1px solid rgba(0, 51, 171, 0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 16px;
  max-width: 1280px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .header-inner {
    padding: 20px 40px;
  }
}

.header-logo {
  flex-shrink: 0;
  transition: opacity 0.3s;
}

.header-logo:hover {
  opacity: 0.8;
}

.header-logo img {
  height: auto;
  width: auto;
  max-width: 280px;
}

@media (min-width: 640px) {
  .header-logo img {
    max-width: 320px;
  }
}

/* Desktop Navigation */
.desktop-nav {
  display: none;
  align-items: center;
  gap: 32px;
}

@media (min-width: 768px) {
  .desktop-nav {
    display: flex;
  }
}

.nav-link {
  color: var(--foreground);
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-register-btn {
  padding: 12px 24px;
  background-color: var(--primary);
  color: white;
  font-weight: 600;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  display: none;
  transition: all 0.3s ease;
}

.header-register-btn:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}

@media (min-width: 768px) {
  .header-register-btn {
    display: flex;
  }
}

/* Hamburger */
.hamburger-btn {
  display: flex;
  padding: 12px;
  min-width: 48px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(1, 22, 39, 0.1);
  transition: background-color 0.3s;
}

.hamburger-btn:hover {
  background-color: rgba(0, 51, 171, 0.1);
}

@media (min-width: 768px) {
  .hamburger-btn {
    display: none;
  }
}

.hamburger-icon {
  width: 24px;
  height: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.hamburger-line {
  width: 24px;
  height: 2px;
  background-color: var(--foreground);
  transition: all 0.3s;
}

/* Hamburger active states */
.hamburger-btn.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  border-top: 1px solid rgba(0, 51, 171, 0.2);
  background-color: rgba(253, 255, 252, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

@media (min-width: 768px) {
  .mobile-menu {
    display: none !important;
  }
}

.mobile-menu.open {
  display: block;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
}

.mobile-nav-link {
  padding: 24px;
  color: var(--foreground);
  font-weight: 500;
  border-bottom: 1px solid rgba(0, 51, 171, 0.1);
  transition: background-color 0.3s;
  display: block;
}

.mobile-nav-link:hover {
  background-color: rgba(0, 51, 171, 0.1);
}

.mobile-register-btn {
  padding: 16px 24px;
  background-color: var(--primary);
  color: var(--background);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  min-height: 48px;
  width: 100%;
  transition: all 0.3s ease;
  text-align: center;
}

.mobile-register-btn:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}

/* =====================
   HERO SECTION
   ===================== */
.hero {
  position: relative;
  width: 100%;
  min-height: 600px;
  padding-top: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

@media (min-width: 640px) {
  .hero {
    min-height: 100vh;
    padding-top: 96px;
  }
}

@media (min-width: 768px) {
  .hero {
    padding-top: 112px;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(1, 22, 39, 0.3);
  z-index: 10;
}

.hero-content {
  position: relative;
  z-index: 20;
  width: 100%;
  padding: 0 16px;
  max-width: 1152px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .hero-content {
    padding: 0 24px;
  }
}

@media (min-width: 768px) {
  .hero-content {
    padding: 0 32px;
  }
}

@media (min-width: 1024px) {
  .hero-content {
    padding: 0 48px;
  }
}

.hero-text {
  text-align: center;
}

.hero-text > * + * {
  margin-top: 24px;
}

@media (min-width: 640px) {
  .hero-text > * + * {
    margin-top: 32px;
  }
}

.hero h1 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--background);
  line-height: 1.1;
  font-family: var(--font-montserrat);
  letter-spacing: -0.025em;
}

@media (min-width: 640px) {
  .hero h1 {
    font-size: 3rem;
  }
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 3.75rem;
  }
}

@media (min-width: 1024px) {
  .hero h1 {
    font-size: 4.5rem;
  }
}

.hero-subtitle {
  font-size: 1.125rem;
  color: rgba(253, 255, 252, 0.9);
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.625;
  font-family: var(--font-inter);
  font-weight: 300;
}

@media (min-width: 640px) {
  .hero-subtitle {
    font-size: 1.25rem;
  }
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.5rem;
  }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  animation: bounce 1s infinite;
}

.scroll-indicator svg {
  width: 24px;
  height: 24px;
  color: white;
}

@keyframes bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

/* =====================
   MISSION SECTION
   ===================== */
.mission {
  width: 100%;
  padding: 64px 0;
  background-color: var(--background);
}

@media (min-width: 640px) {
  .mission {
    padding: 80px 0;
  }
}

@media (min-width: 768px) {
  .mission {
    padding: 96px 0;
  }
}

.mission-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 640px) {
  .mission-inner {
    padding: 0 40px;
  }
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

@media (min-width: 768px) {
  .mission-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}

@media (min-width: 1024px) {
  .mission-grid {
    gap: 64px;
  }
}

.mission-image-col {
  order: 2;
}

@media (min-width: 768px) {
  .mission-image-col {
    order: 1;
  }
}

.mission-image-wrapper {
  padding: 16px;
}

.mission-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mission-content-col {
  order: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (min-width: 768px) {
  .mission-content-col {
    order: 2;
  }
}

.mission-overline {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mission-overline-line {
  width: 32px;
  height: 1px;
  background-color: var(--primary);
}

.mission-overline span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--primary);
  text-transform: uppercase;
  font-family: var(--font-inter);
}

@media (min-width: 768px) {
  .mission-overline span {
    font-size: 0.875rem;
  }
}

.mission h2 {
  font-size: 26px;
  font-weight: 700;
  color: var(--foreground);
  line-height: 1.1;
  font-family: var(--font-montserrat);
}

@media (min-width: 640px) {
  .mission h2 {
    font-size: 1.875rem;
  }
}

@media (min-width: 768px) {
  .mission h2 {
    font-size: 2.25rem;
  }
}

.mission p {
  font-size: 1rem;
  color: rgba(1, 22, 39, 0.8);
  font-family: var(--font-inter);
  text-align: justify;
}

@media (min-width: 768px) {
  .mission p {
    font-size: 1.125rem;
  }
}

/* =====================
   FOUNDING MEMBERS
   ===================== */
.founding-members {
  width: 100%;
  padding: 64px 0;
  background-color: var(--background);
}

@media (min-width: 640px) {
  .founding-members {
    padding: 56px 0;
  }
}

@media (min-width: 768px) {
  .founding-members {
    padding: 64px 0;
  }
}

.founding-members-inner {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 640px) {
  .founding-members-inner {
    padding: 0 24px;
  }
}

@media (min-width: 768px) {
  .founding-members-inner {
    padding: 0 32px;
  }
}

@media (min-width: 1024px) {
  .founding-members-inner {
    padding: 0 48px;
  }
}

.founding-header {
  text-align: center;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .founding-header {
    margin-bottom: 64px;
  }
}

.founding-header-overline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
}

.founding-header-overline .line {
  width: 32px;
  height: 1px;
  background-color: var(--primary);
}

.founding-header-overline span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--primary);
  text-transform: uppercase;
  font-family: var(--font-inter);
}

@media (min-width: 768px) {
  .founding-header-overline span {
    font-size: 0.875rem;
  }
}

.founding-members h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--foreground);
  font-family: var(--font-montserrat);
  margin-bottom: 16px;
}

@media (min-width: 640px) {
  .founding-members h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 768px) {
  .founding-members h2 {
    font-size: 3rem;
  }
}

.founding-header p {
  font-size: 1rem;
  color: rgba(1, 22, 39, 0.7);
  max-width: 672px;
  margin: 0 auto;
  font-family: var(--font-inter);
}

@media (min-width: 768px) {
  .founding-header p {
    font-size: 1.125rem;
  }
}

/* Members Grid */
.members-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (min-width: 1024px) {
  .members-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) {
  .members-grid {
    gap: 32px;
  }
}

.member-card {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(1, 22, 39, 0.1);
  overflow: hidden;
  transition: border-color 0.3s;
}

.member-card:hover {
  border-color: rgba(0, 51, 171, 0.3);
}

/* Third member centering on 2-col */
.member-card.center-last {
  grid-column: span 2;
  width: 50%;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .member-card.center-last {
    grid-column: span 1;
    width: auto;
    margin: 0;
  }
}

.member-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background-color: rgba(1, 22, 39, 0.05);
}

.member-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.7s ease;
}

.member-card:hover .member-image-wrapper img {
  filter: grayscale(100%);
  transform: scale(1.1);
}

.member-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-top: 1px solid rgba(1, 22, 39, 0.1);
}

@media (min-width: 768px) {
  .member-info {
    padding: 32px;
  }
}

.member-info h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--foreground);
  font-family: var(--font-montserrat);
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  .member-info h3 {
    font-size: 1.25rem;
  }
}

.member-info .title {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: var(--font-inter);
}

@media (min-width: 768px) {
  .member-info .title {
    font-size: 0.875rem;
  }
}

.member-info .designation {
  font-size: 0.75rem;
  color: rgba(1, 22, 39, 0.6);
  font-family: var(--font-inter);
  line-height: 1.625;
}

@media (min-width: 768px) {
  .member-info .designation {
    font-size: 0.875rem;
  }
}

/* =====================
   EVENT HIGHLIGHT
   ===================== */
.event-highlight {
  width: 100%;
  padding: 32px 0;
  background-color: var(--background);
}

@media (min-width: 640px) {
  .event-highlight {
    padding: 40px 0;
  }
}

@media (min-width: 768px) {
  .event-highlight {
    padding: 48px 0;
  }
}

.event-highlight-inner {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 640px) {
  .event-highlight-inner {
    padding: 0 24px;
  }
}

@media (min-width: 768px) {
  .event-highlight-inner {
    padding: 0 32px;
  }
}

.event-card {
  position: relative;
  background: white;
  overflow: hidden;
  border: 1px solid rgba(1, 22, 39, 0.1);
}

.event-venue-image {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 192px;
  border-bottom: 1px solid rgba(1, 22, 39, 0.1);
}

@media (min-width: 640px) {
  .event-venue-image {
    height: 320px;
  }
}

@media (min-width: 768px) {
  .event-venue-image {
    height: 384px;
  }
}

.event-venue-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .event-content {
    padding: 32px;
  }
}

.event-badge {
  margin-bottom: 8px;
}

.event-badge span {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--primary);
  background-color: rgba(0, 51, 171, 0.1);
  padding: 8px 16px;
  display: inline-block;
  border: 1px solid rgba(0, 51, 171, 0.2);
}

.event-title-section {
  margin-bottom: 32px;
}

.event-title-section > * + * {
  margin-top: 12px;
}

.event-title-section h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--foreground);
  font-family: var(--font-montserrat);
  line-height: 1.1;
}

@media (min-width: 640px) {
  .event-title-section h2 {
    font-size: 2.25rem;
  }
}

.event-title-section .subtitle {
  font-size: 1.125rem;
  color: var(--primary);
  font-weight: 600;
  font-family: var(--font-inter);
}

/* Event Details (Date, Location) */
.event-details {
  margin-bottom: 24px;
}

.event-details > * + * {
  margin-top: 12px;
}

.event-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.event-detail-icon {
  flex-shrink: 0;
  padding-top: 4px;
}

.event-detail-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.event-detail-label {
  font-size: 0.875rem;
  color: rgba(1, 22, 39, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: var(--font-inter);
  font-weight: 600;
}

.event-detail-value {
  font-size: 1rem;
  color: var(--foreground);
  font-family: var(--font-inter);
}

/* CTA Buttons */
.event-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(1, 22, 39, 0.1);
}

@media (min-width: 640px) {
  .event-cta {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .event-cta {
    margin-bottom: 48px;
    padding-bottom: 48px;
  }
}

.event-cta > * {
  flex: 1;
}

/* Program Chairs in Event */
.event-chairs {
  margin-bottom: 16px;
  text-align: center;
}

.event-chairs h3 {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(1, 22, 39, 0.6);
  font-family: var(--font-inter);
  font-weight: 600;
  margin-bottom: 24px;
}

.event-chairs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
  justify-items: center;
  max-width: 672px;
  margin-left: auto;
  margin-right: auto;
}

.chair-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.chair-avatar {
  position: relative;
  width: 112px;
  height: 112px;
  margin-bottom: 12px;
  overflow: hidden;
  border-radius: 9999px;
}

.chair-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chair-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--foreground);
  font-family: var(--font-montserrat);
  margin-bottom: 4px;
  text-align: center;
}

@media (min-width: 768px) {
  .chair-name {
    font-size: 1.25rem;
  }
}

.chair-designation {
  font-size: 0.75rem;
  color: rgba(1, 22, 39, 0.7);
  font-family: var(--font-inter);
  line-height: 1.625;
  text-align: center;
}

@media (min-width: 768px) {
  .chair-designation {
    font-size: 0.875rem;
  }
}

.browse-faculty-btn {
  display: inline-block;
  padding: 8px 24px;
  border: 1px solid var(--primary);
  color: var(--primary);
  font-weight: 600;
  font-family: var(--font-inter);
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.browse-faculty-btn:hover {
  background-color: var(--primary);
  color: var(--background);
  transform: translateY(-2px);
}

/* =====================
   FOOTER
   ===================== */
.footer {
  width: 100%;
  background-color: var(--foreground);
  color: var(--background);
}

.footer-main {
  max-width: 1152px;
  margin: 0 auto;
  padding: 48px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 640px) {
  .footer-main {
    padding: 48px 24px;
  }
}

@media (min-width: 768px) {
  .footer-main {
    padding: 48px 32px;
  }
}

@media (min-width: 1024px) {
  .footer-main {
    padding: 48px;
  }
}

.footer-logo {
  flex-shrink: 0;
  transition: opacity 0.3s;
}

.footer-logo:hover {
  opacity: 0.8;
}

.footer-logo img {
  height: auto;
  width: auto;
  max-width: 280px;
}

@media (min-width: 640px) {
  .footer-logo img {
    max-width: 320px;
  }
}

.footer-bottom {
  max-width: 1152px;
  margin: 0 auto;
  padding: 20px 16px;
}

@media (min-width: 640px) {
  .footer-bottom {
    padding: 20px 24px;
  }
}

@media (min-width: 768px) {
  .footer-bottom {
    padding: 24px 32px;
  }
}

@media (min-width: 1024px) {
  .footer-bottom {
    padding: 24px 48px;
  }
}

.footer-copyright {
  font-size: 0.75rem;
  color: rgba(253, 255, 252, 0.6);
  font-family: var(--font-inter);
  text-align: center;
}

/* =====================
   SYMPOSIUM PAGE
   ===================== */
.symposium-details {
  width: 100%;
  padding: 96px 0 0;
  background-color: var(--background);
}

.symposium-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 640px) {
  .symposium-inner {
    padding: 0 24px;
  }
}

@media (min-width: 768px) {
  .symposium-inner {
    padding: 0 32px;
  }
}

.symposium-featured-image {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 192px;
  border-bottom: 1px solid rgba(1, 22, 39, 0.1);
}

@media (min-width: 640px) {
  .symposium-featured-image {
    height: 320px;
  }
}

@media (min-width: 768px) {
  .symposium-featured-image {
    height: 384px;
  }
}

.symposium-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Event Details Grid */
.symposium-details-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin: 48px 0;
}

@media (min-width: 768px) {
  .symposium-details-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
}

.symposium-detail-item {
  text-align: center;
}

@media (min-width: 768px) {
  .symposium-detail-item:first-child {
    border-right: 4px solid var(--primary);
    padding-right: 24px;
  }

  .symposium-detail-item:last-child {
    padding-left: 24px;
  }
}

.symposium-detail-item .label {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(1, 22, 39, 0.6);
  font-family: var(--font-inter);
  font-weight: 600;
  margin-bottom: 8px;
}

.symposium-detail-item .value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  font-family: var(--font-montserrat);
}

.symposium-detail-item .sub {
  font-size: 0.875rem;
  color: rgba(1, 22, 39, 0.7);
  margin-top: 8px;
  font-family: var(--font-inter);
}

/* Register Now CTA */
.symposium-cta {
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .symposium-cta {
    margin-bottom: 64px;
  }
}

.symposium-register-btn {
  padding: 16px 40px;
  background-color: var(--primary);
  color: var(--background);
  font-weight: 700;
  font-family: var(--font-montserrat);
  font-size: 1.125rem;
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .symposium-register-btn {
    padding: 20px 64px;
    font-size: 1.5rem;
  }
}

.symposium-register-btn:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}

/* Event Overview */
.symposium-overview {
  border-top: 1px solid rgba(1, 22, 39, 0.1);
  padding-top: 24px;
}

@media (min-width: 768px) {
  .symposium-overview {
    padding-top: 32px;
  }
}

.symposium-overview h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  font-family: var(--font-montserrat);
  margin-bottom: 24px;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .symposium-overview h2 {
    font-size: 1.875rem;
  }
}

.symposium-overview-text > * + * {
  margin-top: 12px;
}

.symposium-overview-text p {
  color: rgba(1, 22, 39, 0.8);
  font-family: var(--font-inter);
  text-align: justify;
}

/* Schedules Section */
.schedules-section {
  width: 100%;
  padding: 48px 0;
  background-color: rgba(1, 22, 39, 0.05);
  border-top: 1px solid rgba(1, 22, 39, 0.1);
}

.schedules-inner {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 640px) {
  .schedules-inner {
    padding: 0 24px;
  }
}

@media (min-width: 768px) {
  .schedules-inner {
    padding: 0 32px;
  }
}

.schedules-header {
  margin-bottom: 24px;
  text-align: center;
}

@media (min-width: 768px) {
  .schedules-header {
    margin-bottom: 32px;
  }
}

.schedules-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  font-family: var(--font-montserrat);
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .schedules-header h2 {
    font-size: 1.875rem;
  }
}

.schedules-header p {
  font-size: 0.875rem;
  color: rgba(1, 22, 39, 0.7);
  font-family: var(--font-inter);
}

@media (min-width: 768px) {
  .schedules-header p {
    font-size: 1rem;
  }
}

.schedules-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  place-items: center;
}

@media (min-width: 768px) {
  .schedules-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.schedule-item {
  width: 100%;
  border: 1px solid rgba(1, 22, 39, 0.2);
  overflow: hidden;
}

.schedule-item img {
  width: 100%;
  height: auto;
}

.schedules-note {
  margin-top: 48px;
  padding: 24px;
  border: 1px solid rgba(0, 51, 171, 0.2);
  background-color: rgba(0, 51, 171, 0.05);
}

@media (min-width: 768px) {
  .schedules-note {
    margin-top: 64px;
    padding: 32px;
  }
}

.schedules-note p {
  font-size: 0.875rem;
  color: rgba(1, 22, 39, 0.8);
  font-family: var(--font-inter);
}

@media (min-width: 768px) {
  .schedules-note p {
    font-size: 1rem;
  }
}

.schedules-note strong {
  color: var(--foreground);
  font-weight: 600;
}

/* =====================
   FACULTIES PAGE
   ===================== */
.faculties-section {
  width: 100%;
  padding: 112px 0 64px;
  background-color: var(--background);
}

.faculties-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 640px) {
  .faculties-inner {
    padding: 0 24px;
  }
}

@media (min-width: 768px) {
  .faculties-inner {
    padding: 0 32px;
  }
}

@media (min-width: 1024px) {
  .faculties-inner {
    padding: 0 48px;
  }
}

/* Program Chairs on Faculty page */
.faculty-chairs {
  margin-bottom: 64px;
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
}

.faculty-chairs-header {
  text-align: center;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .faculty-chairs-header {
    margin-bottom: 64px;
  }
}

.faculty-chairs-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--font-montserrat);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  .faculty-chairs-header h2 {
    font-size: 1.875rem;
  }
}

.faculty-chairs-header .underline {
  width: 64px;
  height: 2px;
  background-color: var(--primary);
  margin: 0 auto;
}

.faculty-chairs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .faculty-chairs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
  }
}

/* Faculty list header */
.faculty-list-header {
  text-align: center;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .faculty-list-header {
    margin-bottom: 64px;
  }
}

.faculty-list-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--font-montserrat);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .faculty-list-header h2 {
    font-size: 1.875rem;
  }
}

/* Tabs */
.faculty-tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .faculty-tabs {
    margin-bottom: 64px;
  }
}

.faculty-tab {
  padding: 8px 16px;
  border: 1px solid rgba(0, 51, 171, 0.3);
  color: var(--foreground);
  font-family: var(--font-inter);
  font-weight: 600;
  transition: all 0.3s;
}

@media (min-width: 768px) {
  .faculty-tab {
    padding: 16px 32px;
  }
}

.faculty-tab:hover {
  border-color: rgba(0, 51, 171, 0.6);
}

.faculty-tab.active {
  background-color: var(--primary);
  color: var(--background);
  border-color: var(--primary);
}

.faculty-list-description {
  font-size: 1rem;
  color: rgba(1, 22, 39, 0.7);
  max-width: 672px;
  margin: 0 auto;
  font-family: var(--font-inter);
}

@media (min-width: 768px) {
  .faculty-list-description {
    font-size: 1.125rem;
  }
}

/* Faculty Grid */
.faculty-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (min-width: 1024px) {
  .faculty-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) {
  .faculty-grid {
    gap: 32px;
  }
}

.faculty-card {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(1, 22, 39, 0.1);
  overflow: hidden;
  transition: border-color 0.3s;
}

.faculty-card:hover {
  border-color: rgba(0, 51, 171, 0.3);
}

.faculty-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background-color: rgba(1, 22, 39, 0.05);
}

.faculty-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.7s ease;
}

.faculty-card:hover .faculty-image-wrapper img {
  filter: grayscale(100%);
  transform: scale(1.1);
}

.faculty-card-info {
  padding: 8px;
  padding-top: 12px;
  padding-bottom: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-top: 1px solid rgba(1, 22, 39, 0.1);
}

@media (min-width: 768px) {
  .faculty-card-info {
    padding: 32px;
  }
}

.faculty-card-info h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--foreground);
  font-family: var(--font-montserrat);
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  .faculty-card-info h3 {
    font-size: 1.25rem;
  }
}

.faculty-card-info .designation {
  font-size: 0.75rem;
  color: rgba(1, 22, 39, 0.6);
  font-family: var(--font-inter);
  line-height: 1.625;
}

@media (min-width: 768px) {
  .faculty-card-info .designation {
    font-size: 0.875rem;
  }
}

/* Center last odd card */
.faculty-card.center-last {
  grid-column: span 2;
  width: 50%;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .faculty-card.center-last {
    grid-column: span 1;
    width: auto;
    margin: 0;
  }
}

/* Utility: w-full */
.w-full { width: 100%; }


/* =====================
   ALL EVENTS SECTION
   ===================== */
.all-events {
  width: 100%;
  padding: 32px 0;
  margin-bottom: 64px;
  background-color: var(--background);
}

@media (min-width: 640px) {
  .all-events {
    padding: 40px 0;
  }
}

@media (min-width: 768px) {
  .all-events {
    padding: 48px 0;
  }
}

.all-events-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 640px) {
  .all-events-inner {
    padding: 0 40px;
  }
}

.all-events-header {
  text-align: center;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .all-events-header {
    margin-bottom: 64px;
  }
}

.all-events-header-overline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
}

.all-events-header-overline .line {
  width: 32px;
  height: 1px;
  background-color: var(--primary);
}

.all-events-header-overline span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--primary);
  text-transform: uppercase;
  font-family: var(--font-inter);
}

@media (min-width: 768px) {
  .all-events-header-overline span {
    font-size: 0.875rem;
  }
}

.all-events-header h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--foreground);
  font-family: var(--font-montserrat);
  margin-bottom: 16px;
}

@media (min-width: 640px) {
  .all-events-header h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 768px) {
  .all-events-header h2 {
    font-size: 3rem;
  }
}

.all-events-header p {
  font-size: 1rem;
  color: rgba(1, 22, 39, 0.7);
  max-width: 672px;
  margin: 0 auto;
  font-family: var(--font-inter);
}

@media (min-width: 768px) {
  .all-events-header p {
    font-size: 1.125rem;
  }
}

.all-events-grid {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
}

@media (min-width: 768px) {
  .all-events-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.event-card-item {
  cursor: pointer;
  width: 100%;
  transition: opacity 0.3s;
}

.event-card-item:hover {
  opacity: 0.9;
}

@media (min-width: 768px) {
  .event-card-item {
    width: 320px;
  }
}

.event-card-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Modal Styles */
.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background-color: white;
  width: 100%;
  max-width: 1024px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(1, 22, 39, 0.1);
  position: relative;
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.modal-overlay.open .modal-content {
  transform: scale(1);
}

@media (min-width: 768px) {
  .modal-content {
    width: 91.666667%;
  }
}

.modal-close-btn {
  position: absolute;
  right: 24px;
  top: 16px;
  color: var(--foreground);
  font-size: 1.875rem;
  font-weight: 300;
  transition: opacity 0.3s;
  z-index: 60;
  background: white;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.modal-close-btn:hover {
  opacity: 0.7;
}

@media (min-width: 640px) {
  .modal-close-btn {
    font-size: 3rem;
  }
}

.modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 32px;
}

.modal-pages-grid {
  display: grid;
  gap: 32px;
}

.modal-pages-grid.single-page {
  grid-template-columns: 1fr;
  justify-content: center;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .modal-pages-grid.single-page {
    width: 384px;
  }
}

@media (min-width: 768px) {
  .modal-pages-grid.multi-page {
    grid-template-columns: repeat(2, 1fr);
  }
}

.modal-page-item {
  width: 100%;
}

.modal-page-item img {
  width: 100%;
  height: auto;
  object-fit: contain;
}