/* GLOBAL */

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family: 'Poppins', sans-serif;
}

body{

color:#333;
line-height:1.6;
}


/* NAVBAR */

.navbar{
background:#0a3d6b;
position:sticky;
top:0;
z-index:999;
padding:15px 0;
}

.nav-container{
width:90%;
margin:auto;
display:flex;
align-items:center;
justify-content:space-between;
}

.logo{
display:flex;
align-items:center;
font-size:20px;
font-weight:bold;
color:#f7b733;
}.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo span {
    color: #f4b400;   /* your golden color */
    font-weight: 600;
}

/* VERY IMPORTANT */
.logo:link,
.logo:visited,
.logo:hover,
.logo:active {
    color: #f4b400;
    text-decoration: none;
}

.logo img{
width:40px;
margin-right:10px;
}

.nav-menu{
display:flex;
list-style:none;
gap:30px;
}

.nav-menu a{
text-decoration:none;
color:white;
font-weight:500;
transition:0.3s;
}

.nav-menu a:hover{
color:#f7b733;
}

.donate-btn{
background:#f7b733;
color:white;
padding:10px 18px;
border-radius:6px;
text-decoration:none;
font-weight:600;
transition:0.3s;
}

.donate-btn:hover{
background:#ff9f1a;
}

.hamburger{
display:none;
font-size:26px;
color:white;
cursor:pointer;
}


/* HERO SECTION */

.hero{
height:80vh;

display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:white;
}

.hero-content{
max-width:700px;
}

.hero h1{
font-size:48px;
margin-bottom:10px;
}

.hero span{
color:#f7b733;
}

.hero p{
margin:15px 0;
font-size:18px;
}

.hero-btns{
margin-top:20px;
}

.hero-btns a{
padding:12px 22px;
border-radius:6px;
text-decoration:none;
margin:5px;
font-weight:600;
}

.btn-primary{
background:#f7b733;
color:white;
}

.btn-secondary{
background:white;
color:#333;
}


/* PAGE BANNER */

.page-banner{

padding:90px 20px;
text-align:center;
color:white;
}

.page-banner h1{
font-size:40px;
}

.page-banner p{
margin-top:10px;
}


/* SECTIONS */

.section{
padding:70px 10%;
}

.section-title{
text-align:center;
margin-bottom:40px;
font-size:32px;
}


/* IMPACT STATS */

.stats{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.stat-box{
background:white;
padding:30px;
border-radius:10px;
text-align:center;
box-shadow:0 5px 20px rgba(0,0,0,0.1);
}

.stat-box h2{
color:#f7b733;
font-size:32px;
}

.stat-box p{
margin-top:5px;
}


/* CARDS */

.cards{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.card{
background:white;
border-radius:10px;
padding:25px;
box-shadow:0 5px 20px rgba(0,0,0,0.1);
text-align:center;
}

.card img{
width:100%;
border-radius:10px;
margin-bottom:15px;
}


/* FORMS */

.form-container{
max-width:600px;
margin:auto;
background:blue;
padding:40px;
border-radius:10px;
box-shadow:0 5px 20px rgba(0,0,0,0.1);
}

.form-container input,
.form-container textarea,
.form-container select{
width:100%;
padding:12px;
margin:10px 0;
border:1px solid #ccc;
border-radius:5px;
}

.form-container button{
width:100%;
padding:12px;
border:none;
background:#f7b733;
color:white;
font-weight:600;
border-radius:5px;
cursor:pointer;
}

.form-container button:hover{
background:#ff9f1a;
}


/* DONATION AMOUNTS */

.amount-buttons{
display:flex;
gap:10px;
justify-content:center;
margin-bottom:20px;
}

.amount-buttons button{
background:#f7b733;
border:none;
padding:10px 18px;
border-radius:5px;
color:white;
cursor:pointer;
}


/* CONTACT SECTION */

.contact-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
}


/* FOOTER */

footer{
background:#0a3d6b;
color:white;
text-align:center;
padding:25px;
margin-top:60px;
}


/* MOBILE */

@media(max-width:900px){

.stats{
grid-template-columns:repeat(2,1fr);
}

.cards{
grid-template-columns:1fr;
}

.contact-grid{
grid-template-columns:1fr;
}

.hero h1{
font-size:34px;
}

}

/* MOBILE NAV */

@media(max-width:768px){

.nav-menu{
display:none;
flex-direction:column;
position:absolute;
top:70px;
left:0;
background:#0a3d6b;
width:100%;
text-align:center;
}

.nav-menu.active{
display:flex;
}

.nav-menu li{
padding:15px;
}

.hamburger{
display:block;
}



}

/* HERO SECTION FIX */

.hero{

height:85vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
position:relative;
}

.hero::before{
content:'';
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.5);
}

.hero-content{
position:relative;
color:white;
max-width:700px;
}

.hero h1{
font-size:48px;
font-weight:700;
}

.hero span{
color:#f7b733;
}

.hero p{
margin-top:15px;
font-size:18px;
}

.hero-btns{
margin-top:25px;
}

.hero-btns a{
padding:12px 25px;
border-radius:6px;
text-decoration:none;
margin:5px;
font-weight:600;
}

.btn-primary{
background:#f7b733;
color:white;
}

.btn-secondary{
background:white;
color:#333;
}


/* ABOUT SECTION */

.about{
padding:60px 10%;
text-align:center;
line-height:1.7;
}

.about h2{
margin-bottom:15px;
}


/* IMPACT SECTION */

.impact{
padding:60px 10%;
text-align:center;
}

.impact-stats{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
margin-top:30px;
}

.impact-box{
background:white;
padding:30px;
border-radius:10px;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.impact-box h2{
color:#f7b733;
font-size:32px;
}


/* TEAM SECTION */

.team{
padding:60px 10%;
text-align:center;
}

.team {
    padding: 60px 20px;
    background: #f9f9f9;
    text-align: center;
}

.team-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.team-card {
    background: white;
    width: 260px;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 10px;
}

.team-card h3 {
    margin-top: 15px;
}

.team-card p {
    color: gray;
}

.social-icons {
    margin-top: 10px;
}

.social-icons a {
    color: #333;
    font-size: 20px;
    margin: 0 8px;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #0077b5;
}


/* GALLERY */

.gallery{
padding:60px 20px%;
text-align:center;
}

.gallery-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
margin-top:30px;
}

.gallery-grid img{
width:100%;
border-radius:10px;
}

.gallery-grid img{
    width:100%;
    height:280px;
    object-fit: cover;
    border-radius: 10px;
    transition: 0.3s;
}

/* SUPPORT SECTION */

.support{
padding:60px 10%;
text-align:center;
}

.support-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
margin-top:30px;
}

.support-card{
background:white;
padding:30px;
border-radius:10px;
text-align:center;
box-shadow:0 5px 20px rgba(0,0,0,0.1);
}


/* MOBILE FIX */

@media(max-width:900px){

.impact-stats{
grid-template-columns:repeat(2,1fr);
}

.team-grid{
grid-template-columns:1fr;
}

.gallery-grid{
grid-template-columns:1fr;
}

.support-grid{
grid-template-columns:1fr;
}

.hero h1{
font-size:32px;
}

}

/* AI Animated Background */

.ai-bg{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
z-index:-10;
overflow:hidden;
background:#020409;
}

/* animated gradient glow */

.gradient-layer{
position:absolute;
width:100%;
height:100%;
background:
radial-gradient(circle at 20% 30%, rgba(0,150,255,0.35), transparent 40%),
radial-gradient(circle at 80% 60%, rgba(140,0,255,0.35), transparent 40%),
radial-gradient(circle at 50% 80%, rgba(0,255,200,0.25), transparent 40%);
animation:gradientMove 25s infinite alternate ease-in-out;
filter:blur(80px);
}

@keyframes gradientMove{
0%{transform:translate(0,0);}
100%{transform:translate(-200px,-150px);}
}



/* particles */

.particles span{
position:absolute;
width:4px;
height:4px;
background:white;
border-radius:50%;
opacity:0.6;
animation:float 10s linear infinite;
}

.particles span:nth-child(1){left:10%; animation-duration:12s;}
.particles span:nth-child(2){left:20%; animation-duration:8s;}
.particles span:nth-child(3){left:30%; animation-duration:15s;}
.particles span:nth-child(4){left:40%; animation-duration:10s;}
.particles span:nth-child(5){left:50%; animation-duration:14s;}
.particles span:nth-child(6){left:60%; animation-duration:9s;}
.particles span:nth-child(7){left:70%; animation-duration:11s;}
.particles span:nth-child(8){left:80%; animation-duration:13s;}
.particles span:nth-child(9){left:90%; animation-duration:16s;}
.particles span:nth-child(10){left:95%; animation-duration:7s;}

@keyframes float{
0%{
top:100%;
opacity:0;
}
50%{
opacity:1;
}
100%{
top:-10%;
opacity:0;
}
}

.support-link{
text-decoration:none;
color:inherit;
display:block;
}

.support-card{
cursor:pointer;
transition:0.3s;
}

.support-card:hover{
transform:translateY(-5px);
box-shadow:0 8px 20px rgba(0,0,0,0.1);
}


.review-btn{
display:inline-block;
margin-top:10px;
background:#4285F4;
color:white;
padding:10px 18px;
border-radius:5px;
font-weight:500;
text-decoration:none;
border-radius:6px;
transition:0.3s;
}

.review-btn:hover{
background:#e67e22;
transform:translateY(-2px);
}

.social-bar{
position:fixed;
left:10px;
top:50%;
transform:translateY(-50%);
display:flex;
flex-direction:column;
gap:10px;
background:rgba(255,255,255,.5);
backdrop-filter:blur(6px);
padding:1px;
border-radius:10px;
z-index:999;
}

.social-bar a{
    text-decoration: none;
color:blue;
font-size:18px;
width:35px;
height:35px;
display:flex;
align-items:center;
justify-content:center;
border-radius:0px;
transition:0.3s;
}

.social-bar a:hover{
    text-decoration: none;
background:rgba(255,255,255,0.3);
transform:scale(1.1);
}

.whatsapp-float{
position:fixed;
bottom:20px;
right:20px;
width:55px;
height:55px;
 text-decoration: none;
background:#25D366;
color:white;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:28px;
box-shadow:0 5px 15px rgba(0,0,0,0.3);
z-index:999;
transition:0.3s;
}

.whatsapp-float:hover{
background:#1ebe5d;
transform:scale(1.1);
 text-decoration: none;
}

.whatsapp-float{
animation:whatsappPulse 2s infinite;
}

@keyframes whatsappPulse{
0%{box-shadow:0 0 0 0 rgba(37,211,102,0.7);}
70%{box-shadow:0 0 0 12px rgba(37,211,102,0);}
100%{box-shadow:0 0 0 0 rgba(37,211,102,0);}
}

/* ABOUT HERO */

.about-hero{
height:300px;
background:url("../images/volunteer-bg.jpg") center/cover no-repeat;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
position:relative;
}

.about-overlay{
background:rgba(0,0,0,0.55);
padding:70px;
width:100%;
color:white;
}

.about-overlay h1{
font-size:36px;
margin-bottom:10px;
}

.about-overlay p{
font-size:18px;
}


/* ABOUT CONTENT */

.about-content{
max-width:1000px;
margin:auto;
padding:50px 20px;
line-height:1.8;
text-align: center;
}

.about-content h2{
font-size:28px;
margin-bottom:20px;
color:#0b4c82;
text-align: center;
}

.about-content h3{
margin-top:25px;
color:#0b4c82;
text-align: center;
}


/* LEADERSHIP SECTION */

.leadership{
background:#f6f6f6;
padding:60px 20px;
text-align:center;
}

.leadership h2{
font-size:28px;
margin-bottom:40px;
color:#0b4c82;
}

.leader-grid{
display:flex;
justify-content:center;
gap:40px;
flex-wrap:wrap;
}

.leader-card{
background:white;
padding:20px;
width:220px;
border-radius:10px;
box-shadow:0 3px 10px rgba(0,0,0,0.1);
}

.leader-card img{
width:120px;
height:120px;
object-fit:cover;
border-radius:50%;
margin-bottom:10px;
}

.leader-card h4{
margin:10px 0 5px 0;
}

.leader-card p{
color:#777;
font-size:14px;
}

/* FOOTER */

.footer{
background:linear-gradient(135deg,#0b4c82,#0a2f50);

color:white;
padding:50px 20px;
}

.footer-container{
max-width:1200px;
margin:auto;
display:flex;
justify-content:space-between;
flex-wrap:wrap;
gap:40px;
}

.footer-column{
flex:1;
min-width:250px;
text-decoration:none;
}

.contact-info{
flex:1;
min-width:250px;
text-decoration:none;
}

.footer h3{
margin-bottom:15px;

}

.footer a{
color:#ffffff;
text-decoration:none;
}

.footer a:hover{
    color: ffd166;
text-decoration:none;
}

/* remove bullet dots */

.footer ul{
list-style:none;
padding:0;
padding-left: 0;
}

.footer ul li{
    
margin-bottom:8px;
}

.footer-bottom{
text-align:center;
margin-top:30px;
border-top:1px solid rgba(255,255,255,0.2);
text-decoration: none;
padding-top:15px;
}

/* FIX FOOTER LINKS */

.footer a{
color:#ffffff !important;
text-decoration:none !important;
}

.footer a:hover{
color:#ffd166 !important;
text-decoration:none !important;
}

/* Remove bullets from quick links */

.footer ul{
list-style:none !important;
padding-left:0 !important;
margin:0;
}

.footer ul li{
list-style:none !important;
}

.footer p,
.footer li{
font-size:15px;
opacity:0.95;
}

/* Impact Hero */

.impact-hero{
padding:80px 20px;
background:#f5f7fa;
text-align:center;
}

.impact-hero h1{
font-size:40px;
margin-bottom:10px;
}

.impact-hero p{
font-size:18px;
color:#555;
}


/* Stats */

.impact-stats{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:30px;
padding:60px 20px;
text-align:center;
}

.stat-box{
background:#ffffff;
padding:30px;
border-radius:10px;
box-shadow:0 4px 10px rgba(0,0,0,0.08);
}

.stat-box h2{
color:#ff7a00;
font-size:36px;
}


/* Initiatives */

.initiatives{
padding:60px 20px;
}

.initiatives h2{
text-align:center;
margin-bottom:40px;
}

.initiative-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
}

.initiative-card{
background:white;
padding:20px;
border-radius:10px;
box-shadow:0 4px 10px rgba(0,0,0,0.08);
text-align:center;
}

.initiative-card img{
width:100%;
height:180px;
object-fit:cover;
border-radius:8px;
margin-bottom:15px;
}


/* CTA */

.impact-cta{
background:#0b3d60;
color:white;
text-align:center;
padding:70px 20px;
}

.btn-donate,
.btn-volunteer{
display:inline-block;
margin:10px;
padding:12px 25px;
border-radius:6px;
text-decoration:none;
font-weight:bold;
}

.btn-donate{
background:#ff7a00;
color:white;
}

.btn-volunteer{
background:white;
color:#0b3d60;
}

.support-qr {
    text-align: center;
    margin: 40px auto;
}

.support-qr img {
    width: 250px;
    max-width: 90%;
    height: auto;
    border-radius: 10px;
}

.donation-section{
    text-align:center;
    padding:40px 20px;
}

.donation-section h2{
    font-size:28px;
    margin-bottom:10px;
}

.donation-section p{
    font-size:16px;
    margin-bottom:20px;
}

.donate-btn{
    background:#f39c12;
    color:white;
    padding:12px 25px;
    border-radius:6px;
    text-decoration:none;
    font-weight:bold;
}

.transparency{
    max-width:900px;
    margin:60px auto;
    padding:30px;
    text-align: center;
}

.transparency h2{
    font-size:28px;
    margin-bottom:20px;
}

.transparency p{
    font-size: 16px;
    line-height: 1.7;
    margin-bottom:10px;
}

.cta-section{
    background:#0d4b73;
    color:white;
    text-align:center;
    padding:50px 20px;
}

.cta-section a{
    margin:10px;
    display:inline-block;
}

/* CONTACT PAGE */

.contact-section{
padding:60px 10%;
background:#f9f9f9;
}

.contact-title{
font-size:36px;
font-weight:700;
margin-bottom:10px;
}

.contact-subtitle{
margin-bottom:40px;
color:#555;
}

.contact-container{
display:flex;
gap:50px;
flex-wrap:wrap;
}

/* FORM */

.contact-form{
flex:1;
min-width:300px;
}

.contact-form h2{
margin-bottom:20px;
}

.form-row{
display:flex;
gap:20px;
margin-bottom:20px;
flex-wrap:wrap;
}

.form-row input{
flex:1;
padding:12px;
border:1px solid #ccc;
border-radius:6px;
}

.form-row textarea{
width:100%;
padding:12px;
border:1px solid #ccc;
border-radius:6px;
}

.send-btn{
background:#f36c21;
color:white;
border:none;
padding:12px 25px;
border-radius:6px;
cursor:pointer;
}

.send-btn:hover{
background:#d95b17;
}

/* CONTACT INFO */

.contact-info{
flex:1;
min-width:250px;
}

.contact-info h2{
margin-bottom:20px;
}

.contact-info p{
margin-bottom:12px;
}

.contact-info a{
text-decoration:none;
color:#0a58ca;
}

.whatsapp-btn{
display:inline-block;
margin-top:15px;
padding:10px 18px;
background:#25D366;
color:white;
border-radius:6px;
text-decoration:none;
}

/* MAP */

.map-section{
margin-top:60px;
}

.map-section iframe{
width:100%;
height:400px;
border-radius:10px;
border:0;
}

/* MOBILE */

@media(max-width:768px){

.contact-container{
flex-direction:column;
}

.form-row{
flex-direction:column;
}

}



.banner-content{
    max-width:600px;
    margin:auto;
}

/* ABOUT PAGE MOBILE FIX */

@media (max-width: 768px) {

  /* Hero Section */
  .about-hero,
  .about-banner,
  .hero-section {
      height: 70vh;
      padding: 20px;
      text-align: center;
  }

  .about-hero h1,
  .about-banner h1,
  .hero-section h1 {
      font-size: 32px;
      line-height: 1.2;
  }

  .about-hero p,
  .about-banner p,
  .hero-section p {
      font-size: 16px;
      padding: 0 10px;
  }

  /* About Section */
  .about-section {
      padding: 40px 20px;
      margin-top: 0;
      text-align: center;
  }

  .about-section h2 {
      font-size: 28px;
      margin-bottom: 15px;
  }

  .about-section p {
      font-size: 15px;
      line-height: 1.6;
  }

}

/* VIEW GALLERY BUTTON */

.view-gallery-btn{
    display:inline-block;
    margin-top:30px;
    padding:12px 28px;
    background:#ff7a00;
    color:#ffffff;
    font-size:16px;
    font-weight:600;
    border-radius:6px;
    text-decoration:none;
    transition:all 0.3s ease;
}

.view-gallery-btn:hover{
    background:#e66800;
    transform:translateY(-2px);
}

.upi-link{
color:#ff7a00;
font-weight:600;
text-decoration:none;
}

.upi-link:hover{
text-decoration:underline;
}




.qr{
text-align:center;
margin-top:30px;
}

.upi-qr{
width:220px;
max-width:90%;
display:block;
margin:20px auto;
}

.upi-pay-btn{
display:inline-block;
background:#f28c28;
color:white;
padding:12px 28px;
border-radius:6px;
text-decoration:none;
font-weight:600;
margin-top:10px;
transition:0.3s;
}

.upi-pay-btn:hover{
background:#e67e22;
}


/* ===== MOBILE SWIPE CAROUSEL FOR SECTIONS ===== */

@media (max-width:768px){

/* Team Section */
.team-container{
display:flex;
flex-wrap:nowrap;
justify-content: start;
overflow-x:auto;
gap:18px;
padding:10px 18px;
scroll-snap-type:x mandatory;
-webkit-overflow-scrolling:touch;
}

.team-container::-webkit-scrollbar{
display:none;
}

.team-card{
min-width:85%;
flex-shrink:0;
scroll-snap-align:center;
}


/* Impact Section */

.impact-stats{
display:flex;
flex-wrap:nowrap;
overflow-x:auto;
justify-content: start;
gap:20px;
padding:10px;
scroll-snap-type:x mandatory;
-webkit-overflow-scrolling:touch;
}

.impact-stats::-webkit-scrollbar{
display:none;
}

.impact-box{
min-width:94%;
max-width:95%;
flex-shrink:0;
scroll-snap-align:center;
}


/* Gallery Section */

.gallery-grid{
display:flex;
flex-wrap:nowrap;
overflow-x:auto;
gap:15px;
padding:10px 18px;
scroll-snap-type:x mandatory;
-webkit-overflow-scrolling:touch;
}

.gallery-grid::-webkit-scrollbar{
display:none;
}

.gallery-grid img{
min-width:70%;
max-width:90%;
border-radius:12px;
flex-shrink:0;
scroll-snap-align:center;
}

}
/* CARD */
.blog-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* IMAGE */
.blog-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

/* BODY */
.blog-body {
    padding: 12px;
}

/* TITLE */
.blog-body h3 {
    font-size: 15px;
    margin-bottom: 8px;
    
}

.blog-body h3 a {
    text-decoration: none;
    color: #000;
}

/* TEXT */
.blog-body p {
    font-size: 13px;
    color: #555;
}

/* BUTTON */
.read-btn {
    display: inline-block;
    margin-top: 8px;
    padding: 6px 10px;
    background: #f39c12;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    font-size: 13px;
}

/* MOBILE */
@media (max-width: 768px) {
    .blog-img {
        height: 200px;
    }
}