*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
}

body{
    background:#f7f7f7;
    color:#333;
    line-height:1.6;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* Header */
header{
    background:#fff;
    box-shadow:0 2px 5px rgba(0,0,0,0.1);
    position:sticky;
    top:0;
    z-index:100;
}

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 0;
}

.logo-link{
    text-decoration: none;
    color: inherit;
}

.logo-link:visited,
.logo-link:hover,
.logo-link:active{
    color: inherit;
}

.logo-section{
    display:flex;
    align-items:center;
    gap:10px;
    cursor:pointer;
}

.logo{
    width:50px;
}

.logo-section h2{
    color:#0c6b3d;
}

nav ul{
    display:flex;
    list-style:none;
    align-items:center;
}

nav ul li{
    position:relative;
    margin-left:20px;
}

nav ul li a{
    text-decoration:none;
    color:#333;
    font-weight:bold;
}

nav ul li:hover .dropdown{
    display:block;
}

.dropdown{
    display:none;
    position:absolute;
    top:100%;
    background:white;
    min-width:180px;
    box-shadow:0 2px 8px rgba(0,0,0,0.15);
}

.dropdown a{
    display:block;
    padding:10px;
}

.donate-btn{
    background:#0c6b3d;
    color:white !important;
    padding:10px 18px;
    border-radius:5px;
}

/* Hero Carousel */
.carousel{
    overflow:hidden;
    height:450px;
    margin-bottom:40px;
}

.slides{
    display:flex;
    width:300%;
    animation:slide 15s infinite;
}

.slides img{
    width:100%;
    height:450px;
    object-fit:cover;
}

@keyframes slide{
    0%,30%{transform:translateX(0);}
    35%,65%{transform:translateX(-33.33%);}
    70%,100%{transform:translateX(-66.66%);}
}

/* Sections */
section{
    padding:25px 0;
}

.section-title{
    text-align:center;
    margin-bottom:25px;
    color:#0c6b3d;
}

/* Founder */
.founder{
    display:flex;
    gap:30px;
    align-items:center;
    flex-wrap:wrap;
}

.founder img{
    width:280px;
    border-radius:10px;
}

.founder-content{
    flex:1;
}

/* Cards */
.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

.card{
    background:white;
    padding:20px;
    border-radius:10px;
    box-shadow:0 2px 8px rgba(0,0,0,0.1);
}

.card h3{
    color:#0c6b3d;
    margin-bottom:10px;
}

.card img{
    width:100%;
    height:220px;
    object-fit:cover;
    object-position:center 40%;
}

.card-overlay{
    position:absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;

    display:flex;
    justify-content:center;
    align-items:center;

    background:rgba(0,0,0,0.55);

    opacity:0;
    transition:opacity 0.3s ease;
}

.card-overlay span{
    color:white;
    font-size:1rem;
    font-weight:600;
    letter-spacing:0.5px;
    padding:10px 18px;
    border:1px solid white;
    border-radius:30px;
}

.card:hover .card-overlay{
    opacity:1;
}

.card:hover .card-image img{
    transform:scale(1.05);
}

.card-image{
    position:relative;
    overflow:hidden;
}

/* Team */
.team{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

.team-member{
    background:white;
    padding:20px;
    text-align:center;
    border-radius:10px;
}

/* Project */
.project-main-img{
    width:100%;
    max-height:450px;
    object-fit:cover;
    border-radius:10px;
    margin:20px 0;
}

.gallery{
    display:flex;
    overflow-x:auto;
    gap:15px;
    margin-top:20px;
}

.gallery img{
    width:300px;
    border-radius:10px;
}

/* Contact */
.contact-box{
    background:white;
    padding:30px;
    border-radius:10px;
}

/* Donate */
.donate-section{
    text-align:center;
}

.qr{
    width:250px;
    margin:20px 0;
}

/* Footer */
footer{
    background:#0c6b3d;
    color:white;
    text-align:center;
    padding:20px;
    margin-top:40px;
}

@media(max-width:768px){

    .navbar{
        flex-direction:column;
        gap:15px;
    }

    nav ul{
        flex-wrap:wrap;
        justify-content:center;
    }

    .founder{
        flex-direction:column;
    }
}

.card{
    display:block;
    text-decoration:none;
    color:#333;
    background:white;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 2px 8px rgba(0,0,0,0.1);
    transition:transform 0.3s ease;
}

.card:hover{
    transform:translateY(-5px);
}

.card h3{
    color:#0c6b3d;
}

.hero-carousel{
    margin-bottom:50px;
}

.carousel-container{
    position:relative;
    width:100%;
    height:500px;
    overflow:hidden;
    border-radius:10px;
}

.carousel-track{
    display:flex;
    width:100%;
    height:100%;
    transition:transform 0.6s ease-in-out;
}

.carousel-slide{
    display:none;
    width:100%;
    height:100%;
}

.carousel-slide.active{
    display:block;
}

.carousel-slide img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.carousel-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:50px;
    height:50px;
    border:none;
    border-radius:50%;
    background:rgba(0,0,0,0.5);
    color:white;
    font-size:24px;
    cursor:pointer;
    z-index:10;
    transition:0.3s;
}

.carousel-btn:hover{
    background:rgba(0,0,0,0.8);
}

.prev{
    left:20px;
}

.next{
    right:20px;
}

.slide{
    min-width:100%;
    height:100%;
}

.slide img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.gallery-intro{
    text-align:center;
    max-width:700px;
    margin:0 auto 30px;
}

.gallery-preview{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

.gallery-preview img{
    width:100%;
    height:220px;
    object-fit:cover;
    border-radius:10px;
    transition:0.3s ease;
}

.gallery-preview img:hover{
    transform:scale(1.03);
}

.gallery-button{
    text-align:center;
    margin-top:30px;
}

.btn-primary{
    display:inline-block;
    padding:12px 24px;
    background:#0c6b3d;
    color:white;
    text-decoration:none;
    border-radius:5px;
}

.gallery-grid{
    display:grid;
    grid-template-columns:
        repeat(auto-fit,minmax(280px,1fr));

    gap:20px;
    margin-top:40px;
}

.gallery-grid img{
    width:100%;
    height:250px;
    object-fit:cover;
    border-radius:10px;
    cursor:pointer;
    transition:all 0.3s ease;
}

.gallery-grid img:hover{
    transform:scale(1.03);
    box-shadow:0 8px 20px rgba(0,0,0,0.15);
}

.project-header{
    display:flex;
    align-items:center;
    gap:20px;
    margin-bottom:20px;
}

.project-logo{
    width:80px;
    height:80px;
    object-fit:contain;
}

.project-header h1{
    margin:0;
    color:#0c6b3d;
}

.image-modal{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.92);
    z-index:9999;

    justify-content:center;
    align-items:center;
}

.modal-image{
    max-width:85%;
    max-height:85%;
    border-radius:10px;
    animation:zoomIn 0.3s ease;
}

.close-modal{
    position:absolute;
    top:20px;
    right:30px;

    color:white;
    font-size:45px;
    cursor:pointer;
}

.nav-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);

    width:60px;
    height:60px;

    border:none;
    border-radius:50%;

    background:rgba(255,255,255,0.15);
    color:white;

    font-size:30px;
    cursor:pointer;

    transition:0.3s;
}

.nav-btn:hover{
    background:rgba(255,255,255,0.3);
}

.prev-btn{
    left:25px;
}

.next-btn{
    right:25px;
}

.image-counter{
    position:absolute;
    bottom:20px;
    left:50%;
    transform:translateX(-50%);

    color:white;
    font-size:18px;
}

@keyframes zoomIn{
    from{
        opacity:0;
        transform:scale(0.8);
    }
    to{
        opacity:1;
        transform:scale(1);
    }
}

.gallery-tabs{
    display:flex;
    justify-content:center;
    gap:15px;
    margin-bottom:40px;
}

.tab-btn{
    padding:12px 24px;
    border:none;
    cursor:pointer;
    border-radius:5px;

    background:#ddd;
}

.tab-btn.active{
    background:#0c6b3d;
    color:white;
}

.video-grid{
    display:grid;

    grid-template-columns:
        repeat(auto-fit,minmax(300px,1fr));

    gap:25px;
}

.video-thumbnail{
    position:relative;
    overflow:hidden;

    background:#fff;

    border-radius:16px;

    box-shadow:
        0 4px 20px rgba(0,0,0,0.08);

    transition:all 0.3s ease;
}

.video-thumbnail:hover{
    transform:translateY(-6px);

    box-shadow:
        0 12px 30px rgba(0,0,0,0.15);
}

.video-thumbnail img{
    width:100%;
    height:260px;

    object-fit:cover;

    display:block;

    transition:transform 0.5s ease;
}

.video-thumbnail:hover img{
    transform:scale(1.05);
}

.video-thumbnail:hover .play-button{
    transform:scale(1.1);
}

.video-thumbnail h3{
    padding:18px 20px;

    margin:0;

    font-size:1.1rem;
    font-weight:600;

    color:#1f2937;

    background:#fff;
}

.video-duration{
    position:absolute;

    top:15px;
    right:15px;

    background:
        rgba(0,0,0,0.7);

    color:white;

    padding:5px 10px;

    border-radius:20px;

    font-size:0.85rem;
}

.video-tag{
    position:absolute;

    top:15px;
    left:15px;

    background:#0c6b3d;

    color:white;

    padding:6px 12px;

    border-radius:20px;

    font-size:0.8rem;
}

.play-overlay{
    position:absolute;
    inset:0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,0.65) 0%,
            rgba(0,0,0,0.15) 40%,
            rgba(0,0,0,0.05) 100%
        );

    display:flex;
    justify-content:center;
    align-items:center;
}

.play-button{
    width:72px;
    height:72px;

    border-radius:50%;

    backdrop-filter:blur(8px);

    background:
        rgba(255,255,255,0.2);

    border:
        1px solid rgba(255,255,255,0.4);

    display:flex;
    justify-content:center;
    align-items:center;

    color:white;

    font-size:28px;

    transition:all 0.3s ease;
}

.video-thumbnail,
.play-overlay,
.play-button{
    cursor:pointer;
}

.video-title{
    position:absolute;

    left:20px;
    bottom:18px;

    color:white;

    font-size:1rem;
    font-weight:500;

    letter-spacing:0.2px;

    z-index:2;
}

.video-modal{
    display:none;

    position:fixed;
    inset:0;

    background:rgba(0,0,0,0.9);

    z-index:9999;

    justify-content:center;
    align-items:center;

    padding:20px;
}

.video-modal video{
    max-width:90vw;
    max-height:85vh;

    width:auto;
    height:auto;

    object-fit:contain;

    border-radius:10px;
}

.close-video{

    position:absolute;

    top:20px;
    right:30px;

    color:white;
    font-size:40px;

    cursor:pointer;
}

.about-content{
    display:flex;
    align-items:center;
    gap:40px;
    margin-top:30px;
}

.about-text{
    flex:1;
}

.about-text p{
    margin-bottom:20px;
}

.about-image{
    flex:1;
}

.about-image img{
    width:100%;
    border-radius:12px;
    object-fit:cover;

    box-shadow:
        0 4px 20px rgba(0,0,0,0.1);
}

.activities-section{
    margin-top:60px;
}

.activities-grid{
    display:flex;
    flex-direction:column;
    gap:40px;
}

.activity-card{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;

    background:#fff;

    border-radius:12px;

    padding:25px;

    box-shadow:
        0 4px 15px rgba(0,0,0,0.08);
}

.video-wrapper{
    position:relative;
    width:100%;

    padding-bottom:56.25%;

    height:0;

    overflow:hidden;

    border-radius:10px;
}

.video-wrapper iframe{
    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:100%;

    border:none;
}

.activity-content{
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.activity-content h3{
    color:#0c6b3d;
    margin-bottom:15px;
}

.activity-content p{
    line-height:1.8;
    color:#555;
}

.team-member{
    background:white;

    padding:30px 20px;

    text-align:center;

    border-radius:16px;

    box-shadow:
        0 4px 15px rgba(0,0,0,0.08);

    transition:all 0.3s ease;
}

.team-member:hover{
    transform:translateY(-5px);

    box-shadow:
        0 10px 25px rgba(0,0,0,0.12);
}

.team-member-image{
    width:100%;
    height:280px;

    object-fit:cover;

    border-radius:12px;

    margin-bottom:20px;
}

.team-member h3{
    color:#0c6b3d;
    margin-bottom:8px;
}

.team-member p{
    color:#666;
    font-size:0.95rem;
}

.activity-card.reverse .video-wrapper{
    order:2;
}

.activity-card.reverse .activity-content{
    order:1;
}

.map-container{
    margin-top:30px;

    border-radius:16px;

    overflow:hidden;

    box-shadow:
        0 4px 15px rgba(0,0,0,0.08);
}

.map-container iframe{
    display:block;
}

.youtube-grid{
    display:grid;
    grid-template-columns:
        repeat(auto-fit, minmax(350px, 1fr));

    gap:25px;
}

.youtube-card{
    background:#fff;

    border-radius:16px;

    overflow:hidden;

    box-shadow:
        0 4px 20px rgba(0,0,0,0.08);

    transition:all 0.3s ease;
}

.youtube-card:hover{
    transform:translateY(-5px);

    box-shadow:
        0 12px 30px rgba(0,0,0,0.15);
}

.youtube-card iframe{
    width:100%;
    aspect-ratio:16/9;

    border:none;

    display:block;
}

.activity-content ul{
    padding-left:25px;
    margin-top:15px;
}

.activity-content li{
    margin-bottom:10px;
    color:#555;
}

.activity-content li::marker{
    color:#0c6b3d;
}
.page-banner{

    background:#0c6b3d;

    color:white;

    text-align:center;

    padding:60px 20px;
}

.page-banner h1{

    margin-bottom:15px;
}

.page-banner p{

    max-width:800px;

    margin:auto;

    line-height:1.8;
}
.approval-grid{

    display:grid;

    grid-template-columns:
        repeat(auto-fit,minmax(320px,1fr));

    gap:30px;

    margin:60px 0;
}

.approval-card{

    background:white;

    border-radius:16px;

    padding:30px;

    text-align:center;

    box-shadow:
        0 4px 20px rgba(0,0,0,.08);

    transition:.3s;
}

.approval-card:hover{

    transform:translateY(-6px);

    box-shadow:
        0 12px 30px rgba(0,0,0,.15);
}
.approval-icon{

    font-size:48px;

    margin-bottom:20px;
}
.document-btn{

    display:inline-block;

    margin-top:20px;

    padding:12px 24px;

    background:#0c6b3d;

    color:white;

    text-decoration:none;

    border-radius:8px;

    transition:.3s;
}

.document-btn:hover{

    background:#084f2d;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 8px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;

    color: #444;

    transition: color 0.3s ease,
                transform 0.3s ease;
}

.social-links a:hover {
    color: #2e7d32;   /* Match your website's green */
    transform: translateY(-2px);
}

.social-icon {
    width: 22px;
    height: 22px;
}
header {
    position: relative;
}

.navbar {
    position: relative;

    padding-top: 2%;
}

.header-social {

    position: absolute;

    top: 12px;
    right: 0;

    display: flex;
    gap: 14px;

    align-items: center;

}

.header-social a {

    display: flex;

    align-items: center;
    justify-content: center;

    color: #555;

    transition: color .3s ease,
                transform .3s ease;

}

.header-social a:hover {

    color: #2e7d32;

    transform: translateY(-2px);

}

.header-social svg {

    width: 22px;
    height: 22px;

}