/* Welcome Css */
        body {
            font-family: 'Poppins', sans-serif;
        }
        
        /* Custom scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }
        
        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }
        
        ::-webkit-scrollbar-thumb {
            background: #3b82f6;
            border-radius: 5px;
        }
        
        ::-webkit-scrollbar-thumb:hover {
            background: #2563eb;
        }

        /* Footer Css */
            @keyframes fade-in-up {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Galleri css */
    
.gallery-section{ padding:70px 0; background:#f8fafc; }

.section-container{
    max-width:1200px;
    margin:auto;
    padding:0 20px;
}

.section-header{
    text-align:center;
    margin-bottom:40px;
}

.section-header h2{
    font-size:32px;
    margin-bottom:10px;
}

/* CONTROLS */

.gallery-controls{
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:15px;
    margin-bottom:30px;
}

.gallery-tabs button{
    padding:10px 18px;
    border:none;
    background:#e2e8f0;
    border-radius:8px;
    cursor:pointer;
    transition:.25s;
}

.gallery-tabs button:hover{
    background:#cbd5e1;
}

.gallery-tabs .active{
    background:#2563eb;
    color:white;
}

/* SEARCH */

.gallery-search{
    position:relative;
}

.gallery-search i{
    position:absolute;
    left:12px;
    top:50%;
    transform:translateY(-50%);
    color:#666;
}

.gallery-search input{
    padding:10px 10px 10px 35px;
    border-radius:8px;
    border:1px solid #ccc;
    width:220px;
}

/* GRID */

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(260px,1fr));
    gap:20px;
}

/* CARD */

.gallery-card{
    position:relative;
    overflow:hidden;
    border-radius:14px;
    height:260px;
    background:black;
    box-shadow:0 6px 20px rgba(0,0,0,.15);
}

.gallery-card img,
.gallery-card video{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.4s;
}

.gallery-card:hover img{
    transform:scale(1.08);
}

/* PLAY */

.play-overlay{
    position:absolute;
    inset:0;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:50px;
    color:white;
    background:rgba(0,0,0,.35);
    cursor:pointer;
}

/* ACTION BUTTONS */

.action-buttons{
    position:absolute;
    top:10px;
    right:10px;
    display:flex;
    gap:8px;
}

.action-buttons button{
    background:rgba(0,0,0,.7);
    color:white;
    border:none;
    width:36px;
    height:36px;
    border-radius:50%;
    cursor:pointer;
    transition:.25s;
}

.action-buttons button:hover{
    background:#2563eb;
}

/* CAPTION */

.caption{
    position:absolute;
    bottom:0;
    left:0;
    right:0;
    background:rgba(0,0,0,.7);
    color:white;
    padding:10px;
    font-size:14px;
}

/* MODAL */

.gallery-modal{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.92);
    z-index:999999;
    display:flex;
    align-items:center;
    justify-content:center;
}

.modal-content{
    max-width:90vw;
    max-height:90vh;
    text-align:center;
    position:relative;
}

.modal-content img,
.modal-content video{
    max-width:100%;
    max-height:80vh;
    border-radius:12px;
}

.modal-close{
    position:absolute;
    top:-45px;
    right:0;
    font-size:28px;
    color:white;
    cursor:pointer;
}

.modal-title{
    color:white;
    margin-top:12px;
    font-size:18px;
}

.modal-download{
    margin-top:12px;
    padding:10px 22px;
    background:#2563eb;
    color:white;
    border:none;
    border-radius:8px;
    cursor:pointer;
}

.empty{ text-align:center; }