/* ============================================
   ROOT VARIABLES & BASE STYLES
   ============================================ */
:root {
  --brand: #112269;
  /* MAJU Blue */
  --accent: #d62c1f;
  /* MAJU Red */
}

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
}

/* ============================================
   NAVBAR STYLES
   ============================================ */
.navbar {
  transition: all 0.3s ease-in-out;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95) !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.navbar:not(.scrolled) .nav-link {
  color: #ffffff !important;
}

.navbar:not(.scrolled) .nav-link:hover,
.navbar:not(.scrolled) .nav-link:focus {
  color: #f3f4f6 !important;
}

.navbar.scrolled .nav-link {
  color: var(--brand, #112269) !important;
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link:focus {
  color: #000000 !important;
}

.navbar:not(.scrolled) .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.7);
}

.navbar:not(.scrolled) .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.95)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar.scrolled .navbar-toggler {
  border-color: rgba(0, 0, 0, 0.4);
}

.navbar.scrolled .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0,0,0,0.75)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    background: #ffffff !important;
    padding: 15px;
    border-radius: 8px;
  }

  .navbar:not(.scrolled) .navbar-nav .nav-link {
    color: var(--brand, #112269) !important;
  }

  /* Mobile dropdown styling */
  .navbar .dropdown-menu {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 0.5rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-top: 0;
  }

  .navbar .dropdown-menu .dropdown-item {
    color: #1e293b;
    padding: 0.5rem 1.25rem;
    font-size: 0.92rem;
  }

  .navbar .dropdown-menu .dropdown-item:hover,
  .navbar .dropdown-menu .dropdown-item:focus {
    background: #f1f5f9;
    color: var(--brand, #112269);
  }
}

@media (min-width: 992px) {
  .navbar .dropdown:hover>.dropdown-menu {
    display: block;
  }

  .navbar .dropdown-toggle::after {
    margin-left: 0.25rem;
  }
}

/* IEEE Logo Background */
.ieee-logo-bg {
  background-color: #ffffff;
  padding: 4px 8px;
  border-radius: 6px;
}

/* ============================================
   HEADER/HERO STYLES
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 0;
  color: #fff;
  overflow: hidden;
}

.hero-banner img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  filter: brightness(0.55);
}

.hero .btn {
  border-radius: 0 !important;
}

.hero .btn-primary {
  background-color: var(--brand);
  border-color: var(--brand);
}

.hero .btn-accent {
  background: var(--accent);
  color: #fff;
  border: none;
}

.hero .btn-accent:hover {
  filter: brightness(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.25));
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding-top: 5rem;
}

.hero-content .lead,
.hero-content p,
.hero-content small {
  color: #e5e7eb;
}

.typing-cursor {
  display: inline-block;
  width: 2px;
  height: 1.2em;
  margin-left: 3px;
  background: #ffffff;
  animation: blinkCursor 0.8s infinite;
  vertical-align: middle;
}

@keyframes blinkCursor {

  0%,
  50% {
    opacity: 1;
  }

  50.01%,
  100% {
    opacity: 0;
  }
}

.fade-in {
  animation: fadeInUp 1s ease-in-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

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

@media (max-width: 991.98px) {
  .hero {
    min-height: auto;
  }

  .hero-banner img {
    height: 70vh;
  }

  .hero-content {
    align-items: flex-end;
    padding-top: 4.5rem;
    padding-bottom: 2.5rem;
    text-align: center;
  }

  .hero-content .container {
    padding-inline: 1.25rem;
  }

  .hero-content h1 {
    font-size: 1.9rem;
  }

  .hero-content .lead {
    font-size: 1rem;
  }
}

@media (max-width: 575.98px) {
  .hero-banner img {
    height: 100vh;
  }

  .hero-content {
    align-items: flex-start;
    padding-top: 5.5rem;
    padding-bottom: 2rem;
  }

  .hero-content h1 {
    font-size: 1.6rem;
  }

  .hero-content .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-content .d-flex.gap-2 {
    gap: 0.5rem;
  }
}

/* ============================================
   FOOTER STYLES
   ============================================ */
.site-footer {
  background: #112269;
  color: #e5e7eb;
  font-size: 0.9rem;
}

.site-footer a {
  color: #cbd5f5;
  text-decoration: none;
}

.site-footer p,
.site-footer span {
  color: white !important;
}

.site-footer a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-heading {
  font-size: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: white;
  margin-bottom: 0.6rem;
}

.footer-bottom {
  font-size: 0.8rem;
}

/* ============================================
   ABOUT CONFERENCE STYLES
   ============================================ */
.about-section {
  background-color: #f6f6f7;
}

.about-badge {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #6b7280;
  font-weight: 600;
}

.about-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--brand, #112269);
}

.about-text {
  color: #4b5563;
  font-size: 0.98rem;
  line-height: 1.7;
}

.about-objectives li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.55rem;
  opacity: 0;
  transform: translateY(8px);
  animation: aboutObjectiveFade 0.5s ease-out forwards;
}

.about-objectives li:nth-child(1) {
  animation-delay: 0.1s;
}

.about-objectives li:nth-child(2) {
  animation-delay: 0.2s;
}

.about-objectives li:nth-child(3) {
  animation-delay: 0.3s;
}

.about-objectives li:nth-child(4) {
  animation-delay: 0.4s;
}

.about-objectives i {
  color: #10b981;
  margin-top: 0.1rem;
  font-size: 1rem;
}

.about-objectives span {
  font-size: 0.95rem;
  color: #374151;
}

.about-side-card {
  background: linear-gradient(135deg, #112269, #1d4ed8);
  color: #e5e7eb;
  border-radius: 0rem;
  padding: 1.9rem 1.8rem;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.35);
}

.about-side-card h5 {
  font-weight: 600;
}

.about-side-card .text-light-50 {
  color: rgba(229, 231, 235, 0.85);
}

.about-side-list li {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.75rem;
}

.about-side-list .label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(209, 213, 219, 0.9);
}

.about-side-list .value {
  font-size: 0.97rem;
  font-weight: 500;
}

.about-tagline {
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(148, 163, 184, 0.3);
  color: rgba(229, 231, 235, 0.9);
}

.about-animate-left {
  opacity: 0;
  transform: translateX(-25px);
  animation: aboutFadeInLeft 0.7s ease-out forwards;
}

.about-animate-right {
  opacity: 0;
  transform: translateX(25px);
  animation: aboutFadeInRight 0.7s ease-out forwards;
  animation-delay: 0.15s;
}

@keyframes aboutFadeInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes aboutFadeInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@media (max-width: 991.98px) {
  .about-title {
    font-size: 1.5rem;
  }
}

/* ============================================
   THEME SECTION STYLES
   ============================================ */
.theme-section {
  background-color: #ffffff;
}

.theme-section .title {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #6b7280;
  font-weight: 600;
}

.theme-main {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--brand, #112269);
}

.theme-card {
  background-color: #ffffff;
  border-radius: 0rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
  padding: 1.25rem 1.3rem;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  opacity: 0;
  transform: translateY(15px);
  animation: themeCardFade 0.6s ease-out forwards;
}

.theme-card:nth-child(1) {
  animation-delay: 0.05s;
}

.theme-card:nth-child(2) {
  animation-delay: 0.12s;
}

.theme-card:nth-child(3) {
  animation-delay: 0.19s;
}

.theme-card:nth-child(4) {
  animation-delay: 0.26s;
}

.theme-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  border-color: rgba(37, 99, 235, 0.55);
}

.theme-card-header h5 {
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--brand, #112269);
}

.theme-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.15rem 0.65rem;
  border-radius: 999px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background-color: #eef2ff;
  color: var(--brand, #112269);
}

.theme-list {
  padding-left: 1.1rem;
  margin-top: 0.6rem;
}

.theme-list li {
  font-size: 0.9rem;
  color: #4b5563;
  margin-bottom: 0.35rem;
}

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

@media (max-width: 767.98px) {
  .theme-card {
    padding: 1.1rem 1.1rem;
  }
}

/* ============================================
   STRUCTURE SECTION STYLES
   ============================================ */
.structure-section {
  background-color: #f6f6f7;
}

.structure-section .title {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #6b7280;
  font-weight: 600;
}

.structure-section .sub-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--brand, #112269);
}

.structure-timeline {
  position: relative;
}

.structure-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.78rem;
  opacity: 0;
  transform: translateY(15px);
  animation: structureFadeIn 0.6s ease-out forwards;
}

.structure-item:nth-child(1) {
  animation-delay: 0.05s;
}

.structure-item:nth-child(2) {
  animation-delay: 0.12s;
}

.structure-item:nth-child(3) {
  animation-delay: 0.19s;
}

.structure-item:nth-child(4) {
  animation-delay: 0.26s;
}

.structure-item:nth-child(5) {
  animation-delay: 0.33s;
}

.structure-icon-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.structure-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #eef2ff;
  color: var(--brand, #112269);
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.15);
  font-size: 1rem;
  z-index: 1;
}

.structure-line {
  flex: 1;
  width: 2px;
  background: linear-gradient(to bottom, #d1d5db, transparent);
  margin-top: 0.15rem;
}

.structure-item-last .structure-line {
  display: none;
}

.structure-content h5 {
  margin-bottom: 0.2rem;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--brand, #112269);
}

.structure-content p {
  margin-bottom: 0;
  font-size: 0.92rem;
  color: #4b5563;
  line-height: 1.6;
}

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

@media (max-width: 767.98px) {
  .structure-item {
    align-items: flex-start;
  }

  .structure-icon {
    width: 36px;
    height: 36px;
  }

  .structure-content h5 {
    font-size: 0.98rem;
  }
}

/* ============================================
   WORKSHOPS SECTION STYLES
   ============================================ */
.workshops-section .title {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #6b7280;
  font-weight: 600;
}

.workshops-section .sub-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--brand, #112269);
}

.workshops-box,
.pitch-box {
  background-color: #ffffff;
  border-radius: 0rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
  padding: 1.75rem 1.7rem;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
}

.workshops-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  color: var(--brand, #112269);
}

.workshop-items .workshop-item {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(10px);
  animation: workshopItemFade 0.6s ease-out forwards;
}

.workshop-items .workshop-item:nth-child(1) {
  animation-delay: 0.1s;
}

.workshop-items .workshop-item:nth-child(2) {
  animation-delay: 0.2s;
}

.workshop-items .workshop-item:nth-child(3) {
  animation-delay: 0.3s;
}

.workshop-icon-circle {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #eef2ff;
  color: var(--brand, #112269);
  font-size: 1rem;
}

.workshop-text h6 {
  margin-bottom: 0.15rem;
  font-size: 0.97rem;
  font-weight: 600;
  color: #111827;
}

.workshop-text p {
  font-size: 0.9rem;
  color: #4b5563;
}

.pitch-box {
  background: linear-gradient(135deg, #112269, #1d4ed8);
  color: #e5e7eb;
  border: none;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.4);
}

.pitch-icon {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.15);
  color: #fbbf24;
  font-size: 1.3rem;
  margin-bottom: 0.9rem;
}

.pitch-box h5 {
  font-weight: 600;
}

.pitch-box p {
  font-size: 0.92rem;
}

.pitch-benefits li {
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

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

@media (max-width: 991.98px) {

  .workshops-box,
  .pitch-box {
    padding: 1.5rem 1.4rem;
  }
}

/* ============================================
   CALL FOR PAPERS STYLES
   ============================================ */
.cfp-section {
  background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}

.cfp-section h2 {
  font-weight: 700 !important;
}

.cfp-card {
  border-radius: 0rem;
  border: 1px solid #e3e6ea;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cfp-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

.animated-row {
  opacity: 0;
  animation: fadeInUp 0.8s ease-in-out forwards;
}

.animated-row:nth-child(1) {
  animation-delay: 0.1s;
}

.animated-row:nth-child(2) {
  animation-delay: 0.25s;
}

.animated-row:nth-child(3) {
  animation-delay: 0.4s;
}

.animated-row:nth-child(4) {
  animation-delay: 0.55s;
}

.section-title {
  position: relative;
  display: inline-block;
  padding-bottom: 0.4rem;
}

.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40%;
  height: 3px;
  border-radius: 999px;
  background: var(--brand);
}

/* ============================================
   GUIDELINE STEPS STYLES
   ============================================ */
.guideline_steps {
  background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
  padding: 40px 0;
}

.guideline_steps h2 {
  font-weight: 700 !important;
  color: #111827;
}

.guideline_steps p.text-muted {
  max-width: 740px;
}

.step-card {
  position: relative;
  border-radius: 0rem;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.25);
  overflow: hidden;
  margin-bottom: 1.75rem;
  background: #ffffff;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  opacity: 0;
  transform: translateY(18px);
  animation: stepFadeUp 0.7s ease-out forwards;
}

.step-card:nth-of-type(1) {
  animation-delay: 0.1s;
}

.step-card:nth-of-type(2) {
  animation-delay: 0.2s;
}

.step-card:nth-of-type(3) {
  animation-delay: 0.3s;
}

.step-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
}

.step-card.step-1::before {
  background: var(--accent);
}

.step-card.step-2::before {
  background: var(--accent);
}

.step-card.step-3::before {
  background: var(--accent);
}

.step-header {
  display: flex;
  align-items: stretch;
}

.step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  background: var(--brand);
  color: #fff;
  border-right: 1px solid rgba(15, 23, 42, 0.2);
}

.step-arrow i {
  font-size: 1.4rem;
}

.step-body {
  flex: 1;
  padding: 18px 22px 20px;
}

.step-title {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.45rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brand);
}

.step-body ul {
  margin-bottom: 0;
  padding-left: 1.1rem;
}

.step-body li {
  font-size: 0.95rem;
  color: #374151;
  line-height: 1.6;
}

.step-body li+li {
  margin-top: 0.35rem;
}

.step-body strong {
  color: #111827;
}

.step-body a {
  color: #1d4ed8;
  text-decoration: underline;
}

.step-body a:hover {
  text-decoration: none;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
  border-color: rgba(37, 99, 235, 0.4);
}

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

@media (max-width: 575.98px) {
  .guideline_steps {
    padding: 28px 0;
  }

  .step-body {
    padding: 14px 16px 16px;
  }

  .step-arrow {
    padding: 0 12px;
  }

  .step-title {
    font-size: 1rem;
  }

  .step-body li {
    font-size: 0.9rem;
  }
}

/* ============================================
   ORGANIZING COMMITTEE STYLES
   ============================================ */
.committee-section {
  background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
  position: relative;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--brand, #112269);
  position: relative;
  display: inline-block;
  padding-bottom: 0.5rem;
}

.committee-block-title {
  font-size: 0.875rem;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #e5e7eb;
  letter-spacing: 0.14em;
  color: #6b7280;
  font-weight: 700;
}

.committee-profile-main {
  background: white;
  border-radius: 0rem;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.committee-profile-main:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}

.committee-photo-main img {
  width: 240px;
  height: 240px;
  object-fit: cover;
  border-radius: 0rem;
  border: 3px solid #e5e7eb;
}

.committee-profile-main h4 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.committee-profile-main .role-badge {
  display: inline-block;
  background: var(--brand);
  color: white;
  padding: 0.35rem 1rem;
  border-radius: 0rem;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.committee-profile {
  background: white;
  border-radius: 0rem;
  padding: 1.5rem;
  height: 100%;
  box-shadow: 0 2px 4px var(--brand);
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.committee-profile:hover {
  box-shadow: 0 6px 12px var(--brand);
  transform: translateY(-3px);
}

.committee-photo-sm img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 0rem;
  border: 2px solid #e5e7eb;
}

.committee-profile .name {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.25rem;
}

.committee-profile .role {
  color: var(--brand);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.co-chair-card {
  background: white;
  border-radius: 0rem;
  padding: 1.75rem;
  height: 100%;
  box-shadow: 0 2px 8px var(--brand);
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
  text-align: center;
}

.co-chair-card:hover {
  box-shadow: 0 8px 16px var(--brand);
  transform: translateY(-4px);
  border-color: var(--brand);
}

.co-chair-photo {
  width: 120px;
  height: 120px;
  margin: 0 auto 1.25rem;
  border-radius: 0rem;
  overflow: hidden;
  border: 3px solid #e5e7eb;
  transition: border-color 0.3s ease;
}

.co-chair-card:hover .co-chair-photo {
  border-color: var(--brand);
}

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

.co-chair-card .name {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.co-chair-card .role {
  color: var(--brand);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.co-chair-card .description {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

.committee-profile-main,
.committee-profile,
.co-chair-card {
  opacity: 0;
  transform: translateY(20px);
  animation: committeeFadeUp 0.6s ease-out forwards;
}

.committee-profile-main {
  animation-delay: 0.1s;
}

.co-chair-card:nth-child(1) {
  animation-delay: 0.15s;
}

.co-chair-card:nth-child(2) {
  animation-delay: 0.25s;
}

.co-chair-card:nth-child(3) {
  animation-delay: 0.35s;
}

.co-chair-card:nth-child(4) {
  animation-delay: 0.45s;
}

.co-chair-card:nth-child(5) {
  animation-delay: 0.55s;
}

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

@media (max-width: 767.98px) {
  .committee-photo-main img {
    width: 100%;
    height: 200px;
  }

  .section-title {
    font-size: 1.875rem;
  }

  .committee-profile-main {
    text-align: center;
  }

  .committee-profile-main .role-badge {
    display: block;
    width: fit-content;
    margin: 0 auto 1rem;
  }
}

@media (max-width: 991.98px) {
  .co-chair-card {
    margin-bottom: 1rem;
  }
}

/* ============================================
   ADVISORY COMMITTEE STYLES
   ============================================ */
.advisory-card {
  background: #ffffff;
  padding: 1.25rem 1.5rem;
  height: 100%;
  border: 1px solid #e5e7eb;
  border-left: 4px solid var(--brand);
  box-shadow: 0 2px 8px rgba(17, 34, 105, 0.08);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: committeeFadeUp 0.6s ease-out forwards;
}

.advisory-card:hover {
  box-shadow: 0 8px 20px rgba(17, 34, 105, 0.15);
  transform: translateY(-4px);
  border-color: var(--brand);
  border-left-width: 4px;
}

.advisory-card .name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.2rem;
}

.advisory-card .role {
  font-size: 0.82rem;
  font-weight: 500;
  color: #6b7280;
  line-height: 1.5;
}

.advisory-card:nth-child(1) {
  animation-delay: 0.05s;
}

.advisory-card:nth-child(2) {
  animation-delay: 0.10s;
}

.advisory-card:nth-child(3) {
  animation-delay: 0.15s;
}

.advisory-card:nth-child(4) {
  animation-delay: 0.20s;
}

.advisory-card:nth-child(5) {
  animation-delay: 0.25s;
}

.advisory-card:nth-child(6) {
  animation-delay: 0.30s;
}

.advisory-card:nth-child(7) {
  animation-delay: 0.35s;
}

.advisory-card:nth-child(8) {
  animation-delay: 0.40s;
}

.advisory-card:nth-child(9) {
  animation-delay: 0.45s;
}

.advisory-card:nth-child(10) {
  animation-delay: 0.50s;
}

.advisory-card:nth-child(11) {
  animation-delay: 0.55s;
}

@media (max-width: 575.98px) {
  .advisory-card {
    padding: 1rem 1.2rem;
  }

  .advisory-card .name {
    font-size: 0.95rem;
  }
}

/* ============================================
   REGISTRATION STYLES
   ============================================ */
.registration-section {
  background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}

.registration-section .title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--brand, #112269);
  position: relative;
  display: inline-block;
  padding-bottom: 0.5rem;
}

.registration-box {
  background: #ffffff;
  border-radius: 0rem;
  padding: 1.6rem 1.4rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
  display: inline-block;
  min-width: 260px;
}

.registration-icon {
  width: 40px;
  height: 40px;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #eef2ff;
  color: var(--brand, #112269);
  font-size: 1.2rem;
}

.registration-text {
  font-size: 2rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
}

/* Registration Pricing Cards */
.reg-pricing-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  height: 100%;
  transition: all 0.3s ease;
}

.reg-pricing-card:hover {
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.14);
  transform: translateY(-3px);
}

.reg-pricing-header {
  background: var(--brand, #112269);
  color: #ffffff;
  padding: 1.1rem 1.5rem;
  font-size: 1.1rem;
  font-weight: 700;
}

.reg-pricing-header.international {
  background: linear-gradient(135deg, #112269, #1d4ed8);
}

.reg-pricing-body {
  padding: 1.5rem;
}

.reg-pricing-subtitle {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brand, #112269);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}

.reg-pricing-body .table td {
  font-size: 0.92rem;
  color: #374151;
  padding: 0.5rem 0.25rem;
  border-color: #f1f5f9;
}

.reg-register-btn {
  background: var(--accent, #d62c1f);
  color: #ffffff;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.85rem 2.5rem;
  border: none;
  letter-spacing: 0.04em;
  transition: all 0.3s ease;
}

.reg-register-btn:hover {
  background: #b8241a;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(214, 44, 31, 0.3);
}

/* ============================================
   CONTACT SECTION STYLES
   ============================================ */
.contact-section {
  background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}

.contact-section .title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--brand, #112269);
}

.contact-panel {
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(148, 163, 184, 0.35);
}

.contact-info {
  background: #ffffff;
}

.contact-label {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6b7280;
}

.contact-link {
  display: inline-block;
  font-size: 0.94rem;
  color: #111827;
  text-decoration: none;
}

.contact-link:hover {
  color: var(--brand, #112269);
  text-decoration: underline;
}

.contact-social-link {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(148, 163, 184, 0.9);
  color: #111827;
  font-size: 1rem;
  background: #ffffff;
  transition: all 0.2s ease;
}

.contact-social-link:hover {
  background: var(--brand, #112269);
  color: #ffffff;
}

.contact-visual {
  position: relative;
  overflow: hidden;
  min-height: 260px;
}

.contact-visual-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.contact-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.25), rgba(15, 23, 42, 0.4));
  pointer-events: none;
}

.contact-visual-tag {
  position: absolute;
  left: 1.1rem;
  bottom: 1.1rem;
  background: rgba(15, 23, 42, 0.9);
  color: #e5e7eb;
  padding: 0.28rem 0.85rem;
  border-radius: 999px;
  font-size: 0.8rem;
  display: inline-flex;
  align-items: center;
}

@media (max-width: 767.98px) {
  .contact-panel {
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  }

  .contact-visual {
    min-height: 220px;
  }
}

/* ============================================
   SPONSOR STYLES
   ============================================ */
.sponsor-section {
  background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}

.sponsor-panel {
  background: #f9fafb;
  border-radius: 0rem;
  border-left: 4px solid var(--brand, #112269);
  padding: 1.6rem 1.5rem;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
}

.sponsor-panel-title {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #4b5563;
  font-weight: 600;
}

.sponsor-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.sponsor-list li {
  position: relative;
  padding-left: 1.3rem;
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
  color: #111827;
}

.sponsor-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 7px;
  height: 7px;
  border-radius: 0px;
  background: var(--brand, #112269);
}

.sponsor-panel {
  opacity: 0;
  transform: translateY(12px);
  animation: sponsorFadeUp 0.6s ease-out forwards;
}

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

/* ============================================
   VENUE SECTION STYLES
   ============================================ */
.venue-section {
  background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}

.venue-section .title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--brand);
}

.venue-info-card {
  background: #ffffff;
  border-radius: 0rem;
  padding: 1.6rem 1.5rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}

.venue-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  color: var(--brand, #112269);
}

.venue-info-card h5 {
  font-weight: 600;
  color: #0f172a;
}

.venue-info-card h6 {
  font-size: 0.9rem;
  font-weight: 600;
  color: #111827;
}

.venue-hotels li {
  margin-bottom: 0.25rem;
}

.venue-hotels .hotel-name {
  display: block;
  font-weight: 600;
  color: #111827;
}

.venue-hotels .hotel-meta {
  font-size: 0.8rem;
  color: #6b7280;
}

.venue-map-card {
  background: #ffffff;
  border-radius: 0rem;
  padding: 1.2rem 1.2rem 1.1rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
  height: 100%;
}

.venue-map-header {
  font-size: 0.85rem;
  font-weight: 500;
  color: #111827;
  display: flex;
  align-items: center;
}

.venue-photo-card {
  background: #ffffff;
  border-radius: 0rem;
  padding: 1.2rem 1.2rem 1.1rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
  height: 100%;
}

.venue-karachi-list li {
  margin-bottom: 0.2rem;
  color: #4b5563;
}

.venue-photo-wrapper {
  position: relative;
  border-radius: 0rem;
  overflow: hidden;
}

.venue-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.venue-photo-chip {
  position: absolute;
  left: 0.9rem;
  bottom: 0.9rem;
  background: rgba(15, 23, 42, 0.9);
  color: #e5e7eb;
  padding: 0.25rem 0.8rem;
  border-radius: 999px;
  font-size: 0.8rem;
  display: inline-flex;
  align-items: center;
}

.venue-animate {
  opacity: 0;
  transform: translateY(18px);
  animation: venueFadeUp 0.7s ease-out forwards;
}

.venue-animate:nth-of-type(1) {
  animation-delay: 0.05s;
}

.venue-animate:nth-of-type(2) {
  animation-delay: 0.15s;
}

.venue-animate:nth-of-type(3) {
  animation-delay: 0.25s;
}

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

@media (max-width: 991.98px) {
  .venue-section {
    background: #f6f6f7;
  }

  .venue-info-card,
  .venue-map-card,
  .venue-photo-card {
    margin-bottom: 0.5rem;
  }
}

/* ============================================
   SHORT HEADER STYLES (For sub-pages)
   ============================================ */
.sub-hero {
  position: relative;
  color: #ffffff;
  padding: 0;
}

.sub-hero-banner {
  position: relative;
  overflow: hidden;
}

.sub-hero-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  filter: brightness(0.6);
}

@media (min-width: 992px) {
  .sub-hero-img {
    height: 320px;
  }
}

.sub-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.35));
}

.sub-hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding-top: 4.5rem;
  padding-bottom: 1.5rem;
}

.sub-hero-text {
  max-width: 720px;
}

.sub-hero-kicker {
  letter-spacing: 0.16em;
  font-weight: 600;
  color: #e5e7eb;
}

.sub-hero-title {
  font-size: 1.9rem;
  font-weight: 700;
}

.sub-hero-subtitle {
  font-size: 1rem;
  color: #e5e7eb;
}

@media (max-width: 575.98px) {
  .sub-hero-content {
    align-items: flex-end;
    padding-top: 4.5rem;
    padding-bottom: 1.25rem;
    text-align: left;
  }

  .sub-hero-title {
    font-size: 1.5rem;
  }

  .sub-hero-subtitle {
    font-size: 0.95rem;
  }
}

/* ============================================
   CFP FLYER IMAGE + MODAL
   ============================================ */
.cfp-flyer-wrapper {
  position: relative;
  display: inline-block;
  cursor: pointer;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cfp-flyer-wrapper:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.2);
}

.cfp-flyer-wrapper img {
  display: block;
  width: 100%;
  transition: transform 0.4s ease;
}

.cfp-flyer-wrapper:hover img {
  transform: scale(1.02);
}

.cfp-flyer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 34, 105, 0.45);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 12px;
}

.cfp-flyer-overlay i {
  font-size: 2.5rem;
}

.cfp-flyer-wrapper:hover .cfp-flyer-overlay {
  opacity: 1;
}

.cfp-modal-img {
  max-width: 100%;
  max-height: 95vh;
  object-fit: contain;
  border-radius: 4px;
}