@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

:root {
    --bg-color: #0D1117;
    --text-color: #C9D1D9;
    --text-secondary: #8B949E;
    --accent-blue: #58A6FF;
    --accent-purple: #D2A8FF;
    --accent-pink: #FF7B72;
    --card-bg: rgba(13, 17, 23, 0.8);
    --hover-bg: rgba(88, 166, 255, 0.1);
}

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--accent-blue);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    transition: 0.1s;
    z-index: 9999;
}

.cursor-follower {
    width: 8px;
    height: 8px;
    background-color: var(--accent-purple);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    transition: 0.2s;
    z-index: 9999;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    z-index: 100;
    background-color: rgba(13, 17, 23, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(88, 166, 255, 0.1);
    height: 80px;
    display: flex;
    align-items: center;
}

/* Navigation Bar Styling */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #1f2937, #111827);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

nav .logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ff6f61;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

nav .logo:hover {
    transform: scale(1.1) rotate(-3deg);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1rem;
}

nav ul li {
    position: relative;
}

nav ul li a {
    color: #ffffff; /* Clean white text */
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.4s ease;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    background: linear-gradient(90deg, transparent 50%, #ff6f61 50%);
    background-size: 200%;
    background-position: left;
}

nav ul li a:hover {
    color: #1f2937; /* Dark text for contrast */
    background-position: right; /* Animate gradient fill */
    text-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
    transform: translateY(-3px); /* Lift effect */
    box-shadow: 0 4px 6px rgba(255, 111, 97, 0.3); /* Glow effect */
}

/* Add an underline reveal effect */
nav ul li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 3px;
    background: #ff6f61;
    transition: width 0.4s ease;
    border-radius: 50px;
}

nav ul li a:hover::after {
    width: 100%;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
}


.section {
    min-height: 100vh;
    padding-top: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.animated-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg, 
        rgba(88, 166, 255, 0.1),
        rgba(210, 168, 255, 0.1),
        rgba(255, 123, 114, 0.1)
    );
    z-index: -1;
    opacity: 0.7;
    animation: gradientMove 15s ease infinite;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 80px);
    padding: 0 2rem;
    text-align: center;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.main-title {
    text-align: center;
    margin-bottom: 4rem;
    width: 100%;
    padding-top: 4rem;
}

.mega-title {
    font-size: 12rem;
    font-weight: 900;
    line-height: 0.9;
    margin: 0;
    letter-spacing: -4px;
    background: linear-gradient(45deg, var(--accent-blue), var(--accent-purple));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 30px rgba(88, 166, 255, 0.3);
    display: block;
}

.mega-title.outline {
    margin-top: -1rem;
    color: transparent;
    -webkit-text-stroke: 3px var(--accent-pink);
    background: none;
}

.subtitle {
    font-size: 2.5rem;
    color: var(--text-secondary);
    margin: 2rem 0 4rem;
    font-weight: 300;
    letter-spacing: 3px;
}

h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, var(--accent-blue), var(--accent-purple));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--accent-pink);
}

p {
    font-size: 1.2rem;
    max-width: 800px;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

.highlight {
    color: var(--accent-purple);
}

.skills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.skill {
    background-color: var(--card-bg);
    color: var(--accent-blue);
    padding: 0.8rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid rgba(88, 166, 255, 0.2);
    transition: all 0.3s ease;
}

.skill:hover {
    border-color: var(--accent-blue);
    transform: translateY(-2px);
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
}

.project-card {
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(88, 166, 255, 0.1);
    transition: all 0.3s ease;
}

.project-card:hover {
    border-color: var(--accent-blue);
    transform: translateY(-5px);
}

.project-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-purple);
}

form {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 500px;
    gap: 1rem;
}

input, textarea {
    padding: 1rem;
    border: 1px solid rgba(88, 166, 255, 0.2);
    border-radius: 6px;
    background-color: var(--card-bg);
    color: var(--text-color);
    transition: all 0.3s ease;
}

input:focus, textarea:focus {
    border-color: var(--accent-blue);
    outline: none;
    box-shadow: 0 0 0 3px rgba(88, 166, 255, 0.1);
}

button {
    padding: 1rem 2rem;
    border: none;
    border-radius: 6px;
    background: linear-gradient(to right, var(--accent-blue), var(--accent-purple));
    color: var(--bg-color);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(88, 166, 255, 0.2);
}

footer {
    display: flex;
    justify-content: space-between; /* Space between left and right content */
    align-items: center; /* Vertically align the content */
    padding: 1rem;
    background-color: #151c26; /* Dark background */
    color: #ffffff; /* White text */
    font-size: 1rem;
}

.footer-left {
    flex: 1; /* Push content to the left */
}

.footer-right {
    flex: 1; /* Push content to the right */
    text-align: right;
}

.footer-right a {
    color: #ff6f61; /* Link color */
    text-decoration: none; /* Remove underline */
    font-weight: bold;
}

.footer-right a:hover {
    text-decoration: underline; /* Add underline on hover */
}

footer span {
    color: red; /* Heart symbol color */
}


@media (max-width: 1200px) {
    .mega-title {
        font-size: 10rem;
    }
}

@media (max-width: 768px) {
    .mega-title {
        font-size: 6rem;
        letter-spacing: -2px;
    }

    .mega-title.outline {
        margin-top: -0.5rem;
        -webkit-text-stroke: 2px var(--accent-pink);
    }

    .subtitle {
        font-size: 1.8rem;
        margin: 1.5rem 0 3rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    p {
        font-size: 1rem;
    }

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

    nav ul {
        gap: 1rem;
    }

    .section {
        padding: 3rem 1rem;
    }
}

@media (max-width: 480px) {
    .mega-title {
        font-size: 4rem;
    }

    .subtitle {
        font-size: 1.5rem;
    }
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Add these new styles */
.profile-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    width: 100%;
    max-width: 1200px;
    padding: 2rem;
}

.profile-wrapper {
    position: relative;
    width: 400px;
    height: 400px;
}

.profile-image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.profile-blob {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--accent-blue), var(--accent-purple));
    border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
    animation: blobAnimation 8s ease-in-out infinite;
    opacity: 0.3;
}

.profile-image {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
    animation: blobAnimation 8s ease-in-out infinite;
    padding: 10px;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.dot {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent-pink);
}

.circle {
    position: absolute;
    border: 2px solid var(--accent-blue);
    border-radius: 50%;
}

.dot-1 {
    top: 10%;
    left: 10%;
    animation: float 3s ease-in-out infinite;
}

.dot-2 {
    top: 80%;
    right: 10%;
    animation: float 4s ease-in-out infinite 1s;
}

.dot-3 {
    bottom: 20%;
    left: 20%;
    animation: float 3.5s ease-in-out infinite 0.5s;
}

.circle-1 {
    width: 30px;
    height: 30px;
    top: 20%;
    right: 20%;
    animation: float 4s ease-in-out infinite 1.5s;
}

.circle-2 {
    width: 20px;
    height: 20px;
    bottom: 15%;
    right: 30%;
    animation: float 3.5s ease-in-out infinite 0.7s;
}

.profile-content {
    text-align: left;
}

.subtitle {
    font-size: 1.5rem;
    color: var(--accent-purple);
    margin-bottom: 1.5rem;
}

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

.social-link {
    color: var(--text-color);
    font-size: 1.5rem;
    padding: 0.5rem;
    border-radius: 50%;
    background: var(--card-bg);
    border: 1px solid rgba(88, 166, 255, 0.2);
    transition: all 0.3s ease;
}

.social-link:hover {
    color: var(--accent-blue);
    border-color: var(--accent-blue);
    transform: translateY(-3px);
}

@keyframes blobAnimation {
    0% { border-radius: 60% 40% 30% 70%/60% 30% 70% 40%; }
    50% { border-radius: 30% 60% 70% 40%/50% 60% 30% 60%; }
    100% { border-radius: 60% 40% 30% 70%/60% 30% 70% 40%; }
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

/* Add responsive styles */
@media (max-width: 968px) {
    .profile-container {
        flex-direction: column;
        gap: 2rem;
    }

    .profile-wrapper {
        width: 300px;
        height: 300px;
    }

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

/* Add these new styles for the sections */

/* About Section */
.about-grid {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

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

.stat-item {
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    background: rgba(88, 166, 255, 0.05);
    border: 1px solid rgba(88, 166, 255, 0.1);
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-blue);
}

.stat-item i {
    font-size: 2rem;
    color: var(--accent-purple);
    margin-bottom: 1rem;
}

.stat-item h3 {
    color: var(--accent-blue);
    margin-bottom: 0.5rem;
}

/* Projects Section */
.project-card {
    background: rgba(13, 17, 23, 0.5);
    border: 1px solid rgba(88, 166, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.project-icon {
    font-size: 2.5rem;
    color: var(--accent-purple);
    margin-bottom: 1rem;
}

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

.tag {
    background: rgba(88, 166, 255, 0.1);
    color: var(--accent-blue);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
}

.project-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.project-link {
    color: var(--text-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.project-link:hover {
    color: var(--accent-blue);
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    font-size: 2rem;
    color: var(--accent-purple);
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(88, 166, 255, 0.05);
    border: 1px solid rgba(88, 166, 255, 0.1);
    border-radius: 8px;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.form-group label {
    position: absolute;
    left: 1rem;
    top: 1rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    pointer-events: none;
}

.form-group input:focus ~ label,
.form-group textarea:focus ~ label,
.form-group input:valid ~ label,
.form-group textarea:valid ~ label {
    top: -0.5rem;
    left: 0.5rem;
    font-size: 0.8rem;
    color: var(--accent-blue);
    background: var(--bg-color);
    padding: 0 0.5rem;
}

.submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, var(--accent-blue), var(--accent-purple));
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    color: var(--bg-color);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(88, 166, 255, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }

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

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

/* Add these new styles for members section */
.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
    padding: 2rem;
}

.member-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.member-image {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
    overflow: hidden;
    border-radius: 15px 0 0 15px;
    background: var(--card-bg);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.member-social {
    position: absolute;
    bottom: -10px; /* Start below the container */
    left: 0;
    width: 100%;
    padding: 1rem;
    background: rgba(21, 28, 38, 0.9);
    display: flex;
    justify-content: center;
    gap: 1rem; /* Fixed missing semicolon */
    transition: all 0.3s ease; /* Smooth transition for movement */
}

/* On hover: Slide up */
.member-social:hover {
    bottom: 0; /* Bring it into view */
}

.social-btn {
    color: white; /* Set the text/icon color to white */
    font-size: 2rem; /* Increase the size of the icons */
    display: inline-flex; /* Ensure proper alignment */
    justify-content: center;
    align-items: center;
    width: 60px; /* Adjust the size of the button */
    height: 60px; /* Make the button a square */
    border: 2px solid white; /* Optional: Add a border for better visibility */
    border-radius: 50%; /* Make the button circular */
    text-decoration: none; /* Remove underline on anchor tag */
    transition: all 0.3s ease; /* Add a smooth hover effect */
}

/* Hover effect for better interactivity */
.social-btn:hover {
    background-color: white; /* Change background color on hover */
    color: #333; /* Change icon color on hover */
    transform: scale(1.1); /* Slightly increase size on hover */
}


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

.member-info {
    padding: 1.5rem;
}

.member-info h3 {
    color: var(--accent-purple);
    margin-bottom: 0.5rem;
}

.role {
    color: var(--accent-blue);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* Gallery Styles */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    width: 100%;
    max-width: 1200px;
    padding: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: rgba(13, 17, 23, 0.9);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    bottom: 0;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}
/* Lightbox styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.lightbox-img {
    max-width: 90%;
    max-height: 80%;
    border-radius: 10px;
}

.lightbox-caption {
    color: white;
    margin-top: 1rem;
    font-size: 1.2rem;
    text-align: center;
}

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    transition: transform 0.2s;
}

.lightbox-close:hover {
    transform: scale(1.2);
}


.filter-btn {
    background: var(--card-bg);
    border: 1px solid var(--accent-blue);
    color: var(--text-color);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--accent-blue);
    color: var(--bg-color);
}

/* Group Stats */
.group-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
    width: 100%;
    max-width: 800px;
    padding: 2rem;
    background: rgba(13, 17, 23, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.stat {
    text-align: center;
    position: relative;
}

.stat::after {
    content: '';
    position: absolute;
    right: -2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: var(--accent-blue);
    opacity: 0.3;
}

.stat:last-child::after {
    display: none;
}

.number {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(45deg, var(--accent-blue), var(--accent-purple));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: block;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.label {
    color: var(--text-secondary);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Achievements Timeline */
.achievements-timeline {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.achievement-card {
    position: relative;
    padding: 2rem;
    margin-bottom: 2rem;
    border-left: 4px solid var(--accent-purple);
}

.achievement-date {
    position: absolute;
    left: -5rem;
    top: 50%;
    transform: translateY(-50%);
    background: var(--accent-purple);
    color: var(--bg-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .members-grid {
        grid-template-columns: 1fr;
    }

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

    .group-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .achievement-date {
        position: relative;
        left: 0;
        top: 0;
        transform: none;
        margin-bottom: 1rem;
        display: inline-block;
    }
}

/* Update carousel container styles */
.carousel-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    pointer-events: auto;
    margin-bottom: 4rem;
}

.carousel {
    position: relative;
    width: 100%;
    height: 550px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-item {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    padding: 0 4rem;
}

.carousel-item.active {
    opacity: 1;
    pointer-events: all;
    z-index: 1;
}

.member-card {
    width: 100%;
    max-width: 1100px;
    height: 100%;
    margin: 0 auto;
    background: rgba(13, 17, 23, 0.8);
    border: 2px solid var(--accent-purple);
    border-radius: 15px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.member-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 15px 0 0 15px;
    background: var(--card-bg);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.member-info {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    height: 100%;
}

.member-info h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--accent-purple);
}

.role {
    font-size: 1.2rem;
    color: var(--accent-blue);
    margin-bottom: 2rem;
}

.fun-facts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.fact {
    background: rgba(88, 166, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fun-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-pink);
    color: var(--bg-color);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: bold;
    transform: rotate(0deg);
    z-index: 2;
    white-space: nowrap;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(255, 123, 114, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.fun-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 123, 114, 0.4);
}

/* Update navigation buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--accent-purple);
    color: var(--bg-color);
    border-radius: 50%;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(210, 168, 255, 0.3);
}

.prev {
    left: 1rem;
}

.next {
    right: 1rem;
}

/* Update carousel dots */
.carousel-dots {
    position: absolute;
    bottom: -3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(210, 168, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-purple);
}

.dot.active {
    background: var(--accent-purple);
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(210, 168, 255, 0.5);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .member-card {
        width: 95%;
        max-width: 900px;
    }
}

@media (max-width: 1024px) {
    .carousel-container {
        padding: 0 4rem;
    }

    .member-card {
        grid-template-columns: 1fr;
        max-width: 600px;
    }

    .carousel-item {
        height: 700px;
    }

    .member-image {
        height: 40%;
        border-radius: 15px 15px 0 0;
    }

    .member-info {
        height: 60%;
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .carousel-container {
        padding: 0 3rem;
    }

    .carousel-item {
        height: 600px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .prev {
        left: 0.5rem;
    }

    .next {
        right: 0.5rem;
    }
}

/* Update section container */
#members.section {
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    overflow: hidden;
    position: relative;
}

#members h2 {
    position: absolute;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

/* Add visual feedback for paused state */
.carousel-item:hover .member-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-purple);
    z-index: 3;
    animation: pauseIndicator 1s ease infinite;
}

@keyframes pauseIndicator {
    0% { opacity: 0.5; }
    50% { opacity: 1; }
    100% { opacity: 0.5; }
}

/* Update quote container positioning */
.quote-container {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 3rem;
    background: rgba(13, 17, 23, 0.7);
    border: 1px solid rgba(88, 166, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 20px;
}

.quote-text {
    font-size: 1.8rem;
    line-height: 1.6;
}