/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --coop-blue: #2563eb;
    --coop-orange: #f97316;
    --coop-yellow: #fbbf24;
    --coop-white: #ffffff;
    --dark-blue: #1e40af;
    --light-gray: #f8fafc;
    --medium-gray: #64748b;
    --dark-gray: #1e293b;
}

body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
line-height: 1.6;
color: var(--dark-gray);
}


/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.5rem; }

@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--coop-white);
    padding: 1rem 5%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-gray);
    text-decoration: none;
}

.logo-icon{
    width: 36px;
    height: 36px;
    /* background: linear-gradient(135deg, var(--coop-blue), var(--coop-orange)); */
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
}

.logo-icon img {
    width: 80px;
    border-radius: 8px;
    font-weight: 800;
    margin-right: 50px;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    background-color: var(--coop-orange);
    border-radius: 5px;
    padding: 10px 10px;
}

.nav-links a.active {
    background-color: var(--coop-orange);
    border-radius: 5px;
    padding: 10px 10px;
    color: white;
}

.nav-cta {
    background: var(--coop-blue);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s;
}

.nav-cta:hover {
    background: var(--dark-blue);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.mobile-menu span {
    width: 24px;
    height: 2px;
    background: var(--dark-gray);
    transition: 0.3s;
}

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



body {
font-family: 'Segoe UI', sans-serif;
line-height: 1.6;
background: #f9f9f9;
color: #333;
}

/* Container */
.container {
width: 90%;
max-width: 1200px;
margin: 0 auto;
}

/* Mentors Section */
.mentors-section {
display: flex;
flex-wrap: wrap;
gap: 2rem;
justify-content: center;
padding: 3rem 0;
margin-top: 50px;
}


.mentor-card {
background: #fff;
border-radius: 12px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
width: 300px;
padding: 1.5rem;
text-align: center;
transition: transform 0.3s ease;
}

.mentor-card:hover {
transform: translateY(-5px);
}

.mentor-card img {
width: 100%;
height: auto;
border-radius: 10px;
margin-bottom: 1rem;
}

/* Read More Button */
.read-more-btn {
margin-top: 0.75rem;
background-color: #005792;
color: white;
border: none;
padding: 0.5rem 1rem;
font-size: 0.9rem;
border-radius: 6px;
cursor: pointer;
transition: background-color 0.3s ease;
}

.read-more-btn:hover {
background-color: #003f6f;
}


/* Footer */
footer {
    background: var(--dark-blue);
    color: white;
    padding: 3rem 5% 2rem;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    margin-bottom: 1rem;
    color: var(--coop-yellow);
}

.footer-brand p {
    color: var(--coop-white);
    line-height: 1.7;
}

.footer-links h4 {
    margin-bottom: 1.5rem;
    color: var(--coop-yellow);
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: var(--coop-white);
    text-decoration: none;
    display: block;
    padding: 0.4rem 0;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--coop-orange);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #334155;
    color: var(--coop-white);
    font-size: 0.9rem;
}

@media (max-width: 1024px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hours-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links, .nav-cta {
        display: none;
    }
    
    .mobile-menu {
        display: flex;
    }
    

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .btn-group {
        flex-direction: column;
        align-items: center;
    }
    
    .hero {
        text-align: center;
        padding-top: 7rem;
    }
    
    .story-container {
        text-align: center;
    }
    
    .team-grid, .values-grid {
        grid-template-columns: 1fr;
    }
}

@media screen {
    .mentorimage img{
        width: 80%;
    }

    
    .section-header{
        margin-top: 10%;
    }
}

