
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    scroll-behavior: smooth;
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    color: #333;
    overflow-x: hidden;
}

/* Header  */
header {
    background: linear-gradient(135deg, #156e93, #19849f);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    animation: slideDown 0.8s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 95%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 0;
    flex-wrap: wrap;
}

.logo {
    /* width: 80px; */
    cursor: pointer;
    animation: fadeIn 1s ease;
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    width: 80px;
    /* filter: brightness(0) invert(1); */
}
.logo-name{
    display: flex;
    align-items: start;
    flex-direction: column;
}
.logo-text{
    font-size: 20px;
    letter-spacing: 1px;
    font-weight: 600;
    /* padding: 25px 0px 0px 0px; */
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
}

.menupages ul {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.menupages ul a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.menupages ul a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #e7a133;
    transition: width 0.3s ease;
}

.menupages ul a:hover::after {
    width: 100%;
}

.menupages ul a:hover {
    color: #e7a133;
}

.donate-btn {
    padding: 12px 35px;
    border: none;
    border-radius: 25px;
    background-color: #d27d32;
    color: white;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(210, 125, 50, 0.3);
}

.donate-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(210, 125, 50, 0.5);
    background-color: #e7a133;
}
/* Page Header */
.page-header {
    background: linear-gradient(135deg, rgba(140, 140, 140, 0.9), rgba(25, 132, 159, 0.9)), url('https://images.unsplash.com/photo-1559027615-cd4628902d4a?w=1600');
    background-size: cover;
    background-position: center;
    padding: 120px 20px 80px;
    text-align: center;
    color: white;
}

.page-header h1 {
    font-size: 56px;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease;
}

.page-header p {
    font-size: 22px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 32px;
    animation: fadeInUp 1s ease 0.2s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Section */
.about-intro {
    padding: 80px 20px;
    background: white;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
    
    height: 450px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: 600;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    animation: fadeIn 1s ease;
    background-image: url(../images/Aboutpage\ image.jpeg);
    background-size: cover;
    background-position: center;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.about-text h2 {
    font-size: 42px;
    color: #156e93;
    margin-bottom: 25px;
}

.about-text p {
    font-size: 18px;
    line-height: 32px;
    color: #666;
    margin-bottom: 20px;
}

.about-text p strong {
    color: #156e93;
}

/* Founder Section */
.founder-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.founder-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.founder-container h2 {
    font-size: 42px;
    color: #156e93;
    margin-bottom: 50px;
}

.founder-card {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 50px;
    align-items: center;
    text-align: left;
    animation: fadeInUp 1s ease;
}

.founder-photo {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, #156e93, #19849f);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    position: relative; 
    padding: 0; 
}

.founder-photo img {
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    object-position: center; 
    border-radius: 50%; 
}

.founder-info h3 {
    font-size: 32px;
    color: #156e93;
    margin-bottom: 10px;
}

.founder-info h4 {
    font-size: 22px;
    color: #d27d32;
    margin-bottom: 25px;
}

.founder-info p {
    font-size: 18px;
    line-height: 32px;
    color: #666;
    margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .founder-card {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px;
    }
    
    .founder-photo {
        width: 250px;
        height: 250px;
        margin: 0 auto;
    }
}

/* Mission Vision Values */
.mvv-section {
    padding: 80px 20px;
    background: white;
}

.mvv-container {
    max-width: 1200px;
    margin: 0 auto;
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.mvv-card {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    animation: fadeInUp 0.8s ease backwards;
}

.mvv-card:nth-child(1) { animation-delay: 0.1s; }
.mvv-card:nth-child(2) { animation-delay: 0.2s; }
.mvv-card:nth-child(3) { animation-delay: 0.3s; }

.mvv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.mvv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #156e93, #19849f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin-bottom: 25px;
    color: white;
}

.mvv-card h3 {
    font-size: 28px;
    color: #156e93;
    margin-bottom: 20px;
}

.mvv-card p,
.mvv-card ul {
    font-size: 17px;
    line-height: 30px;
    color: #666;
}

.mvv-card ul {
    list-style: none;
    padding-left: 0;
}

.mvv-card ul li {
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
}

.mvv-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #d27d32;
    font-weight: bold;
    font-size: 20px;
}

/* Impact Stats */
.impact-stats {
    padding: 80px 20px;
    background: linear-gradient(135deg, #d27d23, #e7a133);
    color: white;
}

.stats-title {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
}

.stats-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.stat-item {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease backwards;
}

.stat-item:nth-child(1) { animation-delay: 0.1s; }
.stat-item:nth-child(2) { animation-delay: 0.2s; }
.stat-item:nth-child(3) { animation-delay: 0.3s; }
.stat-item:nth-child(4) { animation-delay: 0.4s; }

.stat-item:hover {
    background: rgba(255,255,255,0.2);
    transform: scale(1.05);
}

.stat-item h3 {
    font-size: 56px;
    margin-bottom: 15px;
}

.stat-item p {
    font-size: 20px;
    opacity: 0.95;
}

/* Timeline Section */
.timeline-section {
    padding: 80px 20px;
    background: white;
}

.timeline-title {
    text-align: center;
    font-size: 42px;
    color: #156e93;
    margin-bottom: 60px;
}

.timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #156e93, #19849f);
}

.timeline-item {
    margin-bottom: 50px;
    position: relative;
    animation: fadeInUp 0.8s ease backwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.3s; }
.timeline-item:nth-child(4) { animation-delay: 0.4s; }

.timeline-content {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    width: 45%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
}

.timeline-year {
    display: inline-block;
    background: linear-gradient(135deg, #156e93, #19849f);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.timeline-content h3 {
    font-size: 24px;
    color: #156e93;
    margin-bottom: 12px;
}

.timeline-content p {
    font-size: 16px;
    color: #666;
    line-height: 26px;
}

.timeline-dot {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: #d27d32;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 0 4px #156e93;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #156e93, #19849f);
    color: white;
    padding: 60px 20px 30px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.footer-section h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #e7a133;
}

.footer-section p,
.footer-section a {
    color: rgba(255,255,255,0.9);
    line-height: 28px;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
}

.footer-section a:hover {
    color: #e7a133;
    padding-left: 5px;
    transition: all 0.3s ease;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #e7a133;
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.8);
}




/* Responsive */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
        order: 3;
    }
    nav{
        position: relative;
    }
    .menupages {
        display: none;
        width: 100%;
        background: linear-gradient(135deg, #156e93, #19849f);
        margin-top: 15px;
        border-radius: 10px;
        position: absolute;
        top: 100%;
        border-radius: 0 0 10px 10px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }

    .menupages.active {
        display: block;
    }

    .menupages ul {
        flex-direction: column;
        padding: 20px 0;
        gap: 20px;
    }
    .donate-btn {
        margin-top: 15px;
        display: none;
    }

    .page-header h1 {
        font-size: 36px;
    }

    .about-container,
    .founder-card {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .founder-photo {
        margin: 0 auto;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px !important;
    }

    .timeline-dot {
        left: 20px;
    }

    .mvv-grid {
        grid-template-columns: 1fr;
    }
}
