*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Poppins,sans-serif;
}

body{
background:linear-gradient(
        to bottom,
        #f8f0d2 0%,
        #f5f3e8 40%,
        #ffffff 100%
    );
}

header{
background:white;
color: black;
padding:15px 5%;
display:flex;
justify-content:space-between;
align-items:center;
flex-wrap:wrap;
}

.logo{
display:flex;
align-items:center;
gap:10px;
}

.logo img{
width:80px;
height:80px;
}
.logo-text h1.crs-blue{
    color:#0B2F6B;
}

.crs-green{
    color:#1E7A35;
}

.logo-text h1{
    margin:0;
    font-size:42px;
    line-height:1.1;
}

.crs-green{
    color:#1E7A35;
}
    margin:0;
    font-size:42px;
    line-height:1.1;
}

.logo-text p{
    margin-top:5px;
    color:#2E8B57;
    font-size:18px;
    font-weight:500;
}
nav a{
color:black;
text-decoration:none;
margin-left:15px;
font-weight:500;
}
.hero{
    background: linear-gradient(
        to bottom,
        #f8f0d2 0%,
        #f5f3e8 40%,
        #ffffff 100%
    );
    padding: 10px 20px;
    position:relative;
    min-height:20vh;
    display:flex;
    align-items:center;
}
.hero::before{
    content:"";
    position:absolute;

    width:650px;
    height:650px;

    background-image:url("imags/background.png");
    background-repeat:no-repeat;
    background-position:center;
    background-size:contain;

    opacity:0.14;

    top:50%;
    left:50%;

    transform:translate(-50%,-50%);
}
.hero-content{
    position:relative;
    z-index:2;
    max-width:800px;
    padding:20px;
}

.hero-logo{
    width:140px;
    margin-bottom:20px;
}

.hero h1{
    font-size:4rem;
    margin-bottom:10px;
    font-weight:700;
}

.hero h2{
    color:#FFD700;
    margin-bottom:20px;
}

.hero p{
    font-size:1.2rem;
    line-height:1.7;
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:800px;
    padding:20px;
}

.hero-logo{
    width:140px;
    margin-bottom:20px;
}

.hero h1{
    font-size:4rem;
    margin-bottom:10px;
}

.hero h2{
    color:#FFD600;
    text-shadow:0 2px 10px rgba(0,0,0,.25);
}

.hero p{
    font-size:1.2rem;
    margin-bottom:30px;
}
.hero h2{
font-size:45px;
}

.btn{
background:#2E8B57;
padding:12px 25px;
margin-top:20px;
border-radius:5px;
text-decoration:none;
color:white;
display:inline-block;
}

section{
padding:50px 6%;
}

h2{
margin-bottom:20px;
color:#0B3D91;
}

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

.card{
background:white;
padding:20px;
border-radius:10px;
box-shadow:0 0 10px rgba(0,0,0,.1);
}

.team{
display:flex;
justify-content:center;
gap:30px;
flex-wrap:wrap;
}
.member-photo{
    width:180px;
    height:220px;
    object-fit:cover;

    border-radius:10px;
    border:none;

    box-shadow:0 3px 8px rgba(0,0,0,.12);

    margin-bottom:15px;
}
.member{
    background:white;
    padding:20px;
    border-radius:12px;
    box-shadow:0 0 10px rgba(0,0,0,.08);

    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;

    width:250px;
}
.member:hover{
    transform:translateY(-4px);
    transition:.3s;
}
.placeholder{
width:120px;
height:120px;
background:#ddd;
border-radius:50%;
margin:auto;
margin-bottom:15px;
}

.qr{
width:250px;
margin-top:20px;
}

iframe{
width:100%;
height:400px;
border:none;
}

footer{
background:#0B3D91;
color:white;
text-align:center;
padding:20px;
}
.top-bar{
    background:#052c6f;
    color:white;
    padding:8px 20px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    font-size:14px;
}

.top-bar .social-icons{
    display:flex;
    gap:10px;
}
.impact-section p{
    line-height:1.8;
    margin-bottom:25px;
}

.impact-btn{
    background:#2E8B57;
    color:white;
    padding:12px 25px;
    text-decoration:none;
    border-radius:6px;
}

.newsletter{
    background:#16213e;
    padding:60px 10%;
    color:white;
}
.newsletter h2{
    color:white;
}
.newsletter h3{
    margin-bottom:20px;
}

.newsletter form{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
}

.newsletter input{
    padding:12px;
    flex:1;
    min-width:200px;
}

.newsletter button{
    padding:12px 25px;
    background:#FFD700;
    border:none;
    font-weight:bold;
    cursor:pointer;
}

.social-section{
    padding:40px 10%;
    background:#0f172a;
    color:white;
}

.social-links{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
}

.social-links a{
    color:white;
    text-decoration:none;
}
.donate-btn{
display:inline-block;
padding:12px 24px;
background:#2E8B57;
color:white;
text-decoration:none;
border-radius:6px;
font-weight:bold;
margin-top:10px;
}
.donate-float{
    position:fixed;
    bottom:25px;
    right:20px;

    background:#25D366;
    color:#000;

    padding:18px 28px;
    border-radius:50px;

    text-decoration:none;
    font-weight:700;
    font-size:18px;

    box-shadow:0 4px 12px rgba(0,0,0,0.3);

    z-index:9999;
}
.bank-details{
    margin-top:20px;
}

.bank-details summary{
    background:#082b65;
    color:white;
    padding:15px;
    border-radius:8px;
    cursor:pointer;
    font-weight:600;
}

.bank-card{
    background:#111;
    padding:15px;
    border-radius:8px;
    margin-top:10px;
}
#vision-mission {
    padding: 60px 10%;
}

.vm-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.vm-box p{
    color:white;
}
.vm-box li{
    color:white;
}
.vm-box {
    flex: 1;
    min-width: 280px;
    background: #111827;
    padding: 25px;
    border-radius: 12px;
}

.vm-box h2 {
    color: #facc15;
    margin-bottom: 15px;
}

.vm-box ul {
    padding-left: 20px;
}

#impact {
    padding: 60px 10%;
    text-align: center;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(180px,1fr));
    gap: 20px;
    margin-top: 30px;
}
.impact-card p{
    color:white;
}
.impact-card {
    background: #111827;
    padding: 25px;
    border-radius: 12px;
}

.impact-card h3 {
    color: #22c55e;
}
.gallery{
    width: 300px;
    height: 350px;
    margin: 30px auto;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.slide{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.0s ease;
}

.slide.active{
    opacity: 1;
}
.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
    margin-top:30px;
}

.gallery-grid img{
    width:100%;
    height:300px;
    object-fit:cover;
    border-radius:12px;
}

form{
    display:flex;
    flex-direction:column;
    gap:15px;
    max-width:600px;
    margin:auto;
}

input,
textarea{
    padding:12px;
    border:none;
    border-radius:8px;
}

textarea{
    height:120px;
}
#gallery{
    padding:80px 20px;
    text-align:center;
}

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

.gallery-grid img{
    width:100%;
    height:300px;
    object-fit:cover;
    border-radius:12px;
    transition:0.3s;
}

.gallery-grid img:hover{
    transform:scale(1.05);
}
#registration,
#downloads,
.newsletter,
#contact{
    padding:30px 8%;
}
#about,
#programs,
#membership,
#gallery,
#trustees,
#advisors,
#registration,
#downloads,
#contact,
#volunteer{
    padding-left:6%;
    padding-right:6%;
    color:black;
}
header{
    position:relative;
}

.menu-toggle{
    font-size:32px;
    color:white;
    cursor:pointer;
    display:block;
}

#navbar{
    display:none;
    flex-direction:column;

    position:absolute;
    top:100%;
    right:20px;

  background:#1E88E5;
    padding:20px;
  border:1px solid rgba(255,255,255,0.2);
    border-radius:10px;
    box-shadow:0 4px 10px rgba(0,0,0,.3);

    z-index:1000;
}

#navbar.show{
    display:flex;
}

#navbar a{
    margin:10px 0;
    color:white;
    text-decoration:none;
}
@media (max-width: 768px){

    .hero h1{
        font-size: 2.8rem;
    }

    .hero h2{
        font-size: 2rem;
    }

    .hero p{
        font-size: 1rem;
    }

    .hero::before{
        width: 350px;
        height: 350px;
    }

    .btn{
        padding: 10px 20px;
    }

    .donate-float{
        padding: 14px 20px;
        font-size: 16px;
    }
}
.banner img{
    width:100%;
    display:block;
}
.poster-section{
    width:100%;
    padding:0;
}

.poster{
    width:100%;
}
.banner{
    padding:0 !important;
    margin:0;
    width:100%;
}

.banner img{
    width:100%;
    height:auto;
    display:block;
}
.docs-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
    padding:50px 6%;
}

#registration,
#downloads{
    padding:0;
}

@media(max-width:768px){
    .docs-wrapper{
        grid-template-columns:1fr;
    }
}
.social-icons{
    display:flex;
    gap:15px;
    align-items:center;
}

.social-icons a{
    color:white;
    font-size:20px;
    transition:.3s;
}

.social-icons a:hover{
    color:#ffd700;
}
@media(max-width:768px){

    .top-bar{
        flex-wrap:wrap;
        gap:8px;
        font-size:12px;
        padding:8px;
    }

    .top-bar span{
        width:100%;
        text-align:center;
    }

    .top-bar .social-icons{
        width:100%;
        justify-content:center;
    }
}
.top-bar{
    background:#052c6f;
    color:white;
    padding:8px 15px;

    display:flex;
    align-items:center;

    gap:15px;
    font-size:14px;
}

.social-icons{
    margin-left:auto;
    display:flex;
    gap:12px;
}
    .hero-tagline{
    font-size:1.3rem;
    color:#2f7d4a;
    font-weight:600;
    margin:15px 0 25px;
}

.hero-programs{
    display:flex;
    flex-wrap:wrap;
    gap:9px;
    margin-bottom:20px;
}
.hero-programs span{
    display:flex;
    align-items:center;
    gap:6px;

    background:#0B2F6B;
    color:#ffffff;

    padding:12px 20px;

    border:1px solid #d9e3f0;
    border-radius:30px;

    font-size:14px;
    font-weight:600;

    box-shadow:none;
}
.hero-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.btn-secondary{
    background:#123a7a;
    color:#fff;
}
#contact{
    color:white !important;
}
#registration ul{
    list-style:none;
    padding:0;
}

#registration li{
    background:#f8f8f8;
    padding:12px;
    margin-bottom:10px;
    border-radius:8px;
}
#advisors .card{
    text-align:center;

    display:flex;
    flex-direction:column;
    align-items:center;
}
.lightbox{
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.9);
    z-index:99999;

    justify-content:center;
    align-items:center;
}

.lightbox img{
    max-width:90%;
    max-height:90%;
    border-radius:10px;
}

.close{
    position:absolute;
    top:20px;
    right:30px;
    font-size:40px;
    color:white;
    cursor:pointer;
}

.gallery-grid img{
    cursor:pointer;
}
.nav-donate{
    background:#2E8B57;
    color:white !important;
    padding:10px 18px;
    border-radius:25px;
    font-weight:600;
    margin-left:20px;
    transition:.3s;
}

.nav-donate:hover{
    background:#1fa955;
    transform:translateY(-2px);
}
.top-bar a{
    color:white;
    text-decoration:none;
}

.top-bar a:hover{
    color:#ffd700;
}
.why-donate{
  /*  background: #ffffff;*/
    padding: 50px;
    margin: 30px 0;
    border-radius: 12px;
   /* box-shadow: 0 2px 10px rgba(0,0,0,0.08);*/
}

.why-donate h2{
    color: #0b3d91;
    margin-bottom: 15px;
}

.trust-points{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.trust-points div{
    font-size: 16px;
    color: #333;
    font-weight: 500;
}
