/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    overflow-x: hidden;
}
.btn.donate {
    background-color: red;  
    color: white;
}
a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Header Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1002;
}

.logo h1 {
    color: #2b579a;
    font-size: 1.8rem;
    font-weight: 700;
}

.menu-icon {
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1003;
    color: #2b579a;
    transition: 0.3s;
}

.menu-icon:hover {
    color: #ff6b6b;
}

.nav-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: #2b579a;
    padding: 80px 20px 20px;
    transition: 0.4s;
    z-index: 1001;
}

.nav-menu.active {
    right: 0;
}

.nav-menu ul li {
    margin-bottom: 1.5rem;
}

.nav-menu ul li a {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
    transition: 0.3s;
    padding: 8px 12px;
    display: block;
    border-radius: 5px;
}

.nav-menu ul li a:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(43, 87, 154, 0.8), rgba(43, 87, 154, 0.9)), url('/api/placeholder/1920/1080');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 5rem 5%;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.btn {
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn.primary {
    background: #ff6b6b;
    color: #fff;
}

.btn.secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* What We Offer Section */
.offers {
    padding: 5rem 5%;
    text-align: center;
}

.offers h2 {
    color: #2b579a;
    font-size: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.offers h2:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #ff6b6b;
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.service-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    color: #2b579a;
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
}

/* Mission & Vision Section */
.mission-vision {
    padding: 5rem 5%;
    background: #f1f5fe;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.mission, .vision {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.mission h2, .vision h2 {
    color: #2b579a;
    margin-bottom: 1.5rem;
    position: relative;
}

.mission h2:after, .vision h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #ff6b6b;
}

/* Past Events Section */
.past-events {
    padding: 5rem 5%;
    text-align: center;
}

.past-events h2 {
    color: #2b579a;
    font-size: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.past-events h2:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #ff6b6b;
}

.events-carousel {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.event-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 300px;
    transition: transform 0.3s ease;
}

.event-card:hover {
    transform: translateY(-10px);
}

.event-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.event-card h3 {
    color: #2b579a;
    padding: 1rem 1rem 0;
}

.event-card p {
    color: #666;
    padding: 0.5rem 1rem 1.5rem;
}

/* Partners Section */
.partners {
    padding: 5rem 5%;
    background: #f1f5fe;
    text-align: center;
}

.partners h2 {
    color: #2b579a;
    font-size: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.partners h2:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #ff6b6b;
}

.partner-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
}

.partner {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 200px;
}

.partner h3 {
    color: #2b579a;
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background: #2b579a;
    color: #fff;
    padding: 3rem 5% 1.5rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
}

.contact, .connect {
    flex: 1;
    min-width: 250px;
}

.contact h3, .connect h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    position: relative;
}

.contact h3:after, .connect h3:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #ff6b6b;
}

.contact a {
    color: #fff;
    text-decoration: underline;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #ff6b6b;
    transform: translateY(-5px);
}

.copyright {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero h2 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
        margin-bottom: 1rem;
    }
    
    .mission-vision {
        flex-direction: column;
    }
    
    .event-card {
        width: 100%;
        max-width: 350px;
    }
}

@media (max-width: 480px) {
    header {
        padding: 1rem 5%;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .hero {
        padding: 3rem 5%;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .offers h2, .past-events h2, .partners h2 {
        font-size: 1.6rem;
    }
    
    .service-card, .mission, .vision {
        padding: 1.5rem;
    }
}
/* Add these styles to your style.css file */

/* About Hero Section */
.about-hero {
    background: linear-gradient(rgba(43, 87, 154, 0.8), rgba(43, 87, 154, 0.9)), url('/api/placeholder/1920/600');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 4rem 5%;
    text-align: center;
}

.about-hero h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.about-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Story Section */
.story-section {
    padding: 5rem 5%;
    background: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.story-section h2 {
    color: #2b579a;
    font-size: 2rem;
    margin-bottom: 2.5rem;
    position: relative;
    text-align: center;
}

.story-section h2:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #ff6b6b;
}

.story-content {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.8;
}

.story-content p {
    margin-bottom: 1.5rem;
}

.story-content ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.story-content ol li {
    margin-bottom: 0.5rem;
}

/* Team Section */
.team-section {
    padding: 5rem 5%;
    background: #f1f5fe;
}

.team-section h2 {
    color: #2b579a;
    font-size: 2rem;
    margin-bottom: 3rem;
    position: relative;
    text-align: center;
}

.team-section h2:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #ff6b6b;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2.5rem;
}

.team-member {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.team-photo {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.team-member h3 {
    color: #2b579a;
    margin: 1.5rem 0 0.5rem;
    font-size: 1.3rem;
}

.team-title {
    color: #666;
    font-style: italic;
    margin-bottom: 1.5rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .about-hero h2 {
        font-size: 2.5rem;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
}

@media (max-width: 480px) {
    .about-hero h2 {
        font-size: 2rem;
    }
    
    .about-hero p {
        font-size: 1rem;
    }
    
    .story-section h2, 
    .team-section h2 {
        font-size: 1.6rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto;
    }
    /* Bio Page Styles - Matching 4wardInnovation Design */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --background-color: #f4f4f4;
    --text-color: #333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: var(--background-color);
    color: var(--text-color);
}

.container {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

header {
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 0;
}

.logo h1 {
    text-align: center;
    font-size: 1.8rem;
}

.bio-header {
    background-color: var(--secondary-color);
    color: white;
    text-align: center;
    padding: 2rem 0;
}

.bio-content {
    background-color: white;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-top: 2rem;
}

.bio-photo {
    max-width: 300px;
    height: auto;
    display: block;
    margin: 0 auto 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}

.bio-title {
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.bio-description {
    margin-bottom: 1rem;
}

footer {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 1rem 0;
    margin-top: 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.social-icons a {
    color: white;
    margin: 0 10px;
    font-size: 1.5rem;
}

.hamburger-menu {
    display: none;
}

@media (max-width: 768px) {
    .container {
        width: 95%;
    }
    
    .bio-content {
        padding: 1rem;
    }
}
/* Bio Page Styles */
.bio-header {
    background: linear-gradient(rgba(43, 87, 154, 0.8), rgba(43, 87, 154, 0.9)), url('/api/placeholder/1920/400');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 3rem 5%;
    text-align: center;
}

.bio-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

.bio-content {
    padding: 4rem 5%;
    background: #fff;
    margin: 2rem auto;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    max-width: 1000px;
}

.bio-photo {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: block;
    margin: 0 auto 2rem;
}

.bio-title {
    color: #2b579a;
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 0.5rem;
}

.bio-subtitle {
    color: #666;
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    font-weight: 500;
}

.bio-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 3rem;
}

.bio-description p {
    margin-bottom: 1.5rem;
}

.back-button {
    text-align: center;
    margin-top: 2rem;
}

.back-button .btn {
    padding: 0.8rem 2.5rem;
}

/* Make team member cards clickable with hover effect */
.team-member a {
    display: block;
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

.team-member a:hover {
    transform: translateY(-5px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .bio-header h2 {
        font-size: 2rem;
    }
    
    .bio-title {
        font-size: 1.8rem;
    }
    
    .bio-subtitle {
        font-size: 1rem;
    }
    
    .bio-photo {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 480px) {
    .bio-header {
        padding: 2rem 5%;
    }
    
    .bio-content {
        padding: 2rem 1.5rem;
    }
    
    .bio-photo {
        width: 180px;
        height: 180px;
    }
    
    .bio-description {
        font-size: 1rem;
    }
    .hero-video {
        margin-top: 20px;
        text-align: center;
    }
    
    .hero-video video {
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }
    
    .homepage-video {
        text-align: center;
        margin: 40px auto;
    }
    
    .homepage-video h2 {
        margin-bottom: 20px;
        font-size: 24px;
    }
    /* ===============================
   Profile Page Styles (New!)
   =============================== */

/* ===============================
   Profile Page Styles (for Bios)
   =============================== */

   .member-profile {
    padding: 4rem 2rem;
    text-align: center;
  }
  
  .member-profile .container {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .profile-photo {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1rem;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .member-profile h1 {
    font-size: 2.5rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
  }
  
  .member-profile h2 {
    font-size: 1.5rem;
    color: #555;
    margin-bottom: 2rem;
  }
  
  .member-profile p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1.5rem;
    text-align: left;
  }
  
  /* Back link to About Us */
  .back-link {
    display: inline-block;
    margin-top: 2rem;
    font-size: 1rem;
    color: #007BFF;
    text-decoration: none;
  }
  
  .back-link:hover {
    text-decoration: underline;
  }
  
  /* ===============================
     Team Section Styles (About Us)
     =============================== */
  
  /* Team member photo in About Us page */
  .team-photo {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
  }
  
  /* Make team member cards clickable and hover */
  .team-link {
    text-decoration: none;
    color: inherit;
  }
  
  .team-member:hover {
    transform: scale(1.05);
    transition: transform 0.3s;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
  }
  
  /* ===============================
     Read More Button Styles
     =============================== */
  
  #toggleBio {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.6rem 1.2rem;
    font-size: 1rem;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  #toggleBio:hover {
    background-color: #0056b3;
  }
  
  
}
</style>