/* =========================
   GENERAL RESET
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    background-color: #f4f6f9;
    color: rgb(3, 1, 1);
    text-align: justify;
}

/* =========================
   LINKS
========================= */
a {
    text-decoration: none;
    color:white;
}
a:hover {
    color: #007bff;
}
/* =========================
   HEADER / BANNER
========================= */

.banner{
    position:relative;
    width:100%;
    height:600px;
    overflow:hidden;
}

/* Slides */

.slide{
    position:absolute;
    width:100%;
    height:100%;
    opacity:0;
    transition:opacity 1.5s ease-in-out;
}

.slide.active{
    opacity:1;
}

/* Images */

.slide img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* Text Area */

.banner-text{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    text-align:center;
    color:white;
    z-index:2;
    animation: textSlide 2s ease;
}

/* Overlay */

.slide::after{
    content:"";
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.4);
    top:0;
}

/* Headline */

.banner-text h1{
    font-size:50px;
    margin-bottom:15px;
}

/* Paragraph */

.banner-text p{
    font-size:22px;
    margin-bottom:20px;
}

/* Button */

.banner-btn{
    padding:12px 30px;
    background:red;
    color:white;
    text-decoration:none;
    font-size:18px;
    border-radius:5px;
    transition:0.3s;
}

.banner-btn:hover{
    background:#ff9900;
}

/* Text animation */

@keyframes textSlide{

    from{
        opacity:0;
        transform:translate(-50%,-30%);
    }

    to{
        opacity:1;
        transform:translate(-50%,-50%);
    }

}

/* Background Image Animation */

@keyframes bannerSlide {

    0%{
        background-image: url('images/banner1.jpg');
    }

    33%{
        background-image: url('images/banner2.jpg');
    }

    66%{
        background-image: url('images/banner3.jpg');
    }

    99%{
        background-image: url('images/banner4.jpg');
    }
    133%{
        background-image: url('images/banner5.jpg');
    }
    100%{
        background-image: url('images/banner6.jpg');
    }
    100%{
        background-image: url('images/banner7.jpg');
    }

}

/* Dark overlay */

.banner::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    z-index: 1;
}

/* Banner Content */

.banner-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
}

/* Moving Text */

.moving-text{
    position:absolute;
    bottom:20px;
    width:100%;
    color:white;
    font-size:20px;
    white-space:nowrap;
    animation: scrollText 45s linear infinite;
}

/* Text Scroll Animation */

@keyframes scrollText{

    from{
        transform: translateX(100%);
    }

    to{
        transform: translateX(-100%);
    }

}

.logo{
    width:70px;
    height:auto;
    margin-right:10px;
}

/* Organization Name */

.top-left h1{
    color:rgb(241, 38, 38);
    font-size:50px;
    font-weight:bold;
}

/* Ensure slide images behave */

.slide img{
    width:100%;
    height:600px;
    object-fit:cover;
}
/* Center Text */
.center-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    max-width: 700px;
    animation: fadeIn 3s ease-in-out;
}

.center-text h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

.center-text p {
    font-size: 18px;
}

/* Fade / Zoom Animations */
@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes bannerZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

/* NAVBAR */
.navbar {
    background: #0f0202;
    padding: 15px;
    position: relative;
}

/* LOGO (TEXT LOGO) */
.logo-text {
    color: white;
    font-size: 22px;
    font-weight: bold;
}

/* MAIN HAMBURGER BUTTON */
.menu-toggle {
    font-size: 30px;
    color: white;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 10px;
    background-color: #0e0e0d;
    padding: 8px 14px;
    border-radius: 6px;
    box-shadow: 0px 2px 6px rgba(0,0,0,0.3);
}

/* MENU */
#navMenu {
    display: none;
    list-style: none;
    margin-top: 20px;
}

/* MENU LINKS */
#navMenu li {
    padding: 12px;
    border-bottom: 1px solid #ccc;
}

#navMenu li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

/* SHOW MENU */
#navMenu.active {
    display: block;
}

/* PROGRAM SUBMENU BUTTON */
.submenu-toggle {
    color: white;
    font-size: 18px;
    cursor: pointer;
    background-color: #537597;
    padding: 10px;
    border-radius: 5px;
}

/* SUBMENU */
.submenu {
    display: none;
    list-style: none;
    margin-left: 15px;
    margin-top: 5px;
}

/* SHOW SUBMENU */
.submenu.active {
    display: block;
}

/* SUBMENU LINKS */
.submenu li {
    padding: 10px;
}

.submenu li a {
    color: white;
}
    body { font-family: Arial, sans-serif; margin:0; background:#f5f5f5; }
    .container { max-width:1100px; margin:auto; padding:20px; }
    h2 { text-align:center; margin-bottom:20px; }

    .cards {
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
    }

    .card {
    background:#fff;
    border-radius:12px;
    box-shadow:0 3px 8px rgba(0,0,0,0.1);
    overflow:hidden;
    transition:transform 0.2s ease;
    }

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

    .card img {
    width:100%;
    height:180px;
    object-fit:cover;
    background:#ddd;
    }

    .card-content {
    padding:15px;
    }

    .card h3 {
    margin-top:0;
    color:#007BFF;
    }

    .card p {
    color:#555;
    line-height:1.5;
    }

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

/* SECTION */
.founder-section {
    min-height: 100vh;
    background: url('images/reading.jpg') no-repeat center center/cover;
    }

/* OVERLAY */
.overlay {
    background: rgba(0, 0, 0, 0.65);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

/* CONTAINER */
.founder-container {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1100px;
    width: 100%;
    flex-wrap: wrap;
}

/* IMAGE WRAPPER */
.founder-image {
    position: relative;
}

/* IMAGE */
.founder-image img {
    width: 300px;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
    border: 4px solid #ffffff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

/* BADGE */
.badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #ff9800;
    color: #fff;
    padding: 8px 14px;
    font-size: 0.85rem;
    font-weight: bold;
    border-radius: 20px;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* IMAGE OVERLAY */
.image-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 12px;
    border-radius: 0 0 15px 15px;
    text-align: center;
}

.image-overlay h3 {
    font-size: 1.1rem;
    margin-bottom: 3px;
}

.image-overlay p {
    font-size: 0.9rem;
}

/* TEXT */
.founder-content {
    max-width: 600px;
    color: #ffffff;
}

.founder-content h1 {
    font-size: 2.3rem;
    margin-bottom: 15px;
}

.founder-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 12px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .founder-container {
        flex-direction: column;
        text-align: center;
    }

    .founder-image img {
        width: 220px;
        height: 260px;
    }

    .founder-content h1 {
        font-size: 1.8rem;
    }
}
/* =========================
DONATION SECTION
========================= */


#donate {
    background: #f8fbff;
    padding: 60px 20px;
    text-align: center;
}

#donate h2 {
    font-size: 32px;
    color: #de0e0e;
    margin-bottom: 15px;
}

#donate p {
    max-width: 700px;
    margin: auto;
    margin-bottom: 25px;
    font-size: 17px;
}

/* Donation Box */
.donation-box {
    max-width: 650px;
    margin: auto;
    background: antiquewhite;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 18px #0b0b0bd0;
}

/* Donation Methods */
.donation-method {
    background: #f4f6f9;
    padding: 15px;
    margin: 15px 0;
    border-radius: 8px;
    text-align: center;
}

.donation-method h3 {
    color: #0056b3;
    margin-bottom: 5px;
}

.donation-method p {
    margin: 3px 0;
    font-size: 16px;
}

/* Highlight Important Numbers */
.donation-number {
    font-weight: bold;
    font-size: 18px;
    color: #1700e6;
}

/* Donate Button */
.donate-main-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 25px;
    background: #ffcc00;
    color: #002147;
    font-weight: bold;
    border-radius: 6px;
    transition: 0.3s;
}

.donate-main-btn:hover {
    background: #002147;
    color: white;
}

/* Impact Text */
.donation-impact {
    margin-top: 25px;
    font-style: italic;
    color: #555;
}
 body {
      font-family: Arial, sans-serif;
      background-color: #f9f9f9;
      margin: 0;
      padding: 0;
    }
    header {
      background-color: #d6d0d0;
      color: white;
      text-align: center;
      padding: 50px 20px;
    }
    header h1 {
      margin: 0;
      font-size: 2.5rem;
    }
    header p {
      margin: 10px 0 0;
      font-size: 1.2rem;
    }
    section#donors {
      max-width: 1200px;
      margin: 50px auto;
      padding: 0 20px;
    }
    .donor-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 25px;
    }
    .donor-card {
      background-color: white;
      border-radius: 12px;
      padding: 20px;
      text-align: center;
      box-shadow: 0 4px 6px rgba(0,0,0,0.1);
      transition: transform 0.2s;
    }
    .donor-card:hover {
      transform: translateY(-5px);
    }
    .donor-card img {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      object-fit: cover;
      margin-bottom: 15px;
    }
    .donor-card h3 {
      margin: 10px 0 5px;
      font-size: 1.3rem;
      color: #333;
    }
    .donor-card p {
      margin: 5px 0;
      color: #666;
    }
    .donor-card blockquote {
      margin: 15px 0 0;
      font-style: italic;
      color: #444;
    }
    .cta-button {
      display: inline-block;
      margin: 40px auto 0;
      padding: 15px 30px;
      background-color: hsl(341, 89%, 42%);
      color: white;
      text-decoration: none;
      border-radius: 8px;
      font-size: 1.2rem;
      text-align: center;
      transition: background-color 0.3s;
    }
    .cta-button:hover {
      background-color: #357ABD;
    }
/* =========================
   SECTIONS
========================= */
section {
    padding: 40px 20px;
    text-align: justify;
    background-color: #fff;
}
section h2 {
    margin-bottom: 15px;
    color: #0056b3;
}
section p {
    max-width: 700px;
    margin: 10px auto;
    font-size: 16px;
    
}

/* =========================
   OUR PARTNERS
========================= */
#partners {
    padding: 50px 20px;
    background-color: #f5f5f5;
    text-align: center;
}
#partners h2 {
    font-size: 32px;
    margin-bottom: 20px;
}
#partners p {
    max-width: 600px;
    margin: 0 auto 40px;
    color: #555;
}
.partner-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}
.partner-logos img {
    height: 80px;
    object-fit: contain;
    transition: transform 0.3s;
}
.partner-logos img:hover {
    transform: scale(1.1);
}
/* =========================
   REPORT SECTION (ENHANCED)
========================= */

#reports {
    padding: 60px 20px;
    background: #f8fbff;
    text-align: center;
}

#reports h2 {
    font-size: 32px;
    color: #0056b3;
    margin-bottom: 10px;
}

#reports p {
    max-width: 700px;
    margin: auto;
    margin-bottom: 40px;
}

/* Reports Grid */
.reports-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

/* Report Cards */
.report-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    text-align: left;
    box-shadow: 0 5px 18px rgba(0,0,0,0.12);
    transition: 0.3s;
}

.report-card:hover {
    transform: translateY(-6px);
}

/* Report Title */
.report-card h3 {
    color: #002147;
    margin-bottom: 10px;
}

/* Report Text */
.report-card p {
    font-size: 15px;
    margin-bottom: 15px;
}

/* Report Button */
.report-btn {
    display: inline-block;
    padding: 10px 18px;
    background: #0056b3;
    color: white;
    border-radius: 6px;
    font-weight: bold;
    transition: 0.3s;
}

.report-btn:hover {
    background: #002147;
    color: white;
}

/* PDF Icon Style */
.report-icon {
    font-size: 40px;
    margin-bottom: 10px;
}
/* =========================
   EMBEDDED GOOGLE FORM
========================= */

#registration {
    padding: 60px 20px;
    background: #f8fbff;
    text-align: center;
}

#registration h2 {
    font-size: 32px;
    color: #0056b3;
    margin-bottom: 10px;
}

#registration p {
    max-width: 700px;
    margin: auto;
    margin-bottom: 25px;
}

/* Form Wrapper */
.google-form-container {
    max-width: 900px;
    margin: auto;
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* Embedded Form */
.google-form-container iframe {
    width: 100%;
    height: 800px;
    border: none;
    border-radius: 10px;
}
/* =========================
   GALLERY SECTION
========================= */

#gallery {
    padding: 60px 20px;
    background: #ffffff;
    text-align: left;
}

#gallery h2 {
    font-size: 32px;
    color: #0056b3;
    margin-bottom: 20px;
}

/* Gallery Grid Layout */
.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: auto;
}

/* Gallery Images */
.gallery-container img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: 0.3s;
}

/* Hover Effect */
.gallery-container img:hover {
    transform: scale(1.05);
}
/* =========================
   FOOTER
========================= */
.footer {
    background-color: #002147;
    color: #ffffff;
    padding-top: 40px;
}
.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px 30px;
}
.footer-col {
    flex: 1 1 250px;
    margin: 15px;
}
.footer-col h3 {
    margin-bottom: 15px;
    color: #ffcc00;
}
.footer-col p, .footer-col ul li a {
    font-size: 14px;
    line-height: 1.6;
}
.footer-col ul {
    list-style: none;
    padding: 0;
}
.footer-col ul li {
    margin-bottom: 8px;
}
.footer-col ul li a {
    color: #ffffff;
    transition: 0.3s;
}
.footer-col ul li a:hover {
    color: #ffcc00;
}
.donate-btn {
    background-color: #ffcc00;
    color: #002147 !important;
    padding: 6px 12px;
    border-radius: 4px;
    font-weight: bold;
}
.donate-btn:hover {
    background-color: #fff;
    color: #002147 !important;
}
.social-links a {
    display: inline-block;
    margin-right: 10px;
    color: #fff;
    font-weight: bold;
    transition: 0.3s;
}
.social-links a:hover {
    color: #ffcc00;
}
.footer-bottom {
    background-color: #001733;
    text-align: center;
    padding: 15px;
    font-size: 14px;
}

/* =========================
   STAFF SECTION
========================= */
#staff {
    padding: 60px 20px;
    background: #f9f9f9;
    text-align: center;
}
.staff-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}
.staff-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}
.staff-card:hover { transform: translateY(-5px); }
.staff-card img { width: 130px; height: 130px; object-fit: cover; border-radius: 50%; margin-bottom: 15px; }
.staff-card h3 { margin: 10px 0 5px; }
.staff-card h5 { color: #777; margin-bottom: 15px; }
.bio-btn { padding: 8px 16px; background: #0a3d62; color: #fff; border-radius: 20px; cursor: pointer; }
.bio-btn:hover { background: #1e5f8a; }
.modal { display: none; position: fixed; z-index: 999; left: 0; top: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); justify-content: center; align-items: center; }
.modal-content { background: #fff; margin: 10% auto; padding: 30px; width: 90%; max-width: 500px; border-radius: 10px; max-height: 70vh; overflow-y: auto; }
.close-btn { position: absolute; right: 15px; top: 10px; font-size: 24px; cursor: pointer; }

/* =========================
   FORMS
========================= */
.form-container,
.volunteer-form {
    max-width: 650px;
    margin: auto;
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
input, select, textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border-radius: 6px;
    border: 1px solid #ccc;
}
textarea { resize: vertical; }
button { margin-top: 25px; width: 100%; padding: 12px; background: #27ae60; color: #fff; border: none; border-radius: 6px; cursor: pointer; }
button:hover { background: #219150; }

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
    .navbar ul { flex-direction: column; align-items: center; }
    .navbar ul li { margin: 8px 0; }
    header h1 { font-size: 20px; }
    section { padding: 25px 15px; }
    .footer-container { flex-direction: column; text-align: center; }
    .wrap-img { float: none; display: block; margin: 0 auto 15px; width: 100%; }
    .fees-box { width: 100%; margin: 10px 0; }
}
/* =========================
   MOBILE RESPONSIVE BANNER
========================= */

@media (max-width: 768px){

/* Reduce banner height */

.banner{
    height:450px;
}

/* Resize headline */

.banner-text h1{
    font-size:28px;
    padding:0 10px;
}

/* Resize paragraph */

.banner-text p{
    font-size:16px;
    padding:0 15px;
}

/* Fix donate button */

.banner-btn{
    display:inline-block;
    padding:10px 20px;
    font-size:16px;
}

/* Ensure text area fits screen */

.banner-text{
    width:90%;
}

/* Resize logo */

.logo{
    width:50px;
}

/* Organization name */

.top-left h1{
    font-size:18px;
}

}