
* {
    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(21, 110, 147, 0.9), rgba(25, 132, 159, 0.9)), url('https://images.unsplash.com/photo-1532629345422-7515f3d16bb6?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);
    }
}

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

/* Services Introduction */
.services-intro {
    padding: 80px 20px;
    background: white;
    text-align: center;
}

.services-intro h2 {
    font-size: 42px;
    color: #156e93;
    margin-bottom: 20px;
}

.services-intro p {
    font-size: 20px;
    color: #666;
    max-width: 900px;
    margin: 0 auto;
    line-height: 32px;
}

/* Main Services Section */
.main-services {
    padding: 80px 20px;
    background: #f8f9fa;
}

.service-detail {
    max-width: 1200px;
    margin: 0 auto 80px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    animation: fadeInUp 0.8s ease backwards;
}

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

.service-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    align-items: center;
}

.service-detail:nth-child(even) .service-content {
    grid-template-columns: 1fr 400px;
}

.service-image {
    height: 350px;
    background: linear-gradient(135deg, #156e93, #19849f);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: white;
}

.service-detail:nth-child(even) .service-image {
    order: 2;
}

.service-text {
    padding: 50px;
}

.service-text h3 {
    font-size: 36px;
    color: #156e93;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.service-icon {
    font-size: 48px;
}

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

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 12px 0;
    padding-left: 35px;
    position: relative;
    font-size: 17px;
    color: #555;
    line-height: 28px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #d27d32;
    font-weight: bold;
    font-size: 22px;
}

.service-cta {
    margin-top: 30px;
}

.service-btn {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #156e93, #19849f);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(21, 110, 147, 0.3);
}

.service-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(21, 110, 147, 0.5);
}
.btn-custom {
    display: inline-block;
    padding: 18px 45px;
    background: #d27d32;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.4s ease;
    animation: fadeInUp 1s ease 0.4s backwards;
    box-shadow: 0 6px 20px rgba(210, 125, 50, 0.4);
    border: none;
    margin-top: 25px;
}

.btn-custom:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 30px rgba(210, 125, 50, 0.6);
    background: #e7a133;
    color: white;
}
/* How We Help Section */
.how-we-help {
    padding: 80px 20px;
    background: white;
}

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

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

.help-container > p {
    font-size: 20px;
    color: #666;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.help-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
    cursor: pointer;
}

.help-step {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 40px 30px;
    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;
}

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

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

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d27d32, #e7a133);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    color: white;
    margin: 0 auto 25px;
}

.help-step h4 {
    font-size: 22px;
    color: #156e93;
    margin-bottom: 15px;
}

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

/* Call to Action */
.cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #d27d32, #e7a133);
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 22px;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 18px 45px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.cta-btn-primary {
    background: white;
    color: #d27d32;
}

.cta-btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.cta-btn-secondary {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid white;
}

.cta-btn-secondary:hover {
    background: white;
    color: #d27d32;
    transform: translateY(-5px);
}

/* 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;
    }

    .service-content {
        grid-template-columns: 1fr !important;
    }

    .service-image {
        order: 1 !important;
        height: 350px;
    }

    .service-text {
        padding: 30px;
    }

    .service-text h3 {
        font-size: 28px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn {
        width: 100%;
        max-width: 300px;
    }
}
