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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background-color: #000;
    color: #fff;
    min-height: 100vh;
    line-height: 1.6;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(12px);
    z-index: 50;
    border-bottom: 1px solid #1f2937;
}

nav .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #E43636;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: #E2DDB4;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 1rem;
}

.nav-link:hover {
    color: #E43636;
}

.nav-link.active {
    color: #E43636;
}

.nav-btn {
    padding: 0.5rem 1.5rem;
    background-color: #E43636;
    color: #fff;
    border: none;
    border-radius: 9999px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
}

.nav-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(228, 54, 54, 0.5);
}

/* Hero Section */
.about-hero {
    padding: 10rem 1.5rem 5rem;
    background: linear-gradient(135deg, #000 0%, #0a0a0a 100%);
}

.hero-content {
    text-align: center;
    max-width: 56rem;
    margin: 0 auto;
}

.about-hero h1 {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-highlight {
    color: #E43636;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #E2DDB4;
}

/* Introduction Section */
.introduction {
    padding: 5rem 1.5rem;
    background-color: #0a0a0a;
}

.introduction .container {
    max-width: 1280px;
    margin: 0 auto;
}

.intro-content {
    max-width: 56rem;
    margin: 0 auto;
}

.intro-content h2 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 2rem;
    text-align: center;
    color: #F6EFD2;
}

.intro-text {
    font-size: 1.125rem;
    color: #E2DDB4;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Team Section */
.team-section {
    padding: 5rem 1.5rem;
    background-color: #000;
}

.team-section .container {
    max-width: 1280px;
    margin: 0 auto;
}

.section-title {
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #E2DDB4;
    text-align: center;
    margin-bottom: 4rem;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 70rem;
    margin: 0 auto;
}

.team-card {
    background-color: #0a0a0a;
    border: 2px solid #E43636;
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s;
}

.team-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 20px 40px rgba(228, 54, 54, 0.3);
}

.team-image-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: linear-gradient(135deg, #E43636 0%, #0a0a0a 100%);
}

.team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

/* Specific styling for Chinmay's image */
#chinmay {
    object-fit: contain;
    object-position: center;
    background-color: #0a0a0a;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.team-info {
    padding: 2rem;
}

.team-name {
    font-size: 2rem;
    font-weight: bold;
    color: #F6EFD2;
    margin-bottom: 0.5rem;
}

.team-role {
    font-size: 1.25rem;
    color: #E43636;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.team-description {
    font-size: 1.125rem;
    color: #E2DDB4;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.linkedin-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.75rem;
    background-color: #E43636;
    color: #fff;
    border: none;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.linkedin-btn:hover {
    background-color: #c42e2e;
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(228, 54, 54, 0.5);
}

.linkedin-icon {
    width: 1.25rem;
    height: 1.25rem;
}

/* Mission Section */
.mission-section {
    padding: 5rem 1.5rem;
    background-color: #0a0a0a;
}

.mission-section .container {
    max-width: 1280px;
    margin: 0 auto;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.mission-card {
    padding: 2.5rem;
    background-color: #000;
    border: 2px solid #E43636;
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s;
}

.mission-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 20px 40px rgba(228, 54, 54, 0.3);
}

.mission-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.5rem;
    color: #E43636;
    transition: transform 0.3s;
}

.mission-card:hover .mission-icon {
    transform: scale(1.1);
}

.mission-icon svg {
    width: 100%;
    height: 100%;
}

.mission-card h3 {
    font-size: 1.75rem;
    font-weight: bold;
    color: #F6EFD2;
    margin-bottom: 1rem;
}

.mission-card p {
    font-size: 1.125rem;
    color: #E2DDB4;
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    padding: 5rem 1.5rem;
    background: linear-gradient(135deg, #E43636 0%, #a82828 100%);
    text-align: center;
}

.cta-section h2 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #fff;
}

.cta-section p {
    font-size: 1.25rem;
    color: #F6EFD2;
    margin-bottom: 2rem;
}

.cta-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 9999px;
    font-weight: bold;
    font-size: 1.125rem;
    transition: all 0.3s;
}

.cta-btn:hover {
    background-color: #F6EFD2;
    color: #000;
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Footer */
footer {
    padding: 4rem 1.5rem 2rem;
    border-top: 1px solid #1f2937;
    background-color: #050505;
}

.container-footer-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    text-align: center;
}

.footer-info .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #E43636;
    margin-bottom: 1rem;
}

.footer-text {
    color: #E2DDB4;
    max-width: 24rem;
    margin: 0 auto;
}

.footer-contact h3 {
    color: #F6EFD2;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-contact p {
    margin-bottom: 0.5rem;
}

.footer-contact a {
    color: #E2DDB4;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: #E43636;
}

.footer-bottom {
    border-top: 1px solid #1f2937;
    padding-top: 2rem;
    text-align: center;
    width: 100%;
    max-width: 1280px;
    margin: 2rem auto 0;
}

.footer-copyright {
    color: #6b7280;
}

/* ============================================ */
/* RESPONSIVE DESIGN */
/* ============================================ */

/* Mobile devices (up to 640px) */
@media (max-width: 640px) {
    nav .nav-links {
        gap: 1rem;
    }

    .nav-link {
        font-size: 0.875rem;
    }

    .about-hero {
        padding: 7rem 1rem 4rem;
    }

    .about-hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .intro-content h2,
    .section-title,
    .cta-section h2 {
        font-size: 2rem;
    }

    .intro-text,
    .team-description,
    .mission-card p {
        font-size: 1rem;
    }

    .team-name {
        font-size: 1.5rem;
    }

    .team-role {
        font-size: 1rem;
    }

    .team-image-container {
        height: 300px;
    }

    .team-info {
        padding: 1.5rem;
    }

    .mission-card {
        padding: 1.5rem;
    }

    .mission-icon {
        width: 3rem;
        height: 3rem;
    }

    .mission-card h3 {
        font-size: 1.5rem;
    }
}

/* Tablets (640px and up) */
@media (min-width: 640px) {
    .container-footer-grid {
        flex-direction: row;
        gap: 3rem;
        justify-content: space-around;
    }

    .footer-info,
    .footer-contact {
        text-align: left;
    }

    .footer-text {
        margin: 0;
    }
}

/* Large tablets and small desktops (768px and up) */
@media (min-width: 768px) {
    .about-hero h1 {
        font-size: 4.5rem;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .mission-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .container-footer-grid {
        gap: 4rem;
    }
}

/* Large desktops (1024px and up) */
@media (min-width: 1024px) {
    .about-hero h1 {
        font-size: 5rem;
    }

    .section-title,
    .intro-content h2,
    .cta-section h2 {
        font-size: 3.5rem;
    }

    .container-footer-grid {
        gap: 8rem;
    }
}

/* Extra large screens (1280px and up) */
@media (min-width: 1280px) {
    .about-hero h1 {
        font-size: 5.5rem;
    }

    .container-footer-grid {
        gap: 12rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
    }

    .nav-link {
        font-size: 0.875rem;
    }

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

@media (max-width: 640px) {
    .nav-links {
        display: none;
        /* Hide links on very small screens */
    }

    /* Show only contact button on mobile */
    .nav-btn {
        display: block;
    }
}