* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background: #f9fafb;
}
.nav-logo img{
    display:inline;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 500px;
    background: linear-gradient(135deg, #020180 0%, #678fff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 78px;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="%23ffffff" opacity="0.1"><polygon points="0,0 1000,100 1000,0"/></svg>');
    background-size: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

/* Main Content */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

/* Project Overview */
.project-overview {
    text-align: center;
    margin-bottom: 5rem;
}

.project-overview h2 {
    font-size: 2.5rem;
    color: #020180;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.project-overview p {
    font-size: 1.2rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Team Section */
.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #020180;
    margin-bottom: 3rem;
    font-weight: 600;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

/* Team Member Cards */
.team-member {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.team-member::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #020180, #678fff);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(2, 1, 128, 0.15);
}

.member-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px;
    /* centers and spaces below */
    position: relative;
}

.member-avatar img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center 20%;
    /* move image down; adjust % as needed */
}

.member-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.member-role {
    font-size: 1.1rem;
    color: #020180;
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.member-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.skill-tag {
    background: #f0f0ff;
    color: #020180;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Mission Section */
.mission-section {
    background: linear-gradient(135deg, #f8f9ff, #ffffff);
    border-radius: 20px;
    padding: 3rem;
    margin: 4rem 0;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.mission-section h2 {
    font-size: 2.2rem;
    color: #020180;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.mission-section p {
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Stats Section */
.stats-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #020180;
    display: block;
}

.stat-label {
    color: #666;
    font-size: 1rem;
    margin-top: 0.5rem;
}

/* Footer styles (from your original) */
.footer {
    background: #d3d3d3;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 2rem 3vw;
    font-family: "Helvetica Neue", Arial, sans-serif;
    gap: 2rem;
}

.footer-col {
    flex: 1 1 0;
    min-width: 220px;
}

.logo-placeholder {
    width: 100px;
    height: 100px;
}

.footer-col.about p {
    margin: 0 0 1rem 0;
    color: #222;
    font-size: 1rem;
    line-height: 1.4;
}

.footer-col.about a {
    color: #222;
    text-decoration: underline;
    font-size: 1rem;
}

.footer-col.contact h3,
.footer-col.links h3 {
    font-weight: bold;
    margin-bottom: 1rem;
    color: #111;
    font-size: 1.1rem;
}

.footer-col.contact ul,
.footer-col.links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col.contact li {
    display: flex;
    align-items: center;
    margin-bottom: 0.7rem;
    color: #222;
    font-size: 1rem;
    gap: 0.7em;
}

.footer-col.contact .icon {
    font-size: 1.2em;
}

.footer-col.links li {
    margin-bottom: 0.7rem;
}

.footer-col.links a {
    color: #222;
    text-decoration: underline;
    font-size: 1rem;
}

.footer-col h4 {
    font-weight: bold;
    margin-bottom: 1rem;
    color: #111;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 900px) {

    .footer {
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
    }

    .footer-col {
        min-width: 0;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .team-member {
        padding: 2rem;
    }

    .main-content {
        padding: 2rem 1rem;
    }

    .mission-section {
        padding: 2rem;
        margin: 2rem 0;
    }

    .stats-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }


}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .stats-section {
        grid-template-columns: 1fr;
    }
}
