﻿/* =====================================================
   GLOBAL RESET
===================================================== */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Segoe UI',Arial,sans-serif;
background:#ffffff;
color:#555;
}


/* =====================================================
   HEADER
===================================================== */

.header{
width:100%;
background:#6FAE7C;
padding:15px 60px;
position:relative;
z-index:9999;
}

.header-container{
display:flex;
justify-content:space-between;
align-items:center;
}

.logo-section{
display:flex;
align-items:center;
}

.logo{
height:65px;
margin-right:15px;
}

.ngo-text h1{
color:#fff;
font-size:22px;
}


/* =====================================================
   MENU
===================================================== */

.menu{
list-style:none;
display:flex;
align-items:center;
gap:25px;
}

.menu li{
position:relative;
}

.menu a{
text-decoration:none;
color:#fff;
font-size:16px;
font-weight:500;
padding:8px 12px;
transition:0.3s;
}

.menu a:hover{
color:#e5f5e8;
}


/* DROPDOWN */

.submenu{
position:absolute;
top:40px;
left:0;
background:#fff;
min-width:200px;
list-style:none;
border-radius:10px;
box-shadow:0 10px 25px rgba(0,0,0,0.1);
opacity:0;
visibility:hidden;
transform:translateY(10px);
transition:0.3s;
padding:10px 0;
}

.submenu li{
padding:8px 20px;
}

.submenu li a{
color:#555;
font-size:14px;
display:block;
}

.submenu li a:hover{
background:#f1faf3;
color:#6FAE7C;
border-radius:6px;
}

.dropdown:hover .submenu{
opacity:1;
visibility:visible;
transform:translateY(0);
}


/* HEADER DONATE BUTTON */

.donate-header-btn{
background:#ffffff;
color:#6FAE7C !important;
padding:8px 20px;
border-radius:25px;
font-weight:700;
}

.donate-header-btn:hover{
background:#f1faf3;
}


/* =====================================================
   HERO SLIDER
===================================================== */

.hero{
position:relative;
width:100%;
height:90vh;
overflow:hidden;
}

.hero-slide{
position:absolute;
width:100%;
height:100%;
object-fit:cover;
opacity:0;
transition:opacity 1s ease;
}

.hero-slide.active{
opacity:1;
}

.hero-overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.55);
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
text-align:center;
color:#fff;
padding:20px;
}

.hero-overlay h2{
font-size:48px;
margin-bottom:20px;
}

.hero-overlay p{
max-width:700px;
font-size:18px;
margin-bottom:25px;
}


/* HERO BUTTON */

.btn{
background:#fff;
color:#6FAE7C;
padding:14px 38px;
font-size:22px;
font-weight:700;
border-radius:40px;
text-decoration:none;
transition:0.3s;
}

.btn:hover{
background:#6FAE7C;
color:#fff;
}


/* =====================================================
   SECTION
===================================================== */

.section{
padding:80px 100px;
text-align:center;
}

.section h3{
font-size:28px;
color:#6FAE7C;
margin-bottom:20px;
}

.light-section{
background:#f1faf3;
}


/* =====================================================
   CHILD DONATION SLIDER
===================================================== */

.child-slider-wrapper{
position:relative;
max-width:1100px;
margin:40px auto;
overflow:hidden;
}

.child-slider{
display:flex;
gap:25px;
overflow-x:auto;
scroll-behavior:smooth;
}

.child-slider::-webkit-scrollbar{
display:none;
}

.child-card{
background:#fff;
border-radius:15px;
padding:20px;
text-align:center;
box-shadow:0 8px 20px rgba(0,0,0,0.08);
min-width:calc((100% - 50px)/3);
}

.child-card img{
width:100%;
height:300px;
object-fit:cover;
border-radius:12px;
margin-bottom:10px;
}

.child-card h4{
color:#4CAF50;
margin-bottom:10px;
}


/* DONATION AMOUNT */

.donation-box{
margin-top:10px;
}

.amount-circle{
width:110px;
height:110px;
margin:10px auto;
border-radius:50%;
background:linear-gradient(135deg,#43a047,#66bb6a);
color:#fff;
font-weight:bold;
font-size:20px;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
}

.amount-circle span{
font-size:11px;
}


/* DONATE BUTTON */

.donate-btn{
margin-top:20px;
width:100%;
padding:14px;
border:none;
border-radius:30px;
background:#6FAE7C;
color:#fff;
font-weight:700;
cursor:pointer;
}

.donate-btn:hover{
background:#4CAF50;
}


/* SLIDER BUTTON */

.slider-btn{
position:absolute;
top:50%;
transform:translateY(-50%);
background:#6FAE7C;
border:none;
color:white;
font-size:28px;
width:45px;
height:45px;
border-radius:50%;
cursor:pointer;
}

.left-btn{ left:10px; }
.right-btn{ right:10px; }


/* =====================================================
   ABOUT VIDEO
===================================================== */

.about-section{
padding:80px 100px;
background:#f8fdf9;
}

.about-container{
display:flex;
align-items:center;
justify-content:center;
gap:60px;
flex-wrap:wrap;
}

.about-video video{
width:280px;
height:500px;
object-fit:cover;
border-radius:20px;
box-shadow:0 8px 20px rgba(0,0,0,0.15);
}

.about-content{
max-width:650px;
text-align:center;
}

.about-content h2{
color:#6FAE7C;
font-size:32px;
margin-bottom:15px;
}

.about-content p{
line-height:1.8;
}


/* =====================================================
   CERTIFICATE SECTION
===================================================== */

.certificate-section{
padding:80px 100px;
background:#f8fdf9;
text-align:center;
}

.certificate-container{
display:flex;
justify-content:center;
gap:30px;
flex-wrap:wrap;
margin-top:40px;
}

.certificate-card{
width:350px;
background:#fff;
padding:20px;
border-radius:15px;
box-shadow:0 8px 20px rgba(0,0,0,0.08);
}

.certificate-card img{
width:100%;
height:420px;
object-fit:cover;
border-radius:10px;
margin-bottom:15px;
}

.cert-btn{
display:inline-block;
padding:10px 25px;
background:#6FAE7C;
color:#fff;
border-radius:30px;
text-decoration:none;
}

.cert-btn:hover{
background:#4CAF50;
}


/* =====================================================
   DONATION CTA
===================================================== */

.donation-cta{
background:url('../Images/child-bg.jpg') center/cover no-repeat;
height:420px;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
margin-top:60px;
}

.donation-overlay{
background:rgba(0,0,0,0.6);
padding:60px;
width:100%;
height:100%;
display:flex;
flex-direction:column;
justify-content:center;
color:#fff;
}

.cta-btn{
padding:14px 35px;
border-radius:40px;
text-decoration:none;
font-weight:600;
margin:10px;
}

.primary-btn{
background:#6FAE7C;
color:#fff;
}

.secondary-btn{
border:2px solid #fff;
color:#fff;
}

/* Floating Donate Button */
.floating-donate {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: none;
    z-index: 9999;
}

/* Button Style - Theme Matching */
.floating-donate a {
    display: inline-block;
    padding: 18px 38px;
    background: linear-gradient(45deg, #6FAE7C, #5c9e6b);
    color: #ffffff;
    font-weight: 900;
    font-size: 25px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(111, 174, 124, 0.4);
    transition: all 0.3s ease;
}

/* Hover Effect */
.floating-donate a:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(111, 174, 124, 0.6);
}

/* Zoom Animation */
.zoom-animation {
    animation: zoomEffect 1.4s infinite;
}

@keyframes zoomEffect {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.1); }
    100% { transform: scale(1); }
}


/* =====================================================
   FOOTER (PROFESSIONAL)
===================================================== */

.footer-main{
background:#f7f7f7;
padding:60px 80px;
border-top:3px solid #6FAE7C;
}

.footer-container{
display:flex;
justify-content:space-between;
flex-wrap:wrap;
gap:40px;
}

.footer-col{
width:22%;
}

.footer-col h3{
color:#333;
margin-bottom:15px;
}

.footer-col p{
font-size:14px;
line-height:1.7;
color:#666;
}

.footer-col ul{
list-style:none;
}

.footer-col ul li{
margin-bottom:8px;
}

.footer-col ul li a{
text-decoration:none;
color:#666;
font-size:14px;
}

.footer-col ul li a:hover{
color:#6FAE7C;
}


/* SOCIAL ICONS */

.social-icons{
margin-top:10px;
}

.social-icons a{
display:inline-block;
width:35px;
height:35px;
line-height:35px;
text-align:center;
border-radius:50%;
background:#e9e9e9;
margin-right:8px;
text-decoration:none;
color:#555;
font-weight:bold;
}


/* FOOTER BOTTOM */

.footer-bottom{
background:#eaeaea;
text-align:center;
padding:15px;
font-size:14px;
color:#666;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media screen and (max-width:768px){

.header-container{
flex-direction:column;
align-items:flex-start;
}

.menu{
margin-top:10px;
flex-wrap:wrap;
}

.section{
padding:50px 20px;
}

.child-card{
min-width:85%;
}

.footer-container{
flex-direction:column;
}

.footer-col{
width:100%;
}

}

/* =====================================================
   DONATE PAGE
===================================================== */

.donate-page{
max-width:1200px;
margin:auto;
padding:60px 20px;
text-align:center;
}


/* HERO SECTION */

.donate-hero{
background:linear-gradient(135deg,#6FAE7C,#4CAF50);
color:#fff;
padding:70px 30px;
border-radius:15px;
margin-bottom:50px;
box-shadow:0 8px 25px rgba(0,0,0,0.1);
}

.donate-hero h1{
font-size:40px;
margin-bottom:15px;
}

.donate-hero p{
font-size:18px;
max-width:700px;
margin:auto;
line-height:1.7;
}


/* PAYMENT SECTION */

.payment-section{
background:#f8fdf9;
padding:50px 30px;
border-radius:15px;
margin-bottom:50px;
box-shadow:0 8px 20px rgba(0,0,0,0.08);
}

.payment-section h2{
color:#6FAE7C;
font-size:30px;
margin-bottom:10px;
}

.payment-text{
color:#666;
margin-bottom:40px;
font-size:16px;
}


/* PAYMENT BOX */

.payment-box{
display:flex;
justify-content:center;
gap:40px;
flex-wrap:wrap;
}


/* BANK DETAILS */

.bank-details{
background:#fff;
padding:30px;
border-radius:15px;
width:350px;
box-shadow:0 6px 18px rgba(0,0,0,0.08);
text-align:left;
}

.bank-details h3{
color:#6FAE7C;
margin-bottom:15px;
}

.bank-details p{
margin-bottom:8px;
font-size:15px;
}


/* UPI BOX */

.upi-box{
background:#fff;
padding:30px;
border-radius:15px;
width:350px;
box-shadow:0 6px 18px rgba(0,0,0,0.08);
}

.upi-box h3{
color:#6FAE7C;
margin-bottom:15px;
}

.upi-img{
width:200px;
margin-top:10px;
}


/* IMPACT TEXT */

.payment-impact{
margin-top:40px;
font-size:17px;
font-weight:500;
color:#444;
}


/* TRUST SECTION */

.donate-trust{
background:#ffffff;
padding:60px 40px;
border-radius:15px;
box-shadow:0 6px 20px rgba(0,0,0,0.08);
margin-bottom:50px;
}

.donate-trust h2{
color:#6FAE7C;
font-size:30px;
margin-bottom:20px;
}

.trust-text{
max-width:800px;
margin:15px auto;
line-height:1.8;
font-size:16px;
color:#555;
}

.trust-highlight{
margin-top:25px;
font-size:18px;
font-weight:600;
color:#4CAF50;
}


/* THANK YOU */

.thank-you{
background:#6FAE7C;
color:#fff;
padding:50px 30px;
border-radius:15px;
}

.thank-you h2{
font-size:28px;
margin-bottom:10px;
}

.thank-you p{
font-size:16px;
}


/* RESPONSIVE */

@media screen and (max-width:768px){

.payment-box{
flex-direction:column;
align-items:center;
}

.bank-details,
.upi-box{
width:100%;
max-width:350px;
}

.donate-hero h1{
font-size:28px;
}

}

/* ==============================
   DONATION CTA SECTION
============================== */

.donation-cta {
    position: relative;
    background: url('../Images/child-bg.jpg') center/cover no-repeat;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 60px;
}

.donation-overlay {
    background: rgba(0, 0, 0, 0.6);
    padding: 60px 30px;
    width: 100%;
    height: 100%;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.donation-overlay h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.donation-overlay p {
    font-size: 18px;
    max-width: 650px;
    margin: 0 auto 30px;
}

/* Buttons container */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Common button style */
.cta-btn {
    padding: 14px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 40px;
    text-decoration: none;
    transition: 0.3s ease;
}

/* Primary Donate Button */
.primary-btn {
    background: linear-gradient(45deg, #6FAE7C, #5c9e6b);
    color: white;
    box-shadow: 0 10px 25px rgba(111, 174, 124, 0.4);
}

.primary-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(111, 174, 124, 0.6);
}

/* Secondary Button */
.secondary-btn {
    border: 2px solid #ffffff;
    color: #ffffff;
}

.secondary-btn:hover {
    background-color: white;
    color: #6FAE7C;
}