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

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background: #0d0221;
            color: #fff;
            overflow-x: hidden;
        }

        /* Animated gradient background */
        .bg-gradient {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background: linear-gradient(135deg, #0d0221 0%, #1a0b3a 50%, #0d0221 100%);
        }

        .bg-gradient::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 107, 107, 0.15) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
        }

        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Floating particles */
        .particle {
            position: fixed;
            width: 4px;
            height: 4px;
            background: rgba(255, 107, 107, 0.6);
            border-radius: 50%;
            pointer-events: none;
            animation: float 15s infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) translateX(0); opacity: 0; }
            10% { opacity: 1; }
            90% { opacity: 1; }
            100% { transform: translateY(-100vh) translateX(50px); opacity: 0; }
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 1.5rem 5%;
            background: rgba(13, 2, 33, 0.9);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 107, 107, 0.2);
            z-index: 100;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #ff6b6b, #feca57);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

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

        .nav-links a {
            color: #e0e0e0;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #ff6b6b, #feca57);
            transition: width 0.3s;
        }

        .nav-links a:hover {
            color: #ff6b6b;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 8rem 5% 4rem;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(255, 107, 107, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation: heroGlow 8s ease-in-out infinite;
        }

        @keyframes heroGlow {
            0%, 100% {
                transform: translate(-50%, -50%) scale(1);
                opacity: 0.3;
            }
            50% {
                transform: translate(-50%, -50%) scale(1.3);
                opacity: 0.6;
            }
        }

        .hero-content {
            max-width: 1000px;
            animation: fadeInUp 1s ease-out;
            position: relative;
            z-index: 1;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero h1 {
            font-size: 5.5rem;
            font-weight: 900;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #fff, #ff6b6b, #feca57);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.1;
            animation: titleGlow 2s ease-in-out infinite alternate;
        }

        @keyframes titleGlow {
            from {
                filter: drop-shadow(0 0 20px rgba(255, 107, 107, 0.3));
            }
            to {
                filter: drop-shadow(0 0 40px rgba(255, 107, 107, 0.6));
            }
        }

        .hero .subtitle {
            font-size: 1.5rem;
            color: #b4b4b4;
            margin-bottom: 3rem;
            font-weight: 300;
            line-height: 1.6;
        }

        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 2rem;
        }

        .cta-button {
            display: inline-block;
            padding: 1rem 2.5rem;
            background: linear-gradient(135deg, #ff6b6b, #feca57);
            color: #fff;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: transform 0.3s, box-shadow 0.3s;
            box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
        }
        .cta-button2 {
            display: inline-block;
            padding: 1rem 2.5rem;
            background: linear-gradient(135deg, #cfecf7, #57d7fe);
            color: #fff;
            text-decoration: none;
            border-radius: 50px;
            margin-left: 10px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: transform 0.3s, box-shadow 0.3s;
            box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
        }

        .cta-button:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 15px 40px rgba(255, 107, 107, 0.5);
        }
        .cta-button2:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 15px 40px rgba(107, 255, 250, 0.5);
        }

        .cta-button-secondary {
            display: inline-block;
            padding: 1rem 2.5rem;
            background: transparent;
            color: #fff;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            border: 2px solid rgba(255, 107, 107, 0.5);
            transition: all 0.3s;
        }

        .cta-button-secondary:hover {
            background: rgba(255, 107, 107, 0.1);
            border-color: #ff6b6b;
            transform: translateY(-3px);
        }

        .powered-by {
            margin-top: 2rem;
            font-size: 0.9rem;
            color: #888;
        }

        .powered-by a {
            color: #ff6b6b;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s;
        }

        .powered-by a:hover {
            color: #feca57;
        }

        /* Mission Section */
        .mission {
            padding: 8rem 5%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-title {
            font-size: 3rem;
            font-weight: 800;
            text-align: center;
            margin-bottom: 3rem;
            background: linear-gradient(135deg, #fff, #0ea5e9);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .mission-content {
            background: rgba(255, 107, 107, 0.05);
            border: 1px solid rgba(255, 107, 107, 0.2);
            border-radius: 30px;
            padding: 4rem;
            backdrop-filter: blur(10px);
            transition: transform 0.3s;
        }

        .mission-content:hover {
            transform: translateY(-5px);
        }

        .mission-content p {
            font-size: 1.3rem;
            line-height: 2;
            color: #d0d0d0;
            text-align: center;
        }

        /* Talks Section */
        .talks {
            padding: 8rem 5%;
            background: rgba(255, 107, 107, 0.02);
        }

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

        .talks-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 2.5rem;
            margin-top: 4rem;
            justify-content: center;
        }

        .talk-card {
            background: rgba(139, 92, 246, 0.05);
            border: 1px solid rgba(139, 92, 246, 0.2);
            border-radius: 25px;
            padding: 0;
            transition: transform 0.3s, box-shadow 0.3s;
            position: relative;
            overflow: hidden;
            flex: 1 1 380px;
            max-width: 420px;
            display: flex;
            flex-direction: column;
        }

        .talk-card-image {
            width: 100%;
            height: 220px;
            overflow: hidden;
            position: relative;
        }

        .talk-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .talk-card:hover .talk-card-image img {
            transform: scale(1.1);
        }

        .talk-card-content {
            padding: 2.5rem;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .talk-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.1), transparent);
            transition: left 0.5s;
        }

        .talk-card:hover::before {
            left: 100%;
        }

        .talk-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(139, 92, 246, 0.3);
        }

        .talk-badge {
            display: inline-block;
            padding: 0.5rem 1rem;
            background: linear-gradient(135deg, #ff6b6b, #feca57);
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 1rem;
            position: absolute;
            top: 1rem;
            right: 1rem;
            z-index: 10;
            box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
        }

        .talk-badge.upcoming {
            background: linear-gradient(135deg, #10b981, #06b6d4);
        }

        .talk-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #fff;
        }
        #butt{
            background: linear-gradient(135deg, #cfecf7, #57d7fe);
            color: #0d0221;
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 30px;
            font-weight: 600;
            box-shadow: 0 10px 30px rgba(14, 165, 233, 0.3);
            transition: transform 0.3s, box-shadow 0.3s;
            cursor: pointer;
            margin-bottom: 1rem;
        }

        .speaker-info {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin: 1.5rem 0;
        }

        .speaker-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, #ff6b6b, #feca57);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.2rem;
            overflow: hidden;
            border: 3px solid rgba(255, 107, 107, 0.3);
        }

        .speaker-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .speaker-details {
            flex: 1;
        }

        .speaker-name {
            font-weight: 600;
            color: #fff;
        }

        .speaker-title {
            font-size: 0.9rem;
            color: #b4b4b4;
        }

        .talk-meta {
            display: flex;
            gap: 1.5rem;
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 107, 107, 0.2);
            font-size: 0.9rem;
            color: #b4b4b4;
        }

        /* Stats Section */
        .stats {
            padding: 8rem 5%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-top: 4rem;
        }

        .stat-card {
            text-align: center;
            padding: 3rem 2rem;
            background: rgba(255, 107, 107, 0.05);
            border: 1px solid rgba(255, 107, 107, 0.2);
            border-radius: 25px;
            transition: transform 0.3s;
        }

        .stat-card:hover {
            transform: scale(1.05);
        }

        .stat-number {
            font-size: 4rem;
            font-weight: 900;
            background: linear-gradient(135deg, #ff6b6b, #feca57);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stat-label {
            font-size: 1.2rem;
            color: #b4b4b4;
            margin-top: 1rem;
        }

        /* Student Voices Section */
        .student-voices {
            padding: 8rem 5%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
            margin-top: 4rem;
        }

        .testimonial-card {
            background: rgba(255, 107, 107, 0.05);
            border: 1px solid rgba(255, 107, 107, 0.2);
            border-radius: 25px;
            padding: 2.5rem;
            transition: transform 0.3s, box-shadow 0.3s;
            position: relative;
            margin-bottom: 5%;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(255, 107, 107, 0.2);
        }

        .quote-icon {
            font-size: 3rem;
            color: rgba(255, 107, 107, 0.3);
            line-height: 1;
            margin-bottom: 1rem;
        }

        .testimonial-text {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #d0d0d0;
            margin-bottom: 2rem;
            font-style: italic;
        }

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

        .student-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, #ff6b6b, #feca57);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            color: #fff;
        }

        .student-details {
            flex: 1;
        }

        .student-name {
            font-weight: 600;
            color: #fff;
            margin-bottom: 0.25rem;
        }

        .student-college {
            font-size: 0.9rem;
            color: #888;
        }

        /* Footer */
        footer {
            padding: 4rem 5%;
            background: rgba(13, 2, 33, 0.9);
            border-top: 1px solid rgba(255, 107, 107, 0.2);
            text-align: center;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
        }

        .footer-logo {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(135deg, #0ea5e9, #06b6d4);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
        }

        .footer-text {
            color: #b4b4b4;
            margin-bottom: 2rem;
        }

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

        .social-links a {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(14, 165, 233, 0.1);
            border: 1px solid rgba(14, 165, 233, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

        .social-links a:hover {
            background: linear-gradient(135deg, #0ea5e9, #06b6d4);
            transform: translateY(-3px);
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 3rem;
            }

            .nav-links {
                display: none;
            }

            .talks-grid {
                grid-template-columns: 1fr;
            }

            .mission-content {
                padding: 2rem;
            }
        }
/* --- TEAM SECTION --- */
.team-section {
    padding: 8rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.team-section .section-title {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.team-section .subtitle {
    font-size: 1.2rem;
    color: #b4b4b4;
    max-width: 800px;
    margin: 0 auto 4rem;
    line-height: 1.6;
}

/* Grid layout */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

/* Team Cards */
.team-card {
    
    background: rgba(224, 132, 132, 0.05);
    border: 1px solid rgba(255, 107, 107, 0.2);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 107, 107, 0.25);
}

/* Member Image */
.team-image {
    width: 100%;
    height: 380px;
   
    background-position: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Gradient variations */
.team-image.img2 {
    background: linear-gradient(135deg, #1a0b3a, #3f2182);
}
.team-image.img3 {
    background: linear-gradient(135deg, #0d0221, #5723a0);
}
.team-image.img4 {
    background: linear-gradient(135deg, #1e163e, #7e3ff2);
}

/* Card Content */
.team-content {
    padding: 2rem;
    text-align: left;
}

.member-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.member-role {
    font-size: 1.1rem;
    color: #feca57;
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-description {
    font-size: 1rem;
    color: #d0d0d0;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.email-icon {
    background-color: rgba(14, 165, 233, 0.1);
    color: #06b6d4;
}

.email-icon:hover {
    background-color: #06b6d4;
    color: #0d0221;
    transform: scale(1.1);
}

.linkedin-icon {
    background-color: rgba(255, 107, 107, 0.1);
    color: #ff6b6b;
}

.linkedin-icon:hover {
    background-color: #ff6b6b;
    color: #fff;
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
    .team-section .section-title {
        font-size: 2.3rem;
    }
    .team-section .subtitle {
        font-size: 1rem;
    }
}
