.activity-section {
    background: linear-gradient(135deg, #fff8e1 0%, #ffe0b2 100%);
    min-height: 80vh;
    padding: 4rem 0;
}
.activity-container {
    background: #ffffff00;
    border-radius: 20px;
    /* box-shadow: 0 10px 40px rgba(0,0,0,0.08); */
    padding: 2.5rem 2rem;
    margin-bottom: 2rem;
    /* Remove max-width and margin auto for full width */
    /* width: 100%;
    max-width: none; */
    margin-left: 0;
    margin-right: 0;
}
/* Remove .container from your HTML or replace with a div if you want spacing */
.activity-tabs {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
}
.activity-tab {
    background: linear-gradient(135deg, #fd8535 0%, #ffb300 100%);
    color: #fff;
    border: none;
    border-radius: 25px;
    padding: 0.75rem 2.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(253,133,53,0.08);
}
.activity-tab.active, .activity-tab:hover {
    background: #025509;
    color: #ffffff;
    font-weight: bolder;
    border: 2px solid #ffffff;
}

.activity-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: flex-start;
    padding-left: 2vw;
    padding-right: 2vw;
}
.activity-image-card, .activity-video-card {
    background: linear-gradient(135deg, #fd8535 0%, #ffb300 100%);
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(253,133,53,0.08);
    overflow: hidden;
    width: 360px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.2s;
}
.activity-image-card:hover, .activity-video-card:hover {
    box-shadow: 0 8px 32px rgba(253,133,53,0.18);
}
.activity-image-card .watermarked-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 2px solid #fff1e8;
    user-select: none;
    pointer-events: none; /* disables mouse interactions like click, drag */
}
.activity-video-card iframe {
    width: 360px;
    aspect-ratio: 16 / 9;
    border: none;
    border-radius: 20px 20px 0 0;
    object-fit: cover;
}

.activity-card-title {
    padding: 0.75rem 1rem;
    font-weight: bold;
    color: #ffffff;
    text-align: center;
    font-size: 1rem;
}
.image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
}

.watermarked-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.watermark-logo-corner {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    object-fit: contain;
    background: transparent; /* no background */
    padding: 0;               /* remove inner spacing */
    border-radius: 4px;       /* slight softness */
    box-shadow: none;         /* remove shadow for minimalism */
    opacity: 1;             /* slight transparency for elegance */
    transition: opacity 0.3s ease;
    user-select: none;
    pointer-events: none; /* disables mouse interactions like click, drag */
}

.watermark-logo-corner:hover {
    opacity: 1;
}


@media (max-width: 767px) {
    .activity-gallery {
        flex-direction: column;
        align-items: center;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    .activity-image-card, .activity-video-card {
        width: 100%;
    }
}