@import url('https://fonts.googleapis.com/css2?family=Elms+Sans:ital,wght@0,100..900;1,100..900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Elms+Sans:ital,wght@0,100..900;1,100..900&family=Gasoek+One&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Elms Sans", sans-serif;
}



html,
body {
    overflow-x: hidden;
}

.nav {
    width: 100%;
    min-height: 80vh;
    position: relative;
}

.bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: fadeSlide 15s infinite;
}

.bg1 {
    background-image: url("../images/ban3.png");
    animation-delay: 0s;
}

.bg2 {
    background-image: url("../images/ban2.png");
    animation-delay: 5s;
}

.bg3 {
    background-image: url("../images/ban1.png");
    animation-delay: 10s;
}

.nav::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, .55), rgba(0, 0, 0, .3), transparent);
    z-index: 1;
}

.navwrap,
.hero {
    position: relative;
    z-index: 2;
}


.navwrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: rgba(0, 0, 0, .88);
    backdrop-filter: blur(12px);
    z-index: 9999;
}

.main-nav {
    width: min(1400px, 92%);
    height: 100%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    flex-shrink: 0;
}

.logo img {
    display: block;
    width: 120px;
    height: 70px;
    object-fit: contain;
}

/* Tablet */
@media (max-width: 992px) {

    .logo img {
        width: 60px;
        height: 60px;
    }

}

/* Mobile */
@media (max-width: 768px) {

    .logo img {
        width: 52px;
        height: 52px;
    }

}

/* Small phones */
@media (max-width: 480px) {

    .logo img {
        width: 45px;
        height: 45px;
    }

}

.sections {
    display: flex;
    align-items: center;
    gap: 5px;
}

.pages {
    height: 80px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .35s;
}

/* Hover effect for all navbar items except Donation */

.pages:not(.donation):hover {
    background: #d83529;
}

.pages:not(.donation):hover span {
    color: #fff;
}

.pages span {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}

.pages.active {
    background: #d83529;
}

.pages.active span {
    color: #fff;
}

.donation button {
    border: none;
    background: #e53935;
    color: #fff;
    padding: 12px 22px;
    border-radius: 8px;
    cursor: pointer;
    transition: .35s;
}

.donation button:hover {
    background: #ff5a4f;
    transform: translateY(-2px);
}

.hero {
    display: flex;
    align-items: center;
    min-height: 80vh;
    padding: 2vh 0;
}

.herowrap {
    width: 92%;
    max-width: 1200px;
    margin: auto;
    color: #fff;
    padding-top: 80px;
}

.herowrap h3 {
    font-size: clamp(2rem, 3vw, 2.6rem);
    font-weight: 700;
    line-height: 1.2;
    opacity: 0;
    word-break: break-word;
    transform: translateY(40px);
    animation: fadeUp .8s forwards;
}

.herowrap .sub {

    opacity: 0;

    transform: translateY(40px);

    animation: fadeUp .8s forwards;

    animation-delay: 1.7s;

}


.hero-fullform {

    margin: 22px 0 28px;

    width: 100%;
    max-width: 650px;

    border-left: 4px solid #f44336;

    padding-left: 18px;

    /* Animation */
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp .8s forwards;
    animation-delay: 1.35s;

}

.hero-fullform span {

    display: block;

    color: #f44336;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 4px;

    margin-bottom: 8px;

    text-transform: uppercase;

}

.hero-fullform p {

    color: #f5f5f5;

    font-size: 18px;

    line-height: 1.8;

    font-weight: 300;

    word-break: break-word;

}

.hero-fullform strong {

    color: #ff6b57;

    font-weight: 700;

}

@media(max-width:768px) {

    .hero-fullform {

        margin: 18px 0 22px;

        padding-left: 14px;

    }

    .hero-fullform span {

        font-size: 12px;

        letter-spacing: 3px;

    }

    .hero-fullform p {

        font-size: 15px;

        line-height: 1.7;

    }

}

.sub {
    margin-top: 25px;
}

.sub p {
    width: min(550px, 100%);
    padding: 22px;
    border-radius: 18px;
    background: rgba(30, 30, 30, .35);
    backdrop-filter: blur(12px);
    border-left: 4px solid #8dd8ff;
    color: #fff;
    line-height: 1.8;
    font-size: clamp(15px, 2vw, 17px);
}

.herowrap h3:nth-child(1) {
    animation-delay: .2s;
}

.herowrap h3:nth-child(2) {
    animation-delay: .5s;
}

.herowrap h3:nth-child(3) {
    animation-delay: .8s;
}

.herowrap h3:nth-child(4) {
    animation-delay: 1.1s;
}

.herowrap .sub {
    opacity: 0;
    animation: fadeUp .8s forwards;
    animation-delay: 1.4s;
}

.menu-btn {
    display: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
}

@media(max-width:992px) {

    .menu-btn {
        display: block;
    }

    .sections {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 80px);
        background: #111;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        transition: .4s;
        padding-top: 20px;
    }

    .sections.active {
        right: 0;
    }

    .pages {
        height: 60px;
        justify-content: flex-start;
        padding-left: 30px;
    }

    .donation {
        padding: 20px 30px;
    }

    .donation button {
        width: 100%;
    }

}

@media(max-width:768px) {

    .nav {
        min-height: 70vh;
    }

    .navwrap {
        height: 70px;
    }

    .hero {
        min-height: 70vh;
    }

    .herowrap {
        text-align: center;
        padding-top: 70px;
    }

    .sub p {
        margin: auto;
        text-align: center;
    }

}

@media(max-width:480px) {

    .sections {
        width: 100%;
    }

    .logo {
        width: 140px;
    }

    .herowrap h3 {
        line-height: 1.1;
    }

    .sub p {
        padding: 18px;
    }

}

@keyframes fadeSlide {

    0%,
    100% {
        opacity: 0;
    }

    6%,
    33% {
        opacity: 1;
    }

    40% {
        opacity: 0;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Chrome, Edge, Safari */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #111;
}

::-webkit-scrollbar-thumb {
    background: #e53935;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ff5a4f;
}





























/* galley */

/*=========================================
            GALLERY HERO
=========================================*/

.gallery-hero {
    padding: 120px 0 70px;
    text-align: center;
}

.gallery-hero .container {
    max-width: 900px;
    margin: auto;
}

.gallery-subtitle {
    display: inline-block;
    color: #d12d7c;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.gallery-hero h1 {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.15;
    color: #111;
    margin-bottom: 20px;
}

.gallery-hero p {
    font-size: 17px;
    line-height: 1.8;
    color: #666;
    max-width: 700px;
    margin: auto;
}


/*=========================================
            GALLERY SECTION
=========================================*/

.gallery-section {
    padding: 40px 0 100px;
}

.gallery-grid {

    width: 90%;
    margin: auto;
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    grid-auto-rows: 250px;

    gap: 22px;

}


/*=========================================
            GALLERY CARD
=========================================*/

.gallery-item {

    position: relative;

    overflow: hidden;

    border-radius: 22px;

    cursor: pointer;

    background: #eee;

}

.gallery-item img {

    width: 100%;
    height: 100%;

    object-fit: cover;
    display: block;

    transition: .7s ease;

}


/*=========================================
            DIFFERENT SIZES
=========================================*/

.gallery-item.large {
    grid-column: span 2;
}

.gallery-item.wide {
    grid-column: span 2;
}

.gallery-item.tall {
    grid-row: span 2;
}


/*=========================================
            OVERLAY
=========================================*/

.gallery-overlay {

    position: absolute;

    inset: 0;

    display: flex;
    align-items: flex-end;

    padding: 30px;

    background: linear-gradient(transparent,
            rgba(0, 0, 0, .75));

    opacity: 0;

    transition: .45s;

}

.gallery-overlay span {

    color: #fff;

    font-size: 24px;

    font-weight: 600;

    transform: translateY(20px);

    transition: .45s;

}


/*=========================================
            HOVER
=========================================*/

.gallery-item:hover img {

    transform: scale(1.08);

}

.gallery-item:hover .gallery-overlay {

    opacity: 1;

}

.gallery-item:hover .gallery-overlay span {

    transform: translateY(0);

}


/*=========================================
            TABLET
=========================================*/

@media(max-width:992px) {

    .gallery-grid {

        grid-template-columns: repeat(2, 1fr);

    }

    .gallery-item.large,
    .gallery-item.wide {

        grid-column: span 2;

    }

    .gallery-item.tall {

        grid-row: span 2;

    }

    .gallery-hero h1 {

        font-size: 46px;

    }

}


/*=========================================
            MOBILE
=========================================*/

@media(max-width:576px) {

    .gallery-hero {

        padding: 90px 20px 50px;

    }

    .gallery-hero h1 {

        font-size: 34px;

    }

    .gallery-hero p {

        font-size: 15px;

    }

    .gallery-grid {

        grid-template-columns: 1fr;

        grid-auto-rows: 240px;

        gap: 18px;

    }

    .gallery-item.large,
    .gallery-item.wide,
    .gallery-item.tall {

        grid-column: span 1;
        grid-row: span 1;

    }

    .gallery-overlay {

        opacity: 1;

        background: linear-gradient(transparent,
                rgba(0, 0, 0, .55));

    }

    .gallery-overlay span {

        transform: none;

        font-size: 20px;

    }

}


/* media query */

@media (max-width:1400px) {

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 260px;
        gap: 18px;
    }

    .gallery-item.large,
    .gallery-item.wide,
    .gallery-item.tall {
        grid-column: span 1;
        grid-row: span 1;
    }

}

@media (max-width:1200px) {

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 240px;
        gap: 16px;
    }

    .gallery-item.large,
    .gallery-item.wide,
    .gallery-item.tall {
        grid-column: span 1;
        grid-row: span 1;
    }

}

@media (max-width:991px) {

    .gallery-grid {

        grid-template-columns: repeat(2, 1fr);

        grid-auto-rows: 220px;

        gap: 14px;

    }

    .gallery-item.large,
    .gallery-item.wide,
    .gallery-item.tall {

        grid-column: span 1;
        grid-row: span 1;

    }

}

@media (max-width:767px) {

    .gallery-grid {

        grid-template-columns: 1fr;

        grid-auto-rows: 250px;

        gap: 16px;

    }

    .gallery-item,
    .gallery-item.large,
    .gallery-item.wide,
    .gallery-item.tall {

        grid-column: span 1;
        grid-row: span 1;

        height: 250px;

    }

}

@media (max-width:360px) {

    .gallery-grid {

        gap: 12px;

    }

    .gallery-item,
    .gallery-item.large,
    .gallery-item.wide,
    .gallery-item.tall {

        height: 210px;

    }

}





















/* galley */

/*=========================================
            GALLERY HERO
=========================================*/

.gallery-hero {
    padding: 120px 0 70px;
    text-align: center;
}

.gallery-hero .container {
    max-width: 900px;
    margin: auto;
}

.gallery-subtitle {
    display: inline-block;
    color: #d12d7c;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.gallery-hero h1 {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.15;
    color: #111;
    margin-bottom: 20px;
}

.gallery-hero p {
    font-size: 17px;
    line-height: 1.8;
    color: #666;
    max-width: 700px;
    margin: auto;
}


/*=========================================
            GALLERY SECTION
=========================================*/

.gallery-section {
    padding: 40px 0 100px;
}

.gallery-grid {

    width: 90%;
    margin: auto;
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    grid-auto-rows: 250px;

    gap: 22px;

}


/*=========================================
            GALLERY CARD
=========================================*/

.gallery-item {

    position: relative;

    overflow: hidden;

    border-radius: 22px;

    cursor: pointer;

    background: #eee;

}

.gallery-item img {

    width: 100%;
    height: 100%;

    object-fit: cover;
    display: block;

    transition: .7s ease;

}


/*=========================================
            DIFFERENT SIZES
=========================================*/

.gallery-item.large {
    grid-column: span 2;
}

.gallery-item.wide {
    grid-column: span 2;
}

.gallery-item.tall {
    grid-row: span 2;
}


/*=========================================
            OVERLAY
=========================================*/

.gallery-overlay {

    position: absolute;

    inset: 0;

    display: flex;
    align-items: flex-end;

    padding: 30px;

    background: linear-gradient(transparent,
            rgba(0, 0, 0, .75));

    opacity: 0;

    transition: .45s;

}

.gallery-overlay span {

    color: #fff;

    font-size: 24px;

    font-weight: 600;

    transform: translateY(20px);

    transition: .45s;

}


/*=========================================
            HOVER
=========================================*/

.gallery-item:hover img {

    transform: scale(1.08);

}

.gallery-item:hover .gallery-overlay {

    opacity: 1;

}

.gallery-item:hover .gallery-overlay span {

    transform: translateY(0);

}


/*=========================================
            TABLET
=========================================*/

@media(max-width:992px) {

    .gallery-grid {

        grid-template-columns: repeat(2, 1fr);

    }

    .gallery-item.large,
    .gallery-item.wide {

        grid-column: span 2;

    }

    .gallery-item.tall {

        grid-row: span 2;

    }

    .gallery-hero h1 {

        font-size: 46px;

    }

}


/*=========================================
            MOBILE
=========================================*/

@media(max-width:576px) {

    .gallery-hero {

        padding: 90px 20px 50px;

    }

    .gallery-hero h1 {

        font-size: 34px;

    }

    .gallery-hero p {

        font-size: 15px;

    }

    .gallery-grid {

        grid-template-columns: 1fr;

        grid-auto-rows: 240px;

        gap: 18px;

    }

    .gallery-item.large,
    .gallery-item.wide,
    .gallery-item.tall {

        grid-column: span 1;
        grid-row: span 1;

    }

    .gallery-overlay {

        opacity: 1;

        background: linear-gradient(transparent,
                rgba(0, 0, 0, .55));

    }

    .gallery-overlay span {

        transform: none;

        font-size: 20px;

    }

}


/* media query */

@media (max-width:1400px) {

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 260px;
        gap: 18px;
    }

    .gallery-item.large,
    .gallery-item.wide,
    .gallery-item.tall {
        grid-column: span 1;
        grid-row: span 1;
    }

}

@media (max-width:1200px) {

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 240px;
        gap: 16px;
    }

    .gallery-item.large,
    .gallery-item.wide,
    .gallery-item.tall {
        grid-column: span 1;
        grid-row: span 1;
    }

}

@media (max-width:991px) {

    .gallery-grid {

        grid-template-columns: repeat(2, 1fr);

        grid-auto-rows: 220px;

        gap: 14px;

    }

    .gallery-item.large,
    .gallery-item.wide,
    .gallery-item.tall {

        grid-column: span 1;
        grid-row: span 1;

    }

}

@media (max-width:767px) {

    .gallery-grid {

        grid-template-columns: 1fr;

        grid-auto-rows: 250px;

        gap: 16px;

    }

    .gallery-item,
    .gallery-item.large,
    .gallery-item.wide,
    .gallery-item.tall {

        grid-column: span 1;
        grid-row: span 1;

        height: 250px;

    }

}

@media (max-width:360px) {

    .gallery-grid {

        gap: 12px;

    }

    .gallery-item,
    .gallery-item.large,
    .gallery-item.wide,
    .gallery-item.tall {

        height: 210px;

    }

}

/* video */

/*==============================
    VIDEO SECTION
==============================*/

.video-section {

    width: 100%;
    padding: 90px 20px;
    background: #ffffff;

}


.video-container {

    max-width: 1200px;
    margin: auto;

}


/*==============================
    HEADING
==============================*/

.video-heading {

    text-align: center;
    margin-bottom: 50px;

}


.video-heading span {

    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #2e8b57;

}


.video-heading h2 {

    margin: 12px 0;
    font-size: 38px;
    font-weight: 700;
    color: #1f2937;

}


.video-heading p {

    max-width: 650px;
    margin: auto;

    color: #6b7280;
    font-size: 16px;
    line-height: 1.7;

}


/*==============================
    VIDEO GRID
==============================*/

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

/*==============================
    VIDEO CARD
==============================*/

.video-card {
    background: #fff;
    border-radius: 20px;
    padding: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transition: .35s ease;
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .12);
}

/*==============================
    VIDEO WRAPPER
==============================*/

.video-wrapper {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 16px;
    position: relative;
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    border-radius: 16px;
}

/*==============================
    VIDEO TITLE
==============================*/

.video-card h3 {
    margin-top: 18px;
    font-size: 20px;
    color: #1f2937;
    text-align: center;
    font-weight: 600;
}

/*==============================
    FEATURED VIDEO
==============================*/

.featured-video {
    max-width: 900px;
    margin: 50px auto 0;
}

.featured-video .video-card {
    padding: 20px;
}

.featured-video .video-wrapper {
    aspect-ratio: 16/9;
}



/*==============================
    RESPONSIVE
==============================*/


@media(max-width:768px) {


    .video-section {

        padding: 60px 15px;

    }


    .video-heading h2 {

        font-size: 28px;

    }


   .video-grid{
        grid-template-columns:1fr;
        gap:25px;
    }

    .video-card{
        padding:15px;
    }

    .video-card h3{
        font-size:18px;
    }

    .featured-video{
        margin-top:40px;}


    .featured-video {

        margin-top: 30px;

    }


}

@media (max-width:480px){

    .video-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .video-card{
        padding:12px;
        border-radius:16px;
    }

    .video-wrapper{
        border-radius:12px;
    }

    .video-wrapper iframe{
        border-radius:12px;
    }

    .video-card h3{
        font-size:17px;
        margin-top:15px;
    }

    .featured-video{
        margin-top:30px;
    }

}

@media (max-width:426px){

    .video-card{
        padding:10px;
    }

    .video-card h3{
        font-size:16px;
    }

}

@media (max-width:360px){

    .video-card{
        padding:8px;
    }

    .video-card h3{
        font-size:15px;
    }

    .video-wrapper{
        border-radius:10px;
    }

}