/* =========================================
MASONRY GALLERY
========================================= */

.masonry-gallery-section{

    position:relative;

    overflow:hidden;

    padding:50px 0;

    background:transparent;

    border-top:
    1px solid rgba(255,255,255,0.03);
}


/* PREMIUM OVERLAY */

.masonry-gallery-section::before{

    content:"";

    position:absolute;

    inset:0;

    background:
    radial-gradient(
    circle at top left,
    rgba(124,58,237,0.08),
    transparent 35%),

    radial-gradient(
    circle at bottom right,
    rgba(59,130,246,0.05),
    transparent 35%);

    pointer-events:none;
}


/* =========================================
HEADING
========================================= */

.gallery-heading{

    text-align:center;

    margin-bottom:40px;
}

.gallery-heading span{

    display:inline-flex;

    padding:14px 32px;

    border-radius:50px;

    background:
    rgba(124,58,237,0.14);

    border:
    1px solid rgba(255,255,255,0.08);

    color:#c4b5fd;

    font-size:14px;

    font-weight:1150;

    letter-spacing:3px;

    text-transform:uppercase;

    margin-bottom:25px;
}

.gallery-heading h2{

    color:#ffffff;

    font-size:55px;

    line-height:1.1;

    font-weight:1150;

    margin-bottom:24px;
}

.gallery-heading p{

    max-width:1150px;

    margin:auto;

    color:
    rgba(255,255,255,0.82);

    font-size:20px;

    line-height:1.6;
}


/* =========================================
MASONRY GRID
========================================= */

.masonry-gallery{

    display:flex;

    gap:25px;
}

.gallery-column{

    flex:1;

    display:flex;

    flex-direction:column;

    gap:25px;
}


/* =========================================
IMAGE BOX
========================================= */

.gallery-image-box{

    position:relative;

    overflow:hidden;

    border-radius:24px;
}


/* =========================================
WATERMARK ON GALLERY IMAGES
========================================= */

.gallery-image-box::after{

    content:"";

    position:absolute;

    bottom:18px;

    right:18px;

    width:115px;

    height:44px;

    background:
    rgba(0,0,0,0.45)
    url("../assests/benevo-watermark.png")
    no-repeat center;

    background-size:78%;

    border:
    1px solid rgba(255,255,255,0.10);

    backdrop-filter:blur(8px);

    border-radius:14px;

    opacity:0.95;

    z-index:10;

    pointer-events:none;
}


/* =========================================
IMAGES
========================================= */

.gallery-image-box img{

    width:100%;

    height:250px !important;

    object-fit:cover;

    display:block;

    border-radius:24px;

    cursor:pointer;

    transition:0.4s ease;

    border:
    1px solid rgba(255,255,255,0.06);

    box-shadow:
    0 18px 40px rgba(0,0,0,0.22);

    opacity:0.98;

    filter:
    contrast(1.01)
    saturate(1.02);
}

.gallery-image-box img:hover{

    transform:
    translateY(-8px)
    scale(1.02);

    box-shadow:
    0 25px 55px rgba(124,58,237,0.28);
}


/* =========================================
RESPONSIVE
========================================= */

@media(max-width:991px){

    .masonry-gallery{

        flex-wrap:wrap;
    }

    .gallery-column{

        flex:0 0 calc(50% - 13px);
    }

    .gallery-heading h2{

        font-size:44px;
    }
}

@media(max-width:767px){

    .gallery-column{

        flex:100%;
    }

    .gallery-heading h2{

        font-size:34px;
    }

    .gallery-heading p{

        font-size:16px;
    }

    .gallery-image-box::after{

        width:70px;

        height:26px;

        bottom:14px;

        right:14px;
    }
}


/* =========================================
IMAGE POPUP
========================================= */

.image-popup{

    position:fixed;

    top:0;
    left:0;

    width:100%;
    height:100%;

    background:rgba(0,0,0,0.92);

    display:none;

    align-items:center;
    justify-content:center;

    z-index:999999;

    overflow:hidden;
}

.image-popup.show-popup{

    display:flex;
}





/* =========================================
POPUP IMAGE
========================================= */

.image-popup img{

    max-width:90%;

    max-height:90%;

    border-radius:24px;

    position:relative;

    z-index:20;
}


/* =========================================
CLOSE BUTTON
========================================= */

.close-popup{

    position:absolute;

    top:30px;

    right:40px;

    font-size:55px;

    color:#ffffff;

    cursor:pointer;

    z-index:50;
}


/* =========================================
FAQ SECTION
========================================= */

.faq-section{

    padding:40px 0 50px;

    background:transparent;
}


/* 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.05);

    border:
    1px solid rgba(255,255,255,0.08);

    transition:0.4s ease;

    backdrop-filter:blur(18px);
}

.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;
    }
}