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

body {
    font-family: 'Times New Roman', Times, serif;
    background: #000000;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
    min-height: 100vh;
}

#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* Fixed Particles Background for All Sections (except home) */
#fixed-particles-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
    background: #000000;
    opacity: 0; /* Start hidden, JavaScript controls visibility */
    transition: opacity 0.5s ease;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(135, 206, 235, 0.2);
    padding: 20px 0;
    transition: all 0.3s ease;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s;
}

.logo:hover {
    opacity: 0.8;
}

.logo-image {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    background-color: #000000;
    padding: 5px;
    border-radius: 4px;
}

.logo-arrow {
    color: #87ceeb;
    font-size: 18px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #ffffff;
}

.nav-link.active {
    color: #87ceeb;
}

.dropdown-arrow {
    font-size: 10px;
    margin-left: 4px;
}

.cta-button {
    background: linear-gradient(135deg, #5dade2 0%, #87ceeb 100%);
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(135, 206, 235, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(135, 206, 235, 0.5);
}

/* Hero Section */
.hero {
    margin-top: 0;
    padding: 10px 0;
    background: linear-gradient(to right, rgba(10, 10, 10, 0.9) 0%, rgba(26, 31, 30, 0.9) 100%);
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: whiteGlow 4s ease-in-out infinite;
    z-index: -1;
}

@keyframes whiteGlow {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

.hero-title {
    font-size: 96px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.hero-title-small {
    font-size: 48px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 2px;
    font-family: 'Times New Roman', Times, serif;
}

.hero-title-large {
    font-size: 96px;
    font-weight: 700;
    display: inline-block;
    color: #87ceeb;
    font-family: 'Times New Roman', Times, serif;
}

.gradient-text {
    color: #87ceeb;
}


.hero-content {
    margin-top: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.hero-description {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 25px;
    font-family: 'Times New Roman', Times, serif;
}

.hero-description:last-child {
    margin-bottom: 0;
}

.hero-button-container {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.know-more-button {
    background: linear-gradient(135deg, #87ceeb 0%, #5dade2 100%);
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    display: inline-block;
    font-family: 'Times New Roman', Times, serif;
    box-shadow: 0 4px 15px rgba(135, 206, 235, 0.3);
}

.know-more-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(135, 206, 235, 0.5);
}

.know-more-button:active {
    transform: translateY(0);
}

/* Purpose Section */
.purpose {
    padding: 100px 0;
    position: relative;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.purpose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 40% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
    animation: whiteGlow 5s ease-in-out infinite;
    z-index: -1;
}

.section-label {
    position: absolute;
    top: 40px;
    right: 40px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title {
    font-size: 72px;
    font-weight: 700;
    line-height: 1.2;
    font-family: 'Times New Roman', Times, serif;
}

.light-text {
    color: rgba(255, 255, 255, 0.6);
}

.purpose-content {
    margin-top: 60px;
    max-width: 900px;
}

.purpose-description {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 25px;
    text-align: left;
    font-family: 'Times New Roman', Times, serif;
}

.purpose-description strong {
    color: #87ceeb;
    font-weight: 600;
}

.purpose-description:last-child {
    margin-bottom: 0;
}

/* Leadership Team Section */
.leadership-section {
    padding: 0 0 120px 0;
    background: transparent;
    position: relative;
    z-index: 1;
    margin-top: 0;
}

.leadership-section::before {
    display: none;
}

.section-heading {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 60px;
    margin-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Times New Roman', Times, serif;
}

/* Leadership Display */
.leadership-display {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 80px;
    padding: 40px 0;
}

.leader-card {
    flex: 1;
    max-width: 300px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.leader-image {
    width: 250px;
    height: 300px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
    border: 2px solid rgba(135, 206, 235, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leader-name {
    font-size: 20px;
    font-weight: 700;
    color: #87ceeb;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Times New Roman', Times, serif;
}

.leader-role {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-family: 'Times New Roman', Times, serif;
}

/* Leader Detail View */
.leader-detail-view {
    display: none;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
    margin-bottom: 80px;
    opacity: 0;
    transition: opacity 0.4s ease;
    position: relative;
}

.leader-detail-view.show {
    opacity: 1;
}

.leader-detail-card {
    background: linear-gradient(to right, rgba(10, 10, 10, 0.95) 0%, rgba(26, 31, 30, 0.95) 100%);
    border: 2px solid rgba(135, 206, 235, 0.5);
    border-radius: 20px;
    padding: 40px;
    max-width: 900px;
    width: 100%;
    display: flex;
    gap: 40px;
    align-items: flex-start;
    position: relative;
    box-shadow: 0 10px 40px rgba(135, 206, 235, 0.2);
    transform: scale(0.8) translateY(20px);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.leader-detail-card.show {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.leadership-display {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 80px;
    padding: 40px 0;
    opacity: 1;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateY(0);
}

.leadership-display.show {
    opacity: 1;
    transform: translateY(0);
}

.leader-detail-image-container {
    flex-shrink: 0;
}

.leader-detail-image {
    width: 250px;
    height: 300px;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid rgba(135, 206, 235, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: scale(0.8) translateX(-20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.leader-detail-image.show {
    opacity: 1;
    transform: scale(1) translateX(0);
}

.leader-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leader-detail-content {
    flex: 1;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.leader-detail-content.show {
    opacity: 1;
    transform: translateX(0);
}

.leader-detail-name {
    color: #87ceeb;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: 'Times New Roman', Times, serif;
    text-transform: uppercase;
}

.leader-detail-role {
    color: #ffffff;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    font-family: 'Times New Roman', Times, serif;
}

.leader-detail-bio {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.8;
    font-family: 'Times New Roman', Times, serif;
}


.employees-heading {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 50px;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Times New Roman', Times, serif;
}

/* Employee Tabs */
.employee-tabs-container {
    margin-bottom: 50px;
    overflow-x: scroll;
    overflow-y: hidden;
    padding: 20px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
    position: relative;
    width: 100%;
    max-width: 720px; /* Show exactly 5 tabs: (120px × 5) + (20px gap × 4) + (20px padding × 2) = 720px */
    margin-left: auto;
    margin-right: auto;
    scroll-behavior: auto; /* Disable smooth scroll for programmatic scrolling */
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
}

.employee-tabs-container::-webkit-scrollbar {
    display: none;
}

.employee-tabs {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    padding: 0 20px;
    min-width: min-content;
    width: max-content;
    margin: 0 auto;
}

.employee-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(135, 206, 235, 0.3);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
    position: relative;
}

.employee-tab:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(135, 206, 235, 0.5);
    transform: translateY(-5px);
}

.employee-tab.active {
    background: rgba(135, 206, 235, 0.1);
    border-color: #87ceeb;
    box-shadow: 0 0 20px rgba(135, 206, 235, 0.3);
}

.employee-tab img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(135, 206, 235, 0.3);
}

.employee-tab.active img {
    border-color: #87ceeb;
    box-shadow: 0 0 15px rgba(135, 206, 235, 0.5);
}

.employee-tab .tab-name {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    display: block;
    transition: all 0.3s ease;
}

.employee-tab.active .tab-name {
    color: #87ceeb;
    font-weight: 600;
}

.employee-tab .tab-role {
    font-size: 11px;
    font-weight: 400;
    color: rgba(135, 206, 235, 0.7);
    display: none;
    margin-top: 4px;
    transition: all 0.3s ease;
}

.employee-tab:hover .tab-role {
    display: block;
}

.employee-tab.active .tab-role {
    display: block;
    color: rgba(135, 206, 235, 0.9);
}

/* Employee Content Area */
.employee-content-container {
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
    position: relative;
    background: linear-gradient(to right, rgba(10, 10, 10, 0.7) 0%, rgba(26, 31, 30, 0.7) 100%);
}

.employee-content-container.show {
    display: flex;
}

.employee-content-wrapper {
    width: 100%;
    max-width: 1000px;
    position: relative;
    min-height: 400px;
    margin: 0 auto;
}

.employee-content {
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.employee-content.active {
    display: block;
    opacity: 1;
}

.employee-display {
    display: flex;
    gap: 40px;
    align-items: center;
    background: linear-gradient(to right, rgba(10, 10, 10, 0.9) 0%, rgba(26, 31, 30, 0.9) 100%);
    border: 1px solid rgba(135, 206, 235, 0.4);
    border-radius: 16px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.employee-display::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: whiteFloat 8s ease-in-out infinite;
    z-index: -1;
}

@keyframes whiteFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-30px, 30px) scale(1.2);
        opacity: 0.5;
    }
}

.employee-image-large {
    flex-shrink: 0;
    width: 250px;
    height: 300px;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid rgba(135, 206, 235, 0.3);
}

.employee-image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.employee-details {
    flex: 1;
}

.employee-name {
    font-size: 28px;
    font-weight: 700;
    color: #87ceeb;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Times New Roman', Times, serif;
}

.employee-role {
    font-size: 20px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    font-family: 'Times New Roman', Times, serif;
}

.employee-description {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Times New Roman', Times, serif;
}


/* Footer */
.footer {
    padding: 80px 0 40px;
    background: linear-gradient(to right, rgba(10, 10, 10, 0.9) 0%, rgba(26, 31, 30, 0.9) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.06) 0%, transparent 50%);
    animation: whiteGlow 6s ease-in-out infinite;
    z-index: -1;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-tagline {
    margin-top: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.footer-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.footer-link:hover {
    color: #87ceeb;
}

.social-icons {
    display: flex;
    gap: 20px;
    margin-left: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    transition: background 0.3s, transform 0.3s;
}

.social-icon:hover {
    background: rgba(135, 206, 235, 0.3);
    transform: translateY(-2px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.legal-links {
    display: flex;
    gap: 30px;
}

.legal-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.legal-link:hover {
    color: #87ceeb;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 64px;
    }
    
    .section-title {
        font-size: 48px;
    }
    
    .leadership-display {
        gap: 40px;
        margin-bottom: 60px;
    }
    
    .leader-image {
        width: 200px;
        height: 240px;
    }
    
    .leader-name {
        font-size: 18px;
    }
    
    .leader-role {
        font-size: 14px;
    }
    
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .nav {
        gap: 15px;
    }
    
    .nav-link {
        font-size: 14px;
    }
    
    .cta-button {
        padding: 10px 16px;
        font-size: 14px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-title-small {
        font-size: 24px;
    }
    
    .hero-title-large {
        font-size: 36px;
    }
    
    .hero-content {
        margin-top: 40px;
        padding: 0 20px;
    }
    
    .hero-description {
        font-size: 16px;
        line-height: 1.7;
        margin-bottom: 20px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .purpose-content {
        margin-top: 40px;
    }
    
    .purpose-description {
        font-size: 16px;
        line-height: 1.7;
        margin-bottom: 20px;
    }
    
    .leadership-display {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 50px;
    }
    
    .leader-image {
        width: 180px;
        height: 220px;
    }
    
    .leader-name {
        font-size: 16px;
    }
    
    .leader-role {
        font-size: 14px;
    }
    
    .leader-detail-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 30px 20px;
    }
    
    .leader-detail-image {
        width: 200px;
        height: 240px;
        margin-bottom: 20px;
    }
    
    .leader-detail-name {
        font-size: 22px;
    }
    
    .leader-detail-role {
        font-size: 18px;
    }
    
    .leader-detail-bio {
        font-size: 14px;
    }
    
    
    .employees-heading {
        font-size: 24px;
    }
    
    .employee-tabs {
        gap: 15px;
        justify-content: flex-start;
        padding: 0 15px;
    }
    
    .employee-tab {
        min-width: 100px;
        padding: 12px 15px;
        flex-shrink: 0;
    }
    
    .employee-tab img {
        width: 60px;
        height: 60px;
    }
    
    .employee-tab span {
        font-size: 12px;
    }
    
    .employee-content-container {
        padding: 30px 0;
    }
    
    .employee-display {
        flex-direction: column;
        padding: 30px 20px;
        gap: 30px;
    }
    
    .employee-image-large {
        width: 200px;
        height: 240px;
        margin: 0 auto;
    }
    
    .employee-name {
        font-size: 22px;
        text-align: center;
    }
    
    .employee-role {
        font-size: 18px;
        text-align: center;
    }
    
    .employee-description {
        font-size: 14px;
        text-align: center;
    }
    
    .employee-tabs {
        gap: 10px;
        padding: 0 10px;
        justify-content: flex-start;
    }
    
    .employee-tab {
        min-width: 80px;
        padding: 10px 12px;
        flex-shrink: 0;
    }
    
    .employee-tab img {
        width: 50px;
        height: 50px;
    }
    
    .employee-tab span {
        font-size: 11px;
    }
    
    .employee-content-container {
        padding: 20px 0;
    }
    
    .employee-display {
        padding: 20px 15px;
    }
    
    .employee-image-large {
        width: 150px;
        height: 180px;
    }
    
    .employee-name {
        font-size: 18px;
    }
    
    .employee-role {
        font-size: 16px;
    }
    
    .employee-description {
        font-size: 13px;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
}

