.welcome-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}

.welcome-popup-content {
    position: relative;
    background-color: #fff;
    width: 90%;
    max-width: 600px;
    margin: 50px auto;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateY(-100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.welcome-popup-header {
    text-align: center;
    margin-bottom: 25px;
}

.welcome-popup-header h2 {
    color: #2c3e50;
    font-size: 28px;
    margin-bottom: 10px;
}

.welcome-popup-body {
    margin-bottom: 25px;
}

.welcome-popup-body p {
    color: #34495e;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.welcome-services {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.welcome-services h3 {
    color: #2c3e50;
    font-size: 20px;
    margin-bottom: 15px;
}

.service-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    padding: 10px;
    background-color: white;
    border-radius: 8px;
    transition: transform 0.2s;
}

.service-item:hover {
    transform: translateX(5px);
}

.service-item i {
    margin-right: 10px;
    color: #3498db;
}

.welcome-cta {
    text-align: center;
    margin: 25px 0;
    padding: 20px;
    background-color: #e8f4fc;
    border-radius: 10px;
}

.welcome-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.welcome-btn {
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.welcome-btn-primary {
    background-color: #3498db;
    color: white;
}

.welcome-btn-primary:hover {
    background-color: #2980b9;
}

.welcome-btn-secondary {
    background-color: #95a5a6;
    color: white;
}

.welcome-btn-secondary:hover {
    background-color: #7f8c8d;
}

.close-popup {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    color: #95a5a6;
    cursor: pointer;
    transition: color 0.3s;
}

.close-popup:hover {
    color: #7f8c8d;
}
