/* ===================================
GLOBAL
=================================== */
*{
margin:0;
padding:0;
box-sizing:border-box;
}

:root{
--nav-height:80px;
}

html,body{
width:100%;
height:100%;
overflow-x:hidden;
font-family:'Teachers',sans-serif;
}

@media (min-width: 1400px) {  body .container { max-width: 1320px;  width: 100%;   } }
/* ===================================
NAVBAR
=================================== */

.trust-navbar{
background:#000;
position:relative; /* change from fixed */
width:100%;
padding:10px 0;
height:var(--nav-height);
}

.nav-holder{
width:100%;
padding:0 45px;
display:flex;
align-items:center;
justify-content:space-between;
}

.trust-logo{
display:flex;
align-items:center;
text-decoration:none;
color:#fff !important;
font-size:18px;
font-weight:700;
margin-right:70px;
white-space:nowrap;
}

.trust-logo img{
width:100%;
height:50px; 
margin-right:15px;
}

.trust-logo img:focus-visible{
outline:none !important;
}

.navbar-collapse{
display:flex;
align-items:center;
justify-content:space-between;
flex:1;
}

.trust-menu{
display:flex;
align-items:center;
margin-left:30px;
padding:0;
}

.trust-menu .nav-item{
margin-right:55px;
list-style:none;
}

.trust-menu .nav-link{
color:#fff !important;
font-size:18px;
font-weight:500;
padding:0 !important;
transition:.3s;
text-decoration:none;
}

.trust-menu .active .nav-link,
.trust-menu .nav-link:hover{
color:#09ccff !important;
}


/* donate button */
.donate-btn{
background-image: linear-gradient(127deg, #09ccff 42%, #0067e0 81%);
color:#000 !important;
padding:4px 40px;
font-size:24px;
font-weight:700;
text-decoration:none;
border-radius:12px;
transition:.4s;
}

.donate-btn:hover{
text-decoration:none;
color:#000;
transform:translateY(-3px);
background-image: linear-gradient(127deg, #0067e0 42%, #09ccff 81%);}



/* ===================================
HAMBURGER
=================================== */

.menu-btn{
border:0;
background:transparent;
padding:0;
outline:none !important;
box-shadow:none !important;
}

.navbar-toggler{
border:none;
padding:0;
}

.navbar-toggler:focus{
outline:none;
box-shadow:none;
}

.navbar-toggler-icon{
background:none !important;
width:34px;
height:26px;
display:block;
position:relative;
border-top:4px solid #fff;
}

.navbar-toggler-icon:before,
.navbar-toggler-icon:after{
content:'';
position:absolute;
left:0;
width:100%;
border-top:4px solid #fff;
}

.navbar-toggler-icon:before{
top:8px;
}

.navbar-toggler-icon:after{
top:18px;
}



/* ===================================
HERO SLIDER
=================================== */

.hero-slider{
height:100vh;
position:relative;
}

.carousel-item{
height:100vh;
min-height:100vh;
background-size:cover;
background-position:center center;
position:relative;
}

.carousel-item:before{
content:'';
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(255,255,255,.10);
}


/* slides */
.slide1{
background-image:url('../images/slider/slider.png');
}

.slide2{
background-image:url('../images/slider/slider2.jpeg');
}

.slide3{
background-image:url('../images/slider/slider.png');
}



/* ===================================
HERO CONTENT
=================================== */

.hero-content{
position:absolute;
top:20%;
left:50%;
transform:translate(-50%,-50%);
text-align:center;
width:90%;
max-width:1250px;
z-index:5;
}

.hero-content h1{
margin-bottom:5px;
animation:fadeUp 1s ease;
font-size:64px;
font-weight:700;
color:#000;
}

.hero-content p{
max-width:1100px;
margin:auto auto 5px;
animation:fadeUp 1.5s ease;
font-size:24px;
font-weight:600;
line-height:1.2;
color:rgba(0,0,0,.6);
}



/* buttons */
.hero-buttons{
display:flex;
justify-content:center;
gap:30px;
flex-wrap:wrap;
animation:fadeUp 2s ease;
}

.hero-btn{
display:flex;
align-items:center;
justify-content:center;
text-align:center;
min-width:250px;
padding:10px;
border-radius:12px;
font-size:20px;
font-weight:700;
text-decoration:none;
transition:.4s;
}

.btn-support{
background-image: linear-gradient(127deg, #09ccff 42%, #0067e0 81%);
color:#fff;
}

.btn-support:hover{
background-image: linear-gradient(127deg, #0067e0 42%, #09ccff 81%);
transform:translateY(-4px);
color:#fff;
text-decoration:none;
}

.btn-partner{
border:1px solid rgba(255,255,255,.85);
background:rgba(255,255,255,.35);
backdrop-filter:blur(8px);
color:#fff;
}

.btn-partner:hover{
background:#fff;
color:#000;
transform:translateY(-4px);
text-decoration:none;
}



/* ===================================
SLIDER INDICATORS
=================================== */

.carousel-indicators{
bottom:35px;
display:flex;
align-items:center;
justify-content:center;
margin:0;
}

.carousel-indicators li{
width:14px;
height:14px;
border-radius:50%;
background:#fff;
margin:0 7px;
opacity:1;
border:none;
transition:.4s;
}

.carousel-indicators .active{
width:44px;
height:12px;
border-radius:30px;
background:#09ccff;
}



/* ===================================
ANIMATION
=================================== */

@keyframes fadeUp{
from{
opacity:0;
transform:translateY(70px);
}
to{
opacity:1;
transform:translateY(0);
}
}



/* ===================================
TABLET
=================================== */

@media(max-width:1200px){

.hero-content h1{
font-size:72px;
}

.hero-content p{
font-size:26px;
}

.hero-btn{
font-size:24px;
min-width:300px;
}

}



/* ===================================
MOBILE MENU FIX
=================================== */

@media(max-width:991px){

.trust-navbar{
padding:15px 0;
}

.nav-holder{
padding:0 20px;
flex-wrap:wrap;
}

.trust-logo{
font-size:15px;
margin-right:0;
}

.trust-logo img{
width:100%;
height:38px;
}


/* fixed dropdown */
.navbar-collapse{
position:absolute;
top:100%;
left:0;
width:100%;
background:#000;
padding:25px 30px;
margin-top:0;
border-radius:0;
z-index:999;
display:none;
flex:none !important;
justify-content:flex-start !important;
text-align:left;
}

.navbar-collapse.show{
display:block;
}

.trust-menu{
display:block !important;
width:100%;
margin:0 !important;
padding:0;
}

.trust-menu .nav-item{
display:block;
margin:0 0 20px 0 !important;
}

.trust-menu .nav-link{
display:block;
font-size:24px;
text-align:left;
padding:0 !important;
}

.donate-btn{
display:inline-block;
margin-top:15px;
padding:8px 35px;
font-size:18px;
}

.menu-btn{
margin-left:auto;
}

.hero-content h1{
font-size:55px;
}

.hero-content p{
font-size:22px;
}

.hero-btn{
font-size:22px;
min-width:280px;
}

}



/* ===================================MOBILE=================================== */

@media(max-width:767px){

.hero-content{
top:25%;
}

.hero-content h1{
font-size:28px;
}

.hero-content p{
font-size:18px;
margin-bottom:15px;
}

.hero-buttons{
flex-direction:column;
gap:18px;
}

.hero-btn{
width:100%;
min-width:100%;
font-size:20px;
}

.carousel-indicators{
bottom:20px;
}

.carousel-indicators li{
width:12px;
height:12px;
}

.carousel-indicators .active{
width:36px;
height:10px;
}

}

 /*=========================
OUR STORY SECTION
=========================*/

.our-story-section{
padding:40px 80px;
background:#fff;
overflow:visible; 
}

.story-image-wrap{
border-radius:22px;
overflow:hidden;
position:relative;
transform:translateY(0);
transition:.5s;
box-shadow:0 15px 45px rgba(0,0,0,.08);

}

.story-image-wrap:hover{
transform:translateY(-8px);
}

.story-image-wrap img{
width:100%;
display:block;
border-radius:22px;
}


.story-content{
padding-left:30px;
animation:fadeUp 1s ease;
}

.story-content h2{
margin-bottom:15px;
 align-self: stretch;
  flex-grow: 0; 
  font-size: 50px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: left;
  color: #000;
}

.story-content p{
 
  align-self: stretch;
  flex-grow: 0; 
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.75;
  letter-spacing: normal;
  text-align: left;
  color: rgba(0, 0, 0, 0.6);
}

.story-points{
margin-top:40px;
}

.story-point{
display:flex;
align-items:center;  
color:#111; 
margin-bottom:20px;
transition:.3s;

 
  flex-grow: 0; 
  font-size: 20px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.2;
  letter-spacing: normal;
  text-align: left;
  color: #000;
}

 

.story-point span{
width:30px;
height:30px;
border-radius:50%;
background:#09ccff;
color:#fff;
display:flex;
align-items:center;
justify-content:center;
font-size:18px;
font-weight:700;
margin-right:10px;
flex-shrink:0;
box-shadow:0 8px 20px rgba(0,213,88,.3);
}



/*=========================
RESPONSIVE
=========================*/

@media(max-width:1200px){

.story-content h2{
font-size:54px;
}

.story-content p{
font-size:21px;
}

.story-point{
font-size:22px;
}

}

@media(max-width:991px){

.our-story-section{
padding:80px 0;
}

.story-content{
padding-left:0;
margin-top:10px;
}

.story-content h2{
font-size:48px;
}

.story-content p{
font-size:20px;
}

.story-point{
font-size:20px;
margin-bottom:22px;
}

}

@media(max-width:767px){

.our-story-section{
padding:20px 0;
}

.story-content h2{
font-size:40px;
margin-bottom:15px;
}

.story-content p{
font-size:18px;
line-height:1.6;
margin-bottom:0px;
}

.story-point{
font-size:18px;
align-items:flex-start;
line-height:1.5;
}

.story-point span{
width:34px;
height:34px;
font-size:16px;
margin-right:14px;
}

.story-image-wrap{
border-radius:16px;
}

.story-image-wrap img{
border-radius:16px;
}

}


/*=========================
PROGRAMS SECTION
=========================*/

.programs-section{
padding:40px 80px;
background:#f8f9fa;
}


/* CARD WRAPPER */
.program-card{
height:100%;
min-height:280px;
perspective:1000px;
background:transparent;
transition:.4s;
}


/* INNER FLIP */
.card-inner{
position:relative;
width:100%;
height:100%;
transition:transform .7s ease;
transform-style:preserve-3d;
}


/* HOVER FLIP */
.program-card:hover .card-inner{
transform:rotateY(180deg);
}


/* FRONT & BACK */
.card-front,
.card-back{
position:absolute;
width:100%;
height:100%;
border-radius:24px;
padding:24px 16px;
text-align:center;

display:flex;
flex-direction:column;
justify-content:center;

backface-visibility:hidden;
-webkit-backface-visibility:hidden; /* 🔥 fix flicker */

box-shadow:0 4px 18px rgba(0,0,0,.03);
transition:.4s;
}


/* FRONT */
.card-front{
background:#fff;
}


/* BACK */
.card-back{
background:#fff; /* 👈 SAME CONTENT, so keep same bg */
color:#000;
transform:rotateY(180deg);
}


/* HOVER LIFT */
.program-card:hover{
transform:translateY(-10px);
}


/* ICON */
.program-icon{
margin-bottom:10px;
}

.program-icon img{
height:58px;
transition:.4s;
}

.program-card:hover .program-icon img{
transform:scale(1.08);
}


/* TEXT */
.program-card h3{
margin-bottom:8px;
font-size:24px;
font-weight:bold;
text-align:center;
color:#000;
}

.program-card p{
font-size:16px;
line-height:1.5;
text-align:center;
color:rgba(0, 0, 0, 0.6);
}


/*=========================
RESPONSIVE
=========================*/

@media(max-width:1200px){

.program-card{
min-height:470px;
}

.card-front,
.card-back{
padding:45px 28px;
}

.program-card h3{
font-size:31px;
min-height:82px;
}

.program-card p{
font-size:20px;
}

}

@media(max-width:991px){

.programs-section{
padding:20px 0;
}

.program-card{
min-height:auto;
}

.program-card h3{
font-size:28px;
min-height:auto;
}

.program-card p{
font-size:18px;
}

}

@media(max-width:767px){

.programs-section{
padding:20px 0;
}

.program-card{
min-height:auto;
height: auto;
margin-top: 10px;
}

/* disable flip on mobile */
.program-card:hover .card-inner{
transform:none;
}

.card-front,
.card-back{
position:relative;
transform:none;
margin-bottom:20px;
}

.program-icon img{
height:48px;
}

.program-card h3{
font-size:24px;
margin-bottom:18px;
}

.program-card p{
font-size:17px;
line-height:1.6;
}

}

/*=========================
WHY RUNNING SECTION
=========================*/

.why-running-section{
padding:40px 80px;
background:#fff;
overflow:hidden;
}

.why-running-content h2{
  flex-grow: 0; 
  font-size: 50px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: left;
  color: #000;
}

.why-running-content p{

flex-grow: 0;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.69;
  letter-spacing: normal;
  text-align: left;
  color: rgba(0, 0, 0, 0.6);
}

.running-image{
border-radius:24px;
overflow:hidden;
box-shadow:0 15px 45px rgba(0,0,0,.08);
transition:.4s;
}

.running-image:hover{
transform:translateY(-8px);
}

.running-image img{
width:100%;
display:block;
border-radius:24px;
}


 

/*=========================
RESPONSIVE
=========================*/

@media(max-width:1200px){

.why-running-content h2{
font-size:56px;
}

.why-running-content p{
font-size:22px;
}

}

@media(max-width:991px){

.why-running-section{
padding:80px 0;
}

.why-running-content h2{
font-size:48px;
margin-bottom:30px;
}

.why-running-content p{
font-size:20px;
line-height:1.7;
margin-bottom:20px;
max-width:100%;
}

}

@media(max-width:767px){

.why-running-section{
padding:25px 0;
}

.why-running-content h2{
font-size:38px;
}

.why-running-content p{
font-size:18px;
line-height:1.6;
}

.running-image{
border-radius:16px;
}

.running-image img{
border-radius:16px;
}

}

/*=========================
VISION SECTION
=========================*/

.vision-section{
padding:40px 80px;
background:#fff;
overflow:hidden;
}

.vision-image{
border-radius:24px;
overflow:hidden;
box-shadow:0 15px 45px rgba(0,0,0,.08);
transition:.4s;
}

.vision-image:hover{
transform:translateY(-8px);
}

.vision-image img{
width:100%;
display:block;
border-radius:24px;
}


.vision-content{
padding-left:35px;
}

.vision-content h2{
   flex-grow: 0; 
  font-size: 50px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: left;
  color: #000;
}

.vision-list{
margin-top:20px;
}

.vision-item{
display:flex;
align-items:flex-start;
margin-bottom:25px;
transition:.3s;
}

 

.vision-item span{
width:38px;
height:38px;
border-radius:50%;
background:#09ccff;
color:#fff;
display:flex;
align-items:center;
justify-content:center;
font-size:19px;
font-weight:700;
margin-right:20px;
flex-shrink:0;
box-shadow:0 8px 18px rgba(0,213,88,.28);
}

.vision-item p{
margin:0;
 
  flex-grow: 0; 
  font-size: 20px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.2;
  letter-spacing: normal;
  text-align: left;
  color: #000;
}



/*=========================
RESPONSIVE
=========================*/

@media(max-width:1200px){

.vision-content h2{
font-size:54px;
}

.vision-item p{
font-size:21px;
}

}

@media(max-width:991px){

.vision-section{
padding:80px 0;
}

.vision-content{
padding-left:0;
margin-top:45px;
}

.vision-content h2{
font-size:48px;
margin-bottom:35px;
}

.vision-item{
margin-bottom:26px;
}

.vision-item p{
font-size:20px;
}

}

@media(max-width:767px){

.vision-section{
padding:20px 0;
}

.vision-content h2{
font-size:38px;
}

.vision-item{
margin-bottom:20px;
}

.vision-item span{
width:32px;
height:32px;
font-size:15px;
margin-right:14px;
}

.vision-item p{
font-size:17px;
line-height:1.5;
}

.vision-image{
border-radius:16px;
}

.vision-image img{
border-radius:16px;
}

}

/*=========================
JOURNEY CTA SECTION
=========================*/

.journey-section{
padding:40px 80px;
background:#fff;
}


/* CTA BOX */
.journey-box{
background-image: linear-gradient(125deg, #09ccff 38%, #0067e0 86%);

border-radius:28px;
padding:75px 80px;
text-align:center;

box-shadow:0 15px 40px rgba(0,213,88,.20);

transition:.4s;
}

.journey-box:hover{
transform:translateY(-6px);
}



/* Heading */
.journey-box h2{
margin-bottom:25px;

font-size:36px;
font-weight:700;
line-height:1.3;
letter-spacing:normal;
text-align:center;
color:#000;

}




/* Text */
.journey-box p{
max-width:1050px;
margin:auto;

font-size:16px;
font-weight:600;
line-height:1.8;
letter-spacing:normal;
text-align:center;
color:#000;
}



/*=========================
RESPONSIVE
=========================*/

@media(max-width:1200px){

.journey-section{
padding:40px 50px;
}

.journey-box{
padding:65px 60px;
}

.journey-box h2{
font-size:52px;
}

.journey-box p{
font-size:21px;
}

}



@media(max-width:991px){

.journey-section{
padding:70px 30px;
}

.journey-box{
padding:60px 50px;
}

.journey-box h2{
font-size:44px;
}

.journey-box p{
font-size:18px;
line-height:1.7;
}

}



@media(max-width:767px){

.journey-section{
padding:20px 0px;
}

.journey-box{
padding:45px 25px;
border-radius:18px;
}

.journey-box h2{
font-size:32px;
margin-bottom:20px;
}

.journey-box p{
font-size:16px;
line-height:1.6;
}

}

/*=========================
MEMORY SECTION
=========================*/

.memory-section{
padding:40px 80px;
background:#fff;
overflow:hidden;
}

.memory-content{
padding-right:35px;
}

.memory-content h2{
height: 124px;
  align-self: stretch;
  flex-grow: 0; 
  font-size: 50px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: left;
  color: #000;

}

.memory-content p{
  align-self: stretch;
  flex-grow: 0; 
  font-size: 16px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: normal;
  text-align: left;
  color: rgba(0, 0, 0, 0.6);
}

.memory-image{
border-radius:18px;
overflow:hidden;
box-shadow:0 15px 45px rgba(0,0,0,.08);
transition:.4s;
}

.memory-image:hover{
transform:translateY(-8px);
}

.memory-image img{
width:100%;
display:block;
border-radius:18px;
}



/*=========================
RESPONSIVE
=========================*/

@media(max-width:1200px){

.memory-content h2{
font-size:56px;
}

.memory-content p{
font-size:21px;
}

}

@media(max-width:991px){

.memory-section{
padding:80px 0;
}

.memory-content{
padding-right:0;
}

.memory-content h2{
font-size:48px;
margin-bottom:30px;
max-width:100%;
}

.memory-content p{
font-size:20px;
line-height:1.7;
max-width:100%;
}

}

@media(max-width:767px){

.memory-section{
padding:20px 0;
}

.memory-content h2{
font-size:38px;
margin-bottom:15px;
}

.memory-content p{
font-size:18px;
line-height:1.6;
margin-bottom:22px;
}

.memory-image{
border-radius:14px;
}

.memory-image img{
border-radius:14px;
}

}

/*=========================
TRUSTEES SECTION
=========================*/

.trustees-section{
padding:40px 80px;
background:#f8f9fa;
}

.section-title{

 flex-grow: 0;
  font-size: 50px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
  color: #000;
  margin-bottom: 15px;
}


/* card */
.trustee-card{
background:#fff;
border-radius:18px;
overflow:hidden;
height:100%;

box-shadow:0 6px 20px rgba(0,0,0,.05);

transition:.4s;
}

.trustee-card:hover{
transform:translateY(-10px);
box-shadow:0 18px 40px rgba(0,0,0,.08);
}


/* image */
.trustee-img{
height:260px;
overflow:hidden;
}

.trustee-img img{
width:100%;
height:100%;
object-fit:cover;
transition:.4s;
}

.trustee-card:hover .trustee-img img{
transform:scale(1.08);
}


/* content */
.trustee-info{
padding:22px 20px 25px;
}

.trustee-info h4{
font-size:20px;
font-weight:700;
margin-bottom:6px;
color:#111;
}

.trustee-info span{
font-size:16px;
font-weight:500;
color:#888;
}



/*=========================
RESPONSIVE
=========================*/

@media(max-width:1200px){

.section-title{
font-size:48px;
}

}

@media(max-width:991px){

.trustees-section{
padding:80px 0;
}

.section-title{
font-size:40px;
margin-bottom:45px;
}

.trustee-img{
height:240px;
}

}

@media(max-width:767px){

.trustees-section{
padding:20px 0;
}

.section-title{
font-size:32px;
margin-bottom:35px;
}

.trustee-img{
height:220px;
}

.trustee-info h4{
font-size:18px;
}

.trustee-info span{
font-size:14px;
}

}

/*=========================
SUPPORT SECTION
=========================*/

.support-section{
padding:40px 80px;
background:#fff;
}


/* video box */
.video-box{
position:relative;
border-radius:18px;
overflow:hidden;
box-shadow:0 15px 45px rgba(0,0,0,.08);
}

.video-box img{
width:100%;
display:block;
border-radius:18px;
}


/* play button */
.play-btn{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
width:70px;
height:70px;
background:#09ccff;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
z-index:2;
box-shadow:0 10px 30px rgba(9, 204, 255, 0.4);
}

.play-btn:hover{
transform:translate(-50%,-50%) scale(1.1);
}

/* triangle */
.play-btn span{
display:block;
width:0;
height:0;
border-left:16px solid #fff;
border-top:10px solid transparent;
border-bottom:10px solid transparent;
margin-left:4px;
}
.play-btn:before,
.play-btn:after{
content:'';
position:absolute;
width:100%;
height:100%;
border-radius:50%;
background:rgba(9, 204, 255, 0.8);
z-index:-1;
animation:ripple 2s infinite;
}

.play-btn:after{
animation-delay:1s;
}
/* animation keyframes */
@keyframes ripple{

0%{
transform:scale(1);
opacity:0.7;
}

70%{
transform:scale(2.5);
opacity:0;
}

100%{
transform:scale(2.5);
opacity:0;
}

}



/* content */
.support-content{
padding-left:40px;
}

.support-content h2{
margin-bottom:25px;
 font-size: 50px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: left;
  color: #000;
}

.support-content h4{
margin-bottom:15px;
  font-size: 28px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: left;
  color: #000;
}

.support-content p{
  font-size: 16px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: normal;
  text-align: left;
  color: rgba(0, 0, 0, 0.6);
margin-bottom:25px;
}


/* buttons */
.support-buttons{
margin-top:30px;
display:flex;
gap:20px;
flex-wrap:wrap;
}

.btn-donate{
background-image: linear-gradient(134deg, #09ccff 41%, #0067e0 85%);
color:#fff;
padding:14px 30px;
border-radius:12px;
font-size:18px;
font-weight:700;
text-decoration:none;
transition:.3s;
}

.btn-donate:hover{
background-image: linear-gradient(134deg, #0067e0 41%, #09ccff 85%);
text-decoration:none;
color:#fff;
}

.btn-outline{
border:2px solid #09ccff;
color:#0067e0;
padding:12px 28px;
border-radius:12px;
font-size:18px;
font-weight:700;
text-decoration:none;
transition:.3s;
}

.btn-outline:hover{
background:#09ccff;
color:#fff;
text-decoration:none;
}



/*=========================
RESPONSIVE
=========================*/

@media(max-width:1200px){

.support-content h2{
font-size:48px;
}

.support-content p{
font-size:20px;
}

}

@media(max-width:991px){

.support-section{
padding:80px 0;
}

.support-content{
padding-left:0;
margin-top:40px;
}

.support-content h2{
font-size:40px;
}

.support-content p{
font-size:18px;
}

}

@media(max-width:767px){

.support-section{
padding:20px 0;
}

.support-content h2{
font-size:32px;
}

.support-content h4{
font-size:20px;
}

.support-content p{
font-size:16px;
}

.play-btn{
width:55px;
height:55px;
}

.play-btn span{
border-left:12px solid #fff;
border-top:8px solid transparent;
border-bottom:8px solid transparent;
}

}

/*=========================
JOIN / FEATURED SECTION
=========================*/

.join-section{
padding:40px 80px;
background-image: linear-gradient(156deg, #09ccff 30%, #0067e0 128%);
}

/* LEFT FORM BOX */
.join-form-box{
background:#fff;
padding:50px 40px;
border-radius:18px;
}

.join-form-box h3{
font-size:28px;
font-weight:700;
margin-bottom:30px;
color:#000;
}

.join-form-box input,
.join-form-box textarea{
width:100%;
margin-bottom:18px;
padding:14px 16px;

border-radius:10px;
border:1px solid #ccc;

font-size:14px;
font-weight:500;
outline:none;
}

.join-form-box textarea{
resize:none;
}

.join-form-box button{
margin-top:10px;
padding:12px 28px;

background:#fff;
border:2px solid #09ccff;

color:#0067e0;
font-weight:700;
border-radius:12px;

transition:.3s;
}
button:focus { 	border:2px solid #09ccff !important; outline:none !important;}
button:focus-visible { 	border:2px solid #09ccff !important; outline:none !important; }
.join-form-box button:hover{
background:#09ccff;
color:#fff;
}

.navbar-toggler:focus, .navbar-toggler:focus-visible 
{
    border:none !important; outline:none !important;
}

/* RIGHT SIDE */
.join-content{
padding-left:40px;
color:#000;
}

.join-content h2{

  flex-grow: 0;
  font-size: 50px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: left;
  color: #000;
margin-bottom:10px;
}

.join-content h2 span{
font-weight:900;
}

.join-content p{
  flex-grow: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 14px;
  padding: 0;
margin-bottom:25px;
}

.join-image{
border-radius:14px;
overflow:hidden;
margin-bottom:25px;
}

.join-image img{
width:100%;
display:block;
border-radius:14px;
}


/* button */
.join-btn{
display:block;
text-align:center;

background:#fff;
color:#0067e0;

padding:16px;
border-radius:12px;
font-weight:700;
text-decoration:none !important;

transition:.3s;
}

.join-btn:hover{
background:#09ccff;
color:#fff;
}


/*=========================
RESPONSIVE
=========================*/

@media(max-width:991px){

.join-section{
padding:70px 0;
}

.join-content{
padding-left:0;
margin-top:40px;
}

.join-content h2{
font-size:36px;
}

}

@media(max-width:767px){

.join-section{
padding:60px 0;
}

.join-form-box{
padding:35px 25px;
}

.join-content h2{
font-size:28px;
}

.join-content p{
font-size:16px;
}

}


/* error input */
.form-error{
border:2px solid red !important;
}

/* error message */
.error-text{
color:red;
font-size:13px;
margin-top:4px;
display:block;
}


/*=========================
GALLERY SECTION
=========================*/

.gallery-section{
padding:40px 40px;
background:#f8f9fa;
}

.section-title{
font-size:56px;
font-weight:800;
margin-bottom:60px;
color:#000;
}


/* grid */
.gallery-item{
border-radius:18px;
overflow:hidden;
position:relative;
height:100%;
background:#ddd;

transition:.4s;
}

/* equal height images */
.gallery-item img{
width:100%;
height:100%;
object-fit:cover;
display:block;
transition:.4s;
}

/* hover effect */
.gallery-item:hover img{
transform:scale(1.08);
}

.gallery-item:hover{
transform:translateY(-6px);
box-shadow:0 15px 35px rgba(0,0,0,.08);
}



/*=========================
RESPONSIVE
=========================*/

@media(max-width:1200px){

.section-title{
font-size:48px;
}

}

@media(max-width:991px){

.gallery-section{
padding:80px 0;
}

.section-title{
font-size:40px;
margin-bottom:45px;
}

}

@media(max-width:767px){

.gallery-section{
padding:20px 0;
}

.section-title{
font-size:32px;
margin-bottom:35px;
}

.gallery-item{
border-radius:14px;
}

}

/*=========================
FOOTER
=========================*/

.footer-section{
background:#000;
color:#fff;
padding:40px 80px;
}


/* left */
.footer-logo{
width:138px;
height:152px;
}

.footer-about p{
font-size:14px;
line-height:1.7;
color:#ccc;
margin-bottom:12px;
}

.footer-email a
{
color:#fff;
text-decoration: none;
}
/* links */
.footer-links h5,
.footer-gallery h5{
font-size:18px;
font-weight:700;
margin-bottom:20px;
}

.footer-links ul{
list-style:none;
padding:0;
}

.footer-links ul li{
margin-bottom:10px;
}

.footer-links ul li a{
color:#ccc;
text-decoration:none;
font-size:14px;
transition:.3s;
}

.footer-links ul li a:hover{
color:#09ccff;
}


/* gallery */
.footer-gallery .gallery-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:10px;
}

.footer-gallery img{
width:100%;
height:83px;
object-fit:cover;
border-radius:6px;
}

.copyright-content a
{
  text-decoration: none;
  color:#fff;
}
/* social */
.footer-social{
margin-top:20px;
}

.footer-social a{
display:inline-flex;
align-items:center;
justify-content:center;

width:35px;
height:35px;
margin-right:10px;

background:#111;
border-radius:50%;
color:#fff;
text-decoration: none;
transition:.3s;
}

.footer-social a:hover{
background:#09ccff;
color:#000;
text-decoration: none;
}


/* bottom */
.footer-bottom{
border-top:1px solid rgba(255,255,255,.1);
margin-top:30px;
padding-top:20px;
}

.footer-bottom p{
font-size:13px;
color:#aaa;
margin:0;
}



/*=========================
RESPONSIVE
=========================*/

@media(max-width:991px){

.footer-section{
padding:60px 0 25px;
}

.footer-logo{
font-size:20px;
}

}

@media(max-width:767px){

.footer-section{
padding:50px 0 20px;
}

.footer-gallery img{
height:60px;
}

.footer-bottom p{
font-size:12px;
}


.mb-5, .my-5 {
    margin-bottom: 0rem !important;
}

}
  
  


  