/**
* 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
--------------------------------------------------------------*/
.header {
  --background-color: rgba(1, 8, 33, 0.18);
  --heading-color: #ffffff;

  color: var(--default-color);
  background-color: var(--background-color);
  padding: 18px 0;
  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);
}

/* Logo Area */
.header .logo {
  line-height: 1;
  display: flex;
  align-items: center;

  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.96) 70%,
    rgba(255, 255, 255, 0.72) 100%
  );
  border-radius: 12px;
  padding: 10px 14px;
  backdrop-filter: blur(6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
}

.header .logo img {
  max-height: 56px;
  margin-right: 10px;
  transition: transform var(--transition-fast);
}

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

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 800;
  color: var(--heading-color);
  letter-spacing: -0.03em;
}

/* CTA Button */
.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);
}

.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);
}

/* Responsive Ordering */
@media (max-width: 1200px) {
  .header .logo {
    order: 1;
    padding: 8px 10px;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }

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

/* 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
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

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

  .navmenu > ul > li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 15px;
    padding: 2px 2px;
    font-family: var(--nav-font);
    font-weight: 650;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: color var(--transition-fast);
    position: relative;
    letter-spacing: -0.01em;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 6px;
    transition: transform var(--transition-fast);
  }

  .navmenu > ul > li > a:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -8px;
    left: 0;
    background-color: color-mix(in srgb, var(--accent-color), white 10%);
    visibility: hidden;
    width: 0px;
    transition: width var(--transition-fast), visibility var(--transition-fast);
    border-radius: 99px;
  }

  .navmenu a:hover:before,
  .navmenu li:hover > a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .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;
  }

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

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

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

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

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color var(--transition-fast);
  }

  .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);
    border-radius: 10px;
    margin: 4px 10px;
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
    background: color-mix(in srgb, var(--accent-color), transparent 93%);
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    transition: var(--transition-fast);
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .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 ul ul {
    background-color: rgba(33, 37, 41, 0.06);
  }

  .navmenu .dropdown > .dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

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

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .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;
  }
}

/*--------------------------------------------------------------
# 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;
}

.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 rgba(255, 255, 255, 0.6);
}

@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
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 110px 0 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: saturate(1.05) contrast(1.05);
}

/* Better contrast overlay: layered gradient */
.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(900px 520px at 30% 10%, rgba(30, 99, 214, 0.22), transparent 60%),
    linear-gradient(180deg, rgba(2, 6, 23, 0.72) 0%, rgba(2, 6, 23, 0.05) 45%, rgba(2, 6, 23, 0.82) 100%);
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h2 {
  margin: 0;
  font-size: clamp(2.25rem, 6vw, 5rem);
  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.2em, 0.35vw, 0.18em);
}

/* .hero h2 span {
  color: color-mix(in srgb, var(--accent-color), white 14%);
} */

/* Make ONLY the "2026" inside the hero title use a modern display font.
   Assumes your markup is: ... <span>2026</span> ... */
.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;
}

/* Optional: if you want it to feel more “premium” */
.hero h2 span {
  text-transform: none;
  font-variant-numeric: lining-nums;
  font-feature-settings: "ss01" 1, "ss02" 1;
  color: color-mix(in srgb, var(--accent-color), white 14%);
}


.hero p {
  color: rgba(255, 255, 255, 0.86);
  margin: 12px 0 0 0;
  font-size: clamp(1rem, 2.1vw, 1.5rem);
  line-height: 1.45;
  max-width: 55ch;
}

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

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

.hero .about-info {
  overflow: hidden;
  position: relative;
  padding: 60px 0 40px 0;
  z-index: 2;
  width: 100%;
}

.hero .about-info:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.hero .about-info h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #fff;
}

.hero .about-info h3 {
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #fff;
}

.hero .about-info p {
  font-size: 14px;
  margin-bottom: 20px;
  color: #fff;
}

/*--------------------------------------------------------------
# Hero Section Buttons
--------------------------------------------------------------*/
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

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

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

  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;
}

.btn-register {
  background: linear-gradient(180deg, var(--accent-color), var(--accent-strong));
  color: var(--contrast-color);
  border: 1px solid color-mix(in srgb, var(--accent-color), black 8%);
  box-shadow: 0 14px 34px rgba(30, 99, 214, 0.30);
}

.btn-register:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 44px rgba(30, 99, 214, 0.36);
  color: var(--contrast-color);
}

.btn-abstract {
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--contrast-color);
  border: 1px solid rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn-abstract:hover {
  transform: translateY(-1px);
  background-color: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--contrast-color);
}

@media (max-width: 768px) {
  .btn-hero {
    padding: 11px 22px;
    font-size: 14px;
  }

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

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

/* Hero: Save the Date */
.hero-save-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  margin: 14px 0 6px;
  padding: 10px 14px;

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

  color: rgba(255, 255, 255, 0.95);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: clamp(0.70rem, 0.55vw, 0.90rem);

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

@supports not ((backdrop-filter: blur(10px)) or (-webkit-backdrop-filter: blur(10px))) {
  .hero-save-label {
    background: rgba(0, 0, 0, 0.35);
  }
}

/* Optional: add a subtle calendar icon using Bootstrap Icons (no HTML change needed) */
.hero-save-label::before {
  content: "\F215"; /* bi-calendar-event */
  font-family: "bootstrap-icons";
  font-weight: normal;
  font-size: 1.05em;
  opacity: 0.95;
}

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

/* Mobile polish */
@media (max-width: 575.98px) {
  .hero-save-label {
    padding: 9px 12px;
    letter-spacing: 0.10em;
  }
  .hero-save-date {
    font-size: clamp(1rem, 4.2vw, 1.25rem);
  }
}


/*--------------------------------------------------------------
# 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: transparent;
  padding: 60px 0;
}

.key-info .info-card {
  background: color-mix(in srgb, var(--surface-color), 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
--------------------------------------------------------------*/
.faq .faq-container .faq-item {
  background-color: color-mix(in srgb, var(--surface-color), var(--alt-background-color) 10%);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
}

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

.faq .faq-container .faq-item h3 {
  font-weight: 750;
  font-size: 16px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: color var(--transition-fast);
  cursor: pointer;
  display: flex;
  align-items: center;
}

.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);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

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

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

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

.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);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: 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);
}

/*--------------------------------------------------------------
# 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 */
}

.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;
}

/* Mobile stacked style */
@media (max-width: 767px) {
  .fees-table thead {
    display: none;
  }

  .fees-table tr {
    display: block;
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 12px;
    background: #fff;
    box-shadow: var(--shadow-xs);
  }

  .fees-table td {
    display: flex;
    justify-content: space-between;
    text-align: left;
    padding: 10px 8px;
    border-bottom: 1px solid #f2f2f2;
  }

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

  .fees-table td::before {
    content: attr(data-label);
    font-weight: 750;
    color: var(--accent-color);
  }
}

.register-btn {
  background: linear-gradient(180deg, var(--accent-color), var(--accent-strong));
  color: #fff;
  font-weight: 750;
  padding: 12px 26px;
  border-radius: 999px;
  text-decoration: none;
  display: inline-block;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background-color var(--transition-fast);
  box-shadow: 0 12px 30px rgba(30, 99, 214, 0.24);
}

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

/* ===== 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;
}

/* ===== Table wrapper (better looking) ===== */
.registration-page .fees-table-responsive {
  width: 100%;
  overflow: auto;
  border-radius: 18px;
  border: 1px solid rgba(3, 10, 100, 0.10);
  background: #fff;
  box-shadow: 0 10px 26px rgba(3, 10, 100, 0.06);
}

/* 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; /* more breathing room for headers */
  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 a bit (prevents awkward truncation) */
.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 */
.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: #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: #fff;
}

/* keep sticky first column looking correct on 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 (section headers in tbody) */
.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;
}
