/* 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);
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

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

h1 { font-size: 3.5rem; }
h2 { font-size: 2.8rem; }
h3 { font-size: 2rem; }

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 5%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.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;
}



/* Hero Section */
.hero-mentors {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background: linear-gradient(135deg, var(--dark-blue) 0%, #1a365d 100%);
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(251, 191, 36, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(251, 191, 36, 0.3);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.badge-icon {
    font-size: 1.2rem;
}

.hero-badge span:last-child {
    color: var(--coop-yellow);
    font-weight: 600;
}

.hero-mentors h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-mentors p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--coop-yellow);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Particles */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 20s infinite linear;
}

.particle:nth-child(1) {
    width: 6px;
    height: 6px;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.particle:nth-child(2) {
    width: 8px;
    height: 8px;
    left: 30%;
    animation-delay: 3s;
    animation-duration: 22s;
}

.particle:nth-child(3) {
    width: 4px;
    height: 4px;
    left: 50%;
    animation-delay: 6s;
    animation-duration: 28s;
}

.particle:nth-child(4) {
    width: 5px;
    height: 5px;
    left: 70%;
    animation-delay: 2s;
    animation-duration: 24s;
}

.particle:nth-child(5) {
    width: 7px;
    height: 7px;
    left: 90%;
    animation-delay: 4s;
    animation-duration: 26s;
}

.particle:nth-child(6) {
    width: 3px;
    height: 3px;
    left: 25%;
    animation-delay: 5s;
    animation-duration: 30s;
}

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Mentors Main Section */
.mentors-main {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    color: var(--dark-blue);
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--medium-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Mentors Grid */
.mentors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
    margin-bottom: 6rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

/* Modern Mentor Cards */
.mentor-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
    position: relative;
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.mentor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--coop-orange) 0%, var(--coop-yellow) 50%, var(--coop-orange) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mentor-card:hover::before {
    opacity: 1;
}

.mentor-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
    border-color: var(--coop-orange);
}

.mentor-image-container {
    position: relative;
    height: 320px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.mentor-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.320, 1);
    filter: brightness(1);
}

.mentor-card:hover .mentor-image {
    transform: scale(1.1) rotate(1deg);
    filter: brightness(1.1);
}

.mentor-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.mentor-card:hover .mentor-overlay {
    transform: translateY(0);
}

.mentor-role {
    color: var(--coop-yellow);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mentor-content {
    padding: 2rem;
}

.mentor-header {
    margin-bottom: 1.5rem;
}

.mentor-header h3 {
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}

.mentor-title {
    color: var(--coop-orange);
    font-weight: 600;
    font-size: 1rem;
}

.mentor-description {
    margin-bottom: 1.5rem;
}

.mentor-intro {
    color: var(--medium-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.mentor-full {
    color: var(--medium-gray);
    line-height: 1.6;
    margin-top: 1rem;
}

.mentor-impact {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.impact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(249, 115, 22, 0.1) 100%);
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    font-size: 0.85rem;
    color: var(--coop-blue);
    font-weight: 600;
    border: 1px solid rgba(37, 99, 235, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.impact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--coop-orange) 0%, var(--coop-yellow) 100%);
    transition: left 0.3s ease;
    z-index: -1;
}

.impact-item:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(249, 115, 22, 0.3);
}

.impact-item:hover::before {
    left: 0;
}

.impact-icon {
    font-size: 1rem;
}

.mentor-btn {
    background: linear-gradient(135deg, var(--coop-orange) 0%, #ea580c 100%);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 1rem;
}

.mentor-btn:hover {
    background: linear-gradient(135deg, #ea580c 0%, var(--coop-orange) 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(249, 115, 22, 0.3);
}

/* Impact Section */
.impact-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: white;
    position: relative;
    overflow: hidden;
    margin-top: 4rem;
}

.impact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--coop-orange) 0%, 
        var(--coop-yellow) 25%, 
        var(--coop-orange) 50%, 
        var(--coop-yellow) 75%, 
        var(--coop-orange) 100%);
    opacity: 1;
    animation: glow 3s ease-in-out infinite;
}

.impact-section::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, 
        var(--coop-orange) 0%, 
        var(--coop-yellow) 50%, 
        var(--coop-orange) 100%);
    opacity: 0.8;
    filter: blur(2px);
}

.impact-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.impact-content h2 {
    color: var(--coop-yellow);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.impact-content > p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.impact-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 3rem 2.5rem;
    border-radius: 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    position: relative;
    overflow: hidden;
}

.impact-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.impact-card:hover::before {
    opacity: 1;
}

.impact-card:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--coop-yellow);
}

.impact-icon-large {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.impact-card h3 {
    color: var(--coop-yellow);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.impact-card p {
    opacity: 0.8;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .mentors-grid {
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        gap: 2.5rem;
    }
}

/* Enhanced Mobile Responsive Design */
@media (max-width: 768px) {
    /* Navigation Mobile Menu */
    .nav-links, .nav-cta {
        display: none;
    }
    
    .mobile-menu {
        display: flex;
        cursor: pointer;
        z-index: 1001;
    }
    
    .mobile-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    /* Mobile Navigation Panel */
    .mobile-nav-panel {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: white;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }
    
    .mobile-nav-panel.active {
        right: 0;
    }
    
    .mobile-nav-header {
        padding: 2rem;
        border-bottom: 1px solid #e2e8f0;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .mobile-nav-close {
        width: 30px;
        height: 30px;
        background: none;
        border: none;
        cursor: pointer;
        font-size: 1.5rem;
        color: var(--dark-gray);
    }
    
    .mobile-nav-links {
        padding: 2rem;
    }
    
    .mobile-nav-links li {
        margin-bottom: 1.5rem;
        list-style: none;
    }
    
    .mobile-nav-links a {
        color: var(--dark-gray);
        text-decoration: none;
        font-size: 1.1rem;
        font-weight: 500;
        display: block;
        padding: 0.5rem 0;
        transition: color 0.3s ease;
    }
    
    .mobile-nav-links a:hover {
        color: var(--coop-orange);
    }
    
    .mobile-nav-cta {
        margin: 2rem;
        padding: 1rem;
        background: var(--coop-blue);
        color: white;
        text-align: center;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 600;
        display: block;
    }
    
    .mobile-nav-cta:hover {
        background: var(--dark-blue);
    }
    
    /* Overlay */
    .mobile-nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .mobile-nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    /* Hero Section Mobile */
    .hero-mentors {
        margin-top: 70px;
        padding: 3rem 1rem;
        min-height: auto;
    }
    
    .hero-mentors h1 {
        font-size: 2.2rem;
        margin-bottom: 1.2rem;
    }
    
    .hero-mentors p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-badge {
        padding: 0.5rem 1rem;
        margin-bottom: 1.5rem;
        font-size: 0.9rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    /* Mentors Main Section Mobile - Sliding Side by Side */
    .mentors-main {
        padding: 3rem 0;
        overflow-x: hidden;
    }
    
    .container {
        padding: 0 1rem;
        max-width: 100%;
    }
    
    .section-header {
        margin-bottom: 2.5rem;
        text-align: center;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    /* Sliding Mentor Cards Container */
    .mentors-grid {
        display: flex;
        gap: 1.5rem;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        padding: 0 1rem 2rem;
        margin: 0 -1rem;
        -webkit-overflow-scrolling: touch;
    }
    
    .mentors-grid::-webkit-scrollbar {
        height: 8px;
    }
    
    .mentors-grid::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }
    
    .mentors-grid::-webkit-scrollbar-thumb {
        background: var(--coop-orange);
        border-radius: 10px;
    }
    
    .mentors-grid::-webkit-scrollbar-thumb:hover {
        background: var(--dark-blue);
    }
    
    .mentor-card {
        flex: 0 0 auto;
        width: 300px;
        margin: 0;
        border-radius: 16px;
        scroll-snap-align: start;
        transition: all 0.3s ease;
    }
    
    .mentor-card:hover {
        transform: translateY(-8px) scale(1.02);
    }
    
    .mentor-image-container {
        height: 250px;
    }
    
    .mentor-content {
        padding: 1.5rem;
    }
    
    .mentor-header h3 {
        font-size: 1.5rem;
    }
    
    .mentor-title {
        font-size: 0.9rem;
    }
    
    .mentor-intro {
        font-size: 0.95rem;
    }
    
    .mentor-full {
        font-size: 0.95rem;
    }
    
    .mentor-impact {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .impact-item {
        font-size: 0.8rem;
        padding: 0.6rem 1rem;
    }
    
    .mentor-btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* Slide Indicators */
    .slide-indicators {
        display: flex;
        justify-content: center;
        gap: 0.5rem;
        margin-top: 1rem;
        margin-bottom: 2rem;
    }
    
    .slide-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #ddd;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .slide-dot.active {
        background: var(--coop-orange);
        transform: scale(1.2);
    }
    
    /* Impact Section Mobile */
    .impact-section {
        padding: 4rem 1rem;
        margin-top: 2rem;
    }
    
    .impact-content h2 {
        font-size: 1.8rem;
        margin-bottom: 1.2rem;
    }
    
    .impact-content > p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .impact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .impact-card {
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }
    
    .impact-icon-large {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .impact-card h3 {
        font-size: 1.3rem;
    }
    
    .impact-card p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    /* Hero Section Small Screens */
    .hero-mentors h1 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .hero-mentors p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-badge {
        padding: 0.4rem 0.8rem;
        margin-bottom: 1rem;
        font-size: 0.8rem;
    }
    
    .hero-stats {
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    /* Navigation Small Screens */
    .mobile-nav-panel {
        width: 85%;
        max-width: 280px;
    }
    
    .mobile-nav-header {
        padding: 1.5rem;
    }
    
    .mobile-nav-links {
        padding: 1.5rem;
    }
    
    .mobile-nav-links li {
        margin-bottom: 1rem;
    }
    
    .mobile-nav-links a {
        font-size: 1rem;
    }
    
    .mobile-nav-cta {
        margin: 1.5rem;
        padding: 0.8rem;
    }
    
    /* Mentor Cards Small Screens */
    .mentor-image-container {
        height: 200px;
    }
    
    .mentor-content {
        padding: 1rem;
    }
    
    .mentor-header h3 {
        font-size: 1.3rem;
    }
    
    .mentor-title {
        font-size: 0.85rem;
    }
    
    .mentor-intro {
        font-size: 0.9rem;
    }
    
    .mentor-full {
        font-size: 0.9rem;
    }
    
    .mentor-impact {
        gap: 0.5rem;
    }
    
    .impact-item {
        font-size: 0.75rem;
        padding: 0.5rem 0.8rem;
    }
    
    .mentor-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    /* Impact Section Small Screens */
    .impact-section {
        padding: 3rem 1rem;
    }
    
    .impact-content h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .impact-content > p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .impact-grid {
        gap: 1rem;
    }
    
    .impact-card {
        padding: 1.5rem 1rem;
        border-radius: 12px;
    }
    
    .impact-icon-large {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .impact-card h3 {
        font-size: 1.1rem;
    }
    
    .impact-card p {
        font-size: 0.9rem;
    }
    
    /* Container Small Screens */
    .container {
        padding: 0 0.8rem;
    }
    
    /* Section Header Small Screens */
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }
    
    .section-header p {
        font-size: 0.95rem;
    }
    
    /* Particles Small Screens */
    .particle {
        display: none; /* Hide particles on very small screens for performance */
    }
}

/* Extra Small Screens */
@media (max-width: 360px) {
    .hero-mentors h1 {
        font-size: 1.6rem;
    }
    
    .mentor-header h3 {
        font-size: 1.2rem;
    }
    
    .mobile-nav-panel {
        width: 90%;
    }
    
    .impact-card {
        padding: 1rem 0.8rem;
    }
}

.mentor-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    width: 500px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Footer */
footer {
background: linear-gradient(135deg, var(--dark-blue) 0%, #1a365d 100%);
color: white;
padding: 0;
position: relative;
overflow: hidden;
}

footer::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 1px;
background: linear-gradient(90deg, 
    transparent 0%, 
    var(--coop-orange) 20%, 
    var(--coop-yellow) 50%, 
    var(--coop-orange) 80%, 
    transparent 100%);
opacity: 0.5;
}

.footer-container {
max-width: 1200px;
margin: 0 auto;
padding: 4rem 5% 2rem;
}

.footer-main {
display: grid;
grid-template-columns: 1.5fr 2fr;
gap: 4rem;
margin-bottom: 3rem;
}

.footer-brand {
display: flex;
flex-direction: column;
gap: 1.5rem;
}

.footer-logo {
width: 80px;
height: 80px;
background: rgba(255, 255, 255, 0.1);
border-radius: 16px;
padding: 1rem;
display: flex;
align-items: center;
justify-content: center;
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.1);
transition: all 0.3s ease;
}

.footer-logo:hover {
background: rgba(255, 255, 255, 0.15);
transform: translateY(-2px);
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.footer-logo img {
width: 100%;
height: 100%;
object-fit: contain;
border-radius: 8px;
}

.footer-brand h3 {
color: var(--coop-yellow);
font-size: 1.5rem;
font-weight: 700;
margin: 0;
}

.footer-brand p {
color: rgba(255, 255, 255, 0.85);
line-height: 1.7;
margin: 0;
}

.footer-badge {
display: flex;
align-items: center;
gap: 0.5rem;
background: rgba(251, 191, 36, 0.15);
padding: 0.75rem 1rem;
border-radius: 8px;
border: 1px solid rgba(251, 191, 36, 0.3);
width: fit-content;
}

.coop-icon {
font-size: 1.2rem;
}

.footer-badge span:last-child {
color: var(--coop-yellow);
font-weight: 600;
font-size: 0.9rem;
}

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

.social-link {
width: 40px;
height: 40px;
background: rgba(255, 255, 255, 0.1);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: rgba(255, 255, 255, 0.7);
text-decoration: none;
transition: all 0.3s ease;
border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
background: var(--coop-orange);
color: white;
transform: translateY(-2px);
box-shadow: 0 4px 16px rgba(249, 115, 22, 0.3);
}

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

.footer-links h4,
.footer-contact h4 {
color: var(--coop-yellow);
font-size: 1.1rem;
font-weight: 600;
margin-bottom: 1.5rem;
position: relative;
}

.footer-links h4::after,
.footer-contact h4::after {
content: '';
position: absolute;
bottom: -0.5rem;
left: 0;
width: 30px;
height: 2px;
background: var(--coop-orange);
border-radius: 1px;
}

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

.footer-links li {
margin-bottom: 0.75rem;
}

.footer-links a {
color: rgba(255, 255, 255, 0.8);
text-decoration: none;
font-size: 0.95rem;
transition: all 0.2s ease;
display: inline-block;
position: relative;
}

.footer-links a::before {
content: '';
position: absolute;
bottom: -2px;
left: 0;
width: 0;
height: 1px;
background: var(--coop-orange);
transition: width 0.3s ease;
}

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

.footer-links a:hover::before {
width: 100%;
}

.footer-contact {
display: flex;
flex-direction: column;
gap: 1rem;
}

.contact-item {
display: flex;
align-items: flex-start;
gap: 0.75rem;
color: rgba(255, 255, 255, 0.8);
font-size: 0.95rem;
}

.contact-item svg {
flex-shrink: 0;
margin-top: 2px;
color: var(--coop-orange);
}

.footer-bottom {
border-top: 1px solid rgba(255, 255, 255, 0.1);
padding-top: 2rem;
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 1rem;
}

.footer-bottom-content p {
margin: 0;
color: rgba(255, 255, 255, 0.6);
font-size: 0.9rem;
line-height: 1.5;
}

.footer-bottom-links {
display: flex;
gap: 2rem;
}

.footer-bottom-links a {
color: rgba(255, 255, 255, 0.6);
text-decoration: none;
font-size: 0.9rem;
transition: color 0.2s ease;
}

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

/* Responsive Footer */
@media (max-width: 1024px) {
.footer-main {
grid-template-columns: 1fr;
gap: 3rem;
}
    
.footer-sections {
grid-template-columns: 1fr 1fr;
}
}

@media (max-width: 768px) {
.footer-container {
padding: 3rem 5% 1.5rem;
}
    
.footer-main {
gap: 2rem;
}
    
.footer-sections {
grid-template-columns: 1fr;
gap: 2rem;
}
    
.footer-bottom {
flex-direction: column;
text-align: center;
gap: 1.5rem;
}
    
.footer-bottom-links {
justify-content: center;
}
}

@media (max-width: 480px) {
.footer-logo {
width: 60px;
height: 60px;
}
    
.footer-brand h3 {
font-size: 1.3rem;
}
    
.social-links {
justify-content: center;
}
}

@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%;
    }
}

