:root {
    --primary: #8B5CF6;
    --background: #0A0A0A;
    --card-bg: #1A1A1A;
    --text-primary: #FFFFFF;
    --text-secondary: #A3A3A3;
    --orange: #FF7849;
    --blue: #3B82F6;
    --green: #22C55E;
    --purple: #8B5CF6;
    --pink: #EC4899;
    --yellow: #EAB308;
    --cyan: #06B6D4;
    --red: #EF4444;
}

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

body {
    font-family: 'Inter', sans-serif;
    background: var(--background);
    color: var(--text-primary);
    line-height: 1.5;
}

h1, h2, h3, h4, h5, h6,
.structure-card h3,
.board-card h3,
.join-team h2,
.team-experiences h2,
.footer-section h3,
.experience-card .quote,
.executive-board h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 4.5rem;
}

h2 {
    font-size: 3.5rem;
}

h3 {
    font-size: 1.5rem;
}

.structure-card h3,
.board-card h3 {
    margin-bottom: 0.5rem;
}

.structure-card p,
.board-card p,
.join-team p,
.team-experiences p,
.experience-card .quote,
.executive-board p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.6;
    font-weight: 400;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 4rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
}

.logo {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    opacity: 1;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 1rem;
    position: relative;
    background: var(--background);
}

.hero-wave-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    height: 250px;
}

.hero-wave-layers {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-wave-1 {
    z-index: 3;
    fill: #f3f4f6;
}

.hero-wave-2 {
    z-index: 2;
    transform: translateY(30px);
    fill: #e5e7eb;
}

.hero-wave-3 {
    z-index: 1;
    transform: translateY(60px);
    fill: #d1d5db;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.hero p {
    max-width: 600px;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.125rem;
    line-height: 1.6;
    font-weight: 400;
}

.primary-button {
    background: #FFFFFF;
    color: var(--background);
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.primary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

.wave-container {
    position: relative;
    width: 100%;
    height: 150px;
    overflow: hidden;
    line-height: 0;
}

.wave {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100px;
}

.wave1 {
    fill: #f3f4f6;
}

.wave2 {
    fill: #e5e7eb;
    margin-top: -5px;
}

.wave3 {
    fill: #d1d5db;
    margin-top: -5px;
}

.wave svg {
    position: absolute;
    bottom: 0;
    left: 0;
}

.white-section {
    background-color: #ffffff;
}

/* Team Structure */
.team-structure {
    padding: 6rem 1rem;
    text-align: center;
    background: var(--card-bg);
}

.team-structure h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.team-structure p {
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.structure-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
    padding: 0 1rem;
}

.structure-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
}

.structure-card:hover {
    transform: translateY(-5px);
}

.icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.icon-wrapper i {
    width: 24px;
    height: 24px;
    color: white;
}

.icon-wrapper.orange { background: var(--orange); }
.icon-wrapper.blue { background: var(--blue); }
.icon-wrapper.green { background: var(--green); }
.icon-wrapper.purple { background: var(--purple); }
.icon-wrapper.pink { background: var(--pink); }
.icon-wrapper.yellow { background: var(--yellow); }
.icon-wrapper.cyan { background: var(--cyan); }
.icon-wrapper.red { background: var(--red); }

/* Executive Board */
.executive-board {
    padding: 6rem 1rem;
    text-align: center;
}

.board-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto 0;
    padding: 0 1rem;
}

.board-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.profile-img {
    width: 120px;
    height: 120px;
    background: #333;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}
.profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the entire area without distortion */
    border-radius: 50%; /* Makes the image circular */
}
.board-card h3 {
    margin-bottom: 0.5rem;
}

.board-card p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary);
}

/* Department Heads */
.department-heads {
    padding: 6rem 1rem;
    text-align: center;
}

.department-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto 0;
    padding: 0 1rem;
}

.department-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.department-card:hover {
    transform: translateY(-5px);
}

/* Team Members */
.team-members {
    padding: 6rem 1rem;
    text-align: center;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.filter-buttons button {
    background: none;
    border: none;
    color: var(--text-secondary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-buttons button.active {
    background: var(--primary);
    color: white;
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two cards per row */
    gap: 2rem; /* Space between cards */
    max-width: 1200px; /* Optional: adjust for layout width */
    margin: 3rem auto;
    padding: 0 1rem;
}

.member-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    align-items: center;
}
#odd{
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    /* margin-right: -36vw; */
    position: relative;
    left: 18.5vw; 
}

.member-card:last {
    grid-column: span 2;
}


.view-more {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    margin: 2rem auto;
    display: block;
    transition: all 0.3s ease;
}

.view-more:hover {
    background: var(--primary);
    color: white;
}

.member-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 4rem auto 0;
    text-align: center;
}

/* Join Team */
.join-team {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 4rem auto;
    padding: 3rem;
    background: var(--card-bg);
    border-radius: 12px;
}

.benefits {
    margin-top: 2rem;
}

.benefit {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.benefit i {
    color: var(--primary);
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.join-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.join-form input,
.join-form select {
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
}

.join-form button {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.75rem;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 1rem;
}

/* Team Experiences */
.team-experiences {
    padding: 6rem 1rem;
    text-align: center;
    background: var(--background);
}

.experiences-slider {
    position: relative;
    max-width: 1200px;
    margin: 3rem auto;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.slider-btn {
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    padding: 1rem;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.slider-btn:hover {
    opacity: 1;
}

.experience-cards {
    display: flex;
    gap: 2rem;
    overflow: hidden;
}

.experience-card {
    flex: 0 0 calc(33.333% - 1.33rem);
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 1rem;
    text-align: left;
    position: relative;
}

.quote-mark {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 4rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--primary);
    opacity: 0.2;
}

.experience-card .quote {
    margin: 1rem 0 2rem;
    color: var(--text-primary);
    font-size: 1rem;
    line-height: 1.6;
}

.member-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
}

.info h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.info p {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--text-secondary);
    border: none;
    padding: 0;
    cursor: pointer;
    opacity: 0.3;
    transition: opacity 0.3s;
}

.dot.active {
    opacity: 1;
    background: var(--primary);
}

/* Achievements */
.achievements {
    padding: 6rem 1rem;
    text-align: center;
    background: var(--card-bg);
}

.timeline {
    max-width: 800px;
    margin: 4rem auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--primary);
    opacity: 0.3;
}

.timeline-item {
    margin-bottom: 4rem;
    position: relative;
}

.year {
    width: 4rem;
    height: 4rem;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -2rem;
}

.achievement-card {
    background: var(--background);
    padding: 2rem;
    border-radius: 1rem;
    text-align: left;
    margin-top: 3rem;
}

.tags {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.tag {
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
}

.tag.purple { background: rgba(124, 58, 237, 0.1); color: #7c3aed; }
.tag.blue { background: rgba(59, 130, 246, 0.1); color: #3b82f6; }

.milestone-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 0.5rem;
}

.milestone-stats .stat {
    text-align: center;
}

.milestone-stats h4 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.milestone-stats p {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Impact Stats */
.impact-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1rem;
}

.stat-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
}

.stat-card h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary), #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-card p {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Footer */
footer {
    background: var(--card-bg);
    padding: 4rem 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
}

.footer-section p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary);
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        padding: 1rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .join-team {
        grid-template-columns: 1fr;
        padding: 2rem;
    }
    
    .structure-cards,
    .board-grid,
    .department-grid,
    .members-grid,
    .experience-grid,
    .achievement-cards {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}









/* Responsive Design */
@media (max-width: 1024px) {
    .nav-links {
        gap: 1.5rem;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        font-size: 1rem;
        max-width: 500px;
    }

    .structure-cards,
    .board-grid,
    .department-grid,
    .members-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .team-structure h2 {
        font-size: 2.5rem;
    }

    .join-team {
        grid-template-columns: 1fr;
    }

    .members-grid {
        grid-template-columns: 1fr; /* Single column for smaller screens */
    }

    .team-experiences .experience-cards {
        flex-wrap: wrap;
    }

    .impact-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    footer .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 1rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .structure-cards,
    .board-grid,
    .department-grid,
    .members-grid {
        grid-template-columns: 1fr; /* Single column layout for smaller screens */
    }

    .join-team {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

    footer .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    nav {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 0.875rem;
    }

    .primary-button {
        font-size: 0.875rem;
        padding: 0.5rem 1rem;
    }

    .team-structure h2 {
        font-size: 2rem;
    }

    .footer-content {
        text-align: center;
    }

    
}

@media (max-width: 1000px){
    #odd{
        left: 0;
    }
}
