/* Font Face Declarations */
@font-face {
    font-family: 'Bebas Neue';
    src: url('fonts/BEBAS.TTF') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Bebas Neue';
    src: url('fonts/BebasNeue Book.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Bebas Neue';
    src: url('fonts/BebasNeue Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Euclid Circular A';
    src: url('fonts/EuclidCircularASemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Euclid Flex';
    src: url('fonts/EuclidFlex-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('fonts/Gilroy-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('fonts/Gilroy-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham';
    src: url('fonts/Gotham-Ultraltalic.otf') format('opentype');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Impact';
    src: url('fonts/impact.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('fonts/Montserrat-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('fonts/Montserrat-ExtraBold.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Objective';
    src: url('fonts/Objective-ExtraBold.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.btn:hover {
    border-color: #5f5555 !important;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Euclid Circular A', 'Gilroy', 'Montserrat', sans-serif;
    background: #0f1419;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

li.nav-item {
    list-style: none;
}

/* Loading Screen */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(135deg, #2C3E50 0%, #34495E 50%, #465A72 100%); */
    background: linear-gradient(135deg, #708d7e 0%, #946a50 50%, #708d7e 100%);

    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
}

main.main-content.position-relative.max-height-vh-100.h-100.border-radius-lg {
    margin-top: -10px;
}

.loading-content {
    text-align: center;
    max-width: 500px;
    padding: 0 20px;
}

.loading-text {
    margin-top: 30px;
}

.loading-spinner {
    width: 80px;
    height: 80px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top: 4px solid #6fa99a;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

.loading-progress {
    margin: 20px 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.progress-bar {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #6fa99a 0%, #708d7e 50%, #6fa99a 100%);
    background-size: 200% 100%;
    border-radius: 10px;
    width: 0%;
    transition: width 0.3s ease-out;
    animation: shimmer 2s infinite;
    box-shadow: 0 0 10px rgba(111, 169, 154, 0.5);
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

#loading-percentage {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    min-width: 45px;
    text-align: right;
}

.dropdown-menu.show {
    background-color: #708d7e !important;
    padding: 10px 10px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

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

.loading-content p {
    color: #ffffff;
    font-size: 22px;
    font-weight: 600;
    margin: 10px 0;
}

#loading-message {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.loading-tip {
    font-size: 14px !important;
    font-weight: 400 !important;
    color: rgba(255, 255, 255, 0.8) !important;
    font-style: italic;
    margin-top: 15px !important;
    min-height: 20px;
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

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

/* Navigation */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 25px 40px;
    z-index: 1000;
    border-bottom: 1px solid #708d7e;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(155, 216, 30, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
}

/* Sticky header after first section - dark background and thinner */
.main-nav.scrolled {
    padding: 12px 40px;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(112, 141, 126, 0.5);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.main-nav.scrolled .nav-logo img {
    height: 45px;
    transition: height 0.2s ease;
}

.main-nav .container-fluid {
    padding: 0;
}

/* Wrapper to keep logo and menu in one line */
.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 100vw;
    margin: 0 auto;
    gap: 30px;
}

/* .main-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    

    background: linear-gradient(90deg, transparent 0%, #708d7e40 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
} */

.main-nav:hover::before {
    opacity: 1;
}

.nav-logo {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.nav-logo img {
    height: 60px;
    width: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(155, 216, 30, 0.3));
}

.nav-logo img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px rgba(155, 216, 30, 0.5));
}

.nav-logo::after {
    content: '';
    width: 2px;
    height: 30px;
    background: linear-gradient(180deg, transparent, rgba(155, 216, 30, 0.6), transparent);
}

.nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;

    margin: auto;
}

.nav-links .nav-item {
    list-style: none;
}

.nav-links .nav-link {
    position: relative;
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    padding: 10px 18px;
    border-radius: 25px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.05);
    overflow: hidden;
    white-space: nowrap;
}

.nav-links .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(155, 216, 30, 0.2),
            transparent);
    transition: left 0.5s ease;
}

.nav-links .nav-link:hover::before {
    left: 100%;
}

.nav-links .nav-link:hover {
    color: #ffffff !important;
    background: #708d7e80;
    border-color: #a69072a3;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px #a69072, 0 0 0 1px #a69072;
}

.nav-links .nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #708d7e, #708d7e);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 1px;
}

.nav-links .nav-link:hover::after,
.nav-links .nav-link.active::after {
    width: 80%;
}

.nav-links .nav-link.active {
    color: #9BD81E !important;
    background: rgba(155, 216, 30, 0.2);
    border-color: rgba(155, 216, 30, 0.5);
    box-shadow: 0 4px 15px rgba(155, 216, 30, 0.4);
}

.navbar-toggler.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 10px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1001;
}

.navbar-toggler.nav-toggle:hover {
    background: rgba(155, 216, 30, 0.1);
    border-color: rgba(155, 216, 30, 0.3);
}

.navbar-toggler.nav-toggle:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler.nav-toggle span {
    width: 25px;
    height: 3px;
    background: linear-gradient(90deg, #ffffff, #9BD81E);
    transition: all 0.3s ease;
    border-radius: 2px;
    box-shadow: 0 0 5px rgba(155, 216, 30, 0.3);
    display: block;
}

.navbar-toggler.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background: linear-gradient(90deg, #9BD81E, #86B247);
}

.navbar-toggler.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.navbar-toggler.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
    background: linear-gradient(90deg, #86B247, #9BD81E);
}

/* Enhanced Navigation Effects */
.main-nav:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(155, 216, 30, 0.2),
        0 0 30px rgba(155, 216, 30, 0.1);
}

.main-nav:hover .nav-logo img {
    filter: drop-shadow(0 0 20px rgba(155, 216, 30, 0.7));
}

/* Active link pulse effect */
.nav-links a.active {
    position: relative;
}

.nav-links a.active::before {
    animation: activePulse 2s ease-in-out infinite;
}

@keyframes activePulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(155, 216, 30, 0.4);
    }

    50% {
        box-shadow: 0 0 0 5px rgba(155, 216, 30, 0);
    }
}

.brain-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 2;
    overflow: visible;
    pointer-events: none;
}

.brain-particles .particle {
    position: fixed;
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.8) 50%, transparent 100%);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.8), 0 0 30px rgba(255, 255, 255, 0.4);
    animation: slowFloatMove 20s ease-in-out infinite;
    animation-delay: var(--delay);
    pointer-events: none;
    will-change: transform, opacity;
    left: var(--x);
    top: var(--y);
    transform: translate(-50%, -50%);
}

.brain-particles .particle:nth-child(2n) {
    width: 4px;
    height: 4px;
    animation-duration: 25s;
}

.brain-particles .particle:nth-child(3n) {
    width: 8px;
    height: 8px;
    animation-duration: 18s;
}

.brain-particles .particle:nth-child(4n) {
    width: 5px;
    height: 5px;
    animation-duration: 22s;
}

.brain-particles .particle:nth-child(5n) {
    width: 7px;
    height: 7px;
    animation-duration: 24s;
}

@keyframes slowFloatMove {
    0% {
        transform: translate(-50%, -50%);
        opacity: 0.4;
    }

    25% {
        transform: translate(calc(-50% + 15px), calc(-50% - 20px));
        opacity: 0.8;
    }

    50% {
        transform: translate(calc(-50% - 10px), calc(-50% - 15px));
        opacity: 1;
    }

    75% {
        transform: translate(calc(-50% + 20px), calc(-50% - 25px));
        opacity: 0.6;
    }

    100% {
        transform: translate(-50%, -50%);
        opacity: 0.4;
    }
}

/* Bootstrap navbar collapse customization - includes iPads */
@media (max-width: 1100px) {
    .main-nav {
        padding: 15px 20px;
    }

    .main-nav.scrolled {
        padding: 10px 20px;
    }

    .nav-wrapper {
        flex-wrap: wrap;
    }

    .navbar-toggler.nav-toggle {
        display: flex;
        order: 2;
    }

    .navbar-collapse {
        order: 3;
        flex-basis: 100%;
    }

    .navbar-collapse {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        width: 100%;
        max-height: calc(100vh - 80px);
        background: linear-gradient(135deg, #1f2918 0%, #000 50%, #1f2918 100%);
        backdrop-filter: blur(25px);
        border-top: 1px solid rgba(155, 216, 30, 0.3);
        overflow-y: auto;
        z-index: 999;
    }

    .main-nav.scrolled .navbar-collapse {
        top: 67px;
        max-height: calc(100vh - 67px);
    }

    .navbar-collapse .nav-links {
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 15px;
        padding: 30px 20px;
        width: 100%;
        margin: 0;
    }

    .nav-links .nav-item {
        width: 100%;
        max-width: 400px;
    }

    .nav-links .nav-link {
        font-size: 1.1rem;
        padding: 15px 25px;
        width: 100%;
        text-align: center;
        border-radius: 15px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.15);
        display: block;
    }

    .nav-links .nav-link:hover {
        background: rgba(155, 216, 30, 0.2);
        border-color: rgba(155, 216, 30, 0.5);
        transform: translateY(-2px) scale(1.02);
        box-shadow: 0 10px 30px rgba(155, 216, 30, 0.4);
    }
}

@media (max-width: 576px) {
    .main-nav {
        padding: 12px 15px;
    }

    .main-nav.scrolled {
        padding: 8px 15px;
    }

    .navbar-collapse {
        top: 70px;
        max-height: calc(100vh - 70px);
    }

    .main-nav.scrolled .navbar-collapse {
        top: 57px;
        max-height: calc(100vh - 57px);
    }

    .nav-links {
        padding: 20px 15px;
    }

    .nav-links .nav-link {
        font-size: 1rem;
        padding: 12px 20px;
    }

    .nav-logo img {
        height: 45px;
    }

    .main-nav.scrolled .nav-logo img {
        height: 35px;
    }
}

/* Prevent horizontal scrolling */
body,
html {
    overflow-x: hidden;
    max-width: 100%;
}

.main-nav .container-fluid {
    max-width: 100%;
    overflow: hidden;
}

/* Desktop menu - only for screens larger than iPads */
@media (min-width: 1101px) {
    .nav-links {
        gap: 15px;
        flex-wrap: nowrap;
    }

    .nav-links .nav-link {
        font-size: 0.9rem;
        padding: 10px 15px;
        white-space: nowrap;
    }
}

@media (min-width: 1200px) {
    .nav-links {
        gap: 20px;
    }

    .nav-links .nav-link {
        font-size: 0.95rem;
        padding: 10px 18px;
    }
}

@media (min-width: 1400px) {
    .nav-links {
        gap: 25px;
    }

    .nav-links .nav-link {
        font-size: 1rem;
        padding: 12px 20px;
    }
}

/* Section 1: Brain Landing */
.brain-landing {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background:
        radial-gradient(circle at center, rgba(155, 216, 30, 0.4) 0%, rgba(134, 178, 71, 0.3) 30%, rgba(20, 30, 48, 0.85) 70%, rgba(10, 10, 10, 0.95) 100%),
        url('img/bannerbg.jpg'); */
    /* background:
        radial-gradient(circle at center, rgba(112, 141, 126, 0.4) 9%, rgba(112, 141, 126, 0.3) 30%, rgba(112, 141, 126, 0.75) 86%, rgba(112, 141, 126, 0.95) 100%), url(img/bannerbg.jpg); */
    /* background: radial-gradient(circle at center, rgba(112, 141, 126, 0.4) 9%, rgba(112, 141, 126, 0.3) 30%, rgb(112 141 126 / 9%) 86%, rgb(112 141 126 / 0%) 100%), url(img/bannerbg.jpg); */
    background: url(img/bannerbg.jpg);

    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.brain-container {
    position: absolute;
    top: 62%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw !important;
    height: 100vh !important;
    max-width: 100% !important;
    max-height: 100% !important;

    z-index: 1;
    pointer-events: none;
}

.brain-container canvas {
    pointer-events: auto;
    width: 1400px !important;
    height: 700px !important;
}

#brain-canvas {
    width: 100% !important;
    height: 100% !important;
    display: block;
}

.brain-logo-overlay {
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 240px;
    height: auto;
    z-index: 3;
    filter: drop-shadow(0 0 10px rgba(155, 216, 30, 0.3));
    animation: logoFloat 4s ease-in-out infinite;
}

@keyframes logoFloat {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.05);
        opacity: 1;
    }
}

.date-display-left {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 20px;
    border: 2px solid rgb(111 169 154);
    position: absolute;
    left: 15%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    text-align: left;
    filter: drop-shadow(0 0 30px rgba(111, 169, 154, 0.6));
}

.date-line {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.date-line:nth-child(2) {
    font-size: 1.5rem;
    color: #6fa99a;
    font-weight: 600;
}

.date-line:nth-child(3) {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 1px;
    font-weight: 500;
}

/* Countdown Timer - Right Side Vertical */
.countdown-display-right {
    position: absolute;
    right: 15%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.countdown-unit {
    background: rgba(0, 0, 0, 0.4);
    /* backdrop-filter: blur(10px); */
    border: 2px solid rgba(111, 169, 154, 0.3);
    border-radius: 12px;
    padding: 15px 20px;
    text-align: center;
    min-width: 100px;
    transition: all 0.3s ease;
}

.countdown-unit:hover {
    border-color: rgba(111, 169, 154, 0.6);
    background: rgba(0, 0, 0, 0.5);
    transform: scale(1.05);
}

.countdown-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: #6fa99a;
    line-height: 1;
    margin-bottom: 5px;
    /* text-shadow: 0 0 20px rgba(111, 169, 154, 0.5); */
}

.countdown-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.landing-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: 95vw;
    padding: 0 20px;
}

/* Magical Stroke Text - Clean, no animations */
.magical-stroke-text {
    font-size: 2vw;
    /* Match JavaScript scroll animation initial state */
    font-weight: 900;
    font-family: 'Montserrat', 'Arial Black', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    white-space: nowrap;
    overflow: visible;
    margin: 0;
    padding: 20px 0;
    width: 100%;
    display: block;

    /* Clean stroke - No animation */
    color: #946a50;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.9);
    text-stroke: 2px rgba(255, 255, 255, 0.9);

    /* Subtle glow - No animation */
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.5));

    /* Keep scroll effects */
    transition: font-size 0.1s ease-out, letter-spacing 0.1s ease-out, transform 0.1s ease-out, opacity 0.1s ease-out;
    transform: translateY(0);
}


.main-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(50px);
    animation: titleReveal 1s ease-out forwards;
}

.title-line:nth-child(2) {
    animation-delay: 0.3s;
}

.highlight {
    background: linear-gradient(45deg, #708d7e, #a69072, #6fa99a);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
}

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

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.6s forwards;
}

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

.cta-button {
    position: relative;
    padding: 15px 40px;
    background: transparent;
    border: 2px solid #9BD81E;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s ease;
    overflow: hidden;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.9s forwards;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(155, 216, 30, 0.3);
}

.button-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(111, 169, 154, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover .button-glow {
    left: 100%;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid #6fa99a;
    border-bottom: 2px solid #6fa99a;
    transform: rotate(45deg);
    margin: 0 auto 10px;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: rotate(45deg) translateY(0);
    }

    40% {
        transform: rotate(45deg) translateY(-10px);
    }

    60% {
        transform: rotate(45deg) translateY(-5px);
    }
}


/* Brain Sections */
.brain-section {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
}

.section-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(155, 216, 30, 0.1) 0%, transparent 70%);
    opacity: 0.5;
}

.section-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
}

.content-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 60px;
    text-align: center;
    transition: transform 0.3s ease;
}

.content-card:hover {
    transform: translateY(-10px);
}

.content-card h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #6fa99a;
}

.content-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

/* Stats */
.stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #a69072;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Memory Visualization */
.memory-visualization {
    height: 200px;
    position: relative;
    margin-top: 30px;
    overflow: hidden;
}

.memory-nodes {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%2300d4ff" opacity="0.6"/><circle cx="80" cy="30" r="1.5" fill="%23ff6b6b" opacity="0.4"/><circle cx="50" cy="60" r="2.5" fill="%234ecdc4" opacity="0.5"/><circle cx="30" cy="80" r="1" fill="%23ffd93d" opacity="0.3"/></svg>') repeat;
    animation: memoryFlow 10s linear infinite;
}

@keyframes memoryFlow {
    0% {
        transform: translateX(-100px);
    }

    100% {
        transform: translateX(100px);
    }
}

/* Neural Animation */
.neural-animation {
    height: 300px;
    margin-top: 30px;
    border-radius: 10px;
    overflow: hidden;
}

#neural-canvas {
    width: 100%;
    height: 100%;
    display: block;
}

/* Doctor Profile */
.doctor-profile {
    display: flex;
    align-items: center;
    gap: 40px;
    text-align: left;
}

.doctor-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #9BD81E;
}

.doctor-info h2 {
    text-align: left;
    margin-bottom: 10px;
}

.doctor-title {
    color: #9BD81E !important;
    font-weight: 500;
    margin-bottom: 20px !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-nav {
        padding: 15px 20px;
    }

    .nav-links {
        gap: 20px;
    }

    .brain-section {
        padding: 0 20px;
    }

    .content-card {
        padding: 40px 30px;
    }

    .stats {
        flex-direction: column;
        gap: 30px;
    }

    .doctor-profile {
        flex-direction: column;
        text-align: center;
    }

    .doctor-info {
        text-align: center;
    }

    .doctor-info h2 {
        text-align: center;
    }

    /* Responsive text sizing for tablets */
    .magical-stroke-text {
        font-size: 3vw;
        /* Slightly larger for tablets */
    }

    .date-display-left {
        left: 5%;
    }

    .date-line {
        font-size: 1.5rem;
    }

    .date-line:nth-child(2) {
        font-size: 1.2rem;
    }

    .date-line:nth-child(3) {
        font-size: 1rem;
    }

    .countdown-display-right {
        right: 5%;
        gap: 10px;
    }

    .countdown-unit {
        padding: 12px 15px;
        min-width: 80px;
    }

    .countdown-value {
        font-size: 2rem;
    }

    .countdown-label {
        font-size: 0.65rem;
    }

    .brain-logo-overlay {
        width: 180px;
    }

    .brain-container {
        width: 1000px !important;
        height: 500px !important;
    }

    .brain-container canvas {
        width: 1000px !important;
        height: 500px !important;
    }

    #brain-canvas {
        width: 1000px !important;
        height: 500px !important;
    }
}

@media (max-width: 480px) {
    .content-card {
        padding: 30px 20px;
    }

    .content-card h2 {
        font-size: 2rem;
    }

    .doctor-image {
        width: 150px;
        height: 150px;
    }

    /* Responsive text sizing for mobile */
    .magical-stroke-text {
        font-size: 4vw;
        /* Larger for mobile to remain readable */
    }

    .date-display-left {
        left: 23%;
        top: 68%;

        transform: none;
    }

    .date-line {
        font-size: 1.2rem;
        margin-bottom: 5px;
    }

    .date-line:nth-child(2) {
        font-size: 1rem;
    }

    .date-line:nth-child(3) {
        font-size: 0.85rem;
    }

    .countdown-display-right {
        right: 13px;
        top: 83%;
        bottom: 100px;
        transform: none;
        gap: 8px;
    }

    .countdown-unit {
        padding: 10px 12px;
        min-width: 70px;
    }

    .countdown-value {
        font-size: 1.5rem;
    }

    .countdown-label {
        font-size: 0.6rem;
    }

    .brain-logo-overlay {
        width: 150px;
    }

    .brain-container {

        max-width: 300% !important;
        max-height: 170% !important;
        width: 300% !important;
        height: 170% !important;
        margin-top: -100px;
    }

    .brain-container canvas {
        width: 100% !important;
        height: 100% !important;
        /* height: 500px !important; */
    }

    #brain-canvas {
        width: 100% !important;
        height: 100% !important;
        /* height: 500px !important; */
    }
}

/* Section-specific backgrounds */
.cortex-section .section-background {
    background: radial-gradient(circle at 30% 70%, rgba(255, 107, 107, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(155, 216, 30, 0.1) 0%, transparent 50%);
}

.hippocampus-section .section-background {
    background: radial-gradient(circle at 50% 50%, rgba(78, 205, 196, 0.15) 0%, transparent 60%);
}

.neural-section .section-background {
    background: radial-gradient(circle at 20% 80%, rgba(255, 217, 61, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(155, 216, 30, 0.1) 0%, transparent 50%);
}

.about-section .section-background {
    background: linear-gradient(45deg, rgba(155, 216, 30, 0.1) 0%, rgba(255, 107, 107, 0.1) 100%);
}


/* Chairman Section */
.chairman-section {
    min-height: 100vh;
    padding: 80px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    /* background-color: #f4f9f080; */
    background-image: linear-gradient(138deg, #946a50, #708d7e);
}





@keyframes gentleFlow {

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

    50% {
        transform: scale(1.02) rotate(1deg);
        opacity: 1;
    }
}

@keyframes subtleShift {
    0% {
        transform: translateX(0) translateY(0);
    }

    25% {
        transform: translateX(10px) translateY(-5px);
    }

    50% {
        transform: translateX(-5px) translateY(10px);
    }

    75% {
        transform: translateX(-10px) translateY(-5px);
    }

    100% {
        transform: translateX(0) translateY(0);
    }
}

/* Elegant Particles */
.elegant-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.glow-orb {
    position: absolute;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(111, 169, 154, 0.25) 0%, rgba(112, 141, 126, 0.12) 50%, transparent 100%);
    border-radius: 50%;
    left: var(--x);
    top: var(--y);
    animation: elegantFloat 12s ease-in-out infinite;
    animation-delay: var(--delay);
    filter: blur(1px);
}

.glow-orb:nth-child(2) {
    background: radial-gradient(circle, rgba(112, 141, 126, 0.2) 0%, rgba(148, 106, 80, 0.1) 50%, transparent 100%);
    animation-duration: 15s;
}

.glow-orb:nth-child(3) {
    background: radial-gradient(circle, rgba(148, 106, 80, 0.18) 0%, rgba(111, 169, 154, 0.08) 50%, transparent 100%);
    animation-duration: 18s;
}

@keyframes elegantFloat {

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

    50% {
        transform: translateY(-30px) scale(1.1);
        opacity: 0.8;
    }
}

.chairman-card {
    background: #c8cdc4;
    backdrop-filter: blur(20px);
    border: 6px solid #6fa99a;
    border-radius: 20px;
    padding: 60px;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.chairman-badge {
    display: inline-block;
    background: linear-gradient(45deg, #6fa99a, #708d7e);
    color: #000;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.chairman-profile {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: flex-start;

}

.chairman-image-container {
    flex-shrink: 0;
}

.chairman-image {
    width: 200px;
    height: 200px;
    border-radius: 15px;
    object-fit: cover;
    border: 3px solid #6fa99a;
    box-shadow: 0 10px 30px rgba(111, 169, 154, 0.3);
}

.chairman-info h2 {
    color: #6fa99a;
    font-size: 2rem;
    margin-bottom: 25px;
    text-align: left;
}

.chairman-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #000;
    margin-bottom: 20px;
    text-align: left;
}

.chairman-signature {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.chairman-signature p {
    margin-bottom: 5px;
}

.welcome-badge {
    display: inline-block;
    background: linear-gradient(45deg, #6fa99a, #708d7e);
    color: #000;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(111, 169, 154, 0.3);
}

.chairman-highlight {
    color: #6fa99a;
    font-weight: 800;
}

.chairman-image-container {
    text-align: center;
}

.chairman-details {
    background: #708d7e;
    padding: 20px;
    border-radius: 15px;
    margin-top: 20px;
    border: 2px solid rgba(155, 216, 30, 0.3);
    backdrop-filter: blur(10px);
    text-align: center;
}

.chairman-details h3 {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(148, 106, 80, 0.5);
}

.chairman-title {
    color: #708d7e !important;
    background-color: #ffffff;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1rem;
}

.chairman-role {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.chairman-location {
    color: #fff;
    font-weight: 500;
    margin-top: 10px;
    font-size: 0.95rem;
}

/* Target Audience Section - Enhanced Design */
.audience-section {
    min-height: 100vh;
    padding: 80px 40px;
    position: relative;
    overflow: hidden;
    /* background:
        linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 30%, #16213e 60%, #0f3460 100%),
        radial-gradient(ellipse at top, rgba(155, 216, 30, 0.1) 0%, transparent 70%),
        radial-gradient(ellipse at bottom, rgba(78, 205, 196, 0.08) 0%, transparent 70%); */
    background-color: #020202;
}

.audience-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 20%, rgba(155, 216, 30, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(78, 205, 196, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 60% 40%, rgba(255, 215, 0, 0.08) 0%, transparent 30%),
        linear-gradient(45deg, rgba(155, 216, 30, 0.02) 0%, transparent 100%);
    animation: enhancedFlow 12s ease-in-out infinite;
}

.audience-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        repeating-linear-gradient(90deg,
            transparent,
            transparent 100px,
            rgba(155, 216, 30, 0.02) 100px,
            rgba(155, 216, 30, 0.02) 102px),
        repeating-linear-gradient(0deg,
            transparent,
            transparent 80px,
            rgba(78, 205, 196, 0.015) 80px,
            rgba(78, 205, 196, 0.015) 82px);
    animation: gridFlow 20s linear infinite;
    z-index: 1;
}

.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.medical-particle {
    position: absolute;
    width: var(--size);
    height: var(--size);
    background: radial-gradient(circle, rgba(111, 169, 154, 0.9) 0%, rgba(112, 141, 126, 0.6) 50%, transparent 100%);
    border-radius: 50%;
    left: var(--x);
    top: var(--y);
    animation: enhancedParticleFloat 12s ease-in-out infinite;
    animation-delay: var(--delay);
    box-shadow: 0 0 20px rgba(111, 169, 154, 0.5);
}

.medical-particle:nth-child(2n) {
    background: radial-gradient(circle, rgba(112, 141, 126, 0.9) 0%, rgba(148, 106, 80, 0.5) 50%, transparent 100%);
    box-shadow: 0 0 15px rgba(112, 141, 126, 0.5);
}

.medical-particle:nth-child(3n) {
    background: radial-gradient(circle, rgba(148, 106, 80, 0.8) 0%, rgba(111, 169, 154, 0.4) 50%, transparent 100%);
    box-shadow: 0 0 18px rgba(148, 106, 80, 0.4);
}

/* Neural Network */
.neural-network {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.6;
}

.neural-svg {
    width: 100%;
    height: 100%;
}

.neural-connection {
    stroke-dasharray: 10, 5;
    animation: neuralFlow 8s ease-in-out infinite;
}

.neural-connection:nth-child(2) {
    animation-delay: 2.5s;
}

.neural-connection:nth-child(3) {
    animation-delay: 5s;
}

.neural-node {
    animation: nodeGlow 3s ease-in-out infinite;
}

@keyframes enhancedFlow {

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

    33% {
        transform: scale(1.02) rotate(0.5deg);
        opacity: 1;
    }

    66% {
        transform: scale(0.98) rotate(-0.5deg);
        opacity: 0.9;
    }
}

@keyframes gridFlow {
    0% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(10px, -5px);
    }

    50% {
        transform: translate(-5px, 10px);
    }

    75% {
        transform: translate(-10px, -5px);
    }

    100% {
        transform: translate(0, 0);
    }
}

@keyframes enhancedParticleFloat {

    0%,
    100% {
        transform: translateY(0px) translateX(0px) scale(1);
        opacity: 0.4;
    }

    25% {
        transform: translateY(-20px) translateX(10px) scale(1.1);
        opacity: 0.8;
    }

    50% {
        transform: translateY(-40px) translateX(-5px) scale(1.3);
        opacity: 1;
    }

    75% {
        transform: translateY(-20px) translateX(-10px) scale(1.1);
        opacity: 0.7;
    }
}

@keyframes neuralFlow {

    0%,
    100% {
        stroke-dashoffset: 0;
        opacity: 0.2;
    }

    50% {
        stroke-dashoffset: 15;
        opacity: 0.8;
    }
}

@keyframes nodeGlow {

    0%,
    100% {
        opacity: 0.4;
        r: 2;
    }

    50% {
        opacity: 1;
        r: 3;
    }
}

/* New Grid Layout */
.section-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
}

.audience-header-main {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 4rem;
    font-weight: 900;
    /* background: linear-gradient(135deg, #6fa99a 0%, #708d7e 50%, #6fa99a 100%); */
    background: linear-gradient(135deg, #a69072 0%, #a69072 50%, #946a50 100%);

    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    text-shadow: 0 0 40px rgba(111, 169, 154, 0.6);
    letter-spacing: 4px;
    animation: titleGlow 4s ease-in-out infinite;
    position: relative;
}

.section-title::before {
    content: 'TARGET AUDIENCE';
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, #6fa99a 0%, #708d7e 50%, #6fa99a 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: blur(2px);
    opacity: 0.5;
    z-index: -1;
    animation: titleGlow 4s ease-in-out infinite reverse;
}

.section-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    animation: subtitleFade 3s ease-in-out infinite;
}

@keyframes titleGlow {

    0%,
    100% {
        background-position: 0% 50%;
        text-shadow: 0 0 40px rgba(111, 169, 154, 0.6);
    }

    50% {
        background-position: 100% 50%;
        text-shadow: 0 0 60px rgba(112, 141, 126, 0.8);
    }
}

@keyframes subtitleFade {

    0%,
    100% {
        opacity: 0.8;
    }

    50% {
        opacity: 1;
    }
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

/* Entrance Animations */
.audience-category {
    opacity: 0;
    transform: translateY(50px);
    animation: cardEntrance 0.8s ease-out forwards;
}

.audience-category:nth-child(1) {
    animation-delay: 0.2s;
}

.audience-category:nth-child(2) {
    animation-delay: 0.4s;
}

.audience-category:nth-child(3) {
    animation-delay: 0.6s;
}

.audience-category:nth-child(4) {
    animation-delay: 0.8s;
}

@keyframes cardEntrance {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }

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

.audience-category {
    background: rgba(255, 255, 255, 0.08);
    /* background-image: linear-gradient(271deg, #6fa99a7a, #99583026); */
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    padding: 35px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(50px);
    animation: cardEntrance 0.8s ease-out forwards;
}

.audience-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(155, 216, 30, 0.1) 0%, rgba(78, 205, 196, 0.05) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.audience-category::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.03), transparent);
    transform: rotate(45deg);
    transition: transform 0.6s ease;
    opacity: 0;
}

.audience-category:hover::before {
    opacity: 1;
}

.audience-category:hover::after {
    opacity: 1;
    transform: rotate(45deg) translate(50%, 50%);
}

.audience-category:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(155, 216, 30, 0.4);
    box-shadow:
        0 25px 50px rgba(155, 216, 30, 0.25),
        0 0 0 1px rgba(155, 216, 30, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.audience-category[data-category="primary"]:hover {
    box-shadow:
        0 25px 50px rgba(155, 216, 30, 0.3),
        0 0 0 1px rgba(155, 216, 30, 0.2);
}

.audience-category[data-category="medical"]:hover {
    box-shadow:
        0 25px 50px rgba(78, 205, 196, 0.3),
        0 0 0 1px rgba(78, 205, 196, 0.2);
}

.audience-category[data-category="care"]:hover {
    box-shadow:
        0 25px 50px rgba(255, 107, 107, 0.3),
        0 0 0 1px rgba(255, 107, 107, 0.2);
}

.audience-category[data-category="research"]:hover {
    box-shadow:
        0 25px 50px rgba(255, 215, 0, 0.3),
        0 0 0 1px rgba(255, 215, 0, 0.2);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.category-icon {
    width: 60px;
    height: 60px;
    position: relative;
}

.category-header h3 {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
}

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

.category-list li {
    color: rgba(255, 255, 255, 0.9);
    padding: 12px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px;
    margin-bottom: 5px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    z-index: 4;
}

.category-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(135deg, #6fa99a, #708d7e);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.category-list li:hover {
    color: #6fa99a;
    background: rgba(111, 169, 154, 0.1);
    transform: translateX(10px);
    box-shadow: 0 4px 15px rgba(111, 169, 154, 0.2);
}

.category-list li:hover::before {
    transform: scaleY(1);
}

.category-list li:last-child {
    border-bottom: none;
}

/* Category-specific hover colors */
.audience-category[data-category="medical"] .category-list li:hover {
    color: #708d7e;
    background: rgba(112, 141, 126, 0.1);
    box-shadow: 0 4px 15px rgba(112, 141, 126, 0.2);
}

.audience-category[data-category="medical"] .category-list li::before {
    background: linear-gradient(135deg, #708d7e, #6fa99a);
}

.audience-category[data-category="care"] .category-list li:hover {
    color: #a69072;
    background: rgba(166, 144, 114, 0.1);
    box-shadow: 0 4px 15px rgba(166, 144, 114, 0.2);
}

.audience-category[data-category="care"] .category-list li::before {
    background: linear-gradient(135deg, #a69072, #946a50);
}

.audience-category[data-category="research"] .category-list li:hover {
    color: #946a50;
    background: rgba(148, 106, 80, 0.1);
    box-shadow: 0 4px 15px rgba(148, 106, 80, 0.2);
}

.audience-category[data-category="research"] .category-list li::before {
    background: linear-gradient(135deg, #946a50, #a69072);
}

/* Animated Icons */
/* Brain Animation */
.animated-brain {
    width: 100%;
    height: 100%;
    position: relative;
}

.brain-core {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #6fa99a, #708d7e);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: brainPulse 2s ease-in-out infinite;
}

.brain-wave {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    border: 2px solid rgba(155, 216, 30, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: brainWave 3s ease-in-out infinite;
}

@keyframes brainPulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes brainWave {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

/* Stethoscope Animation */
.animated-stethoscope {
    width: 100%;
    height: 100%;
    position: relative;
}

.stethoscope-circle {
    width: 20px;
    height: 20px;
    background: #708d7e;
    border-radius: 50%;
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    animation: stethoscopeGlow 2s ease-in-out infinite;
}

.stethoscope-line {
    width: 2px;
    height: 30px;
    background: linear-gradient(to bottom, #708d7e, transparent);
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translateX(-50%);
    animation: stethoscopeLine 2s ease-in-out infinite;
}

@keyframes stethoscopeGlow {

    0%,
    100% {
        box-shadow: 0 0 10px rgba(78, 205, 196, 0.5);
    }

    50% {
        box-shadow: 0 0 20px rgba(78, 205, 196, 0.8);
    }
}

@keyframes stethoscopeLine {

    0%,
    100% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }
}

/* Heart Animation */
.animated-heart {
    width: 100%;
    height: 100%;
    position: relative;
}

.heart-shape {
    width: 30px;
    height: 26px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    background: #a69072;
    border-radius: 50% 0;
    animation: heartBeat 1.5s ease-in-out infinite;
}

.heart-shape::before {
    content: '';
    width: 26px;
    height: 40px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%) rotate(-45deg);
    background: #a69072;
    border-radius: 50% 50% 0 0;
    transform-origin: 0 100%;
}

.heart-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255, 107, 107, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: heartPulse 1.5s ease-in-out infinite;
}

@keyframes heartBeat {

    0%,
    100% {
        transform: translate(-50%, -50%) rotate(-45deg) scale(1);
    }

    50% {
        transform: translate(-50%, -50%) rotate(-45deg) scale(1.1);
    }
}

@keyframes heartPulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.8;
    }
}

/* Microscope Animation */
.animated-microscope {
    width: 100%;
    height: 100%;
    position: relative;
}

.microscope-lens {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #946a50, #a69072);
    border-radius: 50%;
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    animation: microscopeGlow 2s ease-in-out infinite;
}

.microscope-base {
    width: 30px;
    height: 15px;
    background: linear-gradient(135deg, #946a50, #a69072);
    border-radius: 0 0 15px 15px;
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    animation: microscopeBase 2s ease-in-out infinite;
}

@keyframes microscopeGlow {

    0%,
    100% {
        box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    }

    50% {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
    }
}

@keyframes microscopeBase {

    0%,
    100% {
        opacity: 0.8;
    }

    50% {
        opacity: 1;
    }
}

/* Objectives Section - Modern Design */
.objectives-section {
    min-height: 100vh;
    padding: 100px 40px;
    position: relative;
    overflow: hidden;
    /* background:
        linear-gradient(135deg, #0f0f23 0%, #1a1a2e 40%, #16213e 70%, #0f3460 100%),
        radial-gradient(ellipse at center top, rgba(155, 216, 30, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at center bottom, rgba(78, 205, 196, 0.06) 0%, transparent 60%); */
    background-color: #223233;
}

.objectives-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.floating-neurons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.neuron {
    position: fixed;
    width: 12px;
    height: 12px;
    background: radial-gradient(circle, rgba(111, 169, 154, 0.9) 0%, rgba(112, 141, 126, 0.5) 70%, transparent 100%);
    border-radius: 50%;
    left: var(--x);
    top: var(--y);
    transform: translate(-50%, -50%);
    animation: neuronFloat 15s ease-in-out infinite;
    animation-delay: var(--delay);
    box-shadow: 0 0 25px rgba(111, 169, 154, 0.6);
}

.neuron:nth-child(2n) {
    background: radial-gradient(circle, rgba(112, 141, 126, 0.85) 0%, rgba(148, 106, 80, 0.4) 70%, transparent 100%);
    box-shadow: 0 0 20px rgba(112, 141, 126, 0.5);
}

.neuron:nth-child(3n) {
    background: radial-gradient(circle, rgba(148, 106, 80, 0.8) 0%, rgba(111, 169, 154, 0.3) 70%, transparent 100%);
    box-shadow: 0 0 22px rgba(148, 106, 80, 0.4);
}

.synaptic-connections {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.7;
}

.connections-svg {
    width: 100%;
    height: 100%;
}

.synapse-path {
    stroke-dasharray: 8, 4;
    animation: synapseFlow 10s ease-in-out infinite;
}

.synapse-path:nth-child(2) {
    animation-delay: 3s;
}

.synapse-path:nth-child(3) {
    animation-delay: 6s;
}

@keyframes neuronFloat {

    0%,
    100% {
        transform: translateY(0px) translateX(0px) scale(1);
        opacity: 0.6;
    }

    33% {
        transform: translateY(-30px) translateX(15px) scale(1.2);
        opacity: 1;
    }

    66% {
        transform: translateY(-15px) translateX(-10px) scale(0.9);
        opacity: 0.8;
    }
}

@keyframes synapseFlow {

    0%,
    100% {
        stroke-dashoffset: 0;
        opacity: 0.2;
    }

    50% {
        stroke-dashoffset: 12;
        opacity: 0.8;
    }
}

/* Objectives Header */
.section-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
}

.objectives-header {
    text-align: center;
    margin-bottom: 80px;
}

.objectives-title {
    font-size: 4.5rem;
    font-weight: 900;
    /* background: linear-gradient(135deg, #6fa99a 0%, #708d7e 30%, #946a50 70%, #6fa99a 100%); */
    background: linear-gradient(135deg, #946a50 0%, #a69072 30%, #946a50 70%, #6fa99a 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    letter-spacing: 5px;
    animation: objectivesTitleFlow 6s ease-in-out infinite;
    text-shadow: 0 0 50px rgba(111, 169, 154, 0.5);
}

.objectives-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.title-underline {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #6fa99a, #708d7e, #946a50);
    margin: 0 auto;
    border-radius: 2px;
    animation: underlineGlow 3s ease-in-out infinite;
}

@keyframes objectivesTitleFlow {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

@keyframes underlineGlow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(111, 169, 154, 0.5);
    }

    50% {
        box-shadow: 0 0 30px rgba(112, 141, 126, 0.8);
    }
}

/* Objectives Grid */
.objectives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

/* Objective Cards */
.objective-card {
    background: #946a5038;
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    padding: 40px 35px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(60px);
    animation: objectiveCardEntrance 1s ease-out forwards;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.objective-card:nth-child(1) {
    animation-delay: 0.2s;
}

.objective-card:nth-child(2) {
    animation-delay: 0.4s;
}

.objective-card:nth-child(3) {
    animation-delay: 0.6s;
}

.objective-card:nth-child(4) {
    animation-delay: 0.8s;
}

.objective-card:nth-child(5) {
    animation-delay: 1s;
}

.objective-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(155, 216, 30, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.objective-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transform: rotate(45deg) translate(-100%, -100%);
    transition: transform 0.6s ease;
    opacity: 0;
}

.objective-card:hover::before {
    opacity: 1;
}

.objective-card:hover::after {
    opacity: 1;
    transform: rotate(45deg) translate(100%, 100%);
}

.objective-card:hover {
    transform: translateY(-20px) scale(1.02);
    border-color: #708d7e;
    box-shadow: 0 30px 60px #708d7e75, 0 0 0 1px #708d7e;
}

@keyframes objectiveCardEntrance {
    0% {
        opacity: 0;
        transform: translateY(60px) scale(0.9);
    }

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

/* Card Header */
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}



.card-body button {
    background: linear-gradient(45deg, #946a50, #a69072) !important;
}

.card-title {
    color: #31251e !important;
}

.card-text {
    color: #fff !important;
}

.objective-icon {
    width: 60px;
    height: 60px;
    position: relative;
}

.card-number {
    font-size: 2rem;
    font-weight: 900;
    color: rgba(155, 216, 30, 0.3);
    font-family: 'Arial', sans-serif;
}

.objective-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.3;
}

.objective-description {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.card-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #6fa99a, #708d7e);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.objective-card:hover .card-accent {
    transform: scaleX(1);
}

/* Animated Icons for Objectives */
/* Knowledge Icon */
.icon-knowledge {
    width: 100%;
    height: 100%;
    position: relative;
}

.knowledge-book {
    width: 35px;
    height: 28px;
    background: linear-gradient(135deg, #6fa99a, #708d7e);
    border-radius: 4px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: knowledgePulse 3s ease-in-out infinite;
}

.knowledge-book::before {
    content: '';
    width: 25px;
    height: 2px;
    background: rgba(255, 255, 255, 0.8);
    position: absolute;
    top: 8px;
    left: 5px;
    border-radius: 1px;
}

.knowledge-book::after {
    content: '';
    width: 20px;
    height: 2px;
    background: rgba(255, 255, 255, 0.6);
    position: absolute;
    top: 14px;
    left: 5px;
    border-radius: 1px;
}

.knowledge-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    border: 2px solid rgba(155, 216, 30, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: knowledgeGlow 4s ease-in-out infinite;
}

@keyframes knowledgePulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes knowledgeGlow {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

/* Collaboration Icon */
.icon-collaboration {
    width: 100%;
    height: 100%;
    position: relative;
}

.collab-nodes {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.collab-nodes::before,
.collab-nodes::after {
    content: '';
    width: 12px;
    height: 12px;
    background: #708d7e;
    border-radius: 50%;
    position: absolute;
    animation: collabNodes 2s ease-in-out infinite;
}

.collab-nodes::before {
    top: -15px;
    left: -15px;
    animation-delay: 0s;
}

.collab-nodes::after {
    top: -15px;
    right: -15px;
    animation-delay: 1s;
}

.collab-connections {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #708d7e, #6fa99a);
    transform: translate(-50%, -50%);
    animation: collabConnect 2s ease-in-out infinite;
}

@keyframes collabNodes {

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

    50% {
        transform: scale(1.3);
        opacity: 1;
    }
}

@keyframes collabConnect {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

/* Education Icon */
.icon-education {
    width: 100%;
    height: 100%;
    position: relative;
}

.edu-graduation {
    width: 30px;
    height: 20px;
    background: linear-gradient(135deg, #946a50, #a69072);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation: eduFloat 3s ease-in-out infinite;
}

.edu-sparkles {
    position: absolute;
    top: 30%;
    left: 30%;
    width: 4px;
    height: 4px;
    background: #946a50;
    border-radius: 50%;
    animation: eduSparkle 2s ease-in-out infinite;
}

.edu-sparkles::before,
.edu-sparkles::after {
    content: '';
    position: absolute;
    width: 3px;
    height: 3px;
    background: #946a50;
    border-radius: 50%;
}

.edu-sparkles::before {
    top: -10px;
    left: 15px;
    animation: eduSparkle 2s ease-in-out infinite 0.5s;
}

.edu-sparkles::after {
    top: 10px;
    left: -8px;
    animation: eduSparkle 2s ease-in-out infinite 1s;
}

@keyframes eduFloat {

    0%,
    100% {
        transform: translate(-50%, -50%) translateY(0px);
    }

    50% {
        transform: translate(-50%, -50%) translateY(-5px);
    }
}

@keyframes eduSparkle {

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

    50% {
        opacity: 1;
        transform: scale(1.5);
    }
}

/* Innovation Icon */
.icon-innovation {
    width: 100%;
    height: 100%;
    position: relative;
}

.innovation-bulb {
    width: 20px;
    height: 28px;
    background: linear-gradient(135deg, #946a50, #a69072);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: innovationGlow 2s ease-in-out infinite;
}

.innovation-rays {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.innovation-rays::before,
.innovation-rays::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 2px;
    background: #946a50;
    border-radius: 1px;
}

.innovation-rays::before {
    top: -20px;
    left: -7px;
    transform: rotate(45deg);
    animation: innovationRay 2s ease-in-out infinite;
}

.innovation-rays::after {
    top: -20px;
    right: -7px;
    transform: rotate(-45deg);
    animation: innovationRay 2s ease-in-out infinite 0.5s;
}

@keyframes innovationGlow {

    0%,
    100% {
        box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
    }

    50% {
        box-shadow: 0 0 25px rgba(255, 215, 0, 0.8);
    }
}

@keyframes innovationRay {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }
}

/* Networking Icon */
.icon-networking {
    width: 100%;
    height: 100%;
    position: relative;
}

.network-globe {
    width: 30px;
    height: 30px;
    border: 2px solid #708d7e;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: networkSpin 4s linear infinite;
}

.network-globe::before {
    content: '';
    width: 100%;
    height: 2px;
    background: #708d7e;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.network-connections {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.network-connections::before,
.network-connections::after {
    content: '';
    width: 8px;
    height: 8px;
    background: #6fa99a;
    border-radius: 50%;
    position: absolute;
    animation: networkPulse 2s ease-in-out infinite;
}

.network-connections::before {
    top: -25px;
    left: -25px;
}

.network-connections::after {
    bottom: -25px;
    right: -25px;
    animation-delay: 1s;
}

@keyframes networkSpin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes networkPulse {

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

    50% {
        opacity: 1;
        transform: scale(1.3);
    }
}

.audience-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

/* Modern Diagram */
.modern-diagram {
    position: relative;
    width: 450px;
    height: 450px;
    margin: 0 auto;
}

/* Center Hub */
.center-hub {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    z-index: 10;
}

.hub-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(155, 216, 30, 0.4) 0%, rgba(78, 205, 196, 0.2) 50%, transparent 100%);
    border-radius: 50%;
    animation: hubPulse 3s ease-in-out infinite;
}

.hub-content {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(155, 216, 30, 0.9), rgba(78, 205, 196, 0.8));
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    box-shadow: 0 0 40px rgba(155, 216, 30, 0.6);
}

.hub-content .brain-icon {
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.hub-text {
    font-size: 0.7rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
}

/* Connection Lines */
.connection-lines {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}

.connection-line {
    position: absolute;
    width: 2px;
    height: 100px;
    background: linear-gradient(to bottom, rgba(155, 216, 30, 0.6), transparent);
    top: 50%;
    left: 50%;
    transform-origin: bottom center;
    animation: lineGlow 2s ease-in-out infinite;
}

.connection-line[data-angle="0"] {
    transform: translate(-50%, -100%) rotate(0deg);
}

.connection-line[data-angle="90"] {
    transform: translate(-50%, -100%) rotate(90deg);
}

.connection-line[data-angle="180"] {
    transform: translate(-50%, -100%) rotate(180deg);
}

.connection-line[data-angle="270"] {
    transform: translate(-50%, -100%) rotate(270deg);
}

/* Audience Nodes */
.audience-nodes {
    position: relative;
    width: 100%;
    height: 100%;
}

.audience-node {
    position: absolute;
    width: 140px;
    height: 90px;
    transition: all 0.3s ease;
}

.node-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse, rgba(78, 205, 196, 0.3) 0%, transparent 70%);
    border-radius: 15px;
    animation: nodeGlow 4s ease-in-out infinite;
}

.node-content {
    position: relative;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(155, 216, 30, 0.4);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.audience-node:hover .node-content {
    transform: scale(1.05);
    border-color: #9BD81E;
    box-shadow: 0 12px 35px rgba(155, 216, 30, 0.4);
}

.audience-node[data-position="top"] {
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.audience-node[data-position="right"] {
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

.audience-node[data-position="bottom"] {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.audience-node[data-position="left"] {
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
}

.node-icon {
    font-size: 1.8rem;
}

.node-text {
    font-size: 0.8rem;
    text-align: center;
    color: #fff;
    font-weight: 600;
}

/* Pulse Rings */
.pulse-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.pulse-ring {
    position: absolute;
    border: 2px solid rgba(155, 216, 30, 0.3);
    border-radius: 50%;
    animation: ringPulse 4s ease-in-out infinite;
}

.ring-1 {
    width: 200px;
    height: 200px;
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.ring-2 {
    width: 280px;
    height: 280px;
    top: -140px;
    left: -140px;
    animation-delay: 1.3s;
}

.ring-3 {
    width: 360px;
    height: 360px;
    top: -180px;
    left: -180px;
    animation-delay: 2.6s;
}

/* Animations */
@keyframes hubPulse {

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

    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

@keyframes lineGlow {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 0.8;
    }
}

@keyframes nodeGlow {

    0%,
    100% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }
}

@keyframes ringPulse {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }

    50% {
        transform: scale(1);
        opacity: 0.6;
    }

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

.audience-content {
    flex: 1;
}

.audience-content h2 {
    color: #6fa99a;
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.audience-list {
    display: flex;
    gap: 40px;
}

.audience-column {
    flex: 1;
}

.audience-column ul {
    list-style: none;
    padding: 0;
}

.audience-column li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    position: relative;
    padding-left: 20px;
}

.audience-column li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #6fa99a;
    font-weight: bold;
}

/* Objectives Section */
.objectives-section {
    min-height: 100vh;
    padding: 80px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.objectives-container {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

.objectives-content {
    flex: 2;
}

.objectives-content h2 {
    color: #6fa99a;
    font-size: 2.2rem;
    margin-bottom: 40px;
    line-height: 1.3;
}

.objective-item {
    margin-bottom: 35px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border-left: 4px solid #6fa99a;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.objective-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(111, 169, 154, 0.2);
}

.objective-item h3 {
    color: #946a50;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.objective-item p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-size: 1rem;
}

.objectives-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.brain-scan-container {
    width: 300px;
    height: 400px;
    position: relative;
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid #6fa99a;
    box-shadow: 0 0 30px rgba(111, 169, 154, 0.3);
}

.brain-scan-image {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 40%, rgba(155, 216, 30, 0.3) 0%, rgba(255, 107, 107, 0.2) 50%, rgba(78, 205, 196, 0.1) 100%);
    position: relative;
}

.scan-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 49%, rgba(155, 216, 30, 0.1) 50%, transparent 51%);
    animation: scanLine 2s linear infinite;
}

@keyframes scanLine {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(100%);
    }
}

.scan-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(155, 216, 30, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(155, 216, 30, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
}

/* Sponsors Section */
.sponsors-section {
    min-height: 60vh;
    padding: 80px 40px;
    /* background: linear-gradient(135deg, rgba(155, 216, 30, 0.05) 0%, rgba(255, 107, 107, 0.05) 100%); */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f4f9f0;
}

.sponsors-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.sponsors-container h1 {
    color: #6fa99a;
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-weight: 700;
}

.sponsor-tier {
    margin-bottom: 40px;
}

.tier-label {
    display: inline-block;
    font-family: 'Euclid Circular A', 'Gilroy', 'Montserrat', sans-serif;
    background: linear-gradient(45deg, #946a50, #a69072);
    color: #ffffff;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.sponsor-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.sponsor-logo {
    padding: 20px;
    background: rgb(255, 255, 255);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sponsor-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(111, 169, 154, 0.2);
}

.sponsor-image {
    height: 80px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.1);
}

.platinum .sponsor-logo {
    border: 2px solid #946a50;
    box-shadow: 0 0 20px rgba(148, 106, 80, 0.3);
}

.gold .sponsor-logo {
    border: 2px solid #a69072;
    box-shadow: 0 0 15px rgba(166, 144, 114, 0.2);
}

/* Magical Footer */
.magical-footer {
    position: relative;

    min-height: 100px;
    background: linear-gradient(135deg, #946a50 0%, #212529 50%, #946a50 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.desert-dunes {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top,
            rgba(218, 165, 32, 0.1) 0%,
            rgba(244, 164, 96, 0.05) 50%,
            transparent 100%);
    clip-path: polygon(0 100%, 100% 100%, 100% 40%, 80% 50%, 60% 30%, 40% 45%, 20% 25%, 0 35%);
}

.oasis-glow {
    position: absolute;
    top: 20%;
    left: 15%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(155, 216, 30, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: oasisPulse 4s ease-in-out infinite;
}

.stars-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(2px 2px at 20px 30px, #fff, transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(1px 1px at 90px 40px, #fff, transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255, 255, 255, 0.6), transparent),
        radial-gradient(2px 2px at 160px 30px, #fff, transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: twinkle 6s ease-in-out infinite;
}

@keyframes oasisPulse {

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

    50% {
        transform: scale(1.2);
        opacity: 0.6;
    }
}

@keyframes twinkle {

    0%,
    100% {
        opacity: 0.8;
    }

    50% {
        opacity: 0.4;
    }
}

.footer-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    width: 100%;
    padding: 0 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.palm-tree-icon,
.brain-icon-footer {
    font-size: 3rem;
    animation: float 3s ease-in-out infinite;
}

.brain-icon-footer {
    animation-delay: 1.5s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.footer-text {
    text-align: center;
    flex: 1;
    min-width: 300px;
}

.footer-text h3 {
    font-size: 2rem;
    color: #6fa99a;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(111, 169, 154, 0.5);
}

.footer-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    font-style: italic;
}

.copyright {
    font-size: 1.2rem;
    color: #ffffff;
    font-weight: 600;
    padding: 20px 40px;
    /* background: #708d7e; */
    border-radius: 30px;
    /* border: 2px solid rgba(148, 106, 80, 0.4); */
    display: inline-block;
    text-shadow: 0 0 15px rgba(148, 106, 80, 0.6);
    /* backdrop-filter: blur(10px); */
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); */
    transition: all 0.3s ease;
}

.copyright:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(148, 106, 80, 0.2);
    border-color: rgba(148, 106, 80, 0.6);
}

.footer-elements {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.floating-element {
    font-size: 2rem;
    animation: floatRandom 4s ease-in-out infinite;
}

.floating-element.oasis {
    animation-delay: 0s;
}

.floating-element.mountain {
    animation-delay: 1.3s;
}

.floating-element.camel {
    animation-delay: 2.6s;
}

@keyframes floatRandom {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    33% {
        transform: translateY(-15px) rotate(5deg);
    }

    66% {
        transform: translateY(-5px) rotate(-3deg);
    }
}

.footer-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    z-index: 1;
}

.footer-wave svg {
    width: 100%;
    height: 100%;
    animation: waveFlow 8s ease-in-out infinite;
}

@keyframes waveFlow {

    0%,
    100% {
        transform: translateX(0px);
    }

    50% {
        transform: translateX(-20px);
    }
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .conference-stats {
        gap: 15px;
    }

    .stat-item {
        padding: 10px;
        min-width: 120px;
    }

    .date-info {
        gap: 20px;
    }

    .date-display {
        padding: 20px 25px;
    }

    .full-date {
        font-size: 2.2rem;
    }

    .date-display .location {
        font-size: 1.1rem;
    }

    .countdown-title {
        font-size: 1.2rem;
    }

    .countdown-timer {
        gap: 15px;
    }

    .time-unit {
        padding: 15px 10px;
        min-width: 70px;
    }

    .time-value {
        font-size: 1.8rem;
    }

    .time-label {
        font-size: 0.8rem;
    }

    .chairman-profile {
        grid-template-columns: 1fr;
        align-items: center;
        text-align: center;
    }

    .chairman-info h2,
    .chairman-info p {
        text-align: center;
    }

    /* Footer responsive */
    .footer-content {
        padding: 0 20px;
    }

    .copyright {
        font-size: 1rem;
        padding: 15px 30px;
    }

    .audience-container {
        flex-direction: column;
        gap: 40px;
    }

    .circular-diagram {
        width: 300px;
        height: 300px;
    }

    .audience-list {
        flex-direction: column;
        gap: 20px;
    }

    .objectives-container {
        flex-direction: column;
        gap: 40px;
    }

    .brain-scan-container {
        width: 250px;
        height: 300px;
    }

    .sponsor-logos {
        gap: 20px;
    }

    .sponsor-image {
        height: 60px;
    }
}

@media (max-width: 480px) {
    .conference-content {
        padding: 0 15px;
    }

    .conference-stats {
        flex-direction: column;
        align-items: center;
    }

    .chairman-card {
        padding: 30px 20px;
    }

    .chairman-image {
        width: 150px;
        height: 150px;
    }

    .circular-diagram {
        width: 250px;
        height: 250px;
    }

    .audience-item {
        min-width: 100px;
        padding: 15px;
    }

    .objectives-content h2 {
        font-size: 1.8rem;
    }

    .objective-item {
        padding: 20px 15px;
    }
}

/* Smooth scrolling enhancements */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #6fa99a, #a69072);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #a69072, #6fa99a);
}

/* Accessibility Features */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .loading-spinner {
        animation: none;
    }

    .scroll-arrow {
        animation: none;
    }

    .memory-nodes {
        animation: none;
    }
}

/* Focus styles for accessibility */
.cta-button:focus,
.nav-links a:focus {
    outline: 2px solid #6fa99a;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .content-card {
        border: 2px solid #ffffff;
        background: rgba(0, 0, 0, 0.9);
    }

    .main-title {
        color: #ffffff;
    }

    .highlight {
        color: #6fa99a !important;
        -webkit-text-fill-color: #6fa99a !important;
    }
}

/* Screen reader only content */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ========================================
   MAGICAL NEUROLOGY-THEMED BACKGROUNDS
   ======================================== */

/* Video and Image Background Styling */
.section-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.25;
    filter: saturate(0.7) brightness(0.6);
    mix-blend-mode: screen;
    pointer-events: none;
}

/* Chairman section - dual background (video + image) */
.chairman-section .section-video-bg {
    opacity: 0.2;
    filter: saturate(0.6) brightness(0.5) hue-rotate(10deg);
    /* mix-blend-mode: soft-light; */
}

.chairman-section .section-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    opacity: 0.15;
    /* filter: blur(3px) brightness(0.4); */
    /* mix-blend-mode: overlay; */
    pointer-events: none;
}

/* Audience section - more vibrant */
.audience-section .section-video-bg {
    opacity: 0.3;
    filter: saturate(0.8) brightness(0.7) contrast(1.2);
    mix-blend-mode: screen;
    animation: videoGlow 8s ease-in-out infinite;
}

/* Objectives section - medical scan effect */
.objectives-section .section-video-bg {
    opacity: 0.28;
    filter: saturate(0.7) brightness(0.6) contrast(1.1);
    mix-blend-mode: lighten;
    animation: scanEffect 10s ease-in-out infinite;
}

/* Video animation effects */
@keyframes videoGlow {

    0%,
    100% {
        opacity: 0.25;
        filter: saturate(0.8) brightness(0.7) contrast(1.2);
    }

    50% {
        opacity: 0.35;
        filter: saturate(1) brightness(0.8) contrast(1.3);
    }
}

@keyframes scanEffect {

    0%,
    100% {
        opacity: 0.25;
        filter: saturate(0.7) brightness(0.6) contrast(1.1);
    }

    50% {
        opacity: 0.32;
        filter: saturate(0.8) brightness(0.7) contrast(1.2);
    }
}

/* Ensure content is above video */
.chairman-section .section-content,
.audience-section .audience-container,
.objectives-section .objectives-header,
.objectives-section .objectives-grid {
    position: relative;
    z-index: 3;
}

/* Mobile optimizations - reduce video on small screens */
@media (max-width: 768px) {
    .section-video-bg {
        opacity: 0.15;
        filter: saturate(0.5) brightness(0.5);
    }

    .chairman-section .section-video-bg {
        opacity: 0.12;
    }

    .audience-section .section-video-bg {
        opacity: 0.18;
    }

    .objectives-section .section-video-bg {
        opacity: 0.15;
    }

    .chairman-section .section-image-bg {
        opacity: 0.1;
    }
}

/* Performance optimization - pause videos when not in viewport */
@media (prefers-reduced-motion: reduce) {
    .section-video-bg {
        display: none;
    }

    .chairman-section .section-image-bg {
        opacity: 0.2;
    }
}

/* ========================================
   SECTION 2 - PREMIUM HERO BACKGROUND
   ======================================== */


/* Hero video animations */
@keyframes heroVideoGlow {

    0%,
    100% {
        opacity: 0.35;
        filter:
            saturate(0.9) brightness(0.65) contrast(1.2) hue-rotate(-5deg);
        transform: scale(1);
    }

    50% {
        opacity: 0.45;
        filter:
            saturate(1) brightness(0.75) contrast(1.3) hue-rotate(0deg);
        transform: scale(1.03);
    }
}

@keyframes heroImagePulse {

    0%,
    100% {
        opacity: 0.25;
        filter:
            blur(2px) brightness(0.6) saturate(1.1) hue-rotate(-5deg);
    }

    50% {
        opacity: 0.35;
        filter:
            blur(1px) brightness(0.7) saturate(1.2) hue-rotate(0deg);
    }
}

/* Responsive Layout */
@media (max-width: 1200px) {
    .conference-title .event-type {
        font-size: 4rem;
    }

    .countdown-timer {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {

    .conference-info-panel {
        padding: 40px 30px;
    }

    .countdown-panel {
        padding: 40px 30px;
    }

    .conference-badge {
        font-size: 0.9rem;
        padding: 10px 25px;
    }

    .conference-title .location {
        font-size: 0.85rem;
        letter-spacing: 5px;
    }

    .conference-title .event-type {
        font-size: 3rem;
        letter-spacing: 3px;
    }

    .conference-title .event-name {
        font-size: 1.3rem;
        letter-spacing: 6px;
    }

    .full-date {
        font-size: 3rem;
        letter-spacing: 5px;
    }

    .month {
        font-size: 1.4rem;
        letter-spacing: 4px;
    }

    .date-display .location {
        font-size: 0.9rem;
        letter-spacing: 3px;
    }

    .countdown-timer {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .time-value {
        font-size: 2.5rem;
    }

    .time-label {
        font-size: 0.65rem;
    }

}

@media (max-width: 480px) {

    .conference-info-panel {
        padding: 30px 20px;
    }

    .countdown-panel {
        padding: 30px 20px;
    }

    .conference-title .event-type {
        font-size: 2.2rem;
    }

    .conference-title .event-name {
        font-size: 1rem;
        letter-spacing: 4px;
    }

    .full-date {
        font-size: 2.5rem;
    }

    .month {
        font-size: 1.2rem;
    }

    .time-unit {
        padding: 25px 10px;
    }

    .time-value {
        font-size: 2rem;
    }
}

/* High performance mode */
@media (prefers-reduced-motion: reduce) {

    .time-value,
    .conference-badge {
        animation: none;
    }
}

/* Neural Network Animation Keyframes */
@keyframes neuralPulse {

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

    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

@keyframes synapticPulse {

    0%,
    100% {
        opacity: 0.6;
        transform: translate(0, 0);
    }

    25% {
        opacity: 0.8;
        transform: translate(10px, -10px);
    }

    50% {
        opacity: 1;
        transform: translate(-5px, 15px);
    }

    75% {
        opacity: 0.8;
        transform: translate(-10px, -5px);
    }
}

@keyframes neuronPulse {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 0.9;
    }
}

@keyframes brainWave {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

@keyframes scanLine {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }

    50% {
        opacity: 0.6;
    }

    100% {
        transform: translateY(100%);
        opacity: 0;
    }
}

@keyframes neuralGrid {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}




/* Floating Synaptic Connections - Audience Section */
.audience-section::before {
    background:
        /* Moving gradients */
        radial-gradient(circle at 30% 40%, rgba(111, 169, 154, 0.15) 0%, transparent 45%),
        radial-gradient(circle at 70% 60%, rgba(112, 141, 126, 0.12) 0%, transparent 45%),
        radial-gradient(circle at 50% 80%, rgba(148, 106, 80, 0.08) 0%, transparent 40%),
        /* Brain waves */
        linear-gradient(90deg,
            transparent 0%,
            rgba(111, 169, 154, 0.03) 20%,
            rgba(111, 169, 154, 0.08) 25%,
            rgba(111, 169, 154, 0.03) 30%,
            transparent 50%,
            rgba(112, 141, 126, 0.03) 70%,
            rgba(112, 141, 126, 0.08) 75%,
            rgba(112, 141, 126, 0.03) 80%,
            transparent 100%);
    animation: synapticPulse 10s ease-in-out infinite, brainWave 20s linear infinite;
}

.audience-section::after {
    background:
        /* Neuron clusters */
        radial-gradient(circle at 15% 25%, rgba(111, 169, 154, 0.2) 0%, rgba(111, 169, 154, 0.08) 1%, transparent 3%),
        radial-gradient(circle at 45% 35%, rgba(111, 169, 154, 0.18) 0%, rgba(111, 169, 154, 0.06) 0.8%, transparent 2.5%),
        radial-gradient(circle at 75% 55%, rgba(112, 141, 126, 0.16) 0%, rgba(112, 141, 126, 0.05) 1%, transparent 3%),
        radial-gradient(circle at 25% 75%, rgba(148, 106, 80, 0.15) 0%, rgba(148, 106, 80, 0.05) 0.9%, transparent 2.8%),
        radial-gradient(circle at 85% 85%, rgba(111, 169, 154, 0.18) 0%, rgba(111, 169, 154, 0.06) 1%, transparent 3.2%),
        radial-gradient(circle at 60% 10%, rgba(112, 141, 126, 0.16) 0%, rgba(112, 141, 126, 0.05) 0.8%, transparent 2.5%),
        radial-gradient(circle at 10% 60%, rgba(111, 169, 154, 0.17) 0%, rgba(111, 169, 154, 0.06) 1%, transparent 2.7%),
        radial-gradient(circle at 90% 40%, rgba(148, 106, 80, 0.14) 0%, rgba(148, 106, 80, 0.04) 0.9%, transparent 2.3%),
        /* Connection lines */
        linear-gradient(135deg,
            transparent 0%,
            rgba(111, 169, 154, 0.02) 48%,
            rgba(111, 169, 154, 0.06) 50%,
            rgba(111, 169, 154, 0.02) 52%,
            transparent 100%),
        linear-gradient(45deg,
            transparent 0%,
            rgba(112, 141, 126, 0.02) 48%,
            rgba(112, 141, 126, 0.05) 50%,
            rgba(112, 141, 126, 0.02) 52%,
            transparent 100%);
    animation: neuronPulse 8s ease-in-out infinite;
}

/* Medical Brain Scan Effect - Objectives Section */
.objectives-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        /* Scan lines */
        linear-gradient(0deg,
            transparent 0%,
            rgba(111, 169, 154, 0.03) 45%,
            rgba(111, 169, 154, 0.12) 50%,
            rgba(111, 169, 154, 0.03) 55%,
            transparent 100%),
        /* Neural mapping zones */
        radial-gradient(ellipse at 25% 30%, rgba(111, 169, 154, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 75% 70%, rgba(148, 106, 80, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(112, 141, 126, 0.06) 0%, transparent 60%);
    animation: scanLine 10s linear infinite, synapticPulse 8s ease-in-out infinite;
    z-index: 1;
}

.objectives-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        /* EEG wave pattern */
        repeating-linear-gradient(90deg,
            transparent,
            transparent 30px,
            rgba(111, 169, 154, 0.015) 30px,
            rgba(111, 169, 154, 0.04) 32px,
            rgba(111, 169, 154, 0.015) 34px,
            transparent 34px,
            transparent 50px),
        /* Cortex mapping grid */
        repeating-linear-gradient(0deg,
            transparent,
            transparent 60px,
            rgba(112, 141, 126, 0.03) 60px,
            rgba(112, 141, 126, 0.03) 61px),
        repeating-linear-gradient(90deg,
            transparent,
            transparent 60px,
            rgba(112, 141, 126, 0.03) 60px,
            rgba(112, 141, 126, 0.03) 61px),
        /* Synaptic hotspots */
        radial-gradient(circle at 20% 20%, rgba(111, 169, 154, 0.12) 0%, transparent 2%),
        radial-gradient(circle at 40% 50%, rgba(148, 106, 80, 0.1) 0%, transparent 1.8%),
        radial-gradient(circle at 65% 30%, rgba(112, 141, 126, 0.11) 0%, transparent 2.2%),
        radial-gradient(circle at 80% 70%, rgba(111, 169, 154, 0.12) 0%, transparent 1.9%),
        radial-gradient(circle at 30% 85%, rgba(148, 106, 80, 0.1) 0%, transparent 2%),
        radial-gradient(circle at 90% 45%, rgba(112, 141, 126, 0.11) 0%, transparent 1.7%);
    animation: neuralGrid 35s linear infinite, neuronPulse 6s ease-in-out infinite;
    z-index: 1;
}

/* ========================================
   COMPREHENSIVE RESPONSIVE DESIGN
   ======================================== */

/* Prevent horizontal scrolling when mobile menu is open */
body.menu-open {
    overflow: hidden;
}

/* Large Tablets & Small Desktops (768px - 1024px) */
@media (max-width: 1024px) {

    /* Section 1 - Brain Landing */
    .magical-stroke-text {
        font-size: 3vw;
        letter-spacing: 0.01em;
        padding: 15px 0;
    }

    /* Section 2 - Conference Info */
    .conference-content {
        max-width: 850px;
        gap: 20px;
    }

    .conference-badge {
        font-size: 1.5rem;
        padding: 6px 20px;
    }

    .conference-title .location {
        font-size: 2.3rem;
    }

    .conference-title .event-type {
        font-size: 2.5rem;
    }

    .conference-title .event-name {
        font-size: 2.8rem;
    }

    .countdown-timer {
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
    }

    .time-value {
        font-size: 1.8rem;
    }

    /* Section 3 - Chairman */
    .chairman-card {
        padding: 50px 40px;
    }

    .chairman-profile {
        gap: 30px;
    }

    .chairman-info h2 {
        font-size: 1.8rem;
    }

    .chairman-info p {
        font-size: 1rem;
    }

    /* Section 4 - Audience */
    .section-title {
        font-size: 3.5rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }

    .audience-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }

    .audience-category {
        padding: 30px;
    }

    /* Section 5 - Objectives */
    .objectives-title {
        font-size: 3.8rem;
    }

    .objectives-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 35px;
    }

    .objective-card {
        padding: 35px 30px;
    }
}

/* Tablets (768px - 900px) */
@media (max-width: 900px) {

    /* Navigation improvements */
    .nav-links {
        padding-top: 35px;
    }

    .nav-links a {
        font-size: 1.1rem;
        padding: 16px 28px;
    }

    /* Section 1 */
    .magical-stroke-text {
        font-size: 3.5vw;
        -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.9);
    }

    .scroll-indicator {
        bottom: 20px;
    }

    /* Section 2 */
    .conference-content {
        gap: 20px;
    }

    .conference-info-panel {
        padding: 35px 35px;
    }

    .countdown-panel {
        padding: 30px 30px;
    }

    .conference-title .location {
        font-size: 2rem;
        letter-spacing: 4px;
    }

    .conference-title .event-type {
        font-size: 2.3rem;
        letter-spacing: 5px;
    }

    .conference-title .event-name {
        font-size: 2.5rem;
        letter-spacing: 5px;
    }

    .date-display {
        padding: 22px 35px;
    }

    .full-date {
        font-size: 2.2rem;
    }

    .month {
        font-size: 1.7rem;
    }

    /* Section 3 - Chairman */
    .chairman-section {
        padding: 70px 30px;
    }

    .chairman-card {
        padding: 45px 35px;
    }

    .chairman-image {
        width: 180px;
        height: 180px;
    }

    /* Section 4 - Audience */
    .audience-section {
        padding: 70px 30px;
    }

    .section-title {
        font-size: 3.2rem;
        letter-spacing: 3px;
    }

    .audience-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 25px;
    }

    .category-header h3 {
        font-size: 1.2rem;
    }

    .category-list li {
        font-size: 0.9rem;
        padding: 10px 12px;
    }

    /* Section 5 - Objectives */
    .objectives-section {
        padding: 90px 30px;
    }

    .objectives-title {
        font-size: 3.5rem;
        letter-spacing: 4px;
    }

    .objectives-subtitle {
        font-size: 1.2rem;
    }

    .objectives-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }

    .objective-title {
        font-size: 1.2rem;
    }

    .objective-description {
        font-size: 0.9rem;
    }

    /* Section 6 - Sponsors */
    .sponsors-section {
        padding: 70px 30px;
    }

    .sponsors-container h2 {
        font-size: 2.2rem;
    }

    .sponsor-image {
        height: 70px;
    }
}

/* Mobile Landscape & Small Tablets (600px - 768px) */
@media (max-width: 768px) {

    /* Global adjustments */
    section {
        min-height: auto;
    }

    /* Navigation */
    .main-nav {
        padding: 12px 20px;
    }

    .nav-logo img {
        height: 50px;
    }

    /* Section 1 - Brain Landing */
    .brain-landing {
        min-height: 100vh;
    }

    .magical-stroke-text {
        font-size: 4vw;
        -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.9);
        padding: 12px 0;
        white-space: normal;
        line-height: 1.3;
    }

    .scroll-indicator {
        bottom: 15px;
        font-size: 0.8rem;
    }

    .scroll-arrow {
        width: 18px;
        height: 18px;
    }

    /* Section 2 - Conference Info - Removed */

    .conference-content {
        gap: 20px;
    }

    .conference-info-panel {
        padding: 35px 25px;
    }

    .countdown-panel {
        padding: 30px 25px;
    }

    .conference-badge {
        font-size: 1.3rem;
        padding: 6px 20px;
        letter-spacing: 3px;
    }

    .conference-title .location {
        font-size: 1.8rem;
        letter-spacing: 4px;
        margin-bottom: 12px;
    }

    .conference-title .event-type {
        font-size: 2rem;
        letter-spacing: 4px;
    }

    .conference-title .event-name {
        font-size: 2rem;
        letter-spacing: 4px;
    }

    .date-display {
        padding: 20px 30px;
    }

    .full-date {
        font-size: 2rem;
        letter-spacing: 6px;
    }

    .month {
        font-size: 1.5rem;
        letter-spacing: 3px;
    }

    .date-display .location {
        font-size: 0.85rem;
        letter-spacing: 3px;
    }

    .countdown-title {
        font-size: 0.75rem;
        letter-spacing: 3px;
    }

    .countdown-timer {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }

    .time-unit {
        padding: 18px 8px;
    }

    .time-value {
        font-size: 1.6rem;
        letter-spacing: 1px;
    }

    .time-label {
        font-size: 0.6rem;
        letter-spacing: 1px;
    }

    /* Section 3 - Chairman */
    .chairman-section {
        padding: 60px 25px;
        min-height: auto;
    }

    .chairman-card {
        padding: 40px 25px;
    }

    .chairman-badge {
        font-size: 0.8rem;
        padding: 8px 20px;
    }

    .chairman-profile {
        flex-direction: column;
        gap: 25px;
    }

    .chairman-image-container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .chairman-image {
        width: 180px;
        height: 180px;
    }

    .chairman-details {
        width: 100%;
        max-width: 300px;
    }

    .chairman-details h3 {
        font-size: 1.1rem;
    }

    .chairman-role {
        font-size: 0.85rem;
    }

    .chairman-info h2 {
        font-size: 1.6rem;
        text-align: center;
    }

    .chairman-info p {
        font-size: 0.95rem;
        text-align: center;
        line-height: 1.7;
    }

    .welcome-badge {
        font-size: 0.75rem;
        padding: 6px 18px;
    }

    /* Section 4 - Audience */
    .audience-section {
        padding: 60px 25px;
        min-height: auto;
    }

    .audience-header-main {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
        margin-bottom: 15px;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .audience-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }

    .audience-category {
        padding: 25px 20px;
    }

    .category-header {
        gap: 15px;
        margin-bottom: 20px;
    }

    .category-icon {
        width: 50px;
        height: 50px;
    }

    .category-header h3 {
        font-size: 1.1rem;
    }

    .category-list li {
        font-size: 0.88rem;
        padding: 10px 12px;
    }

    /* Section 5 - Objectives */
    .objectives-section {
        padding: 80px 25px;
        min-height: auto;
    }

    .objectives-header {
        margin-bottom: 50px;
    }

    .objectives-title {
        font-size: 2.8rem;
        letter-spacing: 3px;
        margin-bottom: 12px;
    }

    .objectives-subtitle {
        font-size: 1.1rem;
        letter-spacing: 1px;
    }

    .title-underline {
        width: 80px;
        height: 3px;
    }

    .objectives-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px;
    }

    .objective-card {
        padding: 30px 25px;
    }

    .card-header {
        margin-bottom: 20px;
    }

    .objective-icon {
        width: 50px;
        height: 50px;
    }

    .card-number {
        font-size: 1.6rem;
    }

    .objective-title {
        font-size: 1.15rem;
        margin-bottom: 15px;
    }

    .objective-description {
        font-size: 0.88rem;
        line-height: 1.5;
        margin-bottom: 20px;
    }

    /* Section 6 - Sponsors */
    .sponsors-section {
        padding: 60px 25px;
        min-height: auto;
    }

    .sponsors-container h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .tier-label {
        font-size: 0.9rem;
        padding: 8px 20px;
        margin-bottom: 20px;
    }

    .sponsor-logos {
        gap: 25px;
    }

    .sponsor-logo {
        padding: 15px;
    }

    .sponsor-image {
        height: 65px;
    }

    /* Footer */
    .magical-footer {
        min-height: 80px;
    }

    .footer-content {
        padding: 0 25px;
    }

    .copyright {
        font-size: 1rem;
        padding: 18px 35px;
    }
}

/* Mobile Portrait (480px - 600px) */
@media (max-width: 600px) {

    /* Section 2 - Conference */
    .conference-title .event-type {
        font-size: 1.8rem;
        letter-spacing: 3px;
    }

    .conference-title .event-name {
        font-size: 1.8rem;
        letter-spacing: 3px;
    }

    .countdown-timer {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .time-unit {
        padding: 20px 10px;
    }

    .time-value {
        font-size: 1.8rem;
    }

    .time-label {
        font-size: 0.65rem;
    }

    /* Section 3 - Chairman */
    .chairman-image {
        width: 160px;
        height: 160px;
    }

    /* Section 4 - Audience */
    .section-title {
        font-size: 2.2rem;
    }

    .audience-category {
        padding: 22px 18px;
    }

    /* Section 5 - Objectives */
    .objectives-title {
        font-size: 2.3rem;
        letter-spacing: 2px;
    }

    .objectives-subtitle {
        font-size: 1rem;
    }

    .objective-card {
        padding: 25px 20px;
    }

    .objective-title {
        font-size: 1.1rem;
    }
}

/* Small Mobile (320px - 480px) */
@media (max-width: 480px) {

    /* Navigation */
    .nav-logo img {
        height: 45px;
    }

    .nav-links {
        top: 65px;
        height: calc(100vh - 65px);
        padding-top: 25px;
    }

    .nav-links a {
        font-size: 1.1rem;
        padding: 14px 25px;
        width: 90%;
    }

    /* Section 1 - Brain Landing */
    .magical-stroke-text {
        font-size: 5vw;
        -webkit-text-stroke: 1px rgba(255, 255, 255, 0.9);
        padding: 10px 15px;
        line-height: 1.4;
    }

    /* Section 2 - Conference - Removed */

    .conference-info-panel {
        padding: 25px 20px;
    }

    .countdown-panel {
        padding: 25px 20px;
    }

    .conference-badge {
        font-size: 1.1rem;
        padding: 5px 18px;
        letter-spacing: 2px;
    }

    .conference-title .location {
        font-size: 1.5rem;
        letter-spacing: 3px;
    }

    .conference-title .event-type {
        font-size: 1.5rem;
        letter-spacing: 3px;
    }

    .conference-title .event-name {
        font-size: 1.5rem;
        letter-spacing: 3px;
    }

    .date-display {
        padding: 18px 25px;
    }

    .full-date {
        font-size: 1.8rem;
        letter-spacing: 5px;
    }

    .month {
        font-size: 1.3rem;
        letter-spacing: 2px;
    }

    .date-display .location {
        font-size: 0.8rem;
        letter-spacing: 2px;
    }

    .countdown-title {
        font-size: 0.7rem;
        letter-spacing: 2px;
        margin-bottom: 20px;
    }

    .countdown-timer {
        gap: 10px;
    }

    .time-unit {
        padding: 16px 8px;
    }

    .time-value {
        font-size: 1.5rem;
    }

    .time-label {
        font-size: 0.6rem;
    }

    /* Section 3 - Chairman */
    .chairman-section {
        padding: 50px 20px;
    }

    .chairman-card {
        padding: 30px 20px;
    }

    .chairman-badge {
        font-size: 0.75rem;
        padding: 6px 15px;
    }

    .chairman-image {
        width: 140px;
        height: 140px;
    }

    .chairman-details {
        padding: 18px;
    }

    .chairman-details h3 {
        font-size: 1rem;
    }

    .chairman-role {
        font-size: 0.8rem;
    }

    .chairman-title {
        font-size: 0.9rem;
    }

    .welcome-badge {
        font-size: 0.7rem;
        padding: 6px 16px;
    }

    .chairman-info h2 {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }

    .chairman-info p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 15px;
    }

    /* Section 4 - Audience */
    .audience-section {
        padding: 50px 20px;
    }

    .section-title {
        font-size: 1.9rem;
        letter-spacing: 1px;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .audience-grid {
        gap: 18px;
    }

    .audience-category {
        padding: 20px 15px;
        border-radius: 20px;
    }

    .category-header {
        gap: 12px;
        margin-bottom: 18px;
    }

    .category-icon {
        width: 45px;
        height: 45px;
    }

    .category-header h3 {
        font-size: 1rem;
    }

    .category-list li {
        font-size: 0.85rem;
        padding: 9px 10px;
    }

    /* Section 5 - Objectives */
    .objectives-section {
        padding: 70px 20px;
    }

    .objectives-header {
        margin-bottom: 40px;
    }

    .objectives-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .objectives-subtitle {
        font-size: 0.95rem;
    }

    .title-underline {
        width: 70px;
    }

    .objectives-grid {
        gap: 20px;
    }

    .objective-card {
        padding: 22px 18px;
        border-radius: 20px;
    }

    .card-header {
        margin-bottom: 18px;
    }

    .objective-icon {
        width: 45px;
        height: 45px;
    }

    .card-number {
        font-size: 1.4rem;
    }

    .objective-title {
        font-size: 1.05rem;
        margin-bottom: 12px;
    }

    .objective-description {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    /* Section 6 - Sponsors */
    .sponsors-section {
        padding: 50px 20px;
    }

    .sponsors-container h2 {
        font-size: 1.8rem;
        margin-bottom: 35px;
    }

    .tier-label {
        font-size: 0.85rem;
        padding: 7px 18px;
        margin-bottom: 18px;
    }

    .sponsor-logos {
        gap: 20px;
    }

    .sponsor-logo {
        padding: 12px;
    }

    .sponsor-image {
        height: 55px;
    }

    /* Footer */
    .magical-footer {
        min-height: 70px;
    }

    .footer-content {
        padding: 0 20px;
    }

    .copyright {
        font-size: 0.9rem;
        padding: 15px 25px;
    }
}

/* Extra Small Mobile (< 360px) */
@media (max-width: 360px) {
    .magical-stroke-text {
        font-size: 6vw;
        padding: 8px 10px;
    }

    .conference-title .event-type {
        font-size: 1.3rem;
    }

    .conference-title .event-name {
        font-size: 1.3rem;
    }

    .time-value {
        font-size: 1.3rem;
    }

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

    .objectives-title {
        font-size: 1.8rem;
    }

    .chairman-image {
        width: 120px;
        height: 120px;
    }
}

/* ============================================
   🎴 MAGICAL TEAM CARD STYLING
   Modern design with glassmorphism and animations
   ============================================ */

.team-card {
    position: relative;
    background: linear-gradient(135deg,
            rgba(111, 169, 154, 0.05) 0%,
            rgba(112, 141, 126, 0.08) 100%);
    border: 1px solid rgba(111, 169, 154, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(111, 169, 154, 0.1) inset;
    animation: floatCard 6s ease-in-out infinite;
}

/* Magical gradient border animation */
.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg,
            #6fa99a,
            #708d7e,
            #6fa99a);
    background-size: 200% 200%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: gradientRotate 3s ease infinite;
}

.team-card:hover::before {
    opacity: 1;
}

/* Glow effect on hover */
.team-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle,
            rgba(111, 169, 154, 0.15) 0%,
            transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.team-card:hover::after {
    opacity: 1;
}

/* Card hover effects */
.team-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(111, 169, 154, 0.3),
        0 0 40px rgba(111, 169, 154, 0.2),
        0 0 0 1px rgba(111, 169, 154, 0.3) inset;
    border-color: rgba(111, 169, 154, 0.5);
    background: linear-gradient(135deg,
            rgba(111, 169, 154, 0.1) 0%,
            rgba(112, 141, 126, 0.15) 100%);
}

/* Image container with magical overlay */
.team-card .card-img-top {
    position: relative;
    border-radius: 20px 20px 0 0;
    transition: all 0.4s ease;
    filter: brightness(0.95);
}

.team-card:hover .card-img-top {
    filter: brightness(1.05) contrast(1.05);
    transform: scale(1.05);
}

/* Card body styling */
.team-card .card-body {
    position: relative;
    z-index: 1;
    padding: 1.5rem;
    background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0.03) 0%,
            rgba(255, 255, 255, 0.05) 100%);
}

/* Card title with gradient text */
.team-card .card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #6fa99a, #708d7e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.team-card:hover .card-title {
    background: linear-gradient(135deg, #7bc4ad, #82a593);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translateY(-2px);
}

/* Position text styling */
.team-card .Position {
    color: #708d7e;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

/* Bio button with magical effect */
.team-card .btn-success {
    background: linear-gradient(135deg, #6fa99a, #708d7e);
    border: none;
    color: white;
    font-weight: 600;
    padding: 8px 24px;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(111, 169, 154, 0.3);
    position: relative;
    overflow: hidden;
}

.team-card .btn-success::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.3),
            transparent);
    transition: left 0.5s ease;
}

.team-card .btn-success:hover::before {
    left: 100%;
}

.team-card .btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(111, 169, 154, 0.5);
    background: linear-gradient(135deg, #7bc4ad, #82a593);
}

.team-card .btn-success:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(111, 169, 154, 0.3);
}

/* Flag styling */
.team-card .position-absolute.top-0.end-0 {
    border-radius: 0 20px 0 10px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-card:hover .position-absolute.top-0.end-0 {
    transform: scale(1.1);
}

/* Floating animation */
@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* Gradient rotation animation */
@keyframes gradientRotate {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Responsive adjustments for team cards */
@media (max-width: 768px) {
    .team-card {
        border-radius: 16px;
    }

    .team-card .card-img-top {
        border-radius: 16px 16px 0 0;
    }

    .team-card:hover {
        transform: translateY(-4px) scale(1.01);
    }
}

/* Dark mode support (if needed) */
@media (prefers-color-scheme: dark) {
    .team-card {
        background: linear-gradient(135deg,
                rgba(111, 169, 154, 0.08) 0%,
                rgba(112, 141, 126, 0.12) 100%);
    }

    .team-card:hover {
        background: linear-gradient(135deg,
                rgba(111, 169, 154, 0.15) 0%,
                rgba(112, 141, 126, 0.2) 100%);
    }
}