/* SECTION */
.video-section {
    padding: 60px 5%;
}
.portfolio-hero {
    text-align: center;
    padding: 100px 140px 60px;
    background-color: #f3f5e6;
}
/* REEL ROW */
.video-row {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

/* REEL CARD */
.video-box {
    position: relative;
    width: 240px;
    aspect-ratio: 9 / 16;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    background: #111;
    transition: 0.3s ease;
}

.video-box:hover {
    transform: scale(1.05);
}

.video-box video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Play overlay */
.video-box::after {
    content: "▶";
    position: absolute;
    font-size: 45px;
    color: rgba(255,255,255,0.9);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

/* ===== MODAL ===== */
.video-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.video-modal.active {
    display: flex;
}

/* Reel popup */
.video-modal video {
    max-height: 90vh;
    width: auto;
    max-width: 420px;
    border-radius: 16px;
}

/* MOBILE SAFE CLOSE BUTTON */
.close-btn {
    position: fixed; /* changed from absolute */
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    font-size: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.close-btn:hover {
    background: rgba(255,255,255,0.2);
}

/* Responsive */
@media(max-width:768px){
    .video-box{
        width: 45%;
    }
}

@media(max-width:480px){
    .video-box{
        width: 85%;
    }

    .close-btn {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }
}
/* ===== TABS SECTION ===== */
.portfolio-tabs {
    padding: 30px 0 10px;
    text-align: center;
}

.tabs-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.tab-btn {
    padding: 10px 22px;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.2);
    background: #047dbcf2;
    color: #fff;
    cursor: pointer;
    transition: 0.3s ease;
    font-size: 14px;
}

.tab-btn:hover {
    background: rgba(255,255,255,0.1);
}

.tab-btn.active {
    background: #92928dd4;
    color: #000;
    border-color: #fff;
}
@media (max-width: 768px) {

    .tabs-wrapper {
        gap: 10px;
        padding: 0 15px;
    }

    .tab-btn {
        font-size: 13px;
        padding: 8px 16px;
    }

    .video-row {
        justify-content: center;
    }

    .video-box {
        width: 45%;
    }
}

@media (max-width: 480px) {

    .video-box {
        width: 85%;
    }

    .tab-btn {
        font-size: 12px;
        padding:

