
        /* Reuse your existing CSS variables and base styles */
        :root {
            --bg: #04060a;
            --muted: #9aa3a8;
            --accent: #bffb9d;
            --accent-dark: #9eea7a;
            --text-light: #e9eef0;
            --text-dark: #1a1a1a;
            --card-bg: #0f1217;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Libre Franklin', sans-serif;
            background: var(--bg);
            color: white;
            overflow-x: hidden;
            line-height: 1.6;
            font-size: 16px;
        }

        /* Wave-like dotted spots background */
        body::before {
            content: "";
            position: fixed;
            inset: 0;
            background:
                radial-gradient(circle at 10% 15%, rgba(191, 251, 157, 0.03) 0 2px, transparent 2px),
                radial-gradient(circle at 20% 25%, rgba(191, 251, 157, 0.04) 0 1.5px, transparent 1.5px),
                radial-gradient(circle at 30% 35%, rgba(191, 251, 157, 0.03) 0 2px, transparent 2px),
                radial-gradient(circle at 40% 45%, rgba(191, 251, 157, 0.02) 0 1px, transparent 1px),
                radial-gradient(circle at 50% 55%, rgba(191, 251, 157, 0.03) 0 1.5px, transparent 1.5px),
                radial-gradient(circle at 60% 65%, rgba(191, 251, 157, 0.04) 0 2px, transparent 2px),
                radial-gradient(circle at 70% 75%, rgba(191, 251, 157, 0.03) 0 1px, transparent 1px),
                radial-gradient(circle at 80% 85%, rgba(191, 251, 157, 0.02) 0 1.5px, transparent 1.5px),
                radial-gradient(circle at 90% 95%, rgba(191, 251, 157, 0.03) 0 2px, transparent 2px),
                radial-gradient(circle at 15% 90%, rgba(191, 251, 157, 0.02) 0 1.5px, transparent 1.5px),
                radial-gradient(circle at 25% 80%, rgba(191, 251, 157, 0.03) 0 2px, transparent 2px),
                radial-gradient(circle at 35% 70%, rgba(191, 251, 157, 0.02) 0 1px, transparent 1px),
                radial-gradient(circle at 45% 60%, rgba(191, 251, 157, 0.04) 0 1.5px, transparent 1.5px),
                radial-gradient(circle at 55% 50%, rgba(191, 251, 157, 0.03) 0 2px, transparent 2px),
                radial-gradient(circle at 65% 40%, rgba(191, 251, 157, 0.02) 0 1px, transparent 1px),
                radial-gradient(circle at 75% 30%, rgba(191, 251, 157, 0.03) 0 1.5px, transparent 1.5px),
                radial-gradient(circle at 85% 20%, rgba(191, 251, 157, 0.04) 0 2px, transparent 2px),
                radial-gradient(circle at 95% 10%, rgba(191, 251, 157, 0.02) 0 1px, transparent 1px);
            background-size: 200px 200px, 180px 180px, 220px 220px;
            opacity: 0.7;
            pointer-events: none;
            z-index: -1;
            animation: waveMove 25s infinite linear;
        }

        @keyframes waveMove {
            0% {
                background-position: 0px 0px, 100px 50px, 50px 100px;
            }
            100% {
                background-position: 200px 200px, 300px 250px, 250px 300px;
            }
        }

        /* Header & Navigation - Same as your existing */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 1.5rem 5vw;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            transition: background 0.3s, padding 0.3s;
        }

        header.scrolled {
            background: rgba(4, 6, 10, 0.95);
            backdrop-filter: blur(10px);
            padding: 1rem 5vw;
        }

        .logo {
            font-family: 'Montserrat', sans-serif;
            font-weight: 300;
            font-size: 1.5rem;
            letter-spacing: 2px;
            color: var(--text-light);
            z-index: 1002;
        }

        .logo span {
            color: var(--accent);
        }

        /* Burger Menu Styles - Same as your existing */
        .burger-menu {
            position: relative;
            z-index: 1002;
        }

        .burger-btn {
            background: none;
            border: none;
            width: 35px;
            height: 25px;
            position: relative;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: flex-end;
            padding: 0;
        }

        .burger-line {
            display: block;
            height: 2px;
            background: var(--text-light);
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .burger-line:nth-child(1) {
            width: 100%;
        }

        .burger-line:nth-child(2) {
            width: 80%;
        }

        .burger-line:nth-child(3) {
            width: 60%;
        }

        .burger-btn.active .burger-line:nth-child(1) {
            transform: translateY(11px) rotate(45deg);
            width: 100%;
        }

        .burger-btn.active .burger-line:nth-child(2) {
            opacity: 0;
            transform: translateX(-20px);
        }

        .burger-btn.active .burger-line:nth-child(3) {
            transform: translateY(-11px) rotate(-45deg);
            width: 100%;
        }

        .burger-btn:hover .burger-line {
            background: var(--accent);
        }

        .burger-btn.active .burger-line {
            background: var(--accent);
        }

        /* Fullscreen Menu Overlay - Same as your existing */
        .menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(4, 6, 10, 0.98);
            backdrop-filter: blur(10px);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
            z-index: 1001;
            padding: 1rem;
        }

        .menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .menu-header {
            position: absolute;
            top: 2rem;
            right: 2rem;
            z-index: 1003;
        }

        .close-menu-btn {
            background: none;
            border: none;
            color: var(--text-light);
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.5rem;
            transition: color 0.3s;
        }

        .close-menu-btn:hover {
            color: var(--accent);
        }

        .menu-nav {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
            margin-bottom: 2rem;
            width: 100%;
            padding: 0 1rem;
        }

        .menu-nav a {
            color: var(--text-light);
            text-decoration: none;
            font-size: 1.8rem;
            font-weight: 300;
            letter-spacing: 1px;
            position: relative;
            padding: 0.5rem 0;
            transition: all 0.3s ease;
            font-family: 'Montserrat', sans-serif;
            text-align: center;
            width: 100%;
        }

        .menu-nav a:hover {
            color: var(--accent);
            transform: translateX(5px);
        }

        .menu-nav a::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--accent);
            transition: width 0.3s ease;
        }

        .menu-nav a:hover::before {
            width: 100%;
        }

        .menu-footer {
            position: absolute;
            bottom: 2rem;
            left: 0;
            width: 100%;
            padding: 0 5vw;
            display: flex;
            flex-direction: column;
            gap: 2rem;
            align-items: center;
        }

        .menu-social {
            display: flex;
            gap: 1rem;
            justify-content: center;
        }

        .menu-social a {
            color: var(--muted);
            font-size: 1.5rem;
            transition: color 0.3s, transform 0.3s;
        }

        .menu-social a:hover {
            color: var(--accent);
            transform: translateY(-3px);
        }

        /* Main Content */
        main {
            padding-top: 80px;
        }

      
        .about-hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(4, 6, 10, 0.85) 0%, rgba(15, 18, 23, 0.7) 100%);
            z-index: 1;
        }

        .about-hero h1,
        .about-hero p {
            position: relative;
            z-index: 2;
            text-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }

        .about-hero h1 {
            font-family: 'Montserrat', sans-serif;
            font-size: clamp(2.5rem, 6vw, 4rem);
            font-weight: 300;
            margin-bottom: 1.5rem;
            color: var(--text-light);
            line-height: 1.2;
        }

        .about-hero h1 span {
            color: var(--accent);
        }

        .about-hero p {
            font-size: clamp(1rem, 3vw, 1.2rem);
            max-width: 800px;
            color: rgba(255,255,255,0.9);
            margin-bottom: 2rem;
        }

        /* Section Styles */
        section {
            padding: 80px 5vw;
        }

        .section-title {
            font-family: 'Montserrat', sans-serif;
            font-size: clamp(1.8rem, 5vw, 2.5rem);
            font-weight: 300;
            margin-bottom: 2.5rem;
            text-align: center;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--text-light);
            line-height: 1.3;
        }

        .section-title span {
            color: var(--accent);
        }

        .section-subtitle {
            font-family: 'Montserrat', sans-serif;
            font-size: clamp(1.2rem, 3vw, 1.5rem);
            font-weight: 300;
            margin-bottom: 3rem;
            text-align: center;
            color: var(--muted);
            line-height: 1.5;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Organization Section */
        .organization-section {
            background: var(--card-bg);
        }

        .organization-content {
            display: flex;
            flex-direction: column;
            gap: 3rem;
        }

        .org-text {
            width: 100%;
        }

        .org-text h3 {
            font-family: 'Montserrat', sans-serif;
            font-size: clamp(1.5rem, 4vw, 1.8rem);
            font-weight: 300;
            margin-bottom: 1.5rem;
            color: var(--text-light);
            line-height: 1.4;
        }

        .org-text p {
            margin-bottom: 1.5rem;
            color: var(--muted);
            font-size: 1rem;
            line-height: 1.6;
        }

        .org-values {
            margin-top: 2rem;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 2rem;
        }

        .value-item {
            background: rgba(255, 255, 255, 0.03);
            padding: 1.5rem;
            border-radius: 5px;
            border-left: 3px solid var(--accent);
        }

        .value-item h4 {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.2rem;
            font-weight: 400;
            margin-bottom: 0.8rem;
            color: var(--text-light);
        }

        .value-item p {
            color: var(--muted);
            font-size: 0.95rem;
            line-height: 1.5;
        }

        /* TIMELINE SECTION */
        .timeline-section {
            background: linear-gradient(to bottom, var(--bg), #0a0e14);
            position: relative;
            overflow: hidden;
        }

        /* Wave Journey Timeline Styles */
        .history-title {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 80px;
        }

        .history-title h2 {
            font-family: 'Montserrat', sans-serif;
            font-size: clamp(2rem, 5vw, 3.5rem);
            margin-bottom: 20px;
            background: linear-gradient(135deg, var(--accent), var(--accent-dark));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 20px rgba(191, 251, 157, 0.3);
        }

        .history-title p {
            font-size: clamp(1rem, 3vw, 1.2rem);
            opacity: 0.8;
            max-width: 600px;
            margin: 0 auto;
            color: var(--muted);
        }

        /* WAVE CONTAINER */
        .wave-container {
            position: relative;
            max-width: 1400px;
            height: 500px;
            margin: 60px auto;
            background: transparent;
        }

        /* WAVE */
        .wave-svg {
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
            z-index: 1;
        }

        .wave-path {
            fill: none;
            stroke: url(#gradient);
            stroke-width: 6;
            stroke-linecap: round;
            stroke-dasharray: 3200;
            stroke-dashoffset: 3200;
            transition: stroke-dashoffset 2.5s ease;
        }

        .wave-container.active .wave-path {
            stroke-dashoffset: 0;
        }

        /* TRAVELING DOT */
        .traveling-dot {
            position: absolute;
            width: 24px;
            height: 24px;
            background: var(--accent);
            border-radius: 50%;
            box-shadow: 
                0 0 25px rgba(191, 251, 157, 1),
                0 0 50px rgba(191, 251, 157, 0.7),
                0 0 75px rgba(191, 251, 157, 0.4);
            transform: translate(-50%, -50%);
            pointer-events: none;
            z-index: 3;
            opacity: 0;
        }

        .wave-container.active .traveling-dot {
            opacity: 1;
        }

        /* YEAR MARKERS - ADJACENT TO WAVE */
        .year-marker {
            position: absolute;
            transform: translate(-50%, -50%);
            cursor: pointer;
            z-index: 4;
            opacity: 0;
            transition: opacity 0.8s ease;
        }

        .wave-container.active .year-marker {
            opacity: 1;
        }

        .year-circle {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: rgba(15, 23, 42, 0.95);
            border: 2px solid rgba(191, 251, 157, 0.4);
            color: var(--accent);
            font-weight: 700;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            box-shadow: 
                0 0 20px rgba(191, 251, 157, 0.2),
                inset 0 0 10px rgba(191, 251, 157, 0.1);
        }

        .year-marker.active .year-circle,
        .year-marker:hover .year-circle {
            background: rgba(191, 251, 157, 0.95);
            color: var(--text-dark);
            border-color: #ffffff;
            box-shadow: 
                0 0 30px rgba(191, 251, 157, 0.8),
                0 0 60px rgba(191, 251, 157, 0.4),
                inset 0 0 15px rgba(255, 255, 255, 0.3);
            transform: scale(1.1);
        }

        /* TOOLTIP */
        .year-tooltip {
            position: absolute;
            background: rgba(15, 23, 42, 0.95);
            padding: 10px 18px;
            border-radius: 10px;
            font-size: 0.95rem;
            white-space: nowrap;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            border: 1px solid rgba(191, 251, 157, 0.3);
            backdrop-filter: blur(10px);
            z-index: 5;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
            top: -60px;
            left: 50%;
            transform: translateX(-50%);
            color: var(--text-light);
        }

        .year-marker:hover .year-tooltip {
            opacity: 1;
            visibility: visible;
            border-color: rgba(191, 251, 157, 0.6);
            box-shadow: 0 5px 25px rgba(191, 251, 157, 0.2);
        }

        /* CONNECTOR LINES */
        .connection-line {
            position: absolute;
            background: rgba(191, 251, 157, 0.3);
            z-index: 2;
            opacity: 0;
            transition: opacity 0.5s ease 1s;
        }

        .wave-container.active .connection-line {
            opacity: 1;
        }

        /* MODAL */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(2, 6, 23, 0.98);
            z-index: 2000;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
            padding: 20px;
        }

        .modal.active {
            display: flex;
            opacity: 1;
        }

        .modal-content {
            background: var(--card-bg);
            border-radius: 20px;
            max-width: 800px;
            width: 90%;
            max-height: 85vh;
            overflow-y: auto;
            transform: translateY(30px);
            transition: transform 0.4s ease;
            border: 1px solid rgba(191, 251, 157, 0.3);
            box-shadow: 
                0 30px 80px rgba(0, 0, 0, 0.6),
                0 0 50px rgba(191, 251, 157, 0.2);
        }

        .modal.active .modal-content {
            transform: translateY(0);
        }

        .modal-header {
            padding: 25px 30px 15px;
            border-bottom: 1px solid rgba(191, 251, 157, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .modal-header h2 {
            font-size: 2rem;
            color: var(--accent);
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: 'Montserrat', sans-serif;
        }

        .modal-year {
            background: var(--accent);
            color: var(--text-dark);
            padding: 5px 15px;
            border-radius: 20px;
            font-weight: 700;
            font-size: 1.1rem;
            box-shadow: 0 0 15px rgba(191, 251, 157, 0.5);
        }

        .close-modal {
            background: none;
            border: none;
            color: var(--muted);
            font-size: 2rem;
            cursor: pointer;
            transition: all 0.3s;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }

        .close-modal:hover {
            color: var(--accent);
            background: rgba(191, 251, 157, 0.1);
            box-shadow: 0 0 15px rgba(191, 251, 157, 0.3);
        }

        .modal-body {
            padding: 30px;
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .modal-image {
            width: 100%;
            height: 300px;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid rgba(191, 251, 157, 0.2);
        }

        .modal-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .modal-image img:hover {
            transform: scale(1.03);
        }

        .modal-details h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: var(--text-light);
            font-family: 'Montserrat', sans-serif;
        }

        .modal-details p {
            font-size: 1.1rem;
            line-height: 1.7;
            opacity: 0.9;
            color: var(--muted);
        }

        /* Team Section */
        .team-section {
            position: relative;
        }

        .team-container {
            display: flex;
            flex-direction: column;
            gap: 4rem;
            max-width: 100%;
            margin: 0 auto;
        }

        /* Team Member Cards (Detailed) */
        .team-member {
            display: flex;
            flex-direction: column;
            background: var(--card-bg);
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .team-member:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }

        .member-image {
            height: 300px;
            width: 100%;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .member-image::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.8));
        }

        .member-info {
            padding: 2rem;
            flex: 1;
        }

        .member-name {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.5rem;
            font-weight: 400;
            margin-bottom: 0.5rem;
            color: var(--text-light);
        }

        .member-title {
            color: var(--accent);
            font-size: 1rem;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 600;
        }

        .member-bio {
            color: var(--muted);
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .member-quote {
            font-style: italic;
            color: var(--muted);
            padding: 1rem;
            border-left: 2px solid var(--accent);
            background: rgba(191, 251, 157, 0.05);
            margin: 1.5rem 0;
            font-size: 0.95rem;
        }

        .member-stats {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .member-stat {
            flex: 1;
            min-width: 120px;
            text-align: center;
            padding: 0.8rem;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 5px;
        }

        .stat-number {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.2rem;
            font-weight: 400;
            color: var(--accent);
            display: block;
            line-height: 1.2;
        }

        .stat-label {
            font-size: 0.8rem;
            color: var(--muted);
            margin-top: 0.3rem;
        }

        .member-social {
            display: flex;
            gap: 0.8rem;
            margin-top: 1.5rem;
        }

        .member-social a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 35px;
            height: 35px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
            color: var(--muted);
            text-decoration: none;
            transition: all 0.3s;
            font-size: 1rem;
        }

        .member-social a:hover {
            background: var(--accent);
            color: var(--text-dark);
            transform: translateY(-3px);
        }

        /* Full Team Grid Section */
        .full-team-section {
            background: var(--card-bg);
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .team-card {
            background: rgba(255, 255, 255, 0.03);
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s ease;
            position: relative;
            height: 100%;
        }

        .team-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }

        .team-card-img {
            width: 100%;
            height: 250px;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .team-card-img::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.8));
        }

        .team-card-content {
            padding: 1.5rem;
        }

        .team-card-name {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.2rem;
            font-weight: 400;
            margin-bottom: 0.5rem;
            color: var(--text-light);
        }

        .team-card-title {
            color: var(--accent);
            font-size: 0.9rem;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-weight: 600;
        }

        .team-card-bio {
            color: var(--muted);
            font-size: 0.9rem;
            line-height: 1.5;
            margin-bottom: 1.2rem;
        }

        .team-card-skills {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 1.2rem;
        }

        .skill-tag {
            background: rgba(191, 251, 157, 0.1);
            color: var(--accent);
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 500;
        }

        .team-card-social {
            display: flex;
            gap: 0.8rem;
            margin-top: 1rem;
        }

        .team-card-social a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 30px;
            height: 30px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
            color: var(--muted);
            text-decoration: none;
            transition: all 0.3s;
            font-size: 0.9rem;
        }

        .team-card-social a:hover {
            background: var(--accent);
            color: var(--text-dark);
            transform: translateY(-3px);
        }

        /* Contact CTA Section */
        .contact-cta {
            background: var(--card-bg);
            text-align: center;
            padding: 4rem 5vw;
        }

        .contact-cta h2 {
            font-family: 'Montserrat', sans-serif;
            font-size: clamp(1.8rem, 5vw, 2.5rem);
            font-weight: 300;
            margin-bottom: 1.5rem;
            color: var(--text-light);
            line-height: 1.3;
        }

        .contact-cta p {
            max-width: 700px;
            margin: 0 auto 2rem;
            color: var(--muted);
            font-size: 1.1rem;
            line-height: 1.6;
        }

        .btn-large {
            background: transparent;
            border: 2px solid var(--accent);
            color: var(--accent);
            padding: 1rem 2rem;
            border-radius: 100px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: inline-block;
            text-decoration: none;
        }

        .btn-large:hover {
            background: var(--accent);
            color: var(--text-dark);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(191, 251, 157, 0.2);
        }

        /* Footer - Same as your existing */
        footer {
            background: #0a0c10;
            padding: 3rem 5vw 2rem;
        }

        .footer-content {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-column {
            flex: 1 1 250px;
            min-width: 250px;
        }

        .footer-column h3 {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.2rem;
            margin-bottom: 1.2rem;
            color: var(--text-light);
        }

        .footer-column p {
            color: var(--muted);
            margin-bottom: 1.2rem;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.6rem;
        }

        .footer-links a {
            color: var(--muted);
            text-decoration: none;
            transition: color 0.3s;
            font-size: 0.95rem;
        }

        .footer-links a:hover {
            color: var(--accent);
        }

        .social-links {
            display: flex;
            gap: 0.8rem;
            margin-top: 1rem;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 35px;
            height: 35px;
            background: var(--card-bg);
            border-radius: 50%;
            color: var(--muted);
            text-decoration: none;
            transition: all 0.3s;
            font-size: 1rem;
        }

        .social-links a:hover {
            background: var(--accent);
            color: var(--text-dark);
            transform: translateY(-3px);
        }

        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--muted);
            font-size: 0.85rem;
        }

        /* Responsive Design */
        @media (min-width: 768px) {
            header {
                padding: 1.5rem 7vw;
            }
            
            header.scrolled {
                padding: 1rem 7vw;
            }
            
            .logo {
                font-size: 1.8rem;
            }
            
            .burger-btn {
                width: 40px;
                height: 30px;
            }
            
            .about-hero {
                padding: 120px 7vw 80px;
                min-height: 70vh;
            }
            
            section {
                padding: 100px 7vw;
            }
            
            .organization-content {
                flex-direction: row;
                gap: 4rem;
            }
            
            .org-text {
                flex: 1;
            }
            
            .team-member {
                flex-direction: row;
                min-height: 400px;
            }
            
            .member-image {
                height: auto;
                width: 40%;
                min-height: 400px;
            }
            
            .member-info {
                width: 60%;
                display: flex;
                flex-direction: column;
                justify-content: center;
            }
            
            /* Alternate layout for team members */
            .team-member:nth-child(even) {
                flex-direction: row-reverse;
            }
            
            /* Team Grid - 4 columns on large screens */
            .team-grid {
                grid-template-columns: repeat(4, 1fr);
            }
            
            /* Timeline responsive */
            .wave-container {
                height: 500px;
            }
        }

        @media (min-width: 1024px) {
            .team-member {
                min-height: 450px;
            }
            
            .member-image {
                min-height: 450px;
            }
            
            .org-values {
                grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            }
        }

        @media (max-width: 767px) {
            .about-hero {
                padding: 80px 4vw 40px;
                min-height: 50vh;
            }
            
            section {
                padding: 60px 4vw;
            }
            
            .member-image {
                height: 250px;
            }
            
            .member-stats {
                flex-direction: column;
            }
            
            .member-stat {
                min-width: 100%;
            }
            
            footer {
                padding: 2rem 4vw 1.5rem;
            }
            
            .footer-column {
                flex: 1 1 100%;
                min-width: 100%;
            }
            
            .copyright {
                font-size: 0.8rem;
            }
            
            /* Team Grid - 2 columns on tablets */
            .team-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            /* Timeline responsive */
            .wave-container {
                height: 400px;
                margin: 40px auto;
            }
            
            .year-circle {
                width: 60px;
                height: 60px;
                font-size: 1.1rem;
            }
            
            .history-title h2 {
                font-size: 2rem;
            }
        }

        @media (max-width: 480px) {
            .about-hero h1 {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 1.6rem;
                margin-bottom: 2rem;
            }
            
            .menu-nav a {
                font-size: 1.5rem;
                gap: 1rem;
            }
            
            .menu-header {
                top: 1.5rem;
                right: 1.5rem;
            }
            
            .menu-footer {
                bottom: 1.5rem;
                padding: 0 4vw;
            }
            
            .member-info {
                padding: 1.5rem;
            }
            
            .member-name {
                font-size: 1.3rem;
            }
            
            /* Team Grid - 1 column on mobile */
            .team-grid {
                grid-template-columns: 1fr;
            }
            
            /* Timeline responsive */
            .wave-container {
                height: 350px;
            }
            
            .year-circle {
                width: 55px;
                height: 55px;
                font-size: 1rem;
            }
            
            .traveling-dot {
                width: 20px;
                height: 20px;
            }
            
            .year-tooltip {
                display: none;
            }
        }

        /* Touch device optimizations */
        @media (hover: none) and (pointer: coarse) {
            .team-member:hover,
            .team-card:hover,
            .btn-large:hover,
            .member-social a:hover,
            .team-card-social a:hover {
                transform: none;
            }
            
            .team-member:hover,
            .team-card:hover {
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            }
            
            .btn-large:hover {
                background: transparent;
                color: var(--accent);
                box-shadow: none;
            }
            
            .member-social a:hover,
            .team-card-social a:hover {
                background: rgba(255, 255, 255, 0.05);
                color: var(--muted);
            }
        }
