* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background: #0d1117;
    color: #f1f1f1;
}


/* HEADER */
.glass-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 24px;
    background: rgba(0, 0, 0, 0.311);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    border-radius: 0 0 15px 15px;
}

.logo img {
    height: 40px;
    filter: invert();
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #c0e8f9;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #00e5ff;
}

.nav-links .active {
    color: #00e5ffa3;
    padding-bottom: 10px;
    border-bottom: 1px solid #00e5ffa3;
}

.mobile-menu-toggle {
    display: none;
    color: #c0e8f9;
    font-size: 1.4rem;
    cursor: pointer;
}


@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 60px;
        right: 0;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.9);
        width: 200px;
        padding: 10px;
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: block;
    }
}

/* TEAM INTRODUCTION TEXT AND ANIMATION */

.team-intro-white {
    display: none;
    background-color: white;
    padding: 20px;
    margin: 20px 20px 0 20px;
    border-radius: 40px;
    box-shadow: 0px -10px 300px rgba(0, 122, 204, 0.373);
    color: #0d1117;
}

.content-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.lottie-container-large {
    flex: 1 1 450px;
    display: flex;
    justify-content: center;
}

.intro-card-large {
    flex: 1 1 600px;
}

.intro-card-large h2 {
    font-size: 3rem;
    color: #007acc;
    margin-bottom: 24px;
}

.intro-card-large p {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 40px;
    font-weight: 500;
}

.scroll-container {
    width: 100%;
    display: flex;
    justify-content: center;
}



@media (max-width: 900px) {
    .content-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .intro-card-large {
        flex: 1 1 100%;
    }

    .lottie-container-large {
        flex: 1 1 100%;
        margin: auto;
    }
}

/* SEPERATOR TITLE */

.title-container {
    margin-top: 100px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.title-container h1 {
    font-weight: 100;
    color: #00e5ffb0;
    font-size: 64px;
    text-align: center;
    margin: 0 1em;
}

/* PERSONNEL SLIDER */

.personnel-slider-section {
    background-color: #fff;
    padding: 20px;
    margin: 20px;
    border-radius: 40px;
    box-shadow: 0px -10px 300px rgba(0, 122, 204, 0.347);
}

.personnel-swiper {
    width: 100%;
    padding: 20px 0;
}

.personnel-card {
    border-radius: 40px;
    padding: 20px;
    text-align: center;
    user-select: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.personnel-card img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 16px;
    border: 3px solid #007acc;
}

.personnel-card h3 {
    font-size: 1.3rem;
    color: #007acc;
    margin-bottom: 8px;
}

.personnel-card p {
    font-size: 1rem;
    color: #333;
}