/* ============================================
   NEXUS — Digital Creative Studio
   Global Styles
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #0a0a0a;
    --bg-light: #0e6454;
    --bg-card: #112220;
    --text: #f0f0f0;
    --text-muted: #a0b8b3;
    --accent: #77d7b6;
    --accent-secondary: #b2363b;
    --accent-dark: #69161f;
    --accent-glow: rgba(119, 215, 182, 0.3);
    --primary: #0e6454;
    --white: #ffffff;
    --border: rgba(119, 215, 182, 0.12);
    --font-heading: 'Syne', sans-serif;
    --font-body: 'Space Grotesk', sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    cursor: none;
}

a {
    color: inherit;
    text-decoration: none;
    cursor: none;
}

button, input, textarea {
    font-family: var(--font-body);
    cursor: none;
}

img {
    max-width: 100%;
    display: block;
}

::selection {
    background: var(--accent);
    color: var(--white);
}

/* --- Custom Cursor --- */
.cursor {
    width: 8px;
    height: 8px;
    background: #ffffff;
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out), background 0.3s;
    mix-blend-mode: difference;
}

.cursor.hover {
    width: 40px;
    height: 40px;
    background: var(--white);
}

.cursor-follower {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.4s var(--ease-out), height 0.4s var(--ease-out), opacity 0.3s;
}

.cursor-follower.hover {
    width: 60px;
    height: 60px;
    opacity: 0.5;
}

/* --- Preloader --- */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg);
    z-index: 9999999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner {
    text-align: center;
}

#lottie-loader {
    width: 200px;
    height: 200px;
    margin: 0 auto 2rem;
    filter: drop-shadow(0 0 20px rgba(119, 215, 182, 0.4));
}

#lottie-loader svg path,
#lottie-loader svg circle,
#lottie-loader svg rect,
#lottie-loader svg ellipse {
    fill: #77d7b6 !important;
    stroke: #77d7b6 !important;
}

.preloader-bar {
    width: 200px;
    height: 2px;
    background: var(--border);
    margin: 0 auto 1rem;
    border-radius: 2px;
    overflow: hidden;
}

.preloader-bar-fill {
    width: 0%;
    height: 100%;
    background: var(--accent);
    transition: width 0.1s linear;
}

.preloader-counter {
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
}

/* --- Video Intro --- */
.video-intro {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0a0a;
    z-index: 9999998;
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s;
}

.video-intro.active {
    display: block;
    opacity: 1;
    visibility: visible;
}

.video-intro.hidden {
    display: none !important;
    opacity: 0;
    visibility: hidden;
}

#introVideo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-banner {
    background-size: cover;
    background-position: center;
    padding: 120px 0 50px;
    position: relative;
}
.page-banner h1 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 10px;
}
.page-banner .breadcrumb-item, .page-banner .breadcrumb-item a {
    font-family: 'Exo', sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
}
/* --- WebGL Canvas --- */
#webgl-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    transition: padding 0.4s var(--ease-out);
}
nav.nav.scrolled .container {
    max-width: 100%;
    margin: 0;
    padding: 0;
}
.nav.scrolled {
    padding: 1rem 0;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    width: 100%;
}
.nav.scrolled ul.navbar-nav.me-auto {
    margin: auto;
}
nav.nav.scrolled .nav-register-btn {
    right: 80px;
}
.nav-logo a {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: var(--white);
    display: flex;
    align-items: center;
}

.logo-img {
    height: 55px;
    width: auto;
}

.footer-logo-img {
    height: 36px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    margin: 0 auto;
    background: #69161f;
    padding: 0.7rem 2rem 0.7rem 5rem;
    position: relative;
    width: 100%;
}
.nav.scrolled .nav-links {
    justify-content: center;
    padding-left: 2rem;
    padding-right: 2rem;
}
.nav-links:before {
    content: '';
    width: 92%;
    margin: 0 auto;
    background: #107f64;
    height: 60px;
    position: absolute;
    border: 4px solid #77d7b6;
    box-shadow: 0 -3px 20px -2px rgba(0, 0, 0, 0.5);
    left: 0;
    right: 0;
    top: -4px;
}

/* Mobile Nav */
.navbar-toggler {
    border: 2px solid #fff;
    padding: 6px 10px;
    z-index: 10;
    background: transparent;
}
.navbar-toggler .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23ffffff' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
button.navbar-toggler {
    background: #b40403;
}
.mobile-register-btn {
    background: linear-gradient(135deg, #0e6454 0%, #14967d 100%);
    color: #fff;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(14, 100, 84, 0.3);
}
.mobile-register-btn:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(14, 100, 84, 0.4);
}
@media (max-width: 991px) {
    .nav-links {
        flex-direction: column;
        gap: 0;
        padding: 1rem;
        border-radius: 0 0 12px 12px;
    }
    .nav-links:before {
        display: none;
    }
    .nav-links .navbar-nav {
        flex-direction: column;
        gap: 0;
    }
    .nav-links .nav-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    .nav-links .nav-link {
        padding: 12px 15px;
    }
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
    position: relative;
}

.dropdown-toggle::after {
    content: '▼';
    font-size: 0.6em;
    margin-left: 0.3rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #69161f;
    min-width: 220px;
    padding: 0.5rem 0;
    border-radius: 0 0 10px 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 9999;
    border: 2px solid #77d7b6;
    border-top: none;
}

.nav-dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown:hover .dropdown-menu,
.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #fff;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: #77d7b6;
    color: #0a0a0a;
    padding-left: 2rem;
}
.nav .nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    position: relative;
    color: #76d6b4;
    overflow: hidden;
    padding: 0.25rem 1rem !important;
    background: none;
}
a.nav-link.active {
    color: #fff !important;
}
.nav-register-btn {
    font-size: 1rem;
    font-weight: bold;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background: #69161f;
    padding: 0;
    border-radius: 50px 0 0 50px;
    border: 2px solid #77d7b6;
    text-decoration: none;
    transition: all 0.3s ease;
    position: absolute;
    justify-content: center;
    padding: 0.8rem 2rem;
    right: 55px;
    color: #fff;
    top: 0;
}

.nav-register-btn:hover {
    background: #7d1a25;
    box-shadow: 0 0 15px rgba(119, 215, 182, 0.3);
    color: #fff;
}

.nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.4s var(--ease-out);
}

.nav .nav-link:hover::after {
    width: 100%;
}

/* Mobile nav right side: hamburger (left) + register (right) */
.nav-right-mobile {
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 1001;
    width: 100%;
    justify-content: space-between;
}

.nav-register-btn-mobile {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--accent-dark);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    border: 1.5px solid var(--accent);
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-register-btn-mobile:hover {
    background: #7d1a25;
    box-shadow: 0 0 12px rgba(119, 215, 182, 0.3);
    color: #fff;
}

.nav-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    z-index: 1001;
}

.nav-menu-btn span {
    width: 28px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
    transition: transform 0.3s var(--ease-out), opacity 0.3s;
}

.nav-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-menu-btn.active span:nth-child(2),
.nav-menu-btn.active span:nth-child(3) {
    opacity: 0;
}

.nav-menu-btn.active span:nth-child(4) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s var(--ease-out), visibility 0.5s;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
}

.mobile-link {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 8vw, 4rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out), color 0.3s;
}

.mobile-menu.active .mobile-link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-link:nth-child(2) { transition-delay: 0.15s; }
.mobile-link:nth-child(3) { transition-delay: 0.2s; }
.mobile-link:nth-child(4) { transition-delay: 0.25s; }

.mobile-link:hover {
    color: var(--accent);
}

/* Mobile Dropdown */
.mobile-dropdown {
    display: flex;
    flex-direction: column;
}

.dropdown-toggle-mobile {
    cursor: pointer;
    position: relative;
}

.dropdown-toggle-mobile::after {
    content: '+';
    position: absolute;
    right: 0;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.mobile-dropdown.active .dropdown-toggle-mobile::after {
    transform: rotate(45deg);
}

.mobile-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-left: 1.5rem;
}

.mobile-dropdown.active .mobile-dropdown-menu {
    max-height: 200px;
}

/* --- Sections --- */
.section {
    position: relative;
    z-index: 1;
    padding: 8rem 3rem;
}

.accent {
    color: #77d7b6;
}

.line {
    display: inline-block;
    width: 40px;
    height: 1px;
    background: #77d7b6;
    vertical-align: middle;
    margin-right: 1rem;
}

.section-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 1.5rem;
    background: rgba(14, 100, 84, 1);
    width: fit-content;
    margin: 0 auto;
    padding: 10px;
    border-radius: 100px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 3.2rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.section-header {
    margin-bottom: 20px;
}

/* --- Performance: skip rendering of off-screen sections --- */
.about-congress,
.welcome-message,
.attend-section,
.objectives-section,
.why-attend-section,
.register-cta-section,
.sponsors-section,
.footer {
    content-visibility: auto;
    contain-intrinsic-size: auto 800px;
}

/* --- Hero --- */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 0;
    padding-bottom: 0;
    position: relative;
    overflow: hidden;
    /*background: url(../assets/images/etsbg.png) center center no-repeat;
    background-size: cover;
        opacity: 0.98;*/
}

.hero-bg {
position: absolute;
    left: 0;
    height: 100%;
    z-index: 0;
    text-align: right;
    width: 100%;
}

.hero-bg-img {
    height: 100%;
    object-fit: contain;
    object-position: right center;
    float: right;
    margin-right: -120px;
}

.hero-bg-overlay {
   position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top right, rgba(124, 33, 43, 0.3) 0%, transparent 50%), radial-gradient(ellipse at bottom left, rgba(31, 110, 108, 0.3) 0%, transparent 50%), linear-gradient(180deg, var(--color-bg-dark) 0%, var(--color-bg-darker) 100%);
    pointer-events: none;
    mix-blend-mode: luminosity;
}

/* Lung Animation Effects */
.lung-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.lung-particle {
    position: absolute;
    left: var(--x);
    top: var(--y);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(119, 215, 182, 0.6);
    box-shadow: 0 0 8px rgba(119, 215, 182, 0.4);
    animation: lungFloat var(--dur) var(--delay) ease-in-out infinite,
               lungPulse 3s var(--delay) ease-in-out infinite;
    will-change: transform, opacity;
    contain: layout style;
}

.lung-particle.lg {
    width: 10px;
    height: 10px;
    background: rgba(119, 215, 182, 0.35);
    box-shadow: 0 0 15px rgba(119, 215, 182, 0.3);
}

.lung-particle.sm {
    width: 3px;
    height: 3px;
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.lung-breath-ring {
    position: absolute;
    top: 50%;
    left: 60%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 1px solid rgba(119, 215, 182, 0.3);
    animation: lungBreathe 6s var(--delay) ease-in-out infinite;
    will-change: transform, opacity;
}

@keyframes lungFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(10px, -15px) scale(1.1);
    }
    50% {
        transform: translate(-5px, -25px) scale(0.9);
    }
    75% {
        transform: translate(8px, -10px) scale(1.05);
    }
}

@keyframes lungPulse {
    0%, 100% {
        opacity: 0.4;
    }
    50% {
        opacity: 1;
    }
}

@keyframes lungBreathe {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(4);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-logo-area {
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    opacity: 0;
    transform: translateY(30px);
}

.hero-logo {
    height: 450px;
    width: auto;
    position: relative;
    z-index: 3;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
}

.hero-title-line {
    display: block;
    overflow: hidden;
}

.hero-word {
    display: inline-block;
    transform: translateY(120%);
    opacity: 0;
}

.hero-word.hero-dark {
    color: var(--white);
}

.hero-word.hero-red {
    color: #b2363b;
    font-style: italic;
}

.hero-word.hero-teal {
    color: #77d7b6;
    font-size: 1.2em;
    text-shadow: 0 0 30px rgba(119, 215, 182, 0.4);
}

.hero-event-details {
    margin-bottom: 2.5rem;
    padding: 0 2rem 0 1rem;
    border-left: 3px solid #77d7b6;
    opacity: 0;
    transform: translateY(20px);
    background: #107f64;
    width: fit-content;
}

.hero-date {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 0.4rem;
}

.hero-venue {
    font-family: var(--font-heading);
    font-size: clamp(0.9rem, 1.8vw, 1.1rem);
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.3rem;
}

.hero-location {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 700;
    color: #b2363b;
    text-transform: uppercase;
}

.hero-save-date {
    position: absolute;
    right: 0;
    bottom: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
    width: 200px;
}

.hero-save-date span {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    font-style: italic;
    background: linear-gradient(135deg, #77d7b6 0%, #0e6454 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1em;
}

/* --- Countdown Timer --- */
.hero-countdown {
    position: absolute;
    bottom: 2rem;
    left: 0;
    width: 100%;
    z-index: 0;
}

.countdown-wrapper {
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}

.countdown-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
}

.countdown-line {
    flex: 1;
    max-width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(119, 215, 182, 0.5), transparent);
}

.countdown-label {
font-family: var(--font-heading);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.35em;
    color: #7d1a25;
    position: relative;
    font-weight: bold;
}

.countdown-boxes {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
}

.countdown-card {
    position: relative;
    width: clamp(72px, 12vw, 110px);
    height: clamp(72px, 12vw, 105px);
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(145deg, rgb(16, 127, 100), rgba(24, 24, 28, 0.7));
    border: 1px solid rgba(119, 215, 182, 0.15);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(119, 215, 182, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                border-color 0.4s ease, 
                box-shadow 0.4s ease;
}

.countdown-card:hover {
    transform: translateY(-6px) scale(1.04);
    border-color: rgba(119, 215, 182, 0.4);
    box-shadow:
        0 16px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(119, 215, 182, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.countdown-card-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.countdown-card-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        105deg,
        transparent 40%,
        rgba(119, 215, 182, 0.08) 45%,
        rgba(119, 215, 182, 0.15) 50%,
        rgba(119, 215, 182, 0.08) 55%,
        transparent 60%
    );
    z-index: 3;
    pointer-events: none;
    animation: cardShine 4s ease-in-out infinite;
}

@keyframes cardShine {
    0%, 100% { left: -100%; }
    50% { left: 100%; }
}

.countdown-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(119, 215, 182, 0.08);
    z-index: 1;
}

.countdown-number {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.2rem);
    font-weight: 900;
    color: #fff;
    line-height: 1;
    background: linear-gradient(180deg, #ffffff 0%, #77d7b6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 12px rgba(119, 215, 182, 0.35));
    transition: transform 0.15s ease;
}

.countdown-unit {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #107f64;
    font-weight: 700;
}

.countdown-sep-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 0 0.15rem;
    margin-bottom: 1.6rem;
}

.countdown-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(119, 215, 182, 0.5);
    box-shadow: 0 0 8px rgba(119, 215, 182, 0.3);
    animation: dotPulse 1.5s ease-in-out infinite;
}

.countdown-dot:nth-child(2) {
    animation-delay: 0.3s;
}

@keyframes dotPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(0.7); }
}

@media (max-width: 576px) {
    .countdown-boxes { gap: 0.35rem; }
    .countdown-card { border-radius: 10px; }
    .countdown-sep-wrap { gap: 5px; padding: 0 0.05rem; }
    .countdown-dot { width: 3px; height: 3px; }
    .countdown-header { gap: 0.6rem; margin-bottom: 0.8rem; }
    .countdown-line { max-width: 40px; }
}

/* --- 3D Background (fixed behind content) --- */
.lungs-3d-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
}

#lungs-canvas {
    width: 100vw;
    height: 100vh;
    display: block;
}

.main-content .marquee-section,
.main-content footer {
    position: relative;
    z-index: 1;
    background: #0a0a0a;
}
section#welcome {
    background: linear-gradient(160deg, rgba(78, 20, 27, 0.92) 0%, rgba(105, 28, 36, 0.92) 50%, rgba(131, 35, 48, 0.92) 100%);
    color: #fff;
}
.hero-scroll-indicator {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: red;
    opacity: 0;
    margin-top: 126px;
}
section.marquee-section {
    background: rgba(0, 0, 0, 0.9);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding-left: 0;
    padding-right: 0;
    overflow: hidden;
}
.scroll-line {
    width: 40px;
    height: 1px;
    background: var(--accent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; width: 20px; }
    50% { opacity: 1; width: 40px; }
}

/* --- Marquee --- */
.marquee-section {
    position: relative;
    z-index: 1;
    padding: 2rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.marquee {
    overflow: hidden;
    white-space: nowrap;
}

.marquee-inner {
    display: inline-flex;
    align-items: center;
    gap: 2rem;
    animation: marqueeScroll 20s linear infinite;
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 1rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

.marquee-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- About Congress Section --- */
.about-congress {
padding: 6rem 0;
    width: 100%;
    max-width: 1400px;
    margin: 60px auto;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    padding: 2.5rem 2rem 0;
    /* text-align: center; */
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg) translateY(0px);
}
.about-congress h2{
    color: #fff;
}
section#about .section-label {
    margin: 0 0 26px;
}
.about-congress:hover {
    transform: perspective(1000px) rotateX(2deg) rotateY(-2deg) translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.about-text strong {
    color: #77d7b6;
    font-weight: 600;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 2rem 0;
}

.about-list li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-muted);
    padding-left: 2rem;
    margin-bottom:0;
    position: relative;
}

.about-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #77d7b6;
    font-size: 1.5rem;
    line-height: 1.4;
}

/* --- Welcome Message Section --- */
.welcome-message {
    padding: 4rem 0;
}

.chairman-card {
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem 2rem 0.7rem;
    margin-bottom: 2rem;
    transition: var(--transition-normal);
}

.chairman-header {
    margin-bottom: 0;
    text-align: center;
    background: #096644;
    padding: 10px;
    border-radius: 50px 50px 0 0;
}

.chairman-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #77d7b6;
    font-weight: 600;
}

.chairman-image {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0 0 10px 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.chairman-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chairman-info {
    text-align: center;
}

.chairman-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.3rem;
}

.chairman-title {
    font-size: 0.95rem;
    color: #77d7b6;
    margin-bottom: 0.2rem;
}

.chairman-org {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.welcome-card {
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem 2rem 0;
    transition: var(--transition-normal);
}

.welcome-header {
    margin-bottom: 2rem;
}

.welcome-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #77d7b6;
    font-weight: 600;
}

.welcome-text {
    font-size: 1.1rem;
    color: #fff;
}

.welcome-signature {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.signature-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.3rem;
}

.signature-title {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-style: italic;
}

/* --- Who Should Attend Section --- */
.attend-section {
    padding: 6rem 0;
    background: linear-gradient(160deg, rgba(10, 78, 64, 0.92) 0%, rgba(14, 100, 84, 0.92) 50%, rgba(17, 131, 109, 0.92) 100%);
    color: #fff;
}

.attend-section .section-header {
    text-align: center;
    margin-bottom: 0;
}

.attend-section .section-label {
    justify-content: center;
}

.attend-section .line {
    margin-right: 1rem;
}

.attend-section .section-title {
    margin-top: 1rem;
}

.attendee-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg) translateY(0px);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    min-height: 120px;
}

.attendee-card:hover {
    transform: perspective(1000px) rotateX(2deg) rotateY(-2deg) translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.attendee-card i {
    font-size: 2rem;
    color: #77d7b6;
}

.attendee-card span {
    font-size: 0.85rem;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* --- Congress Objectives Section --- */
.objectives-section {
    padding: 6rem 0;
    background:linear-gradient(160deg, rgba(230, 247, 240, 0.90) 0%, rgba(208, 240, 228, 0.90) 50%, rgba(192, 235, 216, 0.90) 100%);
    color: #fff;
}

.objectives-section .section-header {
    text-align: center;
    margin-bottom: 0;
}

.objectives-section .section-label {
justify-content: center;
    background: rgba(14, 100, 84, 1);
    border-color: rgba(14, 100, 84, 0.25);
    color: #fff;
    width: fit-content;
    margin: 0 auto;
    padding: 10px;
    border-radius: 100px;
}

.objectives-section .line {
    margin-right: 1rem;
    background: #fff;
}

.objectives-section .section-title {
    margin-top: 1rem;
    color: #000;
}
.objectives-section .section-title span{
    background: linear-gradient(135deg, #0a4e40, #1a1a2e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.objective-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(14, 100, 84, 0.2);
    border-radius: 20px;
    padding: 2rem 2rem;
    text-align: center;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg) translateY(0px);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.objective-card:hover {
    transform: perspective(1000px) rotateX(2deg) rotateY(-2deg) translateY(-5px);
    box-shadow: 0 20px 40px rgba(14, 100, 84, 0.2);
}

.objective-icon {
    width: 60px;
    height: 60px;
    background: rgba(14, 100, 84, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.objective-icon i {
    font-size: 1.5rem;
    color: #0e6454;
}

.objective-card h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 0.5rem;
}

.objective-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #232323;
    margin: 0;
}

/* --- Why Attend Section --- */
.why-attend-section {
    padding: 6rem 0;
    background: linear-gradient(160deg, rgba(78, 20, 27, 0.92) 0%, rgba(105, 28, 36, 0.92) 50%, rgba(131, 35, 48, 0.92) 100%);
    color: #fff;
}

.why-attend-section .section-header {
    text-align: center;
    margin-bottom: 0;
}

.why-attend-section .section-label {
    justify-content: center;
}

.why-attend-section .line {
    margin-right: 1rem;
}

.why-attend-section .section-title {
    margin-top: 1rem;
}

.why-card {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem 2rem;
    text-align: center;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg) translateY(0px);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.why-card:hover {
    transform: perspective(1000px) rotateX(2deg) rotateY(-2deg) translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.why-icon {
    width: 60px;
    height: 60px;
    background: rgba(119, 215, 182, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.why-icon i {
    font-size: 1.5rem;
    color: #77d7b6;
}

.why-card h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
}

.why-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0;
}

/* --- Register CTA Section --- */
.register-cta-section {
    padding: 8rem 1rem;
    background: linear-gradient(135deg, rgba(14, 100, 84, 0.90) 0%, rgba(105, 28, 36, 0.90) 50%, rgba(176, 57, 61, 0.90) 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cta-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(119, 215, 182, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(119, 215, 182, 0.08) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.register-cta-section .section-title {
    text-align: center;
    margin-bottom: 1.5rem;
}

.register-cta-section .accent {
    color: #77d7b6;
}

.cta-subtitle {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-stats {
    max-width: 500px;
    margin: 0 auto 3rem;
}

.stat-block {
    text-align: center;
    padding: 1.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
}

.stat-block h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #77d7b6;
    margin-bottom: 0.3rem;
}

.stat-block span {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.6);
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fff;
    background: #096644;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(119, 215, 182, 0.3);
}

.cta-btn:hover {
    background: #69c4a5;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(119, 215, 182, 0.4);
}

.cta-btn i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.cta-btn:hover i {
    transform: translateX(5px);
}

/* --- Sponsors Section --- */
.sponsors-section {
    padding: 6rem 0;
    background: #fff;
    color: #0a0a0a;
}

.sponsors-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.sponsors-section .section-label {
    justify-content: center;
    color: #0a0a0a;
    background: rgba(14, 100, 84, 0.1);
}

.sponsors-section .line {
    background: #0e6454;
}

.sponsors-section .section-title {
    margin-top: 1rem;
}

.sponsors-section .accent {
    color: #0e6454;
}

.section-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-top: 1rem;
}

.sponsor-card {
    background: rgba(14, 100, 84, 0.05);
    border: 2px solid rgba(14, 100, 84, 0.2);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg) translateY(0px);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    cursor: pointer;
}

.sponsor-card:hover {
    transform: perspective(1000px) rotateX(2deg) rotateY(-2deg) translateY(-5px);
    box-shadow: 0 20px 40px rgba(14, 100, 84, 0.2);
    border-color: #0e6454;
}

.sponsor-card i {
    font-size: 2.5rem;
    color: #0e6454;
}

.sponsor-card span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #0a0a0a;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.sponsor-contact {
    font-size: 0.95rem;
    color: #666;
}

.sponsor-contact a {
    color: #0e6454;
    text-decoration: none;
    font-weight: 600;
}

.sponsor-contact a:hover {
    text-decoration: underline;
}

/* Sponsor Logos Modal */
.sponsor-logos-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.sponsor-logos-modal.active {
    display: flex;
}

.sponsor-logos-modal .modal-content {
    background: #fff;
    border-radius: 20px;
    padding: 3rem;
    max-width: 900px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    border: none;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.sponsor-logos-modal .modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(14, 100, 84, 0.1);
    border-radius: 50%;
    font-size: 1.5rem;
    color: #0e6454;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sponsor-logos-modal .modal-close:hover {
    background: #0e6454;
    color: #fff;
}

.sponsor-logos-modal .modal-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0a0a0a;
    margin-bottom: 2rem;
    text-align: center;
}

.sponsor-logos-modal .logos-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.sponsor-logos-modal .logo-item {
    background: rgba(14, 100, 84, 0.05);
    border: 1px solid rgba(14, 100, 84, 0.2);
    border-radius: 15px;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    transition: all 0.3s ease;
}

.sponsor-logos-modal .logo-item:hover {
    background: rgba(14, 100, 84, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(14, 100, 84, 0.15);
}

.sponsor-logos-modal .logo-item img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
}

.sponsor-logos-modal .logo-placeholder {
    font-size: 0.85rem;
    color: #666;
    text-align: center;
}

/* --- Projects Grid --- */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.project-card {
    position: relative;
    cursor: pointer;
    opacity: 0;
    transform: translateY(60px);
}

.project-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.project-image-inner {
    width: 100%;
    height: 100%;
    transition: transform 0.8s var(--ease-out);
}

.project-card:hover .project-image-inner {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s var(--ease-out);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-view {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 0.75rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 30px;
    color: var(--white);
    transform: translateY(10px);
    transition: transform 0.4s var(--ease-out), background 0.3s;
}

.project-card:hover .project-view {
    transform: translateY(0);
}

.project-view:hover {
    background: rgba(255, 255, 255, 0.1);
}

.project-info {
    padding: 0 0.5rem;
}

.project-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    margin-bottom: 0.5rem;
    display: block;
}

.project-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.project-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.project-number {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.2);
    letter-spacing: 0.05em;
}

/* --- About --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: start;
}

.about-text-large {
    font-size: 1.5rem;
    line-height: 1.6;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.about-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.about-capabilities {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.capability {
    padding: 1.5rem 0;
    border-top: 1px solid var(--border);
}

.capability-number {
    font-size: 0.75rem;
    color: var(--accent);
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 0.75rem;
}

.capability h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.capability p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* --- Services --- */
.services-list {
    display: flex;
    flex-direction: column;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    transition: background 0.3s;
    opacity: 0;
    transform: translateY(30px);
}

.service-item:first-child {
    border-top: 1px solid var(--border);
}

.service-item:hover {
    background: rgba(255, 255, 255, 0.02);
}

.service-number {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--accent);
    min-width: 40px;
}

.service-content {
    flex: 1;
}

.service-name {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 2.5vw, 2rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.service-item:hover .service-name {
    color: var(--accent);
}

.service-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 600px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease-out), opacity 0.4s;
    opacity: 0;
}

.service-item:hover .service-desc {
    max-height: 100px;
    opacity: 1;
}

.service-arrow {
    color: var(--text-muted);
    transition: color 0.3s, transform 0.4s var(--ease-out);
}

.service-item:hover .service-arrow {
    color: var(--accent);
    transform: translate(4px, -4px);
}

/* --- Quote Section --- */
.quote-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    text-align: center;
}

.big-quote {
    max-width: 800px;
    margin: 0 auto;
}

.quote-mark {
    font-family: var(--font-heading);
    font-size: 6rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    display: block;
    margin-bottom: -1rem;
}

.quote-text {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 2rem;
}

.quote-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.quote-name {
    font-weight: 600;
    font-size: 1rem;
}

.quote-role {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* --- Contact --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.contact-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-top: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border);
    padding: 1rem 0 0.75rem;
    font-size: 1rem;
    color: var(--text);
    outline: none;
    transition: border-color 0.3s;
    resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent);
}

.form-group label {
    position: absolute;
    top: 1rem;
    left: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: all 0.3s var(--ease-out);
    pointer-events: none;
}

.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
    top: -0.5rem;
    font-size: 0.7rem;
    color: var(--accent);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.form-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.4s var(--ease-out);
}

.form-group input:focus ~ .form-line,
.form-group textarea:focus ~ .form-line {
    width: 100%;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--accent);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s var(--ease-out), box-shadow 0.3s;
    align-self: flex-start;
}

.submit-btn:hover {
    background: #4f46e5;
    transform: translateY(-2px);
    box-shadow: 0 10px 40px var(--accent-glow);
}

.btn-icon {
    display: flex;
    transition: transform 0.3s var(--ease-out);
}

.submit-btn:hover .btn-icon {
    transform: translateX(4px);
}

/* --- Footer --- */
.footer {
    position: relative;
    z-index: 1;
    padding: 0 3rem 2rem;
    border-top: 1px solid var(--border);
    background: var(--bg);
}
.footer a{
    color: #fff;
    text-decoration: none;
}
.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 0.05em;
}

.footer-tagline {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-top: 1rem;
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.footer-col a {
    font-size: 0.9rem;
    color: var(--text);
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--accent);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 1024px) {
    .section {
        padding: 6rem 1rem;
    }

    .nav {
        padding: 1.25rem 1rem;
    }

    .hero-logo {
        height: 300px;
    }

    .hero-save-date {
        width: 180px;
    }

    .hero-save-date span {
        font-size: clamp(2rem, 5vw, 3rem);
    }

    .hero-bg-img {
        margin-right: -60px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 5rem 1rem;
    }
ul.navbar-nav.me-auto {
    width: 100%;
    text-align: center;
}
    .hero {
        min-height: 100vh;
        min-height: 100dvh;
    }

    .hero-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-logo {
        height: 180px;
    }

    .hero-logo-area {
        gap: 1rem;
        margin-bottom: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-save-date {
        position: relative;
        right: auto;
        top: auto;
        bottom: auto;
        width: auto;
        transform: none;
        text-align: center;
    }

    .hero-save-date span {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }

    .hero-event-details {
        margin-bottom: 1.5rem;
        padding: 0 1rem 0 0.8rem;
        text-align: center;
    }

    .hero-date {
        font-size: clamp(1.2rem, 4vw, 1.6rem);
    }

    .hero-venue {
        font-size: clamp(0.75rem, 2.5vw, 0.9rem);
    }

    .hero-location {
        font-size: clamp(0.8rem, 2.5vw, 1rem);
    }

    .hero-scroll-indicator {
        margin-top: 2rem;
    }

    .hero-countdown {
        position: relative;
        bottom: auto;
        margin-top: 2rem;
        padding-bottom: 2rem;
    }

    .countdown-wrapper {
        max-width: 100%;
    }

    .hero-title {
        font-size: clamp(1.8rem, 8vw, 3rem);
    }

    .hero-bg-img {
        margin-right: 0;
        opacity: 0.4;
        height: auto;
        width: 100%;
        max-height: 70vh;
        object-fit: contain;
        object-position: center center;
        float: none;
        display: block;
        margin: 0 auto;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    .page-banner {
    padding: 30px 0 10px;
    }
    .cursor,
    .cursor-follower {
        display: none;
    }

    body {
        cursor: auto;
    }

    a, button, input, textarea {
        cursor: auto;
    }

    /* Video Intro responsive */
    .video-intro {
        object-fit: cover;
    }

    #introVideo {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }

    /* About section responsive */
    .about-congress {
        margin: 30px auto;
        padding: 2rem 1.2rem 0;
        border-radius: 14px;
    }

    .about-text {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .about-list li {
        font-size: 0.9rem;
        padding-left: 1.5rem;
    }

    /* Welcome section responsive */
    .welcome-card {
        padding: 1.5rem 1.2rem 0;
        border-radius: 14px;
    }

    .chairman-card {
        padding: 1.5rem;
        border-radius: 14px;
    }

    .welcome-text {
        font-size: 0.95rem;
    }

    /* Cards responsive */
    .attendee-card,
    .objective-card,
    .why-card {
        padding: 1.2rem;
    }

    .mobile-link {
        font-size: clamp(1.5rem, 6vw, 2.5rem);
    }
}

@media (max-width: 480px) {
    .section {
        padding: 4rem 0.75rem;
    }

    .nav {
        padding: 1rem 0.5rem;
    }
    .nav.scrolled {
        padding: 1rem;
    }
    .footer {
        padding: 3rem 0.75rem 1.5rem;
    }

    .hero-logo {
        height: 250px;
        filter: drop-shadow(0 0 50px rgba(119, 215, 182, 1)) brightness(1) contrast(1.5);
    }

    .hero-logo-area {
        gap: 0.8rem;
        margin-bottom: 1rem;
    }

    .hero-save-date span {
        font-size: clamp(1.4rem, 7vw, 2rem);
    }

    .hero-event-details {
        margin-bottom: 1.2rem;
        padding: 0 0.8rem 0 0.6rem;
    }

    .hero-date {
        font-size: clamp(1rem, 5vw, 1.3rem);
        margin-bottom: 0.2rem;
    }

    .hero-venue {
        font-size: 0.7rem;
        margin-bottom: 0.2rem;
    }

    .hero-location {
        font-size: 0.75rem;
    }

    .hero-scroll-indicator {
        margin-top: 1.5rem;
        font-size: 0.65rem;
    }

    .hero-countdown {
        margin-top: 1.5rem;
    }

    .countdown-card {
        width: 60px;
        height: 60px;
        border-radius: 10px;
    }

    .countdown-number {
        font-size: 1.4rem;
    }

    .countdown-unit {
        font-size: 0.6rem;
    }

    .countdown-boxes {
        gap: 0.3rem;
    }

    .countdown-sep-wrap {
        gap: 4px;
        padding: 0;
    }

    .countdown-dot {
        width: 3px;
        height: 3px;
    }

    .lung-breath-ring {
        width: 50px;
        height: 50px;
    }

    /* About section small mobile */
    .about-congress {
        margin: 15px auto;
        padding: 1.5rem 1rem 0;
        border-radius: 12px;
    }

    .about-text {
        font-size: 0.85rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }

    .about-list li {
        font-size: 0.8rem;
        line-height: 1.6;
    }

    /* Welcome section small mobile */
    .welcome-card {
        padding: 1.2rem 1rem 0;
    }

    .chairman-card {
        padding: 1rem;
    }

    .chairman-name {
        font-size: 1.1rem;
    }

    .welcome-text {
        font-size: 0.85rem;
    }

    .section-title {
        font-size: clamp(1.4rem, 6vw, 2rem);
    }

    .mobile-link {
        font-size: clamp(1.2rem, 5vw, 2rem);
        gap: 1rem;
    }

    .mobile-menu-links {
        gap: 1rem;
    }
}

/* --- Reduced Motion: disable animations for accessibility & performance --- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .lung-particle,
    .lung-breath-ring {
        animation: none !important;
    }

    .story-overlay {
        transition: opacity 0.1s !important;
        transform: none !important;
        filter: none !important;
    }

    .countdown-card-shine {
        animation: none !important;
    }

    .countdown-dot {
        animation: none !important;
    }
}

<style>
  *, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  ::-webkit-scrollbar {
    width: 0;
    display: none;
  }

  html {
    scrollbar-width: none;
    scroll-behavior: smooth;
  }

  body {
    background: #0a0a0a;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
    cursor: auto !important;
  }

  a, button, input, textarea {
    cursor: auto !important;
  }


  /* ========== SCROLL INDICATOR ========== */
  #scroll-indicator {
    position: fixed;
    right: 28px;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 120px;
    background: rgba(255,255,255,0.06);
    border-radius: 2px;
    z-index: 999;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.6s ease;
  }

  #scroll-indicator.visible {
    opacity: 1;
  }

  #scroll-fill {
    width: 100%;
    height: 0%;
    border-radius: 2px;
    background: linear-gradient(180deg, #77d7b6, #4ecdc4, #77d7b6);
    transition: height 0.1s linear;
  }

  /* ========== CINEMATIC HERO SECTION ========== */
  #cinematic-hero {
    position: relative;
    width: 100%;
    height: 600vh;
  }

  #canvas-wrap {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    min-height: 100vh;
    min-height: 100dvh;
    overflow: hidden;
    z-index: 1;
    background: #0a0a0a;
    will-change: transform;
    transform: translateZ(0);
  }

  #cinematic-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    will-change: transform;
    transform: translateZ(0);
  }

  /* ========== STORY OVERLAYS ========== */
  .story-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100vh;
    height: 130dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 100;
    pointer-events: none;
    opacity: 0;
    transform: translateY(20px) scale(0.97);
    filter: blur(6px);
    transition: opacity 1s cubic-bezier(0.25, 0.1, 0.25, 1),
                transform 1.2s cubic-bezier(0.25, 0.1, 0.25, 1),
                filter 1s cubic-bezier(0.25, 0.1, 0.25, 1);
    will-change: opacity, transform, filter;
  }

  .story-overlay.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0px);
  }

  .story-overlay h2 {
font-family: 'Syne', sans-serif;
    font-size: 18px;
    letter-spacing: 0.06em;
    text-align: center;
    color: #fff;
    text-shadow: 0 4px 60px rgba(0, 0, 0, 0.7);
    max-width: 800px;
    padding: 8px 24px;
    line-height: 1.3;
    font-weight: bold;
    background: #67161e;
    /* width: 200px; */
    border-radius: 20px;
    text-transform: uppercase;
  }

  .story-overlay .story-sub {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(0.55rem, 1.2vw, 0.75rem);
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-top: 18px;
    transition: opacity 0.8s ease 0.15s;
  }

  .story-overlay .story-line {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #77d7b6, #4ecdc4);
    margin-top: 24px;
    opacity: 0.5;
    transition: width 1s cubic-bezier(0.25, 0.1, 0.25, 1) 0.2s,
                opacity 0.8s ease 0.2s;
  }

  .story-overlay.active .story-line {
    width: 60px;
    opacity: 0.7;
  }



  /* ========== NAV OVERRIDE FOR CINEMATIC ========== */
  .nav {
    z-index: 1000;
  }


  /* ========== TABLET ========== */
  @media (max-width: 1024px) {
    #cinematic-hero {
      height: 500vh;
    }
  }

  /* ========== MOBILE ========== */
  @media (max-width: 768px) {
    #cinematic-hero {
      height: 400vh;
    }
    #scroll-indicator {
      right: 12px;
      height: 70px;
    }
    #canvas-wrap {
      height: 100vh;
      height: 100dvh;
    }
    .story-overlay {
      justify-content: flex-end;
      padding-bottom: 15vh;
    }
    .story-overlay h2 {
      font-size: 14px;
      padding: 6px 16px;
      max-width: 90vw;
    }
    .story-overlay .story-sub {
      font-size: 0.55rem;
      letter-spacing: 0.25em;
    }
  }

  @media (max-width: 480px) {
    #cinematic-hero {
      height: 350vh;
    }
    .story-overlay {
      padding-bottom: 12vh;
    }
    .story-overlay h2 {
      font-size: 12px;
      padding: 5px 12px;
    }
    .story-overlay .story-sub {
      font-size: 0.5rem;
    }
  }

  /* iOS Safari viewport fix */
  @supports (-webkit-touch-callout: none) {
    #canvas-wrap {
      height: 100dvh;
      min-height: -webkit-fill-available;
    }
  }

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #0e6454;
    color: #fff;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 9990;
    box-shadow: 0 4px 15px rgba(14, 100, 84, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #0a4f42;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(14, 100, 84, 0.4);
}

/* ===== Member Cards ===== */
.member-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    padding: 2.5rem 1.5rem 2rem;
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.member-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(135deg, #0e6454 0%, #14967d 100%);
    border-radius: 20px 20px 0 0;
}

.member-card::after {
    content: '';
    position: absolute;
    top: 90px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 30px;
    background: #fff;
    border-radius: 50% 50% 0 0;
}

.member-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(14, 100, 84, 0.15);
}

.member-card .traveling-border {
    position: absolute;
    inset: 0;
    border-radius: 20px;
    border: 2px solid transparent;
    pointer-events: none;
    transition: border-color 0.3s ease;
    z-index: 2;
}

.member-card:hover .traveling-border {
    border-color: #0e6454;
}

.member-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
    z-index: 1;
}

.member-image-container {
    position: relative;
    margin-bottom: 1.2rem;
    z-index: 3;
}

.member-image-wrapper {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
        background: #fff;
    margin: 0 auto;
    border: 4px solid #fff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.TbaText.text-white {
    color: #000 !important;
}
.member-card:hover .member-image-wrapper {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(14, 100, 84, 0.2);
}
/* ================= Modern Venue Page Design ================= */
.venue-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.venue-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="venue-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(0,168,107,0.02)"/><circle cx="75" cy="75" r="1" fill="rgba(0,168,107,0.02)"/><circle cx="50" cy="10" r="0.5" fill="rgba(0,102,204,0.02)"/><circle cx="10" cy="50" r="0.5" fill="rgba(0,102,204,0.02)"/><circle cx="90" cy="30" r="0.5" fill="rgba(0,102,204,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23venue-pattern)"/></svg>');
    pointer-events: none;
}

.venue-section .container {
    position: relative;
    z-index: 2;
}

/* Venue Cards */
.venue-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    min-height: 500px;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
    border: 1px solid rgba(0, 168, 107, 0.1);
    position: relative;
}

.venue-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-blue), #00a86b, #0066cc, var(--primary-green));
    background-size: 300% 100%;
    animation: gradientShift 8s ease infinite;
    z-index: 2;
}

.venue-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.15);
}

/* Reverse Layout for Alternating Cards */
.venue-card--reverse {
    flex-direction: column;
}

.venue-card--reverse .venue-card__content,
.venue-card--reverse .venue-card__map {
    direction: ltr;
}

/* Venue Card Image and Content Row */
.venue-card__top-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

/* Always keep image on left, content on right */
.venue-card--reverse .venue-card__top-row {
    direction: ltr;
}

.venue-card--reverse .venue-card__top-row .venue-card__content,
.venue-card--reverse .venue-card__top-row .venue-card__image {
    direction: ltr;
}

.venue-card--reverse .venue-card__top-row .venue-card__image {
    order: 1;
}

.venue-card--reverse .venue-card__top-row .venue-card__content {
    order: 2;
}

/* Venue Card Image */
.venue-card__image {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 500px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-blue) 100%);
    border-radius: 25px 0 0 25px;
}

.venue-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.320, 1);
    filter: brightness(1.05) contrast(1.05);
}

.venue-card:hover .venue-card__image img {
    transform: scale(1.08);
    filter: brightness(1.1) contrast(1.1);
}

.venue-card__image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 168, 107, 0.1), rgba(0, 102, 204, 0.1));
    opacity: 0;
    transition: opacity 0.6s ease;
}

.venue-card:hover .venue-card__image-overlay {
    opacity: 1;
}

/* Venue Card Content */
.venue-card__content {
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 0 25px 25px 0;
}

.venue-card__icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 12px 25px rgba(0, 168, 107, 0.25);
    transition: all 0.4s ease;
}

.venue-card__icon svg {
    color: white;
    width: 35px;
    height: 35px;
}

.venue-card:hover .venue-card__icon {
    transform: translateY(-3px) rotate(3deg);
    box-shadow: 0 15px 35px rgba(0, 168, 107, 0.35);
}

.venue-card__title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.4s ease;
}

.venue-card:hover .venue-card__title {
    transform: translateY(-2px);
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.venue-card__desc {
    font-size: 1rem;
    line-height: 1.6;
    color: #6c757d;
    margin-bottom: 25px;
    opacity: 0.9;
}

.venue-card__address {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: #4a5568;
    font-weight: 500;
    padding: 18px;
    background: rgba(0, 168, 107, 0.08);
    border-radius: 12px;
    border-left: 4px solid var(--primary-green);
    transition: all 0.4s ease;
    margin-top: auto;
}

.venue-card__address svg {
    color: var(--primary-green);
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}

.venue-card:hover .venue-card__address {
    background: rgba(0, 168, 107, 0.12);
    transform: translateX(3px);
}

/* Venue Card Map - Full Width */
.venue-card__map {
    position: relative;
    height: 400px;
    width: 100%;
    overflow: hidden;
    background: #f8f9fa;
    border-top: 1px solid rgba(0, 168, 107, 0.1);
}

.venue-card__map iframe {
    width: 100%;
    height: 100%;
    border: none;
    transition: all 0.6s ease;
}

.venue-card:hover .venue-card__map iframe {
    transform: scale(1.01);
}

/* Cards without map - full width layout */
.venue-card:not(:has(.venue-card__map)) {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.venue-card:not(:has(.venue-card__map)) .venue-card__image {
    border-radius: 25px 0 0 25px;
}

.venue-card:not(:has(.venue-card__map)) .venue-card__content {
    border-radius: 0 25px 25px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.venue-card--reverse:not(:has(.venue-card__map)) .venue-card__image {
    border-radius: 25px 0 0 25px;
}

.venue-card--reverse:not(:has(.venue-card__map)) .venue-card__content {
    border-radius: 0 25px 25px 0;
}  
/* Coming Soon Section */
.coming-soon-icon {
    width: 100px;
    height: 100px;
    background: #69161f;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 15px 35px rgba(0, 168, 107, 0.25);
    animation: floatAnimation 6s ease-in-out infinite;
}

.coming-soon-icon i {
    color: white;
    font-size: 2.5rem;
}

.coming-soon-title {
    font-size: 2.5rem;
    font-weight: 800;
    background: #69161f;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.coming-soon-text {
    font-size: 1.2rem;
    color: #6c757d;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
} 
/* Contact Page */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #eef2f0 100%);
    position: relative;
}

.contact-info {
    background: linear-gradient(135deg, #0e6454 0%, #14967d 100%);
    border-radius: 20px;
    padding: 40px 35px;
    color: #fff;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 50px rgba(14, 100, 84, 0.25);
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
}

.contact-info::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
}

.contact-logo {
    margin-bottom: 30px;
}

.contact-logo img {
    max-width: 160px;
    filter: brightness(0) invert(1);
}

.contact-coordinator-title {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-details {
    position: relative;
    z-index: 1;
}

.contact-details p {
    font-family: 'Exo', sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-details p:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.contact-details p i {
    color: #fff;
    font-size: 1rem;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.contact-details p a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details p a:hover {
    color: #fff;
}

.contact-form-wrapper {
    background: #fff;
    border-radius: 20px;
    padding: 45px 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(14, 100, 84, 0.08);
}

.contact-form-title {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.contact-form-subtitle {
    font-family: 'Exo', sans-serif;
    font-size: 0.95rem;
    color: #888;
    margin-bottom: 8px;
}

.contact-form-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #0e6454, #14967d);
    margin-bottom: 30px;
    border-radius: 3px;
}

.contact-form .form-group {
    position: relative;
    margin-bottom: 22px;
}

.contact-form .form-control {
    font-family: 'Exo', sans-serif;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 14px 45px 14px 18px;
    font-size: 0.95rem;
    color: #333;
    background: #f9fafb;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    box-shadow: 0 0 0 3px rgba(14, 100, 84, 0.1);
    border-color: #0e6454;
    background: #fff;
}

.contact-form .form-control::placeholder {
    color: #aaa;
}

.contact-form .form-group i {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #ccc;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.contact-form .form-group:focus-within i {
    color: #0e6454;
}

.contact-form .form-group:last-of-type i {
    top: 28px;
}

.contact-form textarea.form-control {
    resize: none;
    min-height: 120px;
}

.contact-submit-btn {
    background: linear-gradient(135deg, #0e6454 0%, #14967d 100%);
    color: #fff;
    border: none;
    padding: 14px 40px;
    font-family: 'Exo', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    margin-top: 10px;
    box-shadow: 0 8px 25px rgba(14, 100, 84, 0.25);
    letter-spacing: 0.3px;
}

.contact-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(14, 100, 84, 0.35);
    color: #fff;
}

.contact-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

@media (max-width: 991px) {
    .contact-info {
        margin-bottom: 30px;
    }
    .contact-form-wrapper {
        padding: 30px 25px;
    }
}

@media (max-width: 576px) {
    .contact-info {
        padding: 30px 25px;
    }
    .contact-form-wrapper {
        padding: 25px 20px;
    }
    .contact-form-title {
        font-size: 1.6rem;
    }
}
.member-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.member-card:hover .member-image {
    transform: scale(1.08);
}

.member-flag {
    position: absolute;
    bottom: 5px;
    right: 10px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
    z-index: 4;
}

.member-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.4rem;
    margin-top: 0.5rem;
}

.member-position {
    font-size: 0.8rem;
    font-weight: 600;
    color: #0e6454;
    margin-bottom: 0.4rem;
    min-height: 1.2em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.member-title {
    font-size: 0.82rem;
    color: #777;
    line-height: 1.6;
    margin-bottom: 1.2rem;
    flex: 1;
}

.member-bio-btn {
    display: inline-block;
    padding: 0.55rem 2rem;
    border: none;
    border-radius: 25px;
    background: linear-gradient(135deg, #0e6454 0%, #14967d 100%);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
    box-shadow: 0 4px 15px rgba(14, 100, 84, 0.3);
    letter-spacing: 0.3px;
}

.member-bio-btn:hover {
    background: linear-gradient(135deg, #0a4f42 0%, #0e6454 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 100, 84, 0.4);
    color: #fff;
}

/* Bio Modal */
.bio-modal {
    z-index: 10050 !important;
}
.modal-backdrop {
    z-index: 10040 !important;
}
.bio-modal .modal-content {
    border-radius: 16px;
    border: none;
    overflow: hidden;
}

.bio-modal .modal-header {
    background: #0e6454;
    color: #fff;
    border-bottom: none;
    padding: 1.2rem 1.5rem;
}

.bio-modal .modal-title {
    font-weight: 700;
    font-size: 1.1rem;
}

.bio-modal .btn-close {
    filter: brightness(0) invert(1);
}

.bio-modal .modal-body {
    padding: 2rem;
}

.bio-photo-wrapper {
    border-radius: 12px;
    overflow: hidden;
}

.bio-photo-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
}

.bio-content {
    font-size: 0.92rem;
    line-height: 1.7;
    color: #444;
}

@media (max-width: 768px) {
    .member-image-wrapper {
        width: 120px;
        height: 120px;
    }
    .member-card {
        padding: 1.5rem 1rem;
    }
}