/* =========================================
MASONRY GALLERY
========================================= */

.masonry-gallery-section{

    position:relative;

    padding:50px 0;

    overflow:hidden;

    background:transparent;
}


/* =========================================
HEADING
========================================= */

.gallery-heading{

    text-align:center;

    margin-bottom:50px;
}

.gallery-heading span{

    display:inline-flex;

    padding:14px 30px;

    border-radius:50px;

    background:
    rgba(124,58,237,0.14);

    border:
    1px solid rgba(255,255,255,0.08);

    color:#c4b5fd;

    font-size:13px;

    font-weight:700;

    letter-spacing:3px;

    text-transform:uppercase;

    margin-bottom:25px;
}

.gallery-heading h2{

    font-size:54px;

    line-height:1.1;

    color:#ffffff;

    font-weight:800;

    margin-bottom:24px;
}

.gallery-heading p{

    max-width:1100px;

    margin:auto;

    color:
    rgba(255,255,255,0.78);

    font-size:20px;

    line-height:1.7;
}


/* =========================================
GRID
========================================= */

.masonry-gallery{

    display:flex;

    gap:24px;
}

.gallery-column{

    flex:1;

    display:flex;

    flex-direction:column;

    gap:24px;
}


/* =========================================
ACCREDITATION IMAGE BOX
========================================= */

.gallery-image-box{

    position:relative;

    width:100%;

    height:300px;

    border-radius:28px;

    overflow:hidden;

    background:
    rgba(255,255,255,0.03);

    border:
    1px solid rgba(255,255,255,0.08);

    display:flex;

    align-items:center;

    justify-content:center;

    transition:0.35s ease;
}


.gallery-image-box:hover{

    transform:translateY(-6px);

    box-shadow:
    0 22px 50px rgba(0,0,0,0.28);
}


/* =========================================
IMAGE SIZE
========================================= */

.gallery-image-box img{

    width:100%;

    height:100%;

    object-fit:cover;

    padding:0;

    border-radius:28px;

    cursor:pointer;

    transition:0.35s ease;
}


/* =========================================
WATERMARK
========================================= */

.gallery-image-box::after{

    content:"";

    position:absolute;

    bottom:12px;

    left:50%;

    transform:translateX(-50%);

    width:110px;

    height:42px;

    background-image:
    url("../assests/benevo-watermark.png");

    background-repeat:no-repeat;

    background-position:center;

    background-size:70%;

    background-color:
    rgba(0,0,0,0.42);

    backdrop-filter:blur(8px);

    border:
    1px solid rgba(255,255,255,0.08);

    border-radius:14px;

    opacity:0.95;

    z-index:5;

    pointer-events:none;
}



/* =========================================
POPUP
========================================= */

.image-popup{

    position:fixed;

    inset:0;

    background:
    rgba(0,0,0,0.92);

    display:none;

    align-items:center;

    justify-content:center;

    z-index:999999;
}

.image-popup.active-popup{

    display:flex;
}


/* =========================================
POPUP IMAGE
========================================= */

#popupImage{

    width:auto;

    height:auto;

    max-width:92vw;

    max-height:92vh;

    border-radius:24px;

    object-fit:contain;

    box-shadow:
    0 25px 80px rgba(0,0,0,0.45);
}


/* =========================================
POPUP WATERMARK
========================================= */

.image-popup::after{

    content:"";

    position:absolute;

    bottom:40px;

    right:550px;

    width:130px;

    height:50px;

    background-image:
    url("../assests/benevo-watermark.png");

    background-repeat:no-repeat;

    background-position:center;

    background-size:70%;

    background-color:
    rgba(0,0,0,0.45);

    backdrop-filter:blur(10px);

    border:
    1px solid rgba(255,255,255,0.08);

    border-radius:16px;

    opacity:0.95;

    z-index:9999999;

    pointer-events:none;
}


/* =========================================
CLOSE BUTTON
========================================= */

.close-popup{

    position:absolute;

    top:20px;

    right:35px;

    font-size:60px;

    color:#ffffff;

    cursor:pointer;

    z-index:99999999;
}


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

@media(max-width:991px){

    .masonry-gallery{

        flex-wrap:wrap;
    }

    .gallery-column{

        flex:0 0 calc(50% - 12px);
    }

    .gallery-heading h2{

        font-size:42px;
    }

}


@media(max-width:767px){

    .gallery-column{

        flex:100%;
    }

    .gallery-heading h2{

        font-size:32px;
    }

    .gallery-heading p{

        font-size:16px;
    }

    .image-popup::after{

        width:110px;

        height:42px;

        bottom:20px;

        right:20px;
    }

}


/* =========================================
FAQ SECTION
========================================= */

.faq-section{

    padding:40px 0;

    background:
    linear-gradient(
        180deg,
        #071226 0%,
        #081830 100%
    );
}


/* HEADER */

.faq-header{

    text-align:center;

    margin-bottom:30px;
}

.faq-header span{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:10px 24px;

    border-radius:40px;

    background:
    rgba(124,58,237,0.14);

    border:
    1px solid rgba(167,139,250,0.25);

    color:#8b5cf6;

    font-size:13px;

    font-weight:700;

    letter-spacing:4px;

    text-transform:uppercase;

    margin-bottom:24px;
}

.faq-header h2{

    font-size:46px;

    line-height:1.10;

    color:#ffffff;

    font-weight:1200;

    max-width:1200px;

    margin:auto;
}


/* CONTAINER */

.faq-container{

    max-width:1280px;

    margin:auto;

    display:flex;

    flex-direction:column;

    gap:24px;
}


/* ITEM */

.faq-item{

    padding:34px 34px;

    border-radius:26px;

    background:
    rgba(255,255,255,0.04);

    border:
    1px solid rgba(255,255,255,0.08);

    transition:0.4s ease;

    backdrop-filter:blur(14px);
}

.faq-item:hover{

    transform:
    translateY(-5px);

    border-color:
    rgba(124,58,237,0.35);

    background:
    rgba(124,58,237,0.08);

    box-shadow:
    0 20px 50px rgba(124,58,237,0.16);
}


/* QUESTION */

.faq-item h3{

    font-size:26px;

    color:#ffffff;

    font-weight:800;

    margin-bottom:18px;
}


/* ANSWER */

.faq-item p{

    font-size:17px;

    line-height:1.9;

    color:
    rgba(255,255,255,0.78);

    text-align:justify;
}


/* RESPONSIVE */

@media(max-width:768px){

    .faq-section{

        padding:80px 0;
    }

    .faq-header h2{

        font-size:36px;
    }

    .faq-item{

        padding:28px 22px;
    }

    .faq-item h3{

        font-size:22px;
    }

    .faq-item p{

        font-size:16px;
    }
}


.gallery-image-box{

    position:relative;

    overflow:hidden;

    border-radius:24px;
}


