      * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        body {
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
            color: #fff;
            min-height: 100vh;
            overflow-x: hidden;
        }

        /* Enhanced Navigation */
        .nav-container {
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .navbar {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .nav-logo-link {
            display: flex;
            align-items: center;
            gap: 1rem;
            text-decoration: none;
            transition: transform 0.3s ease;
        }

        .nav-logo-link:hover {
            transform: scale(1.05);
        }

        .nav-img {
            height: 40px;
            width: auto;
            filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
        }

        .nav-text {
            color: #fff;
            font-size: clamp(1.2rem, 4vw, 1.8rem);
            font-weight: 700;
            background: linear-gradient(45deg, #fff, #b99af0);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

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

        .nav-btn {
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 0.6rem 1.2rem;
            border-radius: 30px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .nav-btn a {
            color: #fff;
            text-decoration: none;
            font-weight: 500;
            font-size: clamp(0.8rem, 2vw, 1rem);
            white-space: nowrap;
        }

        .nav-btn:hover {
            background: rgba(185, 154, 240, 0.1);
            border-color: #b99af0;
            transform: translateY(-2px);
        }

        /* Enhanced Card Container */
        .sec6-container {
            margin-top: max(80px, 15vh);
            padding: 1rem;
            min-height: calc(100vh - 200px);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Improved Card Design */
        .speaker-card {
            width: min(90%, 320px);
            height: auto;
            min-height: 480px;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: clamp(1rem, 5vw, 2rem);
            position: relative;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .speaker-image {
            width: min(180px, 60vw);
            height: min(180px, 60vw);
            border-radius: 50%;
            border: 4px solid rgba(185, 154, 240, 0.5);
            object-fit: cover;
            margin-bottom: 2rem;
            transition: all 0.5s ease;
        }

        .name {
            font-size: clamp(1.5rem, 5vw, 2rem);
            text-align: center;
            font-weight: 700;
            margin-bottom: 1rem;
            background: linear-gradient(45deg, #fff, #b99af0);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .skills {
            background: rgba(185, 154, 240, 0.1);
            color: #fff;
            padding: 0.5rem 1.5rem;
            border-radius: 20px;
            font-size: clamp(0.9rem, 2.5vw, 1rem);
            margin-bottom: 1rem;
            border: 1px solid rgba(185, 154, 240, 0.3);
            text-align: center;
        }

        .role {
            color: #b99af0;
            font-size: clamp(1rem, 3vw, 1.2rem);
            margin-bottom: 2rem;
            text-align: center;
        }

        /* Enhanced Social Links */
        .social {
            display: flex;
            gap: clamp(0.5rem, 2vw, 1rem);
            margin-top: auto;
            padding-top: 1rem;
        }

        .social-ico-href {
            width: clamp(40px, 12vw, 45px);
            height: clamp(40px, 12vw, 45px);
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: center;
            align-items: center;
            color: #fff;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: clamp(1rem, 3vw, 1.2rem);
        }

        .copyright {
            text-align: center;
            color: rgba(255, 255, 255, 0.5);
            padding: 1.5rem;
            font-size: clamp(0.8rem, 2vw, 1rem);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* Enhanced Mobile Responsiveness */
        @media (max-width: 480px) {
            .navbar {
                padding: 0.8rem;
            }

            .nav-logo-link {
                gap: 0.5rem;
            }

            .nav-img {
                height: 30px;
            }

            .nav-links {
                gap: 0.5rem;
            }

            .nav-btn {
                padding: 0.5rem 1rem;
            }

            .sec6-container {
                margin-top: 100px;
            }

            .speaker-card {
                padding: 1.5rem;
            }
        }

        /* Animation Enhancements */
        @media (hover: hover) {
            .speaker-card:hover {
                transform: translateY(-10px);
                border-color: #b99af0;
                box-shadow: 0 20px 40px rgba(185, 154, 240, 0.2);
            }

            .speaker-card:hover .speaker-image {
                transform: scale(1.05);
                border-color: #b99af0;
            }

            .social-ico-href:hover {
                background: #b99af0;
                border-color: transparent;
                transform: translateY(-5px);
                color: #000;
            }
        }
        @media (max-width: 480px) {
    .navbar {
        padding: 0.8rem;
    }

    .nav-logo-link {
        gap: 0.5rem;
    }

    .nav-img {
        height: 30px;
    }

    .nav-text {
        display: none; /* Hide the text near the logo */
    }

    .nav-links {
        gap: 0.5rem;
    }

    .nav-btn {
        padding: 0.5rem 1rem;
    }

    .sec6-container {
        margin-top: 100px;
    }

    .speaker-card {
        padding: 1.5rem;
    }
}
/* Previous base styles remain same */

        .page-title {
            text-align: center;
            margin-top: 120px;
            margin-bottom: 2rem;
            font-size: clamp(2rem, 5vw, 3rem);
            background: linear-gradient(45deg, #fff, #b99af0);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            animation: titleFloat 3s ease-in-out infinite;
        }

        .nexus-badge {
            text-align: center;
            margin-bottom: 3rem;
            color: #b99af0;
            font-size: clamp(1rem, 3vw, 1.2rem);
            opacity: 0;
            animation: fadeIn 1s ease forwards 0.5s;
        }

        .sec6-container {
            margin-top: 2rem;
            padding: 2rem;
            min-height: calc(100vh - 400px);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 3rem;
            flex-wrap: wrap;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        .speaker-card {
            opacity: 0;
            animation: cardFloat 1s ease forwards;
        }

        .speaker-card:nth-child(1) {
            animation-delay: 0.3s;
        }

        .speaker-card:nth-child(2) {
            animation-delay: 0.6s;
        }

        /* Enhanced Bottom Section */
        .bottom {
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
            padding: 2rem;
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 4rem;
        }

        .designers {
            margin-bottom: 1rem;
            line-height: 1.6;
            color: #fff;
            font-size: clamp(0.9rem, 2.5vw, 1rem);
        }

        .name-student {
            color: #b99af0;
            text-decoration: none;
            transition: all 0.3s ease;
            font-weight: 600;
        }

        .name-student:hover {
            color: #fff;
            transform: translateY(-2px);
        }

        .club-name {
            color: var(--accent);
            text-decoration: none;
            font-weight: 600;
            position: relative;
            padding: 0 5px;
        }

        .club-name::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 2px;
            background: #b99af0;
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .club-name:hover::after {
            transform: scaleX(1);
        }

        .disclaimer {
            font-size: clamp(0.8rem, 2vw, 0.9rem);
            color: rgba(255, 255, 255, 0.7);
            max-width: 800px;
            margin: 1rem auto 0;
            line-height: 1.4;
        }

        /* Enhanced Animations */
        @keyframes titleFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        @keyframes cardFloat {
            0% {
                opacity: 0;
                transform: translateY(30px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        /* Enhanced hover effects */
        .speaker-card {
            transform-style: preserve-3d;
            perspective: 1000px;
        }

        .speaker-card:hover {
            transform: translateY(-10px) rotateX(5deg) rotateY(5deg);
            box-shadow: 0 20px 40px rgba(185, 154, 240, 0.2);
        }

        .speaker-image {
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .speaker-card:hover .speaker-image {
            transform: scale(1.05) translateZ(20px);
            border-color: #b99af0;
        }

        .social-ico-href {
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .social-ico-href:hover {
            transform: translateY(-5px) scale(1.1);
            background: #b99af0;
            color: #000;
        }

