/* पॉपअप स्टाइल्स */
.fsp-popup {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    animation: fadeIn 0.5s;
}

.fsp-popup-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 30px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    text-align: center;
    animation: slideIn 0.5s;
}

.fsp-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
}

.fsp-close:hover,
.fsp-close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.fsp-popup-content h2 {
    color: #e74c3c;
    margin-bottom: 15px;
    font-size: 24px;
}

.fsp-popup-content p {
    margin-bottom: 20px;
    font-size: 16px;
}

.fsp-popup-content input[type="email"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box;
}

.fsp-popup-content button {
    background-color: #e74c3c;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    width: 100%;
}

.fsp-popup-content button:hover {
    background-color: #c0392b;
}

/* एनिमेशन */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* रिस्पॉन्सिव डिजाइन */
@media screen and (max-width: 600px) {
    .fsp-popup-content {
        width: 90%;
        margin: 20% auto;
        padding: 20px;
    }
}