.cip-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.cip-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* POPUP BOX */
.cip-box {
    position: relative;
    background: transparent; /* remove white bg */
    border-radius: 0; /* ❌ remove rounded */
    overflow: visible;
    max-width: 650px; /* 🔥 increase size */
    width: 95%;
    transform: scale(0.85);
    transition: 0.3s ease;
}

.cip-overlay.active .cip-box {
    transform: scale(1);
}

/* IMAGE */
.cip-box img {
    width: 100%;
    display: block;
    border-radius: 0; /* ❌ remove rounding */
}

/* CLOSE BUTTON FIXED POSITION */
.cip-close {
    position: absolute;
    top: -15px;   /* 🔥 ऊपर shift किया */
    right: -15px; /* 🔥 बाहर shift */
    font-size: 22px;
    color: #fff;
    background: red;
    width: 35px;
    height: 35px;
    text-align: center;
    line-height: 35px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.cip-close:hover {
    background: #000;
}