/* RESET */
*{
margin:0;
padding:0;
box-sizing:border-box;
font-family: Arial, Helvetica, sans-serif;
}

/* HEADER */
.blog-header{
background:#6CBC49;
padding:80px 20px;
text-align:center;
}

.blog-header h1{
color:white;
font-size:58px;
font-weight:500;
}

/* MAIN SECTION */
.blog-container{
background:#f5f5f5;
padding:60px 10%;
}

/* HEADINGS */
.blog-container h2{
font-size:34px;
margin-bottom:15px;
color:#333;
}

/* DESCRIPTION TEXT */
.blog-desc{
color:#444;
font-size:18px;
margin-top:10px;
line-height:1.6;
}

/* GREEN LINKS */
.blog-link{
color:#40b66a;
font-size:18px;
text-decoration:none;
font-weight:600;
}

.blog-link:hover{
text-decoration:underline;
}

/* BLOG CARDS */
.blog-card{
background:white;
padding:25px;
border-radius:8px;
border:1px solid #ddd;
margin-top:20px;
transition:0.3s;
}

.blog-card:hover{
box-shadow:0 4px 12px rgba(0,0,0,0.1);
}

/* BLOG CARD TEXT */
.blog-card p{
margin-top:10px;
color:#555;
font-size:16px;
line-height:1.6;
}

/* DIVIDER */
.divider{
margin:30px 0;
border-top:1px solid #ccc;
}

/* BLOG BANNER */

 .blog-banner{
background:linear-gradient(135deg,#1e73e8,#0057d9);
color:white;
padding:120px 20px;
text-align:center;
} 

 .banner-content h1{
font-size:42px;
margin-bottom:15px;
}

.banner-content p{
font-size:18px;
opacity:0.9;
} 


.hero-banner{
background-image:url("/images/banner.jpg");
background-size:cover;
background-position:center;
height:400px;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
position:relative;
color:white;
/* margin-top: 50px; */
}

.banner-overlay{
background:rgba(0,0,0,0);
width:100%;
height:100%;
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
}

.hero-banner h1{
font-size:40px;
margin-bottom:10px;
}

.hero-banner p{
font-size:20px;
}

/* BLOG CONTENT */

.blog-content{
padding:60px 10%;
background:#f8f9fa;
}

.container{
max-width:1200px;
/* padding:40px 60px; */
/* margin-left:40px; */
}


.blog-content p{
font-size:18px;
line-height:1.8;
color:#444;
margin-bottom:20px;
}


.blog-content h2{
margin-top:40px;
margin-bottom:15px;
font-size:28px;
color:#222;
}


.blog-content h3{
margin-top:20px;
font-size:22px;
color:#333;
}

/* FAQ SECTION */

.faq-container{
max-width:900px;
margin:40px auto;
}

.faq-item{
border:1px solid #e5e5e5;
border-radius:8px;
margin-bottom:12px;
overflow:hidden;
background:#fff;
box-shadow:0 2px 6px rgba(0,0,0,0.05);
transition:0.3s;
}

.faq-question{
width:100%;
padding:18px 20px;
font-size:17px;
font-weight:600;
background:#f9fafb;
border:none;
text-align:left;
cursor:pointer;
position:relative;
transition:0.3s;
}

.faq-question:hover{
background:#eef4ff;
}

.faq-question::after{
content:"+";
position:absolute;
right:20px;
font-size:22px;
transition:0.3s;
}

.faq-item.active .faq-question::after{
content:"−";
}

.faq-answer{
max-height:0;
overflow:hidden;
transition:max-height 0.3s ease;
padding:0 20px;
}

.faq-answer p{
padding:15px 0;
color:#555;
line-height:1.7;
}

/*===================*/

.carousel-item {
    position: relative;
}

.carousel-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
     background: linear-gradient(
        rgba(2,48,71,0.6),
        rgba(2,48,71,0.75)
    );

}

.carousel-caption {
    z-index: 2;
}

.donate{
position:relative;
}

.donate::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;

background: linear-gradient(
rgba(2,48,71,0.6),
rgba(2,48,71,0.75)
);

z-index:1;
}

.donate .container{
position:relative;
z-index:2;
}

/*.causes-item{*/
/*position:relative;*/
/*overflow:hidden;*/
/*}*/

/*.causes-item img{*/
/*transition:0.4s ease;*/
/*}*/

/* Overlay */
/*.causes-overlay{*/
/*position:absolute;*/
/*top:0;*/
/*left:0;*/
/*width:100%;*/
/*height:100%;*/

/*display:flex;*/
/*align-items:center;*/
/*justify-content:center;*/

/*opacity:0;*/
/*transition:0.4s;*/

/*background: linear-gradient(*/
/*rgba(2,48,71,0.4),*/
/*rgba(2,48,71,0.8)*/
/*);*/
/*}*/

/* Hover effect */

/*.causes-item:hover img{*/
/*transform:scale(1.08);*/
/*}*/

/*.causes-item:hover .causes-overlay{*/
/*opacity:1;*/
/*}*/

.position-relative{
position:relative;
overflow:hidden;
}

.causes-overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;

display:flex;
align-items:center;
justify-content:center;

background: rgba(0,0,0,0.6);

transform:translateY(-100%);
opacity:0;

transition:all 0.8s ease;
}

/* hover only on image section */

.position-relative:hover .causes-overlay{
transform:translateY(0);
opacity:1;
}

/* hover effect */

.causes-item:hover .causes-overlay{
transform:translateY(0);
opacity:1;
}

.testimonial-carousel .owl-nav{
position:absolute;
width:100%;
top:50%;
transform:translateY(-50%);
display:flex;
justify-content:space-between;
}

.testimonial-carousel .owl-nav button{
background:none;
border:none;
font-size:30px;
color:#023047;
}

.reels-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
}

.reel-card{
position:relative;
width:100%;
height:500px;   /* height increase */
overflow:hidden;
border-radius:12px;
}

.reel-card iframe{
width:100%;
height:100%;
border:none;
border-radius:12px;
}