* {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.containerss {
    width: 100%;
    height: 100%;
    display: flex;
    margin-top: 20px;
}

.projects2 {
    width: 48%;
    height: 100%;
    margin-left: 1%;
    overflow: hidden;
    position: relative;
    border: 2px solid white;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.projects2:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.projects2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
    display: block;
    pointer-events: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    -webkit-touch-callout: none;
}

.protection-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 10;
    border-radius: 6px;
}

.watermark {
    position: absolute;
    bottom: 25px;
    right: 25px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
    background: rgba(0, 0, 0, 0.6);
    padding: 3px 10px;
    border-radius: 4px;
    z-index: 2;
    pointer-events: none;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .containerss {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        margin-top: 20px;
    }

    .projects2 {
        width: 100%;
        height: 250px; /* Fixed height for mobile */
        margin-left: 0%;
        margin-bottom: 15px;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .projects2:hover {
        transform: scale(1.03);
    }

    .projects2 img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        padding: 0;
        border-radius: 6px;
    }

    .watermark {
        bottom: 15px;
        right: 15px;
        font-size: 10px;
        padding: 2px 8px;
    }
}

body {
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    font-family: Arial, sans-serif;
    overflow-x: hidden;
}