/**
* Template Name: TheEvent
* Template URL: https://bootstrapmade.com/theevent-conference-event-bootstrap-template/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans",
    "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Plus Jakarta Sans", "Manrope", "Inter", "Raleway", sans-serif;
  --nav-font: "Plus Jakarta Sans", "Inter", "Raleway", sans-serif;
}

/* Global Colors */
:root {
  /* Modern background system (more depth, less “plain white”) */
  --background-color: #f3f6ff;
  /* cooler, slightly deeper than before */
  --alt-background-color: #eaf0ff;
  /* alt canvas (soft blue tint) */
  --surface-color: #ffffff;
  /* cards */
  --surface-soft: #f8fbff;
  /* soft surfaces / inner panels */

  /* Text */
  --default-color: #1f2937;
  --heading-color: #0b1b3a;
  --muted-color: #5a677c;

  /* Brand */
  --accent-color: #1e63d6;
  /* modern premium blue */
  --accent-strong: #0f4fc6;
  --contrast-color: #ffffff;

  /* Borders / elevation */
  --border-color: rgba(12, 24, 51, 0.12);
  --border-color-strong: rgba(12, 24, 51, 0.18);

  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 18px;

  --shadow-xs: 0 1px 0 rgba(12, 24, 51, 0.04);
  --shadow-sm: 0 8px 24px rgba(12, 24, 51, 0.08);
  --shadow-md: 0 14px 40px rgba(12, 24, 51, 0.12);

  --focus-ring: 0 0 0 4px rgba(30, 99, 214, 0.22);

  --transition-fast: 180ms cubic-bezier(0.2, 0.8, 0.2, 1);
  --transition: 260ms cubic-bezier(0.2, 0.8, 0.2, 1);

  /* Subtle pattern color (used for modern “canvas” effect) */
  --dot-color: rgba(11, 27, 58, 0.05);
  --glow-1: rgba(30, 99, 214, 0.12);
  --glow-2: rgba(11, 27, 58, 0.08);
  --glow-3: rgba(99, 102, 241, 0.08);
  /* gentle indigo tint */
}

/* Nav Menu Colors */
:root {
  --nav-color: rgba(255, 255, 255, 0.72);
  --nav-hover-color: #ffffff;
  --nav-mobile-background-color: var(--surface-color);
  --nav-dropdown-background-color: var(--surface-color);
  --nav-dropdown-color: #0f172a;
  --nav-dropdown-hover-color: var(--accent-color);
}

/* Color Presets */
.light-background {
  --background-color: #eef3ff;
  --alt-background-color: #e7efff;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #050b1d;
  --default-color: rgba(255, 255, 255, 0.92);
  --heading-color: #ffffff;
  --surface-color: rgba(255, 255, 255, 0.06);
  --contrast-color: #ffffff;

  --border-color: rgba(255, 255, 255, 0.12);
  --border-color-strong: rgba(255, 255, 255, 0.18);

  --dot-color: rgba(255, 255, 255, 0.06);
  --glow-1: rgba(30, 99, 214, 0.20);
  --glow-2: rgba(255, 255, 255, 0.10);
  --glow-3: rgba(99, 102, 241, 0.16);
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# Base / A11y / Motion
--------------------------------------------------------------*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

::selection {
  background: color-mix(in srgb, var(--accent-color), white 70%);
  color: var(--heading-color);
}

body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;

  /* Modern “marvelous” background canvas (depth + texture) */
  background-image:
    radial-gradient(1200px 640px at 18% -10%, var(--glow-1), transparent 62%),
    radial-gradient(900px 560px at 86% 8%, var(--glow-2), transparent 58%),
    radial-gradient(800px 520px at 50% 110%, rgba(30, 99, 214, 0.06), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0)),
    radial-gradient(var(--dot-color) 1px, transparent 1px);
  background-size: auto, auto, auto, auto, 26px 26px;
  background-position: 0 0, 0 0, 0 0, 0 0, 0 0;
  background-attachment: fixed, fixed, fixed, fixed, fixed;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: color var(--transition-fast), text-decoration-color var(--transition-fast);
  text-underline-offset: 0.18em;
  text-decoration-thickness: 0.08em;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), black 12%);
  text-decoration: underline;
  text-decoration-color: color-mix(in srgb, var(--accent-color), transparent 35%);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
  letter-spacing: -0.02em;
}

p {
  color: color-mix(in srgb, var(--default-color), transparent 8%);
}

/* Visible focus for keyboard users */
:where(a, button, input, textarea, select, .btn, [role="button"], [tabindex]):focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
  border-radius: 10px;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  :root {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/*--------------------------------------------------------------
# Pulsating Play Button
--------------------------------------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# PHP Email Form Messages
--------------------------------------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
  border-radius: var(--radius-md);
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
  border-radius: var(--radius-md);
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-xs);
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header (UPDATED: Organized-by label + partner logos kept visible)
--------------------------------------------------------------*/
.header {
  --background-color: rgba(1, 8, 33, 0.18);
  --heading-color: #ffffff;

  color: var(--default-color);
  background-color: var(--background-color);
  padding: 14px 0;
  /* slightly tighter */
  transition: all var(--transition);
  z-index: 997;

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

/* Main header row */
.header .container,
.header .container-fluid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

/*--------------------------------------------------------------
# Logo blocks (left + right)
--------------------------------------------------------------*/
.header .logo {
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;

  background: linear-gradient(to right,
      rgba(255, 255, 255, 0.96) 70%,
      rgba(255, 255, 255, 0.72) 100%);
  border-radius: 14px;
  padding: 10px 12px;

  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.22);

  flex: 0 0 auto;
  min-width: 0;
  text-decoration: none;
}

/* ✅ “Organized by” label INSIDE left logo block */
.header .logo .logo__label {
  font-family: var(--nav-font);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(11, 27, 58, 0.70);
  white-space: nowrap;

  /* subtle separator, not a separate section */
  padding-right: 10px;
  margin-right: 2px;
  border-right: 1px solid rgba(11, 27, 58, 0.14);
}

/* Logo images */
.header .logo img {
  width: auto;
  height: auto;
  display: block;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

/* ✅ Left (main) logos should be more prominent */
.header .logo--primary img {
  max-height: 52px;
  opacity: 1;
}

.header .logo--primary img+img {
  max-height: 46px;
  opacity: 0.98;
}

/* ✅ Right (partner) logos smaller */
.header .logo--partners img {
  max-height: 28px;
  opacity: 0.92;
}

/* Hover */
.header .logo img:hover {
  transform: scale(1.04);
}

/*--------------------------------------------------------------
# Nav: keep it centered + allow side logos to exist
--------------------------------------------------------------*/
@media (min-width: 1200px) {
  .header .navmenu {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    justify-content: center;
    /* center nav between logo groups */
  }
}

/*--------------------------------------------------------------
# Right logos: keep visible without pushing nav
# Use “logo strip” that can scroll horizontally when needed
--------------------------------------------------------------*/
.header .logo--partners {
  padding: 10px 12px;

  background: linear-gradient(to right,
      rgba(255, 255, 255, 0.96) 70%,
      rgba(255, 255, 255, 0.72) 100%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.10);

  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* Wrap the partner images in a scrollable strip (no wrap/overflow issues) */
.header .logo--partners .logo__strip {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  max-width: 380px;
  /* prevents nav from being crushed */
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;

  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  /* Firefox */
}

.header .logo--partners .logo__strip::-webkit-scrollbar {
  display: none;
  /* Chrome/Safari */
}

/*--------------------------------------------------------------
# CTA Button (unchanged)
--------------------------------------------------------------*/
.header .cta-btn,
.header .cta-btn:focus {
  color: var(--contrast-color);
  background: linear-gradient(180deg, var(--accent-color), var(--accent-strong));
  font-size: 14px;
  padding: 10px 26px;
  margin: 0 0 0 30px;
  border-radius: 999px;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background-color var(--transition-fast);
  box-shadow: 0 10px 26px rgba(30, 99, 214, 0.28);
  flex: 0 0 auto;
}

.header .cta-btn:hover,
.header .cta-btn:focus:hover {
  color: var(--contrast-color);
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(30, 99, 214, 0.34);
}

/*--------------------------------------------------------------
# Mobile nav toggle
--------------------------------------------------------------*/
.header .mobile-nav-toggle {
  flex: 0 0 auto;
  margin-left: auto;
  z-index: 5;

  width: 44px;
  height: 44px;

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

/*--------------------------------------------------------------
# Header Shadow + Background on Scroll
--------------------------------------------------------------*/
.scrolled .header {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  --background-color: rgba(1, 8, 33, 0.86);
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

/*--------------------------------------------------------------
# Navigation Menu (kept same behavior, slight tightening)
--------------------------------------------------------------*/

/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
    gap: 6px;
    flex-wrap: nowrap;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 15px;
    padding: 10px 14px;
    font-family: var(--nav-font);
    font-weight: 650;

    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;

    transition: background-color var(--transition-fast), color var(--transition-fast),
      box-shadow var(--transition-fast), transform var(--transition-fast);

    border-radius: 999px;
    text-decoration: none;
    border-bottom: 0;
    background: transparent;
  }

  /* Remove underline indicator */
  .navmenu>ul>li>a:before,
  .navmenu a:before,
  .navmenu a:after {
    content: none !important;
    display: none !important;
  }

  .navmenu a:hover,
  .navmenu li:hover>a {
    color: var(--nav-hover-color);
    background: color-mix(in srgb, var(--accent-color), transparent 86%);
  }

  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
    background: color-mix(in srgb, var(--accent-color), transparent 78%);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
    transform: translateY(-0.5px);
  }

  /* Dropdown */
  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: opacity var(--transition-fast), top var(--transition-fast);
    border-radius: 12px;
    z-index: 99;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    overflow: hidden;
  }

  .navmenu .dropdown ul li {
    min-width: 220px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 18px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
    font-weight: 600;
    border-radius: 10px;
    margin: 4px 8px;
    background: transparent;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
    background: color-mix(in srgb, var(--accent-color), transparent 92%);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    /* make it look like a real button */
    width: 44px;
    height: 44px;
    border-radius: 999px;

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

    font-size: 28px;
    line-height: 0;

    cursor: pointer;
    -webkit-tap-highlight-color: transparent;

    /* ✅ high contrast */
    color: #fff;
    background: rgba(1, 8, 33, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    transition: transform var(--transition-fast), background-color var(--transition-fast), box-shadow var(--transition-fast);
  }

  .mobile-nav-toggle:hover {
    transform: translateY(-1px);
    background: rgba(1, 8, 33, 0.70);
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 16px 16px 16px;
    padding: 10px 0;
    margin: 0;
    border-radius: 14px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    overflow-y: auto;
    transition: var(--transition);
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 12px 18px;
    font-family: var(--nav-font);
    font-size: 16px;
    font-weight: 650;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: background-color var(--transition-fast), color var(--transition-fast),
      box-shadow var(--transition-fast);
    border-radius: 12px;
    margin: 4px 10px;
    text-decoration: none;
    border-bottom: 0;
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 8px 0;
    margin: 10px 18px 10px 18px;
    background-color: color-mix(in srgb, var(--surface-color), var(--alt-background-color) 45%);
    transition: all var(--transition);
    border-radius: 12px;
    border: 1px solid var(--border-color);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 9999;

    width: 44px;
    height: 44px;
    border-radius: 999px;

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

    font-size: 32px;
    line-height: 0;

    color: #fff;
    background: rgba(2, 6, 23, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(2, 6, 23, 0.72);
    transition: var(--transition);
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }

  /* ✅ Tablet/mobile: keep partner logos visible but smaller */
  .header .logo--partners .logo__strip {
    max-width: 220px;
  }

  .header .logo--partners img {
    max-height: 24px;
  }

  .header .logo--primary img {
    max-height: 42px;
  }

  .header .logo--primary img+img {
    max-height: 38px;
  }

  .header .logo .logo__label {
    font-size: 10px;
  }
}

/* Very small phones: hide partner logos to avoid breaking header */
@media (max-width: 575px) {
  .header .logo--partners {
    display: none;
  }

  .header .logo--primary {
    padding: 8px 10px;
  }

  .header .logo .logo__label {
    display: none;
    /* save space on tiny screens */
  }
}


/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  background:
    radial-gradient(900px 500px at 15% 0%, rgba(30, 99, 214, 0.10), transparent 60%),
    radial-gradient(900px 500px at 90% 10%, rgba(11, 27, 58, 0.08), transparent 60%),
    radial-gradient(var(--dot-color) 1px, transparent 1px),
    color-mix(in srgb, var(--background-color), white 3%);
  background-size: auto, auto, 26px 26px, auto;
  padding-top: 56px;
  border-top: 1px solid var(--border-color);
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--default-font);
  color: color-mix(in srgb, var(--default-color), transparent 18%);
}

.footer h4 {
  font-size: 16px;
  font-weight: 750;
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 15px;
}

.footer h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 24px;
  height: 2px;
  background: var(--accent-color);
  bottom: 0;
  left: 0;
  border-radius: 99px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 6px;
  font-size: 12px;
  line-height: 0;
  color: color-mix(in srgb, var(--accent-color), black 15%);
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 28%);
  display: inline-block;
  line-height: 1.2;
}

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

.footer .footer-contact p {
  margin-bottom: 6px;
  color: color-mix(in srgb, var(--default-color), transparent 18%);
}

.footer .copyright {
  padding: 28px 0;
  border-top: 1px solid var(--border-color);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 5px;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 28%);
}

.footer .social-links a {
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: color-mix(in srgb, var(--surface-color), var(--alt-background-color) 35%);
  color: color-mix(in srgb, var(--heading-color), transparent 10%);
  line-height: 1;

  margin-right: 6px;
  border-radius: 12px;
  text-align: center;
  width: 40px;
  height: 40px;

  transition: transform var(--transition-fast), background-color var(--transition-fast), box-shadow var(--transition-fast);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-xs);
}

.footer .social-links a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(30, 99, 214, 0.22);
  text-decoration: none;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;

  background: linear-gradient(180deg, var(--accent-color), var(--accent-strong));
  width: 46px;
  height: 46px;
  border-radius: 999px;
  transition: all var(--transition);
  box-shadow: 0 18px 40px rgba(30, 99, 214, 0.22);
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 52px rgba(30, 99, 214, 0.28);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  --background-color: #000000;
  --heading-color: var(--contrast-color);
  --default-color: var(--contrast-color);

  color: var(--default-color);
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 45%);
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.page-title>.container {
  position: relative;
  z-index: 1;
}


.page-title h1 {
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.03em;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 500;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Global Sections (UPDATED: Modern background canvas per-section)
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);

  /* Modern layered background (not plain white) */
  background-color: var(--background-color);
  background-image:
    radial-gradient(1000px 600px at 18% -10%, var(--glow-1), transparent 62%),
    radial-gradient(900px 560px at 86% 12%, var(--glow-2), transparent 58%),
    radial-gradient(780px 520px at 50% 112%, rgba(30, 99, 214, 0.06), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.70), rgba(255, 255, 255, 0)),
    radial-gradient(var(--dot-color) 1px, transparent 1px);
  background-size: auto, auto, auto, auto, 26px 26px;
  background-position: 0 0, 0 0, 0 0, 0 0, 0 0;

  padding: clamp(56px, 6vw, 84px) 0;
  scroll-margin-top: 92px;
  overflow: clip;

  /* subtle separators (UX polish) */
  box-shadow: inset 0 1px 0 rgb(7 7 7 / 25%);
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 76px;
  }
}

/* Alternate sections get a slightly different tint, automatically */
section:nth-of-type(even) {
  background-image:
    radial-gradient(1000px 600px at 85% -10%, var(--glow-1), transparent 62%),
    radial-gradient(900px 560px at 12% 18%, var(--glow-2), transparent 58%),
    radial-gradient(760px 520px at 50% 112%, var(--glow-3), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0)),
    radial-gradient(var(--dot-color) 1px, transparent 1px);
  background-size: auto, auto, auto, auto, 26px 26px;
  background-position: 0 0, 0 0, 0 0, 0 0, 13px 13px;
}

/* Dark sections get a matching modern background */
section.dark-background,
.section.dark-background {
  background-color: var(--background-color);
  background-image:
    radial-gradient(1100px 650px at 20% -10%, var(--glow-1), transparent 62%),
    radial-gradient(900px 600px at 90% 10%, var(--glow-3), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0)),
    radial-gradient(var(--dot-color) 1px, transparent 1px);
  background-size: auto, auto, auto, 26px 26px;
  background-position: 0 0, 0 0, 0 0, 0 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 52px;
  position: relative;
}

.section-title h2 {
  font-size: clamp(1.6rem, 2.3vw, 2.2rem);
  font-weight: 850;
  margin-bottom: 18px;
  padding-bottom: 18px;
  position: relative;
  letter-spacing: -0.03em;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 56px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  border-radius: 99px;
}

.section-title p {
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
}

/*--------------------------------------------------------------
# Hero Section (UPDATED FULL CSS)
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 110px 0 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;

  overflow: hidden;
  isolation: isolate;

  /* typography tokens */
  --hero-font-heading: "Sora", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --hero-font-body: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;

  /* brighter + modern */
  filter: brightness(1.25) saturate(1.12) contrast(1.06);
  transform: scale(1.03);
}

/* 2) Lighter overlay (still keeps text readable) */
.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(1100px 650px at 25% 15%, rgba(30, 99, 214, 0.28), transparent 62%),
    radial-gradient(900px 520px at 85% 25%, rgba(59, 130, 246, 0.16), transparent 60%),
    linear-gradient(180deg,
      rgba(2, 6, 23, 0.4) 0%,
      rgba(2, 6, 23, 0.22) 45%,
      rgba(2, 6, 23, 0.14) 100%);
}

/* 3) Softer vignette (don’t darken too much) */
.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(1200px 700px at 50% 55%, transparent 45%, rgba(0, 0, 0, 0.30) 100%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 3;
  padding-left: 16px;
  padding-right: 16px;
}

/* Headings: SAME color + SAME base font family */
.hero h2 {
  font-family: var(--hero-font-heading);
  color: rgba(255, 255, 255, 0.96);
  text-transform: uppercase;

  margin: 0;
  font-weight: 900;
  line-height: 1.03;
  letter-spacing: -0.02em;
  text-shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
  word-spacing: clamp(0.18em, 0.35vw, 0.22em);
}

/* APSC (short mark): compact + “logo-ish” */
.hero .hero-title-short {
  font-size: clamp(4rem, 8.2vw, 8.2rem);
  letter-spacing: 0.08em;
  /* logo spacing */
  font-weight: 900;
  line-height: 1;
  margin-bottom: clamp(6px, 1.2vw, 14px);
  opacity: 0.98;
  color: color-mix(in srgb, #00296f, white 16%);

  text-shadow:
    /* outline ring */
    -1px -1px 0 rgba(255, 255, 255, 0.75),
    0px -1px 0 rgba(255, 255, 255, 0.75),
    1px -1px 0 rgba(255, 255, 255, 0.75),
    -1px 0px 0 rgba(255, 255, 255, 0.75),
    1px 0px 0 rgba(255, 255, 255, 0.75),
    -1px 1px 0 rgba(255, 255, 255, 0.75),
    0px 1px 0 rgba(255, 255, 255, 0.75),
    1px 1px 0 rgba(255, 255, 255, 0.75),

    /* depth */
    0 2px 10px rgba(0, 0, 0, .50),
    0 18px 50px rgba(0, 0, 0, .35);
}

/* Long title: main hierarchy, readable */
.hero .hero-title-long {
  font-size: clamp(2rem, 5vw, 3.8rem);
  letter-spacing: -0.02em;
  font-weight: 900;
  line-height: 1.05;
  max-width: 18ch;
  color: #6fd2ff;

  text-shadow:
    /* outline ring */
    -1px -1px 0 rgba(0, 0, 0, .75),
    0px -1px 0 rgba(0, 0, 0, .75),
    1px -1px 0 rgba(0, 0, 0, .75),
    -1px 0px 0 rgba(0, 0, 0, .75),
    1px 0px 0 rgba(0, 0, 0, .75),
    -1px 1px 0 rgba(0, 0, 0, .75),
    0px 1px 0 rgba(0, 0, 0, .75),
    1px 1px 0 rgba(0, 0, 0, .75),

    /* depth */
    0 2px 10px rgba(0, 0, 0, .50),
    0 18px 50px rgba(0, 0, 0, .35);
}

/* Make ONLY the "2026" use a modern display font */
.hero h2 span {
  font-family: "Space Grotesk", "Sora", "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: 0.02em;
  font-size: 1.08em;
  line-height: 1;

  font-variant-numeric: lining-nums;
  font-feature-settings: "ss01" 1, "ss02" 1;
  color: color-mix(in srgb, #00296f, white 16%);
}

/* Base paragraph defaults in hero */
.hero p {
  font-family: var(--hero-font-body);
  color: rgba(255, 255, 255, 0.92);
  margin: 12px 0 0 0;
  font-size: clamp(1rem, 2.1vw, 1.5rem);
  line-height: 1.45;
  max-width: 62ch;

  /* stronger readability on bright hero areas (no image change) */
  text-shadow:
    0 2px 0 rgba(0, 0, 0, 0.55),
    0 10px 26px rgba(0, 0, 0, 0.42),
    0 24px 70px rgba(0, 0, 0, 0.35);
}

.hero .hero-venue-name,
.hero .hero-date {
  font-family: var(--hero-font-body);
  color: color-mix(in srgb, #070fff, #fefdea 100%);
  letter-spacing: 0.012em;
  line-height: 1.2;
  max-width: min(72ch, 92vw);

  -webkit-text-stroke: 0;
  /* optional */

  text-shadow:
    /* outline ring */
    -1px -1px 0 rgba(0, 0, 0, .75),
    0px -1px 0 rgba(0, 0, 0, .75),
    1px -1px 0 rgba(0, 0, 0, .75),
    -1px 0px 0 rgba(0, 0, 0, .75),
    1px 0px 0 rgba(0, 0, 0, .75),
    -1px 1px 0 rgba(0, 0, 0, .75),
    0px 1px 0 rgba(0, 0, 0, .75),
    1px 1px 0 rgba(0, 0, 0, .75),

    /* depth */
    0 2px 10px rgba(0, 0, 0, .50),
    0 18px 50px rgba(0, 0, 0, .35);
}


/* Venue line 1 (primary) */
.hero .hero-venue-name {
  margin: 16px 0 0 0;
  font-size: clamp(2.12rem, 3.6vw, 3.9rem);
  font-weight: 900;
}

/* Venue full form (second line) — same style family, softer hierarchy */
.hero .hero-venue-name+.hero-venue-name {
  margin-top: 8px;
  font-size: clamp(1.02rem, 2.15vw, 1.8rem);
  font-weight: 800;
  opacity: 0.9;
}

/* Date line — same look as venue, but different “style” via spacing + tracking + subtle glow */
.hero .hero-date {
  margin-top: 14px;
  font-size: clamp(1.12rem, 2.6vw, 1.75rem);
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;

  text-shadow:
    /* outline ring */
    -1px -1px 0 rgba(0, 0, 0, .75),
    0px -1px 0 rgba(0, 0, 0, .75),
    1px -1px 0 rgba(0, 0, 0, .75),
    -1px 0px 0 rgba(0, 0, 0, .75),
    1px 0px 0 rgba(0, 0, 0, .75),
    -1px 1px 0 rgba(0, 0, 0, .75),
    0px 1px 0 rgba(0, 0, 0, .75),
    1px 1px 0 rgba(0, 0, 0, .75),

    /* depth */
    0 2px 10px rgba(0, 0, 0, .50),
    0 18px 50px rgba(0, 0, 0, .35);
}

/* Optional: add a minimal divider feel without boxes */
.hero .hero-venue-name+.hero-venue-name::after {
  content: "";
  display: block;
  margin: 12px auto 0;
  width: min(240px, 56vw);
  height: 2px;
  border-radius: 999px;

  /* slightly stronger so it shows even on bright areas */
  background: linear-gradient(90deg,
      transparent,
      rgba(0, 0, 0, 0.22),
      rgba(255, 255, 255, 0.22),
      rgba(0, 0, 0, 0.22),
      transparent);
  opacity: 0.95;
  filter: blur(0.2px);
}

/* small-screen tuning */
@media (max-width: 575px) {
  .hero .hero-title-long {
    max-width: 22ch;
    line-height: 1.08;
  }

  .hero .hero-title-short {
    letter-spacing: 0.16em;
  }
}

/* =========================================================
   Venue (replaces "Save the date")
========================================================= */

/* Label pill */
.hero-venue-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  margin: 16px 0 8px;
  padding: 10px 14px;

  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);

  color: rgba(255, 255, 255, 0.96);
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: clamp(0.72rem, 0.6vw, 0.92rem);

  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Optional: location pin icon using Bootstrap Icons */
.hero-venue-label::before {
  content: "\F3E7";
  /* bi-geo-alt */
  font-family: "bootstrap-icons";
  font-weight: normal;
  font-size: 1.05em;
  opacity: 0.95;
}

/* Venue name (strong, modern) */
.hero-venue-name {
  margin: 0 0 6px;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 750;
  letter-spacing: 0.01em;
  font-size: clamp(1.05rem, 1.15vw, 1.55rem);
  max-width: 55ch;

  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.80));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;

  text-shadow: none;
}

/* Date line (secondary emphasis) */
.hero-date {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 650;
  letter-spacing: 0.02em;
  font-size: clamp(1.02rem, 1.05vw, 1.35rem);
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

/* Fallback if blur not supported */
@supports not ((backdrop-filter: blur(10px)) or (-webkit-backdrop-filter: blur(10px))) {
  .hero-venue-label {
    background: rgba(0, 0, 0, 0.38);
  }
}

/* =========================================================
   Buttons
========================================================= */

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 18px;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 12px 32px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  font-family: var(--nav-font);
  text-transform: uppercase;
  letter-spacing: 0.03em;

  transition: transform var(--transition-fast), box-shadow var(--transition-fast),
    background-color var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
  text-decoration: none;
  will-change: transform;
}

/* Unified modern hero button (applies to BOTH) */
.btn-register,
.btn-abstract {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 12px 22px;
  border-radius: 999px;

  font-weight: 800;
  letter-spacing: 0.2px;
  text-decoration: none;

  color: var(--contrast-color);
  background: linear-gradient(180deg, var(--accent-color), var(--accent-strong));
  border: 1px solid color-mix(in srgb, var(--accent-color), black 12%);

  box-shadow:
    0 16px 40px rgba(30, 99, 214, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);

  cursor: pointer;
  user-select: none;

  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

/* Same hover for both: clearly clickable */
.btn-register:hover,
.btn-abstract:hover {
  transform: translateY(-2px);
  box-shadow:
    0 22px 60px rgba(30, 99, 214, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.26);
  filter: brightness(1.04) saturate(1.05);
  color: var(--contrast-color);
}

/* Active / pressed */
.btn-register:active,
.btn-abstract:active {
  transform: translateY(0px) scale(0.985);
  box-shadow:
    0 12px 30px rgba(30, 99, 214, 0.34),
    inset 0 2px 10px rgba(0, 0, 0, 0.12);
}

/* Keyboard accessibility */
.btn-register:focus-visible,
.btn-abstract:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--accent-color), white 55%);
  outline-offset: 4px;
}

/* Disabled (if you ever use it on <button>) */
.btn-register:disabled,
.btn-abstract:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  filter: none;
  box-shadow: none;
}

/* =========================================================
   Responsive polish
========================================================= */

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

  .hero p {
    max-width: 44ch;
  }

  .btn-hero {
    padding: 11px 22px;
    font-size: 14px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
    width: min(380px, 92vw);
  }

  .hero-buttons .btn-hero {
    width: 100%;
  }
}

@media (max-width: 575.98px) {
  .hero-venue-label {
    padding: 9px 12px;
    letter-spacing: 0.12em;
  }

  .hero-venue-name {
    font-size: clamp(1.02rem, 4.2vw, 1.32rem);
    max-width: 34ch;
  }

  .hero-date {
    font-size: clamp(0.98rem, 4vw, 1.2rem);
  }
}

/* Keep legacy selectors safe if still used elsewhere */
.hero-save-label,
.hero-save-date {
  display: none !important;
}


/*--------------------------------------------------------------
# Speakers Section
--------------------------------------------------------------*/
.speakers {
  --default-color: #ffffff;
}

.speakers .member {
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.speakers .member .member-info {
  position: absolute;
  padding: 15px 0;
  inset: auto 0 -44px 0;
  background: rgba(0, 0, 0, 0.62);
  transition: 0.4s;
  backdrop-filter: blur(6px);
}

.speakers .member .member-info-content h4 {
  color: var(--contrast-color);
  font-weight: 800;
  margin-bottom: 4px;
  font-size: 16px;
}

.speakers .member .member-info-content h4 a {
  color: var(--contrast-color);
}

.speakers .member .member-info-content h4 a:hover {
  color: color-mix(in srgb, var(--accent-color), white 12%);
}

.speakers .member .member-info-content span {
  font-style: italic;
  display: block;
  font-size: 13px;
}

.speakers .member .social {
  text-align: center;
  padding-top: 10px;
}

.speakers .member .social a {
  transition: color var(--transition-fast);
  color: color-mix(in srgb, var(--default-color), transparent 24%);
  margin: 0 4px;
  display: inline-block;
}

.speakers .member .social a:hover {
  color: var(--default-color);
}

.speakers .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.speakers .member:hover .member-info {
  bottom: 0;
}

/*--------------------------------------------------------------
# Schedule Section
--------------------------------------------------------------*/
.schedule {
  --background-color: color-mix(in srgb, var(--alt-background-color), transparent 0%);
}

.schedule .nav-tabs {
  text-align: center;
  margin: auto;
  display: block;
  border-bottom: 0;
  margin-bottom: 30px;
}

.schedule .nav-tabs li {
  display: inline-block;
  margin-bottom: 0;
}

.schedule .nav-tabs a {
  border: 1px solid color-mix(in srgb, var(--heading-color), transparent 82%);
  border-radius: 999px;
  font-weight: 750;
  background-color: color-mix(in srgb, var(--heading-color), transparent 0%);
  color: var(--contrast-color);
  padding: 10px 100px;
  transition: background-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
  box-shadow: var(--shadow-xs);
}

.schedule .nav-tabs a:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

@media (max-width: 991px) {
  .schedule .nav-tabs a {
    padding: 8px 60px;
  }
}

@media (max-width: 767px) {
  .schedule .nav-tabs a {
    padding: 8px 50px;
  }
}

@media (max-width: 480px) {
  .schedule .nav-tabs a {
    padding: 8px 30px;
  }
}

.schedule .nav-tabs a.active {
  background-color: var(--accent-color);
  border-color: color-mix(in srgb, var(--accent-color), black 10%);
  color: var(--contrast-color);
  box-shadow: 0 14px 34px rgba(30, 99, 214, 0.26);
}

.schedule .sub-heading {
  text-align: center;
  font-size: 18px;
  font-style: italic;
  margin: 0 auto 30px auto;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

@media (min-width: 991px) {
  .schedule .sub-heading {
    width: 75%;
  }
}

.schedule .tab-pane {
  transition: ease-in-out 0.2s;
}

.schedule .schedule-item {
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  padding-top: 15px;
  padding-bottom: 15px;
  transition: background-color var(--transition-fast);
  border-radius: 12px;
}

.schedule .schedule-item:hover {
  background-color: color-mix(in srgb, var(--surface-color), var(--alt-background-color) 35%);
}

.schedule .schedule-item time {
  padding-bottom: 5px;
  display: inline-block;
  color: color-mix(in srgb, var(--default-color), transparent 18%);
  font-weight: 600;
}

.schedule .schedule-item .speaker {
  width: 60px;
  height: 60px;
  overflow: hidden;
  border-radius: 50%;
  float: left;
  margin: 0 10px 10px 0;
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 55%);
}

.schedule .schedule-item .speaker img {
  height: 100%;
  transform: translateX(-50%);
  margin-left: 50%;
  transition: all ease-in-out 0.3s;
}

.schedule .schedule-item h4 {
  font-size: 18px;
  font-weight: 750;
  margin-bottom: 5px;
}

.schedule .schedule-item h4 span {
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 45%);
  font-weight: 500;
  font-size: 16px;
}

.schedule .schedule-item p {
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 28%);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Messages Section Styling
--------------------------------------------------------------*/
.messages .message-card {
  background-color: var(--surface-color);
  border: 1px solid var(--border-color);
  padding: 30px 22px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition-fast);
}

.messages .message-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-color-strong);
}

.message-img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border: 4px solid color-mix(in srgb, var(--accent-color), white 8%);
}

.message-card h4 {
  font-weight: 850;
  color: var(--heading-color);
}

.message-card .position {
  color: color-mix(in srgb, var(--default-color), transparent 38%);
  font-style: italic;
  font-size: 14px;
}

.message-card .message-text {
  color: color-mix(in srgb, var(--default-color), transparent 18%);
  font-size: 15px;
  margin-bottom: 15px;
  line-height: 1.7;
  height: 90px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.btn-read-more {
  color: var(--accent-color);
  font-weight: 750;
  text-decoration: none;
  border: 1px solid color-mix(in srgb, var(--accent-color), black 8%);
  padding: 9px 18px;
  border-radius: 999px;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background-color var(--transition-fast),
    color var(--transition-fast), border-color var(--transition-fast);
  background: transparent;
}

.btn-read-more:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(30, 99, 214, 0.22);
}

/* Modal customization */
.modal-content {
  border-radius: var(--radius-lg);
  background: var(--surface-color);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.modal-title {
  font-size: 20px;
  color: var(--heading-color);
  letter-spacing: -0.02em;
}

.modal-body {
  font-size: 15.5px;
  line-height: 1.9;
  color: color-mix(in srgb, var(--default-color), transparent 8%);
  text-align: justify;
}

.modal-body strong {
  color: var(--accent-color);
}

.modal-body em {
  color: color-mix(in srgb, var(--default-color), transparent 22%);
  font-style: italic;
}

#presidentModal strong,
#presidentModal .modal-body strong,
#vpModal strong,
#vpModal .modal-body strong {
  color: #000 !important;
  font-weight: 800;
}

/*--------------------------------------------------------------
# Key Information / Quick Facts Section
--------------------------------------------------------------*/
.key-info {
  /* Let the global section canvas show through (no plain white block) */
  background: #ffc10717;
  /* 74b2fbc2 */
  padding: 60px 0;
}

.key-info .info-card {
  background: color-mix(in srgb, rgb(13 110 253 / 12%), var(--alt-background-color) 10%);
  border-radius: var(--radius-lg);
  padding: 30px 22px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition-fast);
  height: 100%;
}

.key-info .info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-color-strong);
}

.key-info .icon {
  font-size: 40px;
  color: var(--accent-color);
}

.key-info h4 {
  font-weight: 850;
  font-size: 18px;
  color: var(--heading-color);
  margin-bottom: 10px;
}

.key-info p {
  color: color-mix(in srgb, var(--default-color), transparent 18%);
  font-size: 15px;
  min-height: 60px;
  line-height: 1.65;
}

.key-info .read-more {
  display: inline-block;
  color: var(--accent-color);
  font-weight: 750;
  text-decoration: none;
  margin-top: 10px;
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.key-info .read-more i {
  margin-left: 4px;
  transition: transform var(--transition-fast);
}

.key-info .read-more:hover {
  color: color-mix(in srgb, var(--accent-color), black 15%);
}

.key-info .read-more:hover i {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .key-info .info-card {
    padding: 25px 18px;
  }
}

/*--------------------------------------------------------------
# Highlights Section
--------------------------------------------------------------*/
.highlights {
  background: transparent;
  padding: 60px 0;
}

.highlight-card {
  background: color-mix(in srgb, var(--surface-color), var(--alt-background-color) 10%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition-fast);
  height: 100%;
}

.highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-color-strong);
}

.highlight-card .icon {
  font-size: 40px;
  color: var(--accent-color);
}

.highlight-card h4 {
  font-weight: 850;
  color: var(--heading-color);
  margin-bottom: 15px;
}

.highlight-card p,
.highlight-card li {
  color: color-mix(in srgb, var(--default-color), transparent 18%);
  font-size: 15px;
  line-height: 1.65;
}

.highlight-card ul {
  padding: 0;
  margin: 0;
}

.highlight-card li i {
  color: var(--accent-color);
}

.highlight-card .flags img {
  width: 32px;
  height: 22px;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 78%);
}

.highlight-card .read-more {
  display: inline-block;
  color: var(--accent-color);
  font-weight: 750;
  text-decoration: none;
  margin-top: 10px;
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.highlight-card .read-more i {
  margin-left: 4px;
  transition: transform var(--transition-fast);
}

.highlight-card .read-more:hover {
  color: color-mix(in srgb, var(--accent-color), black 15%);
}

.highlight-card .read-more:hover i {
  transform: translateX(4px);
}

/*--------------------------------------------------------------
# Cultural & Heritage Gallery
--------------------------------------------------------------*/
.culture-gallery {
  /* Updated: not plain white; keep it clean but “premium” */
  background:
    radial-gradient(900px 520px at 15% 0%, rgba(30, 99, 214, 0.08), transparent 60%),
    radial-gradient(900px 520px at 90% 10%, rgba(11, 27, 58, 0.06), transparent 60%),
    radial-gradient(var(--dot-color) 1px, transparent 1px),
    color-mix(in srgb, var(--surface-soft), var(--alt-background-color) 35%);
  background-size: auto, auto, 26px 26px, auto;

  padding: 70px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.culture-gallery .section-title h2 {
  font-weight: 850;
  color: var(--heading-color);
  margin-bottom: 10px;
}

.culture-gallery .section-title p {
  color: color-mix(in srgb, var(--default-color), transparent 28%);
  font-size: 15px;
  margin-bottom: 40px;
}

.heritage-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition-fast);
}

.heritage-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-color-strong);
}

.heritage-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.heritage-info {
  background: linear-gradient(180deg, var(--accent-color), var(--accent-strong));
  padding: 12px 10px;
  text-align: center;
}

.heritage-info h5 {
  color: #fff;
  font-size: 15px;
  font-weight: 750;
  margin: 0;
  text-transform: none;
}

@media (max-width: 992px) {
  .heritage-card img {
    height: 180px;
  }
}

@media (max-width: 768px) {
  .heritage-card img {
    height: 160px;
  }
}

/*--------------------------------------------------------------
# Venue Section
--------------------------------------------------------------*/
.venue .container-fluid {
  margin-bottom: 3px;
}

.venue .venue-map iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
}

.venue .venue-info {
  background: url("../img/venue-info-bg.jpg") top center no-repeat;
  background-size: cover;
  position: relative;
  padding-top: 60px;
  padding-bottom: 60px;
}

.venue .venue-info:before {
  content: "";
  background: rgba(0, 0, 0, 0.52);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.venue .venue-info h3 {
  font-size: 36px;
  font-weight: 850;
  color: var(--contrast-color);
}

@media (max-width: 574px) {
  .venue .venue-info h3 {
    font-size: 24px;
  }
}

.venue .venue-info p {
  color: var(--contrast-color);
  margin-bottom: 0;
}

.venue .venue-gallery-container {
  padding-right: 12px;
}

.venue .venue-gallery {
  overflow: hidden;
  border-right: 3px solid var(--background-color);
  border-bottom: 3px solid var(--background-color);
}

.venue .venue-gallery img {
  transition: all ease-in-out 0.4s;
}

.venue .venue-gallery:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Hotels Section
--------------------------------------------------------------*/
.hotels .card {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid var(--border-color);
  position: relative;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition-fast);
}

.hotels .card .card-img {
  overflow: hidden;
  margin-bottom: 15px;
  border-radius: 0;
}

.hotels .card .card-img img {
  transition: 0.3s ease-in-out;
}

.hotels .card h3 {
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 5px;
  padding: 0 20px;
}

.hotels .card a {
  color: var(--heading-color);
  transition: color var(--transition-fast);
}

.hotels .card a:hover {
  color: var(--accent-color);
}

.hotels .card .stars {
  padding: 0 20px;
  margin-bottom: 5px;
}

.hotels .card .stars i {
  color: #ffc107;
}

.hotels .card p {
  padding: 0 20px;
  margin-bottom: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  font-style: italic;
  font-size: 15px;
}

.hotels .card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-color-strong);
}

.hotels .card:hover .card-img img {
  transform: scale(1.08);
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery {
  overflow: hidden;
}

.gallery .swiper-wrapper {
  height: auto;
}

.gallery .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.gallery .swiper-pagination .swiper-pagination-bullet {
  background-color: var(--background-color);
  border: 1px solid var(--accent-color);
  width: 12px;
  height: 12px;
  opacity: 1;
}

.gallery .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.gallery .swiper-slide-active {
  text-align: center;
}

@media (min-width: 992px) {
  .gallery .swiper-wrapper {
    padding: 40px 0;
  }

  .gallery .swiper-slide-active {
    background: var(--background-color);
    border: 6px solid var(--accent-color);
    padding: 4px;
    z-index: 1;
    transform: scale(1.2);
    transition: none;
  }
}

/*--------------------------------------------------------------
# Sponsors Section
--------------------------------------------------------------*/
.sponsors .clients-wrap {
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-left: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.sponsors .client-logo {
  background-color: var(--surface-color);
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  overflow: hidden;
}

.sponsors .client-logo img {
  padding: 50px;
  max-width: 80%;
  transition: 0.3s;
}

@media (max-width: 640px) {
  .sponsors .client-logo img {
    padding: 30px;
    max-width: 50%;
  }
}

.sponsors .client-logo:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Faq Section (Fixed header height / clean expand)
--------------------------------------------------------------*/
.faq .faq-container .faq-item {
  background-color: color-mix(in srgb, var(--surface-color), var(--alt-background-color) 10%);
  position: relative;
  margin-bottom: 15px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-xs);

  /* ✅ key change: don't pad the whole card */
  padding: 0;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

/* ✅ Header (question row) gets its own padding */
.faq .faq-container .faq-item h3 {
  font-weight: 750;
  font-size: 16px;
  line-height: 24px;
  margin: 0;
  cursor: pointer;
  display: flex;
  align-items: center;

  /* left/right padding with space for the toggle icon */
  padding: 20px 56px 20px 20px;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 6px;
  font-weight: 850;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

/* ✅ Toggle icon stays aligned with header only */
.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  right: 20px;
  top: 32px;
  /* fallback */
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

/* ✅ Content collapses cleanly without affecting header padding */
.faq .faq-container .faq-item .faq-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: max-height 0.35s ease, opacity 0.25s ease;
}

/* Inner content padding (so header doesn't “grow”) */
.faq .faq-container .faq-item .faq-content>* {
  padding: 0 20px 20px 20px;
}

.faq .faq-container .faq-item .faq-content p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 18%);
}

/* Active state */
.faq .faq-container .faq-active {
  background-color: color-mix(in srgb, var(--accent-color), transparent 96%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 75%);
}

.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}

/* ✅ Expand answer area */
.faq .faq-container .faq-active .faq-content {
  max-height: 800px;
  /* increase if your answers are longer */
  opacity: 1;
  visibility: visible;
}

/* Rotate chevron */
.faq .faq-container .faq-active .faq-toggle {
  transform: translateY(-50%) rotate(90deg);
  color: var(--accent-color);
}


/*--------------------------------------------------------------
# Buy Tickets Section
--------------------------------------------------------------*/
.buy-tickets .pricing-item {
  background-color: color-mix(in srgb, var(--surface-color), var(--alt-background-color) 8%);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding-bottom: 30px;
  position: relative;
  overflow: hidden;
}

.buy-tickets .pricing-item h3 {
  font-weight: 850;
  margin-bottom: 0;
  font-size: 24px;
}

.buy-tickets .pricing-item h4 {
  font-size: 48px;
  color: var(--accent-color);
  font-weight: 500;
  font-family: var(--heading-font);
  margin-bottom: 25px;
  text-align: center;
  letter-spacing: -0.03em;
}

.buy-tickets .pricing-item h4 sup {
  font-size: 28px;
}

.buy-tickets .pricing-item h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 55%);
  font-size: 18px;
}

.buy-tickets .pricing-item ul {
  padding: 20px 0;
  list-style: none;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  text-align: left;
  line-height: 20px;
}

.buy-tickets .pricing-item ul li {
  padding-top: 15px;
  display: flex;
  align-items: center;
}

.buy-tickets .pricing-item ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}

.buy-tickets .pricing-item ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.buy-tickets .pricing-item ul .na i {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.buy-tickets .pricing-item ul .na span {
  text-decoration: line-through;
}

.buy-tickets .buy-btn {
  color: var(--contrast-color);
  background: linear-gradient(180deg, var(--accent-color), var(--accent-strong));
  border: 1px solid color-mix(in srgb, var(--accent-color), black 10%);
  display: inline-block;
  padding: 12px 40px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background-color var(--transition-fast);
  font-family: var(--heading-font);
  box-shadow: 0 12px 30px rgba(30, 99, 214, 0.24);
}

.buy-tickets .buy-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 38px rgba(30, 99, 214, 0.30);
}

.buy-tickets .featured {
  background: linear-gradient(180deg, var(--accent-color), var(--accent-strong));
  border-color: rgba(255, 255, 255, 0.22);
}

.buy-tickets .featured h3,
.buy-tickets .featured h4,
.buy-tickets .featured h4 span,
.buy-tickets .featured ul,
.buy-tickets .featured ul .na,
.buy-tickets .featured ul i,
.buy-tickets .featured ul .na i {
  color: var(--contrast-color);
}

.buy-tickets .featured .buy-btn {
  background: transparent;
  color: var(--contrast-color);
  border-color: rgba(255, 255, 255, 0.7);
  box-shadow: none;
}

.buy-tickets .featured .buy-btn:hover {
  background: rgba(255, 255, 255, 0.12);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  background-color: color-mix(in srgb, var(--surface-color), var(--alt-background-color) 8%);
  padding: 20px 0 30px 0;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
}

.contact .info-item i {
  color: var(--accent-color);
  width: 56px;
  height: 56px;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;

  border-radius: 50%;
  border: 2px dotted color-mix(in srgb, var(--accent-color), transparent 40%);
  transition: all var(--transition-fast);
}

.contact .info-item:hover i {
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
}

.contact .info-item h3 {
  font-size: 18px;
  font-weight: 850;
  margin: 10px 0;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.contact .php-email-form {
  background-color: color-mix(in srgb, var(--surface-color), var(--alt-background-color) 6%);
  height: 100%;
  padding: 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

.contact .php-email-form input[type="text"],
.contact .php-email-form input[type="email"],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 12px 14px;
  box-shadow: none;
  border-radius: 12px;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--surface-color), var(--alt-background-color) 25%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background-color var(--transition-fast);
}

.contact .php-email-form input[type="text"]:focus,
.contact .php-email-form input[type="email"]:focus,
.contact .php-email-form textarea:focus {
  border-color: color-mix(in srgb, var(--accent-color), black 8%);
  box-shadow: var(--focus-ring);
  background-color: var(--surface-color);
}

.contact .php-email-form input[type="text"]::placeholder,
.contact .php-email-form input[type="email"]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.contact .php-email-form button[type="submit"] {
  color: var(--contrast-color);
  background: linear-gradient(180deg, var(--accent-color), var(--accent-strong));
  border: 0;
  padding: 11px 30px;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background-color var(--transition-fast);
  border-radius: 999px;
  font-weight: 750;
  box-shadow: 0 12px 30px rgba(30, 99, 214, 0.22);
}

.contact .php-email-form button[type="submit"]:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 38px rgba(30, 99, 214, 0.28);
}

/* =========================================================
   Contact: Split panels (Venue/Map + Contact/Form)
   Add this at the END of your CSS
========================================================= */

.contact .contact-panel {
  background: color-mix(in srgb, var(--surface-color), var(--alt-background-color) 6%);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 18px;
  height: 100%;
}

@media (min-width: 992px) {
  .contact .contact-panel {
    padding: 22px;
  }
}

.contact .contact-panel__head {
  margin-bottom: 14px;
  padding: 14px 14px 12px;
  border-radius: 16px;
  background: linear-gradient(180deg,
      color-mix(in srgb, var(--accent-color), transparent 92%),
      color-mix(in srgb, var(--surface-color), var(--alt-background-color) 10%));
  border: 1px solid color-mix(in srgb, var(--border-color), transparent 0%);
}

.contact .contact-panel__title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 6px;
  font-weight: 900;
  font-size: 18px;
  color: var(--heading-color);
  letter-spacing: -0.02em;
}

.contact .contact-panel__title i {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
}

.contact .contact-panel__subtitle {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 14px;
  line-height: 1.55;
}

/* Map wrapper with consistent styling */
.contact .contact-map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-xs);
  background: var(--surface-color);
}

.contact .contact-map-wrap iframe {
  display: block;
  width: 100%;
  height: 380px;
}

@media (max-width: 575px) {
  .contact .contact-map-wrap iframe {
    height: 320px;
  }
}

.contact .contact-map-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  padding: 12px 12px;
  font-weight: 800;
  text-decoration: none;

  color: var(--accent-color);
  background: color-mix(in srgb, var(--surface-color), var(--alt-background-color) 20%);
  border-top: 1px solid var(--border-color);

  transition: transform var(--transition-fast), background-color var(--transition-fast), color var(--transition-fast);
}

.contact .contact-map-link:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  transform: translateY(-1px);
  text-decoration: none;
}

/* Email link style inside info card */
.contact .contact-email {
  color: var(--accent-color);
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid color-mix(in srgb, var(--accent-color), transparent 65%);
}

.contact .contact-email:hover {
  border-bottom-color: color-mix(in srgb, var(--accent-color), transparent 25%);
}


/*--------------------------------------------------------------
# Events Section
--------------------------------------------------------------*/
.events .details h2 {
  font-size: 28px;
  font-weight: 850;
  margin-bottom: 10px;
}

.events .details .social {
  margin-bottom: 15px;
}

.events .details .social a {
  background: color-mix(in srgb, var(--default-color), transparent 92%);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  text-align: center;
  border-radius: 999px;
  width: 36px;
  height: 36px;
  transition: transform var(--transition-fast), background-color var(--transition-fast), color var(--transition-fast);
}

.events .details .social a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-1px);
}

.events .details .social a i {
  font-size: 16px;
  line-height: 0;
}

.events .details p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 15px;
  margin-bottom: 10px;
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

.travel-card {
  background: var(--surface-color);
  border-radius: var(--radius-lg);
  padding: 30px 22px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition-fast);
}


.policy-card {
  background: var(--surface-color);
  border-radius: var(--radius-lg);
  padding: 30px 22px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition-fast);
}

.abstract-guidelines-page .register-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  background: linear-gradient(180deg, #1f5eff 0%, #0b3fb7 100%);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 10px 24px rgba(3, 10, 100, 0.22);
}

.abstract-card {
  background: var(--surface-color);
  border-radius: var(--radius-lg);
  padding: 30px 22px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition-fast);
}

.abstract-card ul li,
.abstract-card p {
  font-size: 16px;
  line-height: 1.8;
}

.abstract-card h3 {
  margin-top: 40px;
  margin-bottom: 15px;
  font-weight: 850;
}

.dates-table {
  margin-top: 20px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  width: 100%;
  border: 1px solid var(--border-color);
}

.dates-table th {
  background: linear-gradient(180deg, var(--accent-color), var(--accent-strong));
  color: #fff;
  padding: 14px;
  font-size: 16px;
  text-align: center;
  letter-spacing: -0.01em;
}

.dates-table td {
  padding: 14px;
  background: #fff;
  font-size: 15.5px;
  border-bottom: 1px solid #eee;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.dates-table tr:last-child td {
  border-bottom: none;
}

.registration-card p,
.registration-card li {
  font-size: 16px;
  line-height: 1.8;
}

.registration-card h3 {
  margin-top: 40px;
  margin-bottom: 15px;
  font-weight: 850;
}

/* Desktop table (default) */
/* .fees-table-responsive {
  overflow-x: auto;
} */

/* ===== Registration page (UPDATED) ===== */

.registration-page .page-title--registration {
  position: relative;
  isolation: isolate;
  background-image: url("assets/img/caraousal1.png");
  background-size: cover;
  background-position: center;
  padding: 120px 0 80px;
  color: #fff;
}

.registration-page .page-title--registration .page-title__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(3, 10, 100, 0.72) 0%,
      rgba(3, 10, 100, 0.35) 55%,
      rgba(3, 10, 100, 0.65) 100%);
  z-index: 1;
  pointer-events: none;
}

.registration-page .page-title--registration .page-title__inner {
  position: relative;
  z-index: 2;
}

/* Section spacing */
.registration-page .registration-section {
  padding-top: 48px;
  padding-bottom: 64px;
}

/* Card */
.registration-page .registration-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid rgba(3, 10, 100, 0.08);
  box-shadow: 0 10px 30px rgba(3, 10, 100, 0.06);
}

@media (min-width: 768px) {
  .registration-page .registration-card {
    padding: 36px;
  }
}

.registration-page .registration-header {
  margin-bottom: 18px;
}

.registration-page .registration-header a {
  color: #0d6efd;
  text-decoration: none;
  border-bottom: 1px solid rgba(13, 110, 253, 0.35);
}

.registration-page .registration-header a:hover {
  border-bottom-color: rgba(13, 110, 253, 0.85);
}

/* Divider */
.registration-page .registration-divider {
  height: 1px;
  background: rgba(3, 10, 100, 0.10);
  margin: 22px 0;
}

/* =========================================================
   FEES TABLES — UPDATED (SEPARATE + TITLES CENTERED)
   ========================================================= */

.registration-page .fees-tables {
  display: grid;
  gap: 22px;
  margin-top: 14px;
}

/* Card wrapper per table (makes tables feel separate) */
.registration-page .fees-table-card {
  position: relative;
  border-radius: 22px;
  padding: 18px;
  border: 1px solid rgba(3, 10, 100, 0.10);
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.62) 0%,
      rgba(255, 255, 255, 0.42) 100%);
  box-shadow: 0 18px 44px rgba(3, 10, 100, 0.10);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* subtle accent line */
.registration-page .fees-table-card::before {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  top: 10px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(13, 110, 253, 0.25), rgba(3, 10, 100, 0.18));
  opacity: 0.9;
}

/* Title centered above each table */
.registration-page .fees-table-card__head {
  display: flex;
  justify-content: center;
  text-align: center;
  padding: 10px 10px 14px;
}

.registration-page .fees-table-title {
  margin: 0;
  max-width: 920px;
  font-weight: 900;
  font-size: 18px;
  line-height: 1.25;
  color: #030a64;
  letter-spacing: 0.2px;
}

/* Desktop table (default) */
.fees-table-responsive {
  overflow: auto;
  /* keep x-scroll + clip rounded corners */
  border-radius: 18px;
  border: 1px solid rgba(3, 10, 100, 0.12);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 12px 28px rgba(3, 10, 100, 0.08);
  -webkit-overflow-scrolling: touch;
}

/* focus ring for keyboard users (tabindex=0 container) */
.registration-page .fees-table-responsive:focus {
  outline: 3px solid rgba(13, 110, 253, 0.22);
  outline-offset: 4px;
}

/* nicer scrollbars (optional, safe) */
.registration-page .fees-table-responsive::-webkit-scrollbar {
  height: 10px;
  width: 10px;
}

.registration-page .fees-table-responsive::-webkit-scrollbar-track {
  background: rgba(3, 10, 100, 0.05);
  border-radius: 999px;
}

.registration-page .fees-table-responsive::-webkit-scrollbar-thumb {
  background: rgba(3, 10, 100, 0.22);
  border-radius: 999px;
}

.registration-page .fees-table-responsive::-webkit-scrollbar-thumb:hover {
  background: rgba(3, 10, 100, 0.32);
}

/* ===== Table (modern + clean) ===== */
.registration-page .fees-table {
  width: 100%;
  min-width: 1120px;
  /* desktop scroll breathing room */
  border-collapse: separate;
  border-spacing: 0;
  font-size: 15px;
  line-height: 1.35;
}

/* header rows */
.registration-page .fees-table thead th {
  color: #0b135c;
  font-weight: 800;
  padding: 16px 16px;
  border-bottom: 1px solid rgba(3, 10, 100, 0.12);
  vertical-align: middle;
  background: rgba(3, 10, 100, 0.06);
}

/* top header band */
.registration-page .fees-table thead tr:first-child th {
  background: linear-gradient(180deg,
      rgba(3, 10, 100, 0.12) 0%,
      rgba(3, 10, 100, 0.08) 100%);
  font-size: 15.5px;
  letter-spacing: 0.2px;
}

/* second header row can wrap */
.registration-page .fees-table thead tr:nth-child(2) th {
  white-space: normal;
  font-weight: 700;
  color: rgba(11, 19, 92, 0.92);
}

/* sticky header inside scroll container (desktop) */
.registration-page .fees-table thead th {
  position: sticky;
  top: 0;
  z-index: 3;
}

/* cell borders (vertical separators) */
.registration-page .fees-table thead th,
.registration-page .fees-table td,
.registration-page .fees-table tbody th {
  border-right: 1px solid rgba(3, 10, 100, 0.08);
}

.registration-page .fees-table thead th:last-child,
.registration-page .fees-table td:last-child,
.registration-page .fees-table tbody th:last-child {
  border-right: none;
}

/* body cells */
.registration-page .fees-table td,
.registration-page .fees-table tbody th {
  padding: 16px 16px;
  border-bottom: 1px solid rgba(3, 10, 100, 0.10);
  color: #111827;
  background: rgba(255, 255, 255, 0.90);
  /* less harsh than pure #fff */
  vertical-align: middle;
}

/* column sizing */
.registration-page .fees-col-category {
  min-width: 340px;
}

/* align money columns nicely */
.registration-page .fees-table tbody tr:not(.fees-group) td:nth-child(2),
.registration-page .fees-table tbody tr:not(.fees-group) td:nth-child(3),
.registration-page .fees-table tbody tr:not(.fees-group) td:nth-child(4) {
  text-align: right;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

/* sticky first column for easier reading (desktop/scroll) */
.registration-page .fees-table thead th.fees-col-category {
  left: 0;
  z-index: 4;
}

.registration-page .fees-table tbody tr td:first-child,
.registration-page .fees-table tbody tr th:first-child {
  position: sticky;
  left: 0;
  z-index: 2;
  background: rgba(255, 255, 255, 0.92);
}

/* zebra rows */
.registration-page .fees-table tbody tr:not(.fees-group):nth-child(even) td {
  background: rgba(3, 10, 100, 0.018);
}

.registration-page .fees-table tbody tr:not(.fees-group):nth-child(even) td:first-child {
  background: rgba(3, 10, 100, 0.018);
}

/* group rows */
.registration-page .fees-table .fees-group th {
  background: rgba(3, 10, 100, 0.08);
  color: #030a64;
  font-weight: 900;
  letter-spacing: 0.15px;
  padding: 14px 16px;
  text-transform: none;
  border-top: 1px solid rgba(3, 10, 100, 0.12);
  border-bottom: 1px solid rgba(3, 10, 100, 0.12);
}

/* hover */
.registration-page .fees-table tbody tr:not(.fees-group):hover td {
  background: rgba(13, 110, 253, 0.04);
}

.registration-page .fees-table tbody tr:not(.fees-group):hover td:first-child {
  background: rgba(13, 110, 253, 0.04);
}

/* rounded corners for the whole table block */
.registration-page .fees-table thead tr:first-child th:first-child {
  border-top-left-radius: 18px;
}

.registration-page .fees-table thead tr:first-child th:last-child {
  border-top-right-radius: 18px;
}

.registration-page .fees-table tbody tr:last-child td:first-child {
  border-bottom-left-radius: 18px;
}

.registration-page .fees-table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 18px;
}

/* Small section titles */
.registration-page .section-title-sm {
  font-weight: 800;
  margin: 0 0 8px;
  color: #0b135c;
}

.registration-page .section-text {
  margin: 0;
  color: rgba(17, 24, 39, 0.85);
  line-height: 1.7;
}

.registration-page .section-text a {
  color: #0d6efd;
  text-decoration: none;
  border-bottom: 1px solid rgba(13, 110, 253, 0.35);
}

.registration-page .section-text a:hover {
  border-bottom-color: rgba(13, 110, 253, 0.85);
}

/* Button */
.registration-page .register-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  background: linear-gradient(180deg, #1f5eff 0%, #0b3fb7 100%);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 10px 24px rgba(3, 10, 100, 0.22);
}

.registration-page .register-btn:hover {
  filter: brightness(1.03);
  color: #fff;
}

/* =========================================================
   MOBILE: stacked "card" table (NO HTML changes needed)
   ========================================================= */
@media (max-width: 767px) {
  .registration-page .fees-table-card {
    padding: 14px;
    border-radius: 18px;
  }

  .registration-page .fees-table-title {
    font-size: 16.5px;
  }

  /* remove inner table container border/shadow so row cards look clean */
  .registration-page .fees-table-responsive {
    overflow: visible;
    border: none;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
  }

  /* convert table to stacked blocks */
  .registration-page .fees-table {
    min-width: 0;
    border-spacing: 0;
    border-collapse: separate;
    font-size: 15px;
  }

  .registration-page .fees-table thead {
    display: none;
  }

  .registration-page .fees-table,
  .registration-page .fees-table tbody,
  .registration-page .fees-table tr {
    display: block;
    width: 100%;
  }

  /* disable sticky behaviors on mobile (prevents weird overlaps) */
  .registration-page .fees-table th,
  .registration-page .fees-table td {
    position: static !important;
    left: auto !important;
    top: auto !important;
    z-index: auto !important;
  }

  /* group header rows become their own full-width pill */
  .registration-page .fees-table tbody tr.fees-group {
    margin: 18px 0 10px;
    border: none;
    box-shadow: none;
    background: transparent;
    padding: 0;
  }

  .registration-page .fees-table tbody tr.fees-group th {
    display: block;
    width: 100%;
    border: 1px solid rgba(3, 10, 100, 0.12);
    background: rgba(3, 10, 100, 0.08);
    border-radius: 14px;
    padding: 12px 14px;
    font-weight: 900;
  }

  /* each data row becomes a card */
  .registration-page .fees-table tbody tr:not(.fees-group) {
    margin: 0 0 14px;
    border: 1px solid rgba(3, 10, 100, 0.10);
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 22px rgba(3, 10, 100, 0.06);
  }

  /* each cell becomes a label/value row */
  .registration-page .fees-table tbody tr:not(.fees-group) td {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 14px;
    border-right: none;
    border-bottom: 1px solid rgba(3, 10, 100, 0.08);
    background: transparent;
    /* card already has bg */
    text-align: right;
    white-space: normal;
  }

  .registration-page .fees-table tbody tr:not(.fees-group) td:last-child {
    border-bottom: none;
  }

  /* labels (generated from column positions) */
  .registration-page .fees-table tbody tr:not(.fees-group) td::before {
    content: var(--fees-label);
    flex: 0 0 auto;
    max-width: 62%;
    text-align: left;
    font-weight: 800;
    color: rgba(11, 19, 92, 0.92);
    line-height: 1.35;
  }

  .registration-page .fees-table tbody tr:not(.fees-group) td:nth-child(1) {
    --fees-label: "Category";
    text-align: left;
    font-weight: 800;
    color: #0b135c;
  }

  .registration-page .fees-table tbody tr:not(.fees-group) td:nth-child(2) {
    --fees-label: "Early Bird (Online)";
    font-variant-numeric: tabular-nums;
  }

  .registration-page .fees-table tbody tr:not(.fees-group) td:nth-child(3) {
    --fees-label: "Regular (Online)";
    font-variant-numeric: tabular-nums;
  }

  .registration-page .fees-table tbody tr:not(.fees-group) td:nth-child(4) {
    --fees-label: "Onsite (LKR)";
    font-variant-numeric: tabular-nums;
  }

  /* reduce hover effect on mobile */
  .registration-page .fees-table tbody tr:not(.fees-group):hover td {
    background: transparent;
  }
}

/* =========================================================
   FIX: Mobile burger menu panel is too small (pill shape)
   Make the menu a proper full panel with scroll
========================================================= */
@media (max-width: 1199px) {

  /* the container should cover viewport */
  .mobile-nav-active .navmenu {
    position: fixed !important;
    inset: 0 !important;
    z-index: 9998 !important;
  }

  /* the actual panel */
  .mobile-nav-active .navmenu>ul {
    position: fixed !important;

    /* give it real size */
    top: 74px !important;
    /* below header */
    left: 14px !important;
    right: 14px !important;
    bottom: 14px !important;

    /* kill any “pill” sizing coming from template */
    height: auto !important;
    min-height: 240px !important;
    max-height: none !important;

    /* allow scrolling */
    overflow-y: auto !important;
    overflow-x: hidden !important;
    -webkit-overflow-scrolling: touch !important;

    /* make it look like a proper menu */
    padding: 14px !important;
    border-radius: 18px !important;

    background: rgba(15, 23, 42, 0.96) !important;
    border: 1px solid rgba(255, 255, 255, 0.10) !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45) !important;
  }

  /* make items readable and tappable */
  .mobile-nav-active .navmenu a,
  .mobile-nav-active .navmenu a:focus {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;

    color: #fff !important;
    opacity: 1 !important;

    padding: 12px 12px !important;
    border-radius: 12px !important;
    line-height: 1.2 !important;
    font-size: 16px !important;
    text-decoration: none !important;
  }

  .mobile-nav-active .navmenu a:hover {
    background: rgba(255, 255, 255, 0.08) !important;
  }

  /* dropdown submenu should not be absolute on mobile */
  .mobile-nav-active .navmenu .dropdown ul {
    position: static !important;
    display: none !important;
    margin: 8px 0 0 0 !important;
    padding: 8px !important;

    border-radius: 14px !important;
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(255, 255, 255, 0.10) !important;

    overflow: visible !important;
  }

  /* when opened by JS */
  .mobile-nav-active .navmenu .dropdown>.dropdown-active {
    display: block !important;
  }

  /* keep the X button clickable */
  .mobile-nav-toggle {
    position: fixed !important;
    top: 18px !important;
    right: 18px !important;
    z-index: 9999 !important;
  }
}

/* =========================================================
   Committees Page (simple + modern)
   Add to END of assets/css/main.css
========================================================= */

.committees-section {
  padding-top: 54px;
  padding-bottom: 70px;
}

.committees-hero {
  margin-bottom: 26px;
}

.committees-hero__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.committee-lead-card {
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.committee-lead-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-color-strong);
}

.committee-lead-card__img {
  background: color-mix(in srgb, var(--alt-background-color), white 40%);
  display: grid;
  place-items: center;
  padding: 16px;
}

.committee-lead-card__img img {
  width: 100%;
  max-width: 260px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 16px;
  border: 4px solid color-mix(in srgb, var(--accent-color), white 8%);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
}

.committee-lead-card__body {
  padding: 16px 16px 18px;
  text-align: center;
}

.committee-lead-card__role {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 8px 12px;
  border-radius: 999px;

  font-weight: 850;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;

  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 78%);
}

.committee-lead-card__name {
  margin-top: 12px;
  font-weight: 900;
  font-size: 20px;
  color: var(--heading-color);
  letter-spacing: -0.02em;
}

.committees-lists {
  margin-top: 18px;
}

.committee-list-card {
  background: color-mix(in srgb, var(--surface-color), var(--alt-background-color) 8%);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 18px;
  height: 100%;
}

@media (min-width: 992px) {
  .committee-list-card {
    padding: 22px;
  }
}

.committee-list-card__head {
  padding: 14px 14px 12px;
  border-radius: 16px;
  background: linear-gradient(180deg,
      color-mix(in srgb, var(--accent-color), transparent 92%),
      color-mix(in srgb, var(--surface-color), var(--alt-background-color) 10%));
  border: 1px solid color-mix(in srgb, var(--border-color), transparent 0%);
  margin-bottom: 14px;
}

.committee-list-card__title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 6px;
  font-weight: 900;
  font-size: 18px;
  color: var(--heading-color);
  letter-spacing: -0.02em;
}

.committee-list-card__title i {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
}

.committee-list-card__sub {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 14px;
  line-height: 1.55;
}

.committee-list {
  margin: 0;
  padding-left: 18px;
  color: color-mix(in srgb, var(--default-color), transparent 12%);
  line-height: 1.75;
  font-size: 15.5px;
}

.committee-list li {
  padding: 6px 0;
}

.committees-note {
  margin-top: 18px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid var(--border-color);
  background: color-mix(in srgb, var(--surface-color), var(--alt-background-color) 12%);
  color: color-mix(in srgb, var(--default-color), transparent 18%);
  box-shadow: var(--shadow-xs);
}

/* Responsive */
@media (max-width: 991px) {
  .committees-hero__grid {
    grid-template-columns: 1fr;
  }

  .committee-lead-card__img img {
    max-width: 320px;
  }
}