/* DPS One Popup Styles */
.dps-popup-overlay {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    animation: fadeIn 0.3s ease-in-out;
}

.dps-popup-content {
    position: relative;
    background-color: #fff;
    margin: 5% auto;
    padding: 0;
    border-radius: 10px;
    width: 80%;
    max-width: 800px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease-in-out;
}

.dps-popup-close {
    position: absolute;
    right: 15px;
    top: 15px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    background: #fff;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.dps-popup-close:hover,
.dps-popup-close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.dps-popup-body {
    display: flex;
    min-height: 400px;
}

.dps-popup-left {
    flex: 2;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px 0 0 10px;
}

.dps-popup-right {
    flex: 1;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 0 10px 10px 0;
}

.dps-popup-left h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 600;
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
}

.completed-work-list {
    margin-top: 20px;
}

.work-item h4 {
    color: #34495e;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 600;
}

.work-item p {
    color: #7f8c8d;
    margin-bottom: 15px;
    line-height: 1.6;
}

.work-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.work-item li {
    color: #27ae60;
    margin-bottom: 8px;
    padding-left: 5px;
    font-size: 14px;
    line-height: 1.5;
}

.dps-popup-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.dps-popup-image:hover {
    transform: scale(1.05);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .dps-popup-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .dps-popup-body {
        flex-direction: column;
        min-height: auto;
    }
    
    .dps-popup-left {
        border-radius: 10px 10px 0 0;
        padding: 20px;
    }
    
    .dps-popup-right {
        border-radius: 0 0 10px 10px;
        padding: 15px;
    }
    
    .dps-popup-left h3 {
        font-size: 20px;
    }
    
    .work-item h4 {
        font-size: 16px;
    }
}