/* =========================================
GLOBAL
========================================= */

body{
    background:#eef3f1;
    font-family:'Inter',sans-serif;
    overflow-x:hidden;
    color:#101828;
}

.container{
    width:100%;
    max-width:1400px;
    margin:auto;
    padding:0 70px;
}

/* =========================================
COMMON
========================================= */

.section-line{
    width:80px;
    height:5px;
    border-radius:100px;
    background:#ff7a1a;
    margin-bottom:22px;
}

.section-heading{
    margin-bottom:50px;
}

.section-heading span{
    display:block;

    color:#ff7a1a;

    font-size:13px;
    font-weight:700;

    letter-spacing:4px;

    margin-bottom:18px;
}

.section-heading h2{
    font-size:54px;
    line-height:1.08;

    color:#005b4f;

    letter-spacing:-2px;
}

/* =========================================
HERO
========================================= */

.gallery-hero{
    padding:60px 0 100px;
}

.gallery-hero-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.gallery-hero-content span{
    display:block;

    color:#ff7a1a;

    font-size:13px;
    font-weight:700;

    letter-spacing:4px;

    margin-bottom:18px;
}

.gallery-hero-content h1{
    font-size:68px;
    line-height:1;

    color:#005b4f;

    margin-bottom:28px;

    letter-spacing:-3px;
}

.gallery-hero-content p{
    color:#667085;

    font-size:17px;
    line-height:1.9;

    max-width:620px;
}

.gallery-hero-image img{
    width:100%;
    height:620px;
    object-fit:cover;

    border-radius:34px;

    box-shadow:
    0 18px 45px rgba(0,0,0,0.06);
}

/* =========================================
FEATURED GALLERY
========================================= */

.featured-gallery{
    padding-bottom:80px;
}

.gallery-grid{
    display:grid;
    grid-template-columns:1.2fr 1fr 1fr;
    gap:26px;
}

.gallery-card{
    position:relative;

    overflow:hidden;

    border-radius:30px;

    height:280px;

    background:#ffffff;
}

.large-card{
    grid-row:span 2;
    height:586px;
}

.gallery-card img{
    width:100%;
    height:100%;
    object-fit:cover;

    transition:0.5s ease;
}

.gallery-card:hover img{
    transform:scale(1.06);
}

.gallery-overlay{
    position:absolute;

    left:0;
    right:0;
    bottom:0;

    padding:40px;

    background:
    linear-gradient(
    to top,
    rgba(0,0,0,0.8),
    transparent
    );
}

.gallery-overlay span{
    display:block;

    color:#ff7a1a;

    font-size:12px;
    font-weight:700;

    letter-spacing:3px;

    margin-bottom:14px;
}

.gallery-overlay h3{
    color:#ffffff;

    font-size:34px;
    line-height:1.2;

    max-width:420px;
}

/* =========================================
CATEGORY
========================================= */

.gallery-category-section{
    padding-bottom:80px;
}

.gallery-category-wrapper{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

.gallery-category-wrapper div{
    background:#ffffff;

    padding:16px 28px;

    border-radius:999px;

    font-size:14px;
    font-weight:700;

    transition:0.35s ease;

    box-shadow:
    0 10px 30px rgba(0,0,0,0.04);
}

.gallery-category-wrapper div:hover{
    background:#ff7a1a;
    color:#ffffff;
    transform:translateY(-4px);
}

/* =========================================
VIDEO
========================================= */

.gallery-video-section{
    padding-bottom:90px;
}

.video-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

.video-card{
    position:relative;

    height:360px;

    overflow:hidden;

    border-radius:30px;
}

.video-card img{
    width:100%;
    height:100%;
    object-fit:cover;

    transition:0.5s ease;
}

.video-card:hover img{
    transform:scale(1.06);
}

.video-play{
    position:absolute;
    inset:0;

    display:flex;
    align-items:center;
    justify-content:center;
}

.video-play i{
    width:90px;
    height:90px;

    border-radius:50%;

    background:#ffffff;

    color:#ff7a1a;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:28px;

    transition:0.35s ease;
}

.video-card:hover .video-play i{
    background:#ff7a1a;
    color:#ffffff;
}

/* =========================================
IMPACT
========================================= */

.impact-section{
    padding-bottom:90px;
}

.impact-wrapper{
    background:
    linear-gradient(135deg,#005b4f,#00a99d);

    border-radius:34px;

    padding:55px;

    display:grid;
    grid-template-columns:repeat(4,1fr);

    gap:30px;
}

.impact-box{
    text-align:center;
}

.impact-box h2{
    font-size:52px;
    color:#ffffff;

    margin-bottom:10px;
}

.impact-box span{
    color:rgba(255,255,255,0.82);

    font-size:15px;
}

/* =========================================
CTA
========================================= */

.gallery-cta-section{
    padding-bottom:90px;
}

.gallery-cta-box{
    background:#ffffff;

    border-radius:34px;

    padding:60px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    gap:50px;

    box-shadow:
    0 15px 40px rgba(0,0,0,0.04);
}

.gallery-cta-content span{
    display:block;

    color:#ff7a1a;

    font-size:13px;
    font-weight:700;

    letter-spacing:4px;

    margin-bottom:18px;
}

.gallery-cta-content h2{
    font-size:48px;
    line-height:1.08;

    color:#005b4f;

    margin-bottom:20px;

    letter-spacing:-2px;
}

.gallery-cta-content p{
    color:#667085;

    font-size:17px;
    line-height:1.9;

    max-width:640px;
}

.gallery-cta-buttons{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

/* =========================================
BUTTONS
========================================= */

.primary-btn,
.secondary-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    min-width:220px;
    height:60px;

    border-radius:999px;

    font-size:15px;
    font-weight:700;

    text-decoration:none;

    transition:0.35s ease;
}

.primary-btn{
    background:#00a99d;
    color:#ffffff;
}

.primary-btn:hover{
    background:#ff7a1a;
    transform:translateY(-4px);
}

.secondary-btn{
    background:#ffffff;
    color:#005b4f;

    border:1px solid #d7dfdc;
}

.secondary-btn:hover{
    background:#ff7a1a;
    border-color:#ff7a1a;

    color:#ffffff;

    transform:translateY(-4px);
}

/* =========================================
RESPONSIVE
========================================= */

@media(max-width:1100px){

    .gallery-hero-grid,
    .gallery-grid,
    .video-grid{
        grid-template-columns:1fr;
    }

    .impact-wrapper{
        grid-template-columns:repeat(2,1fr);
    }

    .gallery-cta-box{
        flex-direction:column;
        align-items:flex-start;
    }

    .large-card{
        height:400px;
    }

    .gallery-hero-content h1,
    .section-heading h2,
    .gallery-cta-content h2{
        font-size:44px;
    }
}

@media(max-width:768px){

    .container{
        padding:0 24px;
    }

    .gallery-hero{
        padding:40px 0 80px;
    }

    .gallery-hero-content h1,
    .section-heading h2,
    .gallery-cta-content h2{
        font-size:36px;
    }

    .impact-wrapper{
        grid-template-columns:1fr;
    }

    .gallery-cta-box{
        padding:40px 28px;
    }

    .gallery-cta-buttons{
        flex-direction:column;
        width:100%;
    }

    .primary-btn,
    .secondary-btn{
        width:100%;
    }
}
/* =========================================
FINAL BUTTON HOVER FIX
========================================= */

.primary-btn,
.secondary-btn{
    transition:all 0.35s ease !important;

    box-shadow:none !important;

    background-image:none !important;
}

/* PRIMARY BUTTON */

.primary-btn:hover{

    background:#ff7a1a !important;

    color:#ffffff !important;

    border-color:#ff7a1a !important;

    transform:translateY(-4px) !important;

    box-shadow:none !important;

    background-image:none !important;
}

/* SECONDARY BUTTON */

.secondary-btn:hover{

    background:#ff7a1a !important;

    color:#ffffff !important;

    border-color:#ff7a1a !important;

    transform:translateY(-4px) !important;

    box-shadow:none !important;

    background-image:none !important;
}

/* CATEGORY HOVER */

.gallery-category-wrapper div{
    transition:all 0.35s ease !important;
}

.gallery-category-wrapper div:hover{

    background:#ff7a1a !important;

    color:#ffffff !important;

    transform:translateY(-4px) !important;
}

/* GALLERY CARD HOVER */

.gallery-card,
.video-card{
    transition:all 0.35s ease !important;
}

.gallery-card:hover,
.video-card:hover{

    transform:translateY(-6px) !important;
}