﻿/* HEADER */
.ngo-header {
    position: sticky;
    top: 0;
    z-index: 99999;
    /*background: linear-gradient(135deg,#1D3F7A,#3FA9F5,#FF7A18);*/
    background: linear-gradient(135deg, #6aa9d8 0%, #4f8fc4 50%, #e08b3e 100%);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    overflow: visible;  
}
.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 40px;
    overflow: visible;   
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 22px;
    font-weight: 700;
}
.logo img {
    width: 145px;
   animation: logoBounce 3s infinite;
   border-radius: 10px;
}
@keyframes logoBounce {
    0%,100% { transform: scale(1); }
    50% { transform: scale(1.1); }
 }
.nav-menu {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
 }
.nav-menu li {
    position: relative;
 }
.nav-menu li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    transition: 0.3s;
 }
.nav-menu li a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 3px;
    left: 0;
    bottom: -6px;
    background: #FFC857;
    transition: width 0.4s ease;
 }
.nav-menu li a:hover::after {
    width: 100%;
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 230px;
    background: #FFF6E9;
    border-radius: 10px;
    list-style: none;
    padding: 10px 0;
    display: none;
    z-index: 99999;
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}
.dropdown:hover .dropdown-menu {
    display: block;
    animation: dropdownFade 0.3s ease;
}
@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.dropdown-menu li a {
    color: #7A1E2C;
    padding: 12px 20px;
    display: block;
    transition: 0.3s;
 }
.dropdown-menu li a:hover {
    background: #FF7A18;
    color: white;
    padding-left: 26px;
}
.donate-btn {
    background: #FFC857;
    color: #7A1E2C;
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.4s;
    margin-right:30px;
 }
.donate-btn:hover {
    background: white;
    transform: scale(1.08);
 }
.donate-btn:hover {
    background: white;
    transform: scale(1.08);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
/* ===== FOOTER ===== */
.main-footer {
   background: linear-gradient(135deg,#2A6EAA,#DD7427);
   color: #fff;
   padding-top: 60px;
   margin-top:30px;
 }
 .footer-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 40px;
 }
.footer-col h3 {
   margin-bottom: 20px;
   font-size: 20px;
 }
.footer-col p {
   line-height: 1.6;
 }
.footer-col ul {
    list-style: none;
    padding: 0;
 }
.footer-col ul li {
    margin-bottom: 10px;
 }
.footer-col ul li a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
 }
.footer-col ul li a:hover {
    color: #FFD700;
 }
.social-icons a {
     display: inline-block;
     margin-right: 10px;
     background: rgba(255,255,255,0.15);
     padding: 10px;
     border-radius: 50%;
     color: #fff;
     transition: 0.3s;
 }
.social-icons a:hover {
     background: #FFD700;
    color: #000;
 }
 .footer-bottom {
      text-align: center;
      padding: 20px;
      margin-top: 40px;
      background: rgba(0,0,0,0.2);
 }
 .contact-info li{
    display:flex;
    align-items:flex-start;
    gap:10px;
    margin-bottom:15px;
}
.contact-info li i{
    color:#B42828;
    font-size:18px;
    margin-top:4px;
    width:20px;
}
.contact-info li a,
.contact-info li span{
    color:#fff;
    text-decoration:none;
    line-height:1.6;
}
@media (max-width: 991px) {
.footer-grid {
   grid-template-columns: repeat(2,1fr);
 }
}
@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
/* ===== BREADCRUMB IMAGE ===== */
.contact-breadcrumb {
    background: url("images/contact-banner.jpg") center/cover no-repeat;
    height: 300px;
    position: relative;
   display: flex;
   justify-content: center;
 }
.breadcrumb-overlay {
    background: rgba(45, 120, 128, 0.75);
    width: 100%;
    height: 90%;
    display: flex;
    align-items: center;
   justify-content: center;
 }
.breadcrumb-content {
    text-align: center;
    color: white;
 }
.breadcrumb-content h1 {
    font-size: 42px;
    margin-bottom: 10px;
 }
.breadcrumb-content p {
   font-size: 18px;
 }
.breadcrumb-content span {
   color: #FFD700;
 }
/* ===== CONTACT MAIN ===== */
.contact-main {
    background: #FFF6E9;
    padding: 80px 20px;
    overflow: hidden;
}
.contact-wrapper {
    max-width: 1100px;
    margin: auto;
    display: flex;
    gap: 40px;
    align-items: stretch;
    justify-content: space-between;
}
.contact-form-card,
.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.contact-form-card {
    max-width: 480px;
    width: 100%;
    background: rgba(255,255,255,0.55);
    backdrop-filter: blur(12px);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border: 1px solid rgba(255,255,255,0.4);
}
.contact-form-card h2 {
    margin-bottom: 20px;
    color: #7A1E2C;
    font-size: 38px;
    line-height: 1.2;
}
.form-group {
    margin-bottom: 16px;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid #ccc;
    background: #ffffff;
    color: #333;
    outline: none;
    font-size: 15px;
    transition: 0.3s;
    resize: none;
    box-sizing: border-box;
}
.form-group textarea {
    min-height: 120px;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: #FF7A18;
    box-shadow: 0 0 6px rgba(255,122,24,0.4);
}
.contact-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg,#7A1E2C,#FF7A18);
    color: white;
    border: none;
    border-radius: 40px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.4s;
    margin-top: 5px;
}
.contact-btn:hover {
    transform: translateY(-3px);
}
.contact-text {
    margin-bottom: 20px;
}
.contact-text h2 {
    color: #7A1E2C;
    margin-bottom: 15px;
    font-size: 42px;
    line-height: 1.2;
}
.contact-text p {
    line-height: 1.9;
    color: #444;
    margin-bottom: 12px;
    font-size: 16px;
}
.contact-details {
    margin-top: 20px;
}
.info-item {
    margin-bottom: 18px;
    font-size: 17px;
    color: #333;
    font-weight: 500;
    line-height: 1.7;
}

.breadcrumb-link {
    color: #fff;
    text-decoration: none;
}

.breadcrumb-link:hover {
    color: #FFD700;
}
.contact-map {
    margin-bottom: 20px;
}

.contact-map iframe {
    width: 100%;
    height: 400px;
    border: 0;
    display: block;
}
@media (max-width: 991px) {

    .contact-main {
        padding: 60px 18px;
    }

    .contact-wrapper {
        flex-direction: column;
        gap: 35px;
    }

    .contact-form-card {
        max-width: 100%;
    }

    .contact-text h2 {
        font-size: 34px;
    }

    .contact-form-card h2 {
        font-size: 32px;
    }

    .breadcrumb-content h1 {
        font-size: 32px;
    }
}
@media (max-width: 767px) {

    .contact-main {
        padding: 45px 15px;
    }

    .contact-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .contact-form-card {
        padding: 25px 20px;
        border-radius: 18px;
    }

    .contact-form-card h2 {
        font-size: 28px;
        margin-bottom: 18px;
    }

    .contact-text h2 {
        font-size: 30px;
        line-height: 1.3;
        word-break: break-word;
    }

    .contact-text p {
        font-size: 15px;
        line-height: 1.8;
    }

    .form-group input,
    .form-group textarea {
        padding: 13px 14px;
        font-size: 14px;
    }

    .contact-btn {
        padding: 13px;
        font-size: 15px;
    }

    .info-item {
        font-size: 15px;
        line-height: 1.7;
    }

    .contact-map iframe {
        height: 300px;
    }

    .breadcrumb-content h1 {
        font-size: 26px;
    }
}

/*SMALL MOBILE*/
@media (max-width: 480px) {

    .contact-main {
        padding: 40px 12px;
    }

    .contact-form-card {
        padding: 22px 16px;
    }

    .contact-form-card h2 {
        font-size: 24px;
    }

    .contact-text h2 {
        font-size: 25px;
    }

    .contact-text p {
        font-size: 14px;
    }

    .info-item {
        font-size: 14px;
    }

    .contact-btn {
        font-size: 14px;
    }

    .contact-map iframe {
        height: 250px;
    }
}
/* HERO SECTION */
.hero-slider {
   position: relative;
   width: 100%;
   height: 520px;   
   overflow: hidden;
 }
.slider {
   position: relative;
   width: 100%;
   height: 100%;
 }
.slide {
   position: absolute;
   width: 100%;
   height: 100%;
   opacity: 0;
   transition: opacity 1s ease-in-out;
 }
.slide.active {
   opacity: 1;
   z-index: 1;
 }
.slide img {
   width: 100%;
   height: 100%;
   object-fit: cover;  
   filter: brightness(0.6);
   transition: transform 6s ease;
 }
.slide.active img {
  transform: scale(1.08);
 }
.slide-content {
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   text-align: center;
   color: white;
   max-width: 750px;
   padding: 20px;
   animation: fadeUp 1.2s ease;
 }
.slide-content h1 {
   font-size: 48px;
   font-weight: 700;
   margin-bottom: 20px;
   letter-spacing: 1px;
 }
.slide-content p {
   font-size: 18px;
   margin-bottom: 30px;
   line-height: 1.7;
 }
.hero-btn {
   display: inline-block;
   padding: 14px 32px;
   background: linear-gradient(135deg,#16D9ED,#FF7A18);
   color: white;
   border-radius: 30px;
   text-decoration: none;
   font-weight: 600;
   transition: 0.4s;
 }
.hero-btn:hover {
   transform: translateY(-3px);
   box-shadow: 0 8px 20px rgba(0,0,0,0.3);
 }
.slider-nav {
   position: absolute;
   bottom: 25px;
   left: 50%;
   transform: translateX(-50%);
 }
.dot {
   height: 12px;
   width: 12px;
   margin: 0 5px;
   background: white;
   opacity: 0.5;
   border-radius: 50%;
   display: inline-block;
   cursor: pointer;
   transition: 0.3s;
 }
.dot.active {
   opacity: 1;
   transform: scale(1.3);
 }
@keyframes fadeUp {
 from {
   opacity: 0;
   transform: translate(-50%, -30%);
 }
to {
  opacity: 1;
  transform: translate(-50%, -50%);
 }
}
/* HAMBURGER BUTTON */
.menu-toggle {
   display: none;
   font-size: 28px;
   background: none;
   border: none;
   color: white;
   cursor: pointer;
   z-index: 1000;
}
@media (max-width:768px){

.menu-toggle {
   display: block;
   position: absolute;
   right: 20px;
   top: 50%;
   transform: translateY(-50%);
 }
.nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
   top: 100%;
   left: 0;
   width: 100%;
   background: linear-gradient(135deg,#1D3F7A,#3FA9F5,#FF7A18);
   padding: 10px 0;
   z-index: 999;
}
.nav-menu.active {
 display: flex;
}
.nav-menu li {
 text-align: center;
 padding: 12px 0;
 }
}
@media (max-width:768px){
 .dropdown-menu {
   display: none;
   position: relative;
   background: rgba(255,255,255,0.1);
 }
.dropdown.active .dropdown-menu {
  display: block;
 }
.dropdown-menu li {
  padding: 8px 0;
 }
 .dropdown-menu li a {
   color: white;
   display: block;
 }
}
@media (max-width:768px){
    .hero-slider{
        height:420px;
    }
    .slide-content{
        width:100%;
        max-width:100%;
        padding:0 20px;
    }
    .slide-content h1{
        font-size:30px;
        line-height:1.3;
        margin-bottom:15px;
    }
    .slide-content p{
        font-size:15px;
        line-height:1.7;
        margin-bottom:22px;
    }
    .hero-btn{
        padding:12px 24px;
        font-size:14px;
    }
}
@media (max-width:576px){
    .hero-slider{
        height:380px;
    }
   .slide-content h1{
        font-size:24px;
        line-height:1.4;
    }
    .slide-content p{
        font-size:14px;
        line-height:1.6;
    }
    .hero-btn{
        padding:11px 22px;
        font-size:13px;
    }
    .dot{
        width:10px;
        height:10px;
    }
}
@media (max-width:400px){
    .hero-slider{
        height:350px;
    }
    .slide-content{
        padding:0 15px;
    }
    .slide-content h1{
        font-size:21px;
    }
    .slide-content p{
        font-size:13px;
    }
}
/* ABOUT SECTION */
 .about-section {
    background: #f5f6f8;
    overflow: hidden;
 }
.about-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;
    margin-top:40px;
 }
.about-content {
    flex: 1;
   animation: fadeLeft 1.2s ease;
 }
.about-subtitle {
    color: #FF7A18;
    font-weight: 600;
    margin-bottom: 10px;
   letter-spacing: 1px;
 }
.about-title {
    font-size: 38px;
    color: #1D3F7A;
    margin-bottom: 20px;
    line-height: 1.3;
 }
.about-text {
   color: #555;
   line-height: 1.8;
   margin-bottom: 15px;
 }
.about-services{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin:30px 0;
}
.service-box{
    display:flex;
    align-items:center;
    gap:12px;
    background:#fff;
    padding:18px;
    border-radius:12px;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    transition:0.3s;
}
.service-box:hover{
    transform:translateY(-5px);
}
.service-box i{
    width:50px;
    height:50px;
    background:linear-gradient(135deg,#4f86b5,#d97a28);
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    flex-shrink:0;
}
.service-box span{
    font-size:16px;
    font-weight:600;
    color:#222;
    line-height:1.5;
}
@media(max-width:768px){

    .about-services{
        grid-template-columns:1fr;
    }
}
.about-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 14px 30px;
    background: linear-gradient(135deg,#1D3F7A,#3FA9F5,#FF7A18);
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.4s;
 }
.about-btn:hover {
   transform: translateY(-3px);
   box-shadow: 0 10px 20px rgba(0,0,0,0.2);
 }
.about-images{
    flex:1;
    display:flex;
    justify-content:center;
    align-items:center;
    position:relative;
    animation:fadeRight 1.2s ease;
    width:100%;
}
.image-grid{
    width:100%;
    max-width:520px;
    position:relative;
    z-index:2;
}
.image-item{
    overflow:hidden;
    border-radius:28px;
    background:#fff;
    box-shadow:0 15px 40px rgba(0,0,0,0.15);
    transition:0.5s ease;
}
.image-item:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 50px rgba(0,0,0,0.25);
}
.video-image{
    position:relative;
    height:500px;
    background:#000;
}
.video-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center top;
    display:block;
    transition:0.6s ease;
}
.video-image:hover img{
    transform:scale(1.05);
    opacity:0.88;
}
.video-link{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    text-decoration:none;
    z-index:3;
}
.icon-outer{
    width:95px;
    height:95px;
    border-radius:50%;
    background:rgba(255,255,255,0.92);
    backdrop-filter:blur(5px);
    display:flex;
    align-items:center;
    justify-content:center;
    transition:0.4s;
    animation:pulse 2s infinite;
}
.icon-outer:hover{
    background:#d97a28;
    transform:scale(1.1);
}
.icon-outer span{
    color:#1D3F7A;
    font-size:32px;
    margin-left:6px;
    transition:0.3s;
}
.icon-outer:hover span{
    color:#fff;
}
@keyframes pulse{
   0%{
        box-shadow:0 0 0 0 rgba(255,255,255,0.7);
    }
    70%{
        box-shadow:0 0 0 20px rgba(255,255,255,0);
    }
    100%{
        box-shadow:0 0 0 0 rgba(255,255,255,0);
    }
}
@media(max-width:991px){
    .video-image{
        height:420px;
    }
}
@media(max-width:768px){
    .about-container{
        padding:0 15px;
    }
    .about-images{
        margin-top:40px;
    }
    .image-grid{
        max-width:100%;
    }
    .video-image{
        height:320px;
        border-radius:22px;
    }
    .icon-outer{
        width:75px;
        height:75px;
    }
    .icon-outer span{
        font-size:26px;
    }
}
@media(max-width:576px){
    .video-image{
        height:260px;
        border-radius:18px;
    }
}
@media(max-width:768px){

    .video-image img{
        object-position:35% top;
    }

}
@media(max-width:991px){
    .about-container{
        flex-direction:column;
        gap:50px;
        padding:0 20px;
    }
    .about-content{
        width:100%;
        text-align:center;
    }
    .about-title{
        font-size:34px;
        line-height:1.4;
    }
   .about-text{
        font-size:15px;
    }
    .about-btn{
        margin:auto;
        margin-top:20px;
    }
    .about-images{
        width:100%;
    }
    .image-grid{
        max-width:100%;
    }
}
@media(max-width:768px){
    .about-section{
        padding:60px 0;
    }
    .about-container{
        gap:40px;
        margin-top:20px;
        padding:0 16px;
    }
   .about-subtitle{
        font-size:14px;
    }
    .about-title{
        font-size:28px;
        line-height:1.4;
        margin-bottom:15px;
    }
    .about-text{
        font-size:14px;
        line-height:1.9;
        margin-bottom:12px;
    }
    .about-services{
        grid-template-columns:1fr;
        gap:14px;
        margin:25px 0;
    }
    .service-box{
        padding:16px;
        border-radius:16px;
        text-align:left;
    }
    .service-box i{
        width:45px;
        height:45px;
        font-size:18px;
    }
    .service-box span{
        font-size:15px;
        line-height:1.5;
    }
    .about-btn{
        padding:13px 24px;
        font-size:14px;
        width:auto;
    }
    .about-images{
        margin-top:10px;
    }
    .video-image{
        height:320px;
        border-radius:20px;
    }
   .video-image img{
        object-position:center;
    }
   .icon-outer{
        width:72px;
        height:72px;
    }
    .icon-outer span{
        font-size:24px;
    }
}
@media(max-width:576px){
    .about-section{
        padding:50px 0;
    }
    .about-container{
        padding:0 14px;
        gap:35px;
    }
    .about-title{
        font-size:24px;
    }
    .about-text{
        font-size:14px;
        line-height:1.8;
    }
    .service-box{
        padding:14px;
        gap:10px;
    }
   .service-box i{
        width:42px;
        height:42px;
        font-size:16px;
    }
    .service-box span{
        font-size:14px;
    }
    .about-btn{
        width:100%;
        text-align:center;
        border-radius:14px;
    }
    .video-image{
        height:250px;
        border-radius:16px;
    }
    .icon-outer{
        width:65px;
        height:65px;
    }
    .icon-outer span{
        font-size:22px;
    }
}
@media(max-width:400px){
    .about-title{
        font-size:22px;
    }
    .video-image{
        height:220px;
    }
   .service-box{
        flex-direction:row;
        align-items:flex-start;
    }
}

/*Mission section*/
.mission-section{
    padding:70px 0;
    background:#f8fbff;
}
.mission-container{
    width:90%;
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}
.mission-card{
    background:#fff;
    padding:40px 35px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:0.4s;
    position:relative;
    overflow:hidden;
}
.mission-card:hover{
    transform:translateY(-8px);
}
.mission-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:linear-gradient(135deg,#4f86b5,#d97a28);
}
.mission-icon{
    width:70px;
    height:70px;
    border-radius:50%;
    background:linear-gradient(135deg,#4f86b5,#d97a28);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;
}
.mission-icon i{
    color:#fff;
    font-size:28px;
}
.mission-card h3{
    font-size:30px;
    font-weight:700;
    margin-bottom:20px;
    color:#222;
}
.mission-card h3 span{
    color:#d97a28;
}
.mission-card p{
    font-size:16px;
    line-height:1.9;
    color:#555;
    margin-bottom:18px;
}
@media(max-width:991px){

    .mission-container{
        grid-template-columns:1fr;
    }
}
@media(max-width:576px){
    .mission-card{
        padding:30px 22px;
    }
    .mission-card h3{
        font-size:24px;
    }
    .mission-card p{
        font-size:15px;
    }
}
/* PROGRAMS SECTION */
.programs-section {
   padding: 30px 20px;
   background: #f5f7fb;
}
.section-header {
    text-align: center;
    max-width: 750px;
    margin: auto;
   margin-bottom: 60px;
 }
.section-subtitle {
    color: #FF7A18;
    font-weight: 600;
   margin-bottom: 10px;
 }
.section-title {
    font-size: 38px;
    color: #1D3F7A;
   margin-bottom: 15px;
 }
.section-desc {
   color: #555;
   line-height: 1.7;
 }
.programs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
 }
.program-card {
   background: white;
   border-radius: 20px;
   overflow: hidden;
   box-shadow: 0 10px 25px rgba(0,0,0,0.08);
   transition: 0.4s;
   position: relative;
 }
.program-img {
   height: 220px;
  overflow: hidden;
 }
.program-img img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: 0.5s;
 }
.program-content {
   padding: 22px;
 }
.program-content h3 {
   color: #1D3F7A;
   margin-bottom: 10px;
 }
.program-content p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
 }
.program-btn {
   color: #FF7A18;
   font-weight: 600;
   text-decoration: none;
   transition: 0.3s;
 }
.program-card:hover {
   transform: translateY(-10px);
   box-shadow: 0 18px 35px rgba(0,0,0,0.18);
 }
.program-card:hover img {
   transform: scale(1.08);
 }
.program-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(135deg,#1D3F7A,#3FA9F5,#FF7A18);
    transition: 0.4s;
 }
.program-card:hover::before {
  width: 100%;
 }
@media (max-width:1024px){
 .programs-grid {
  grid-template-columns: repeat(2, 1fr);
 }
}
@media (max-width:768px){
.programs-grid {
  grid-template-columns: 1fr;
 }
 .section-title {
  font-size: 30px;
 }
}
/* IMPACT SECTION */
.impact-section {
    padding: 90px 20px;
    background: linear-gradient(135deg,#1D3F7A,#3FA9F5);
    color: white;
 }
.impact-container {
    max-width: 1200px;
    margin: auto;
   display: flex;
   align-items: center;
   gap: 60px;
   flex-wrap: wrap;
}
.impact-text {
    flex: 1;
   animation: fadeLeft 1.2s ease;
 }
.impact-subtitle {
    color: #FF7A18;
    font-weight: 600;
    margin-bottom: 10px;
 }
.impact-title {
   font-size: 38px;
   margin-bottom: 15px;
 }
.impact-desc {
    line-height: 1.7;
    opacity: 0.9;
 }
.impact-grid {
   flex: 1;
   display: grid;
   grid-template-columns: repeat(2,1fr);
   gap: 25px;
 }
.impact-card {
  background: rgba(255,255,255,0.12);
  padding: 30px;
  border-radius: 18px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: 0.4s;
  position: relative;
 overflow: hidden;
}
.impact-icon {
  font-size: 40px;
  margin-bottom: 10px;
 }
.impact-card h3 {
   font-size: 32px;
   font-weight: 700;
   margin-bottom: 5px;
 }
.impact-card p {
  opacity: 0.9;
 }
.impact-card:hover {
   transform: translateY(-10px);
   background: rgba(255,255,255,0.2);
   box-shadow: 0 18px 30px rgba(0,0,0,0.25);
 }
.impact-card::before {
   content: "";
   position: absolute;
   width: 120%;
   height: 100%;
   background: linear-gradient(120deg,transparent,rgba(255,255,255,0.3),transparent);
   top: 0;
   left: -120%;
   transition: 0.5s;
 }
.impact-card:hover::before {
  left: 120%;
}
@media (max-width:768px){
.impact-container {
  flex-direction: column;
  text-align: center;
}
.impact-grid {
  grid-template-columns: 1fr;
 }
.impact-title {
  font-size: 28px;
 }
}
/* ACTIVITIES SECTION */
.activities-section {
   padding: 90px 20px;
   background: #f5f7fb;
 }
.activities-container {
    max-width: 1200px;
    margin: auto;
 }
.activities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 240px;
    gap: 20px;
 }
.activity-card {
   position: relative;
   overflow: hidden;
   border-radius: 18px;
   cursor: pointer;
   box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  transition: 0.4s;
 }
.activity-card img {
     width: 100%;
    height: 100%;
   object-fit: cover;
   transition: 0.5s;
}
.activity-card.large {
  grid-row: span 2;
}
.activity-card.wide {
  grid-column: span 2;
}
.activity-overlay {
   position: absolute;
   bottom: 0;
   left: 0;
   width: 100%;
   padding: 18px;
   background: linear-gradient(to top,rgba(0,0,0,0.7),transparent);
   color: white;
   transform: translateY(100%);
  transition: 0.4s;
}
.activity-card:hover img {
  transform: scale(1.1);
}
.activity-card:hover .activity-overlay {
  transform: translateY(0);
}
.activity-card:hover {
    transform: translateY(-8px);
    border: 2px solid #FF7A18;
    box-shadow: 0 18px 35px rgba(0,0,0,0.25);
 }
@media (max-width:1024px){
 .activities-grid {
   grid-template-columns: repeat(2, 1fr);
 }
.activity-card.wide {
  grid-column: span 2;
 }
}
@media (max-width:768px){
 .activities-grid {
  grid-template-columns: 1fr;
  grid-auto-rows: 220px;
 }
.activity-card.large {
  grid-row: span 1;
 }
.activity-card.wide {
   grid-column: span 1;
 }
}
@media (max-width:768px){
    .activities-grid{
        grid-template-columns:1fr;
        grid-auto-rows:auto;
        gap:18px;
    }
    .activity-card{
        height:280px;
        border-radius:16px;
    }
    .activity-card.large{
        grid-row:span 1;
    }
    .activity-card.wide{
        grid-column:span 1;
    }
    .activity-card img{
        width:100%;
        height:100%;
        object-fit:cover;
        object-position:center top;
    }
    .activity-overlay{
        transform:translateY(0);
        padding:16px;
    }
}
@media (max-width:576px){
    .activity-card{
        height:240px;
    }
    .activity-card img{
    object-position:center 15%;
    }
}
@media (max-width:420px){
    .activity-card{
        height:220px;
    }
    .activity-card img{
     object-position:center 10%;
    }
}
/* VOLUNTEER SECTION */
 .volunteer-unique {
   position: relative;
   padding: 100px 20px;
   background: #f5f7fb;
   overflow: hidden;
 }
.vol-shape {
   position: absolute;
   border-radius: 50%;
   filter: blur(90px);
   opacity: 0.25;
 }
.shape-left {
   width: 300px;
   height: 300px;
   background: #3FA9F5;
   top: -80px;
   left: -80px;
 }
.shape-right {
   width: 350px;
   height: 350px;
   background: #FF7A18;
   bottom: -100px;
   right: -80px;
 }
.volunteer-wrapper {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
   z-index: 2;
 }
.volunteer-text {
   flex: 1;
   animation: fadeLeft 1.2s ease;
 }
.volunteer-subtitle {
    color: #FF7A18;
    font-weight: 600;
    margin-bottom: 10px;
 }
.volunteer-title {
   font-size: 38px;
   color: #1D3F7A;
   margin-bottom: 18px;
 }
.volunteer-desc {
   color: #555;
   line-height: 1.7;
   margin-bottom: 25px;
 }
.volunteer-points {
   display: grid;
   grid-template-columns: repeat(2,1fr);
   gap: 14px;
   margin-bottom: 30px;
 }
.point {
   background: white;
   padding: 14px;
   border-radius: 12px;
   transition: 0.3s;
   box-shadow: 0 6px 14px rgba(0,0,0,0.08);
 }
.point:hover {
  transform: translateX(6px);
  background: #eaf3ff;
 }
.volunteer-btn {
    display: inline-block;
    padding: 15px 32px;
    background: linear-gradient(135deg,#1D3F7A,#3FA9F5,#FF7A18);
   color: white;
   border-radius: 30px;
   text-decoration: none;
   font-weight: 600;
   transition: 0.4s;
 }
.volunteer-btn:hover {
   transform: translateY(-4px);
   box-shadow: 0 12px 25px rgba(0,0,0,0.25);
 }
.volunteer-image-box {
   flex: 1;
   position: relative;
   animation: fadeRight 1.2s ease;
 }
.volunteer-image {
   border-radius: 20px;
   overflow: hidden;
   box-shadow: 0 18px 40px rgba(0,0,0,0.15);
 }
.volunteer-image img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: 0.5s;
 }
.volunteer-image:hover img {
  transform: scale(1.08);
 }
.floating-card {
   position: absolute;
   bottom: 20px;
   left: -30px;
   background: white;
   padding: 18px 22px;
   border-radius: 14px;
   box-shadow: 0 10px 25px rgba(0,0,0,0.2);
   animation: floatCard 4s ease-in-out infinite;
 }
.floating-card h3 {
   color: #1D3F7A;
   margin-bottom: 4px;
 }
@keyframes floatCard {
 0%,100% {
 transform: translateY(0);
 }
 50% {
 transform: translateY(-8px);
 }
 }
@media (max-width:768px){
 .volunteer-wrapper {
   flex-direction: column;
   text-align: center;
 }
.volunteer-points {
 grid-template-columns: 1fr;
}
.floating-card {
  left: 50%;
  transform: translateX(-50%);
 }
 .volunteer-title {
   font-size: 28px;
 }
}
/* CTA SECTION */
.cta-section {
  position: relative;
  padding: 100px 20px;
  background: url("../../Html/img/cta-bg.jpg") center/cover no-repeat;
  overflow: hidden;
 }
.cta-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
 opacity: 0.25;
}
.shape1 {
   width: 300px;
   height: 300px;
   background: white;
   top: -80px;
   left: -80px;
}
.shape2 {
  width: 350px;
   height: 350px;
   background: #FF7A18;
   bottom: -100px;
  right: -80px;
}
.cta-container {
   max-width: 1000px;
   margin: auto;
   position: relative;
   z-index: 2;
}
.cta-card {
   background: rgba(255,255,255,0.15);
   backdrop-filter: blur(12px);
   padding: 60px 40px;
   border-radius: 22px;
   text-align: center;
   color: white;
   box-shadow: 0 20px 40px rgba(0,0,0,0.2);
   animation: fadeUp 1.2s ease;
 }
.cta-title {
  font-size: 38px;
  margin-bottom: 18px;
  font-weight: 700;
 }
.cta-text {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 35px;
  opacity: 0.95;
 }
.cta-buttons {
   display: flex;
   justify-content: center;
   gap: 18px;
  flex-wrap: wrap;
 }
.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.55);
  z-index: 1;
}
.cta-container {
position: relative;
z-index: 2;
}
.cta-btn {
padding: 15px 32px;
border-radius: 30px;
font-weight: 600;
text-decoration: none;
transition: 0.4s;
position: relative;
overflow: hidden;
}
.donate-btn {
 background: white;
 color: #1D3F7A;
}
.volunteer-btn {
background: transparent;
border: 2px solid white;
color: white;
}
.cta-btn:hover {
transform: translateY(-4px);
box-shadow: 0 12px 25px rgba(0,0,0,0.3);
}
.cta-btn::before {
content: "";
position: absolute;
width: 120%;
height: 100%;
background: linear-gradient(120deg,transparent,rgba(255,255,255,0.5),transparent);
top: 0;
left: -120%;
transition: 0.5s;
}
.cta-btn:hover::before {
left: 120%;
}
@keyframes fadeUp {
from {
opacity: 0;
transform: translateY(40px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@media (max-width:768px){
.cta-card {
padding: 40px 25px;
}
.cta-title {
font-size: 28px;
}
.cta-text {
font-size: 15px;
}
}
/* MODERN GALLERY UI */
.modern-gallery {
    padding: 90px 7%;
    background: #f8fafc;
    font-family: 'Poppins', sans-serif;
    width: 100%;
}
.gallery-title {
    text-align: center;
    margin-bottom: 50px;
}
.gallery-title h2 {
    font-size: 42px;
    font-weight: 700;
    color: #111827;
    position: relative;
    display: inline-block;
}
.gallery-title h2::after {
    content: "";
    width: 70px;
    height: 4px;
    background: #0f9d58;
    position: absolute;
    left: 50%;
    bottom: -12px;
    transform: translateX(-50%);
    border-radius: 10px;
}
.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    width: 100%;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    cursor: pointer;
    background: #000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.gallery-item img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    transition: transform .6s ease;
}
.gallery-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.25);
    opacity: 0;
    transition: .4s ease;
    z-index: 1;
}
.gallery-item:hover img {
    transform: scale(1.12);
}
.gallery-item:hover::before {
    opacity: 1;
}
@media(max-width:768px){

    .modern-gallery{
        padding: 70px 5%;
    }

    .gallery-item img{
        height: 250px;
    }

    .gallery-title h2{
        font-size: 30px;
    }
}
@media(max-width:768px){
    .modern-gallery{
        padding:70px 5%;
    }
   .gallery-title h2{
        font-size:30px;
    }
    .gallery-item{
        border-radius:18px;
    }
    .gallery-item img{
        height:260px;
        object-fit:cover;
        object-position:center top;
    }
}
@media(max-width:576px){
    .gallery-item img{
        height:240px;
        object-position:center 12%;
    }
}
@media(max-width:420px){
    .gallery-item img{
        height:220px;
        object-position:center 8%;
    }
}
