:root {
  --bg: #ededeb;
  --shell: #f2f1ee;
  --text: #1b1b1b;
  --muted: #4c4c4c;
  --primary: #0d4d8c;
  --primary-dark: #0a3c6f;
  --teal: #083c3f;
  --teal-soft: #dfeef1;
  --light-blue: #dfeef5;
  --line: #d8d4cf;
  --orange: #b35b00;
  --red: #b9261a;
  --yellow: #f4d03f;
  --white: #fff;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Times New Roman", Times, serif;
  background: #ffffff;
  color: var(--text);
  line-height: 1.7;
  padding-top: 70px;
}

button,
input,
textarea,
select {
  font: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

.site-shell {
  width: 100%;
  margin: 0;
  background: #ffffff;
  min-height: 100vh;
  position: relative;
}

/* ============================================
   PROFESSIONAL ACADEMIC NAVIGATION BAR
   ============================================ */

.academic-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--teal);
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  padding: 0 30px;
}

/* Navbar Logo */
.navbar-logo {
  display: flex;
  align-items: center;
  margin-right: 20px;
  gap: 12px;
}

.logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.brand-name-text {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: "Times New Roman", Times, serif;
}

.nav-menu,
.nav-links {
  display: flex;
  gap: 0;
  flex: 1;
  align-items: center;
}

.nav-item {
  color: var(--white);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 25px 16px;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
  display: flex;
  align-items: center;
  height: 100%;
  cursor: pointer;
  font-family: "Times New Roman", Times, serif;
  letter-spacing: 0.3px;
}

.nav-item:hover {
  color: var(--yellow);
  background: rgba(244, 208, 63, 0.08);
}

.nav-item.active {
  color: var(--yellow);
  font-weight: 700;
  border-bottom-color: var(--yellow);
  background: rgba(244, 208, 63, 0.08);
}

.nav-social {
  display: flex;
  gap: 16px;
  margin-left: 20px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.social-link:hover {
  color: var(--yellow);
  border-color: var(--yellow);
  background: rgba(244, 208, 63, 0.12);
  transform: translateY(-3px);
}

.hamburger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  gap: 6px;
  margin-left: 20px;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger:hover span {
  background: var(--yellow);
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
  .nav-container {
    padding: 0 20px;
  }

  .nav-item {
    padding: 25px 12px;
    font-size: 14px;
  }

  .nav-social {
    gap: 12px;
    margin-left: 12px;
  }
}

@media (max-width: 768px) {
  .academic-navbar {
    height: 70px;
  }

  .nav-container {
    padding: 0 16px;
  }

  .nav-menu,
  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--teal);
    flex-direction: column;
    gap: 0;
    display: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-menu.active,
  .nav-links.active {
    display: flex;
  }

  .nav-item {
    padding: 18px 16px;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    font-size: 15px;
  }

  .nav-item.active {
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-social {
    position: absolute;
    top: 70px;
    right: 16px;
    margin-left: 0;
  }

  .hamburger,
  .menu-toggle {
    display: flex;
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 0 12px;
    height: 60px;
  }

  .nav-item {
    padding: 16px 12px;
    font-size: 14px;
  }

  .social-link {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  .hamburger span {
    width: 24px;
    height: 2.5px;
  }

  body {
    padding-top: 60px;
  }
}

/* ============================================
   SCROLLING DATES BANNER
   ============================================ */

.dates-banner {
  background: linear-gradient(90deg, #cceef9 0%, #e0f5fb 100%);
  border-bottom: 2px solid #0d4d8c;
  border-top: 1px solid #d4e8f3;
  overflow: hidden;
  padding: 14px 60px;
  position: relative;
  box-shadow: 0 2px 6px rgba(13, 77, 140, 0.05);
}

@media (max-width: 768px) {
  .dates-banner {
    padding: 12px 40px;
  }
}

@media (max-width: 480px) {
  .dates-banner {
    padding: 10px 20px;
  }
}

@media (max-width: 768px) {
  .dates-banner {
    padding: 12px 40px;
  }
}

@media (max-width: 480px) {
  .dates-banner {
    padding: 10px 20px;
  }
}

.dates-scroll-container {
  max-width: 100%;
  overflow: hidden;
  position: relative;
}

.dates-scroll-content {
  display: flex;
  gap: 20px;
  animation: scroll-left 30s linear infinite;
  padding: 0 30px;
  white-space: nowrap;
  min-width: fit-content;
}

.date-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
  color: #0d4d8c;
  flex-shrink: 0;
}

.date-item i {
  color: #0d4d8c;
  font-size: 18px;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.dates-scroll-content:hover {
  animation-play-state: paused;
}

@media (max-width: 768px) {
  .dates-banner {
    padding: 10px 0;
  }

  .dates-scroll-content {
    padding: 0 15px;
    gap: 15px;
  }

  .date-item {
    font-size: 14px;
  }

  .date-item i {
    font-size: 16px;
  }
}

.top-section {
  padding: 60px 60px 50px;
  background: linear-gradient(180deg, #f8fafb 0%, #f0f7fb 100%);
  border-bottom: 1px solid #e0eef5;
  box-shadow: 0 2px 8px rgba(13, 77, 140, 0.06);
}

@media (max-width: 1024px) {
  .top-section {
    padding: 50px 50px 40px;
  }
}

@media (max-width: 768px) {
  .top-section {
    padding: 40px 40px 30px;
  }
}

@media (max-width: 480px) {
  .top-section {
    padding: 30px 20px 25px;
  }
}

@media (max-width: 1024px) {
  .top-section {
    padding: 50px 50px 40px;
  }
}

@media (max-width: 768px) {
  .top-section {
    padding: 40px 40px 30px;
  }
}

@media (max-width: 480px) {
  .top-section {
    padding: 30px 20px 25px;
  }
}

.logo-container {
  max-width: 980px;
  margin: 0 auto 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid rgba(15, 76, 92, 0.18);
  border-radius: 20px;
  box-shadow: 0 12px 28px rgba(15, 76, 92, 0.12);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.logo-card-side {
  width: 140px;
  height: 140px;
}

.logo-card-center {
  width: 180px;
  height: 180px;
}

.logo-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  border-radius: 18px;
}

.logo-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 18px 30px rgba(15, 76, 92, 0.16);
}

.top-section-copy {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: clamp(0.95rem, 1.8vw, 1.5rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #0f4c5c;
  text-transform: none;
}

.top-section-copy h1 {
  margin: 0 auto;
  max-width: 1100px;
  font-size: clamp(1.7rem, 3vw, 3.2rem);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0d4d67;
}

.conference-tag {
  margin: 18px 0 0;
  font-size: clamp(1.2rem, 2vw, 2rem);
  font-weight: 800;
  color: #b35b00;
  letter-spacing: 0.02em;
}

.site-footer {
  background: #0c3d4a;
  color: #fff;
  margin-top: 0;
  border-top: 2px solid #0a2c35;
  width: 100%;
}

.footer-inner {
  padding: 50px 60px;
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
}

@media (max-width: 1024px) {
  .footer-inner {
    padding: 45px 50px;
  }
}

@media (max-width: 768px) {
  .footer-inner {
    padding: 40px 40px;
  }
}

@media (max-width: 480px) {
  .footer-inner {
    padding: 30px 20px;
  }
}

.footer-inner h5 {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 12px;
  font-weight: 700;
}

.footer-inner ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-inner li,
.footer-inner a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  margin-bottom: 6px;
  display: block;
}

.footer-bottom {
  text-align: center;
  margin-top: 18px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

.footer-social-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-social-icon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  padding: 6px 0;
}

.footer-social-icon:hover {
  color: #f4d03f;
  transform: translateX(4px);
}

.footer-social-icon i {
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .top-section {
    padding: 36px 20px 28px;
  }

  .logo-container {
    gap: 18px;
  }

  .logo-card-center {
    width: 160px;
    height: 160px;
  }

  .logo-card-side {
    width: 130px;
    height: 130px;
  }

  .nav-menu,
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--teal);
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-menu.active,
  .nav-links.active {
    display: flex;
  }

  .nav-item {
    padding: 18px 16px;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
  }

  .hamburger,
  .menu-toggle {
    display: flex;
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-social-links {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
  }

  .footer-social-icon {
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
  }

  .footer-social-icon:hover {
    background: rgba(244, 208, 63, 0.12);
  }
}

@media (max-width: 520px) {
  .logo-container {
    flex-direction: column;
    gap: 16px;
  }

  .logo-card-center,
  .logo-card-side {
    width: 140px;
    height: 140px;
  }

  .top-section-copy h1 {
    font-size: clamp(1.2rem, 6vw, 2.2rem);
  }

  .brand-name-text {
    font-size: 1rem;
  }

  .patron-card,
  .coord-card {
    max-width: 100%;
  }
}
/* ============================================
   IMAGES & TITLE SECTION
   ============================================ */

.images-title-section {
  padding: 40px 30px;
  text-align: center;
  background: linear-gradient(135deg, rgba(13, 77, 103, 0.04), rgba(15, 76, 90, 0.02));
  border-bottom: 2px solid #dfeef5;
}

.images-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-bottom: 35px;
  flex-wrap: wrap;
}

.image-box {
  flex-shrink: 0;
}

.section-image {
  width: 150px;
  height: 150px;
  object-fit: contain;
  border: 3px solid #0d4d67;
  border-radius: 12px;
  padding: 10px;
  background: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-image:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.section-title-text {
  max-width: 900px;
  margin: 0 auto;
}

.main-text {
  font-size: clamp(1.1rem, 2.2vw, 1.8rem);
  font-weight: 600;
  color: #0d4d67;
  line-height: 1.6;
  margin: 0;
  font-family: "Times New Roman", Times, serif;
}

.highlight-text {
  font-size: clamp(1.3rem, 2.5vw, 2.2rem);
  font-weight: 900;
  color: #b35b00;
  margin-top: 12px;
  margin-bottom: 0;
  font-family: "Times New Roman", Times, serif;
  letter-spacing: 0.02em;
}

/* Responsive - Stack images on mobile */
@media (max-width: 768px) {
  .images-title-section {
    padding: 30px 20px;
  }

  .images-container {
    gap: 25px;
  }

  .section-image {
    width: 130px;
    height: 130px;
  }

  .main-text {
    font-size: 1.1rem;
  }

  .highlight-text {
    font-size: 1.4rem;
  }

  .committee-container {
    flex-direction: column;
    gap: 30px;
  }

  .committee h2 {
    text-align: center;
    font-size: 1.25rem;
  }

  .committee p {
    text-align: center;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .images-container {
    flex-direction: column;
    gap: 20px;
  }

  .section-image {
    width: 120px;
    height: 120px;
  }

  .main-text {
    font-size: 0.95rem;
  }

  .highlight-text {
    font-size: 1.2rem;
  }
}

.brand-row {
  display: grid;
  grid-template-columns: 90px 1fr 90px;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
}

.brand-badge {
  width: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.brand-circle {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: #f7d41b;
  color: #0a3f63;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.7rem;
  border: 4px solid #0f2c46;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.brand-name {
  margin-top: 3px;
  text-align: center;
}

.brand-name span {
  display: inline-block;
  background: #0c3d6d;
  color: #f8f1c5;
  font-weight: 800;
  font-size: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 8px;
  border-radius: 5px;
  border: 2px solid #e2a90a;
}

.conference-title {
  text-align: center;
  padding: 0 6px;
  overflow: hidden;
}

.title-text {
  font-family: "Times New Roman", Times, serif;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.15;
  color: #111;
  display: block;
}

.founder-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 90px;
}

.founder-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0,0,0,0.05), rgba(0,0,0,0.2)), url("https://images.unsplash.com/photo-1500648767791-00dcc994a43e?auto=format&fit=crop&w=300&q=80") center/cover no-repeat;
  border: 3px solid #d5d0ca;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.founder-caption {
  text-align: center;
  margin-top: 3px;
  display: flex;
  flex-direction: column;
  font-size: 0.55rem;
  color: #4b4b4b;
  line-height: 1.2;
}

.founder-caption strong {
  font-size: 0.55rem;
  font-weight: 700;
  color: #212121;
}

.founder-caption small {
  font-size: 0.5rem;
  opacity: 0.8;
}

.social-bar {
  background: linear-gradient(180deg, #0a3d4d, #0c4457);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  margin-top: 10px;
  border: none;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-icons a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.3);
  font-size: 1.1rem;
  transition: background 0.3s ease;
}

.social-icons a:hover {
  background: rgba(255,255,255,0.35);
}

.menu-button {
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.notice-strip {
  background: #dceef8;
  border: 1px solid #cfe0ee;
  margin-top: 12px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  font-weight: 700;
  color: #0a3f63;
}

.notice-strip span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.notice-strip i {
  color: #2464a7;
  font-size: 1.1rem;
}

.organized-box {
  margin: 0;
  background: #f9fbfc;
  border-top: 1px solid #e0eef5;
  border-bottom: 1px solid #e0eef5;
  padding: 50px 60px 45px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(13, 77, 140, 0.04);
}

@media (max-width: 1024px) {
  .organized-box {
    padding: 45px 50px 40px;
  }
}

@media (max-width: 768px) {
  .organized-box {
    padding: 40px 40px 35px;
  }
}

@media (max-width: 480px) {
  .organized-box {
    padding: 30px 20px 25px;
  }
}

.section-kicker {
  display: block;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(1.6rem, 2vw, 2.2rem);
  color: #111;
  margin-bottom: 18px;
  text-align: center;
  font-weight: 700;
}

.organized-box h2 {
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(1.7rem, 2.5vw, 2.6rem);
  line-height: 1.25;
  margin: 0;
  color: #b35b00;
  font-weight: 700;
}

.txt-section {
  padding: 55px 60px 55px;
  background: #ffffff;
  border-bottom: 1px solid #e8eff5;
}

@media (max-width: 1024px) {
  .txt-section {
    padding: 50px 50px 50px;
  }
}

@media (max-width: 768px) {
  .txt-section {
    padding: 40px 40px 40px;
  }
}

@media (max-width: 480px) {
  .txt-section {
    padding: 30px 20px 30px;
  }
}

.txt-section h3 {
  margin: 0 0 22px;
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  font-weight: 800;
  text-align: center;
  color: var(--red);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.txt-section p, .txt-section li {
  font-family: "Times New Roman", Times, serif;
  font-size: 1.05rem;
  line-height: 2;
  color: #0a1f2e;
  text-align: justify;
  letter-spacing: 0.3px;
}

.txt-section.alt {
  background: #f5f9fc;
  margin-top: 0;
  padding-top: 55px;
  padding-bottom: 55px;
  border-top: 1px solid #e8eff5;
  border-bottom: 1px solid #e8eff5;
}

.info-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 30px;
  padding: 55px 60px 55px;
  background: #ffffff;
  border-bottom: 1px solid #e8eff5;
}

@media (max-width: 1024px) {
  .info-grid {
    padding: 50px 50px 50px;
  }
}

@media (max-width: 768px) {
  .info-grid {
    grid-template-columns: 1fr;
    padding: 40px 40px 40px;
    gap: 25px;
  }
}

@media (max-width: 480px) {
  .info-grid {
    padding: 30px 20px 30px;
  }
}

.card-panel {
  background: #fafbfc;
  border: 1px solid #e0eef5;
  border-radius: 8px;
  padding: 28px 32px;
  box-shadow: 0 2px 8px rgba(13, 77, 140, 0.06);
  transition: all 0.3s ease;
}

.card-panel:hover {
  box-shadow: 0 4px 12px rgba(13, 77, 140, 0.12);
  transform: translateY(-2px);
}

.card-panel h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.note-panel {
  background: #eff7fc;
  border-color: #d4e8f3;
}

.dates-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 12px;
}

.dates-list div {
  background: #fff;
  border: 1px solid var(--line);
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}

.dates-list span {
  color: #4c5360;
  font-weight: 600;
}

.dates-list strong {
  color: #1b2b3d;
  font-size: 1.1rem;
}

.paper-points {
  padding-left: 22px;
  margin-top: 8px;
}

.fees-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--line);
}

.fees-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  font-size: 1.05rem;
}

.fees-table td:last-child {
  text-align: right;
  font-weight: 700;
  color: var(--primary-dark);
}

.note-box {
  background: #edf4fb;
  border: 1px solid #d8e7f6;
  margin-top: 20px;
  padding: 18px 20px;
}

.payment-details {
  background: #fff8df;
  border: 2px solid var(--yellow);
  box-shadow: 0 4px 12px rgba(179, 91, 0, 0.12);
}

.payment-details p:first-child {
  color: var(--teal);
  font-size: 1.15rem;
  margin-top: 0;
}

.feature-list {
  padding-left: 22px;
  margin-top: 12px;
}

/* About College Section with Image */
.about-college-section {
  padding: 55px 60px 55px;
  background: #ffffff;
  border-bottom: 1px solid #e8eff5;
}

@media (max-width: 1024px) {
  .about-college-section {
    padding: 50px 50px 50px;
  }
}

@media (max-width: 768px) {
  .about-college-section {
    padding: 40px 40px 40px;
  }
}

@media (max-width: 480px) {
  .about-college-section {
    padding: 30px 20px 30px;
  }
}

.about-content-wrapper {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.about-text {
  flex: 1;
}

.about-text h3 {
  margin: 0 0 22px;
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  font-weight: 800;
  color: var(--red);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.about-text p {
  font-family: "Times New Roman", Times, serif;
  font-size: 1.05rem;
  line-height: 2;
  color: #0a1f2e;
  text-align: justify;
  letter-spacing: 0.3px;
  margin-bottom: 18px;
}

.about-image {
  flex: 0 0 auto;
  width: 350px;
}

.college-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  object-fit: cover;
  display: block;
}

.contact-wrap {
  background: #fff;
  border: 1px solid var(--line);
  padding: 20px 22px;
}

.committee {
  padding: 60px 60px;
  background: #f5f9fc;
  border-top: 1px solid #e8eff5;
  border-bottom: 1px solid #e8eff5;
  width: 100%;
}

@media (max-width: 1024px) {
  .committee {
    padding: 50px 50px;
  }
}

@media (max-width: 768px) {
  .committee {
    padding: 40px 40px;
  }
}

@media (max-width: 480px) {
  .committee {
    padding: 30px 20px;
  }
}

.committee-container {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  max-width: 1100px;
  margin: auto;
  border-top: 2px solid #ccc;
  padding-top: 30px;
}

.left-column,
.right-column {
  flex: 1;
}

.committee h2 {
  color: #d32f2f;
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 15px;
  margin-top: 30px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.committee h2:first-child {
  margin-top: 0;
}

.committee p {
  font-size: 1rem;
  margin-bottom: 15px;
  line-height: 1.6;
  color: #333333;
}

.committee strong {
  font-size: 1.05rem;
  color: #1a1a1a;
  font-weight: 700;
}

/* ============================================
   COMMITTEE MEMBERS SECTION
   ============================================ */

.committee-members {
  padding: 60px 60px;
  background: #ffffff;
  border-top: 1px solid #e8eff5;
  border-bottom: 1px solid #e8eff5;
  width: 100%;
}

@media (max-width: 1024px) {
  .committee-members {
    padding: 50px 50px;
  }
}

@media (max-width: 768px) {
  .committee-members {
    padding: 40px 40px;
  }
}

@media (max-width: 480px) {
  .committee-members {
    padding: 30px 20px;
  }
}

.committee-members h2 {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 800;
  color: #0f4c5c;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.committee-subtitle {
  text-align: center;
  font-size: 1.05rem;
  color: #666666;
  margin-bottom: 40px;
  font-style: italic;
}

.committee-section-table {
  margin-bottom: 50px;
  padding-bottom: 40px;
  border-bottom: 2px solid #e0e0e0;
}

.committee-section-table:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.committee-section-table h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0d4d67;
  margin-bottom: 20px;
  margin-top: 0;
}

.table-wrapper {
  overflow-x: auto;
  border: 1px solid #cccccc;
  border-radius: 6px;
}

.committee-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.committee-table thead {
  background-color: #f0f0f0;
  border-bottom: 2px solid #cccccc;
}

.committee-table thead tr {
  background-color: #f0f0f0;
}

.committee-table th {
  padding: 12px;
  text-align: left;
  font-weight: 700;
  color: #1a1a1a;
  border-right: 1px solid #ddd;
}

.committee-table th:last-child {
  border-right: none;
}

.committee-table td {
  padding: 11px 12px;
  border-right: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
}

.committee-table td:last-child {
  border-right: none;
}

.committee-table tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}

.committee-table tbody tr:nth-child(odd) {
  background-color: #ffffff;
}

.committee-table tbody tr:hover {
  background-color: #f0f8ff;
}

.committee-table tbody tr:last-child td {
  border-bottom: none;
}

/* Responsive Tables */
@media (max-width: 768px) {
  .committee-members {
    padding: 40px 15px;
  }

  .committee-members h2 {
    font-size: 1.8rem;
  }

  .committee-subtitle {
    font-size: 0.95rem;
  }

  .committee-section-table h3 {
    font-size: 1.25rem;
  }

  .table-wrapper {
    overflow-x: auto;
    border: 1px solid #cccccc;
  }

  .committee-table {
    font-size: 0.85rem;
  }

  .committee-table th,
  .committee-table td {
    padding: 8px 10px;
  }
}

@media (max-width: 480px) {
  .committee-members {
    padding: 30px 10px;
  }

  .committee-members h2 {
    font-size: 1.5rem;
  }

  .committee-subtitle {
    font-size: 0.85rem;
  }

  .committee-section-table h3 {
    font-size: 1.1rem;
  }

  .committee-table {
    font-size: 0.75rem;
  }

  .committee-table th,
  .committee-table td {
    padding: 6px 8px;
  }
}

/* ============================================
   KEYNOTE SPEAKERS SECTION
   ============================================ */

.keynote-speakers {
  padding: 60px 60px;
  background: #f9fbfc;
  border-top: 1px solid #e8eff5;
  border-bottom: 1px solid #e8eff5;
  width: 100%;
}

@media (max-width: 1024px) {
  .keynote-speakers {
    padding: 50px 50px;
  }
}

@media (max-width: 768px) {
  .keynote-speakers {
    padding: 40px 40px;
  }
}

@media (max-width: 480px) {
  .keynote-speakers {
    padding: 30px 20px;
  }
}

.keynote-speakers h2 {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 800;
  color: #0f4c5c;
  margin-bottom: 40px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.speakers-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

.speaker-card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 30px 25px;
  text-align: center;
  flex: 1 1 280px;
  max-width: 300px;
  min-height: 450px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.speaker-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.speaker-image {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 25px;
  border: 4px solid #0f4c5c;
  display: block;
  background-color: #f0f0f0;
  flex-shrink: 0;
}

.speaker-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0d4d67;
  margin-bottom: 8px;
  margin-top: 0;
  word-break: break-word;
}

.speaker-designation {
  font-size: 0.95rem;
  color: #666666;
  font-weight: 500;
  margin: 0 0 12px 0;
  line-height: 1.5;
}

/* Responsive Keynote Speakers */
@media (max-width: 768px) {
  .keynote-speakers {
    padding: 40px 15px;
  }

  .keynote-speakers h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .speakers-container {
    gap: 25px;
  }

  .speaker-card {
    flex: 1 1 100%;
    max-width: 100%;
    padding: 25px 20px;
    min-height: 420px;
  }

  .speaker-image {
    width: 145px;
    height: 145px;
  }

  .speaker-card h3 {
    font-size: 1.15rem;
  }
}

@media (max-width: 480px) {
  .keynote-speakers {
    padding: 30px 15px;
  }

  .keynote-speakers h2 {
    font-size: 1.5rem;
    margin-bottom: 25px;
  }

  .speakers-container {
    gap: 20px;
  }

  .speaker-card {
    padding: 20px 15px;
    min-height: 360px;
  }

  .speaker-image {
    width: 135px;
    height: 135px;
    margin-bottom: 15px;
  }

  .speaker-card h3 {
    font-size: 1rem;
    margin-bottom: 6px;
  }

  .speaker-designation {
    font-size: 0.85rem;
  }
}

.site-footer {
  background: #0c3d4a;
  color: #fff;
  margin-top: 0;
  border-top: 2px solid #0a2c35;
  width: 100%;
}

.footer-inner {
  padding: 50px 60px;
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
}

@media (max-width: 1024px) {
  .footer-inner {
    padding: 45px 50px;
  }
}

@media (max-width: 768px) {
  .footer-inner {
    padding: 40px 40px;
  }
}

@media (max-width: 480px) {
  .footer-inner {
    padding: 30px 20px;
  }
}

.site-footer h5 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 12px;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer li,
.site-footer a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  line-height: 2;
}

@media (max-width: 991px) {
  .brand-row {
    grid-template-columns: 1fr;
  }

  .brand-badge,
  .founder-box {
    margin: 0 auto;
  }

  .info-grid,
  .dates-list {
    grid-template-columns: 1fr;
  }

  .about-content-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .about-image {
    width: 100%;
  }

  .hero-section {
    height: 300px;
  }
}

@media (max-width: 767px) {
  .reference-header {
    padding-left: 16px;
    padding-right: 16px;
  }

  .title-text {
    font-size: 1.2rem;
  }

  .organized-box, .txt-section, .info-grid, .about-college-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .notice-strip {
    justify-content: flex-start;
    gap: 12px;
  }

  .notice-strip span {
    white-space: normal;
  }

  .hero-section {
    height: 250px;
    margin-bottom: 16px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .about-content-wrapper {
    gap: 20px;
  }

  .about-text p {
    text-align: left;
  }

  .navbar-logo {
    display: none;
  }
}

@media (max-width: 480px) {
  .logo-img {
    height: 40px;
  }

  .hero-section {
    height: 200px;
    margin-bottom: 12px;
  }

  .hero-title {
    font-size: 1.5rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .about-college-section {
    padding: 30px 12px 0;
  }

  .about-image {
    width: 100%;
  }

  .college-img {
    border-radius: 8px;
  }
}

/* ============================================
   CONFERENCE TRACKS AND TOPICS SECTION
   ============================================ */

.conference-tracks-section {
  padding: 60px 60px;
  background: #f5f9fc;
  border-top: 1px solid #e8eff5;
  border-bottom: 1px solid #e8eff5;
  width: 100%;
}

@media (max-width: 1024px) {
  .conference-tracks-section {
    padding: 50px 50px;
  }
}

@media (max-width: 768px) {
  .conference-tracks-section {
    padding: 40px 40px;
  }
}

@media (max-width: 480px) {
  .conference-tracks-section {
    padding: 30px 20px;
  }
}

.conference-tracks-section h2 {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 800;
  color: #0f4c5c;
  margin-top: 0;
  margin-bottom: 40px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.tracks-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  max-width: 1280px;
  margin: 0 auto;
  align-items: stretch;
}

.track-card {
  background: #ffffff;
  border: 1px solid rgba(15, 76, 92, 0.08);
  border-radius: 12px;
  padding: 22px 20px;
  box-shadow: 0 8px 20px rgba(15, 76, 92, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.track-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 28px rgba(15, 76, 92, 0.12);
}

.track-card h3 {
  color: #0d4050;
  font-size: 1.15rem;
  font-weight: 800;
  margin: 0 0 18px;
  line-height: 1.35;
}

.track-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.track-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #2d3748;
  font-size: 0.92rem;
  line-height: 1.55;
  margin-bottom: 10px;
}

.track-item:last-child {
  margin-bottom: 0;
}

.icon {
  font-size: 14px;
  min-width: 18px;
  color: #3b82f6;
  margin-top: 3px;
  transition: transform 0.2s ease, color 0.2s ease;
}

.track-item:hover .icon {
  color: #1d4ed8;
  transform: scale(1.1);
}

.track-list li span:last-child {
  display: inline-block;
}

/* Tablet: 2 columns */
@media (max-width: 1024px) {
  .tracks-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    padding: 0 20px;
  }

  .conference-tracks-section {
    padding: 45px 0 20px;
  }

  .conference-tracks-section h2 {
    font-size: 1.8rem;
    margin-bottom: 28px;
  }
}

/* Mobile: 1 column */
@media (max-width: 768px) {
  .tracks-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 0 15px;
  }

  .conference-tracks-section {
    padding: 35px 0 20px;
  }

  .conference-tracks-section h2 {
    font-size: 1.5rem;
    margin-bottom: 22px;
  }

  .track-card {
    padding: 18px 16px;
    border-radius: 12px;
  }

  .track-card h3 {
    font-size: 1.05rem;
    margin-bottom: 14px;
  }

  .track-list li {
    font-size: 0.88rem;
    gap: 8px;
  }

  .track-bullet {
    width: 8px;
    height: 8px;
  }
}
