          * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: #e8e8e8;
            background: #000000;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(0, 0, 0, 0.98);
            backdrop-filter: blur(20px);
            padding: 1.5rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: #ffffff;
            letter-spacing: -0.5px;
        }

         .achievements {
            color: #ddd;
            padding: 60px 20px;
            max-width: 900px;
            margin: 0 auto;
            text-align: left;
        }
        .achievements h2 {
            font-size: 2rem;
            color: #ffffff;
            text-align: center;
            margin-bottom: 2rem;
        }
        .achievements-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .achievement-item {
            display: flex;
            align-items: center;
            background: #111;
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 3px 10px rgba(255, 255, 255, 0.05);
            transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
            cursor: pointer;
        }
        .achievement-item:hover {
            transform: translateY(-5px) scale(1.02);
            background: #0f0f0f;
            box-shadow: 0 0 15px rgba(255, 255, 255, 0.15);
        }
        .icon-box {
            background: #0d0d0d;
            border: 1px solid #ffffff;
            color: #ffffff;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            margin-right: 15px;
            font-size: 1.3rem;
            flex-shrink: 0;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
        }
        .achievement-item:hover .icon-box {
            transform: rotate(10deg) scale(1.1);
            box-shadow: 0 0 10px #ffffff;
        }
        .achievement-text h4 {
            margin: 0 0 6px;
            font-size: 1.2rem;
            color: #fff;
        }
        .achievement-text p {
            margin: 0;
            font-size: 0.95rem;
            color: #aaa;
        }
        
        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
        }
        .nav-links a {
            text-decoration: none;
            color: #a0a0a0;
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.3s ease;
            position: relative;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #ffffff;
            transition: width 0.3s ease;
        }
        .nav-links a:hover {
            color: #ffffff;
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #ffffff;
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0.5rem;
            z-index: 101;
        }
        .hamburger .fa-times {
            display: none;
        }
        .hamburger.active .fa-bars {
            display: none;
        }
        .hamburger.active .fa-times {
            display: inline;
        }
        .hero {
            padding: 4rem 0 8rem;
            text-align: center;
            color: #ffffff;
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: radial-gradient(ellipse at center, rgba(30, 30, 30, 0.5) 0%, rgba(0, 0, 0, 1) 70%);
            position: relative;
            overflow: hidden;
            background: #0b0b0b;
            color: white;
        }
        #particles-js {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
            pointer-events: none;
        }
        .scroll-down {
            text-align: center;
            color: #ffffff;
            font-size: 1.5rem;
            margin-top: 40px;
            animation: bounce 1.5s infinite;
        }
        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(8px); }
        }
        .hero-content {
            position: relative;
            z-index: 2;
            padding-top: 3rem;
        }
        .hero h1 {
            font-size: 5rem;
            margin-bottom: 1rem;
            font-weight: 800;
            letter-spacing: -2px;
            background: linear-gradient(135deg, #ffffff 0%, #a0a0a0 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero .subtitle {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            color: #a0a0a0;
            font-weight: 400;
        }
        .hero .description {
            font-size: 1.2rem;
            max-width: 750px;
            margin: 0 auto 3rem;
            color: #909090;
            line-height: 1.8;
        }
        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
        }
        .btn {
            padding: 0.75rem 1.5rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            max-width: 200px;
            text-align: center;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .btn-primary {
            background: #ffffff;
            color: #000000;
        }
        .btn-primary:hover {
            transform: translateY(-2px);
            background: #e0e0e0;
            box-shadow: 0 10px 40px rgba(255, 255, 255, 0.3);
        }
        .btn-secondary {
            background: transparent;
            color: #ffffff;
            border: 1.5px solid #ffffff;
        }
        .btn-secondary:hover {
            border-color: #e0e0e0;
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
        }
        section {
            padding: 6rem 0;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }
        .section-title {
            text-align: center;
            font-size: 3rem;
            margin-bottom: 3rem;
            color: #ffffff;
            font-weight: 700;
            letter-spacing: -1px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }
        .about-me {
            text-align: center;
            background: #000000;
        }
        .about-me p {
            font-size: 1.15rem;
            color: #a0a0a0;
            max-width: 850px;
            margin: 0 auto 2rem;
            line-height: 1.9;
        }
        .about-me img {
            max-width: 250px;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(255, 255, 255, 0.1);
            margin-bottom: 2rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
            filter: grayscale(100%);
            transition: filter 0.8s ease, transform 0.4s ease;
        }
        .about-me img:hover {
            filter: grayscale(0%) brightness(1.1);
            transform: scale(1.03);
            box-shadow: 0 0 25px rgba(255, 255, 255, 0.2);
        }
        .ventures-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        .venture-card {
            background: rgba(255, 255, 255, 0.02);
            padding: 2.5rem;
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }
        .venture-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #ffffff, transparent);
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        .venture-card:hover {
            transform: translateY(-8px);
            border-color: rgba(255, 255, 255, 0.2);
            background: rgba(255, 255, 255, 0.04);
        }
        .venture-card:hover::before {
            opacity: 1;
        }
        .venture-card h3 {
            color: #ffffff;
            margin-bottom: 1rem;
            font-size: 1.6rem;
            font-weight: 600;
        }
        .venture-card .year {
            display: inline-block;
            background: rgba(255, 255, 255, 0.1);
            color: #ffffff;
            padding: 0.4rem 1rem;
            border-radius: 20px;
            font-size: 0.85rem;
            margin-bottom: 1rem;
            font-weight: 500;
        }
        .venture-card p {
            color: #a0a0a0;
            line-height: 1.7;
        }
        .achievements-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            margin-top: 3rem;
        }
        .achievement-item {
            background: rgba(255, 255, 255, 0.02);
            color: #ffffff;
            padding: 2rem;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            transition: all 0.3s ease;
        }
        .achievement-item:hover {
            border-color: rgba(255, 255, 255, 0.15);
            transform: translateY(-4px);
        }
        .achievement-item h4 {
            margin-bottom: 0.7rem;
            font-size: 1.15rem;
            font-weight: 600;
        }
        .achievement-item p {
            color: #909090;
            font-size: 0.95rem;
        }
        .recognition-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            justify-content: center;
            margin-top: 3rem;
        }
        .tag {
            background: rgba(255, 255, 255, 0.05);
            color: #e0e0e0;
            padding: 0.8rem 1.5rem;
            border-radius: 30px;
            font-size: 0.9rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }
        .tag:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: #ffffff;
            transform: translateY(-2px);
        }
        .experience-timeline {
            max-width: 800px;
            margin: 3rem auto;
        }
        .timeline-item {
            padding: 2rem;
            border-left: 2px solid rgba(255, 255, 255, 0.1);
            margin-bottom: 2rem;
            position: relative;
            padding-left: 2.5rem;
            transition: border-color 0.3s ease;
        }
        .timeline-item:hover {
            border-left-color: #ffffff;
        }
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -6px;
            top: 2rem;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ffffff;
            box-shadow: 0 0 0 4px rgba(0, 0, 0, 1), 0 0 0 6px rgba(255, 255, 255, 0.2);
        }
        .timeline-item h3 {
            color: #ffffff;
            margin-bottom: 0.5rem;
            font-size: 1.3rem;
            font-weight: 600;
        }
        .timeline-item .role {
            font-weight: 500;
            color: #909090;
            margin-bottom: 0.7rem;
            display: block;
        }
        .timeline-item p {
            color: #a0a0a0;
            line-height: 1.7;
        }
        .social-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-top: 3rem;
        }
        .social-links a {
            color: #808080;
            font-size: 1.8rem;
            transition: all 0.3s ease;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.02);
        }
        .social-links a:hover {
            color: #ffffff;
            border-color: #ffffff;
            background: rgba(255, 255, 255, 0.05);
            transform: translateY(-3px);
        }
        footer {
            background: #000000;
            color: #a0a0a0;
            text-align: center;
            padding: 3rem 0;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }
        .book-section {
            text-align: center;
            padding: 3rem;
            background: rgba(255, 255, 255, 0.02);
            border-radius: 16px;
            margin-top: 3rem;
            border: 1px solid rgba(255, 255, 255, 0.08);
        }
        .book-section h3 {
            font-size: 2rem;
            color: #ffffff;
            margin-bottom: 1rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }
        .book-section p {
            color: #a0a0a0;
        }
        .community-section {
            text-align: center;
            margin-top: 3rem;
            padding: 2.5rem;
            background: rgba(255, 255, 255, 0.02);
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.08);
        }
        .community-section h3 {
            color: #ffffff;
            margin-bottom: 1rem;
            font-size: 1.8rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }
        .community-section p {
            font-size: 1.1rem;
            color: #a0a0a0;
            line-height: 1.8;
        }
        .fellowship-section h3 {
            text-align: center;
            margin-top: 4rem;
            margin-bottom: 2rem;
            font-size: 2rem;
            color: #ffffff;
            font-weight: 600;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        @media (max-width: 768px) {
            .hero {
                padding: 2rem 0 4rem;
            }
            .hero h1 {
                font-size: 3rem;
            }
            .hero-content {
                padding-top: 2rem;
            }
            .hero .subtitle {
                font-size: 1.2rem;
            }
            .hero .description {
                font-size: 1rem;
            }
            .nav-links {
                gap: 1rem;
                font-size: 0.85rem;
            }
            .cta-buttons {
                flex-direction: column;
                width: 100%;
            }
            .btn {
                width: 100%;
                max-width: 250px;
                margin: 0 auto;
                padding: 0.75rem 1rem;
                font-size: 0.85rem;
            }
            .section-title {
                font-size: 2rem;
            }
            .ventures-grid {
                grid-template-columns: 1fr;
            }
            .social-links {
                gap: 1rem;
            }
            .social-links a {
                width: 45px;
                height: 45px;
                font-size: 1.5rem;
            }
        }
        @media (max-width: 630px) {
            .hamburger {
                display: block;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background: rgba(0, 0, 0, 0.95);
                padding: 1rem;
                text-align: center;
                z-index: 100;
                transition: transform 0.3s ease-in-out;
                transform: translateY(-100%);
            }
            .nav-links.active {
                display: flex;
                transform: translateY(0);
            }
            .nav-links li {
                margin: 0.5rem 0;
            }
            .nav-links a {
                font-size: 1rem;
                padding: 0.5rem;
                display: flex;
                justify-content: center;
            }
            .nav-links a::after {
                display: none;
            }
        }
