/* --- Request Demo Popup Styles --- */

/* Modal background (Pure screen ko cover karega) */
.modal {
    display: none; 
    position: fixed;
    z-index: 9999; /* Isse popup hamesha top par rahega */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Halka dark background */
    backdrop-filter: blur(8px); /* Background elements ko blur karne ke liye */
    justify-content: center;
    align-items: center;
}

/* Modal Content Box */
.modal-content {
    background-color: #fff;
    padding: 40px;
    width: 90%;
    max-width: 450px;
    border-radius: 24px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    animation: slideDown 0.4s ease-out; /* Sunder animation */
}

@keyframes slideDown {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Header Section */
.header-section {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.header-section img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.header-text h2 {
    margin: 0;
    font-size: 20px;
    color: #1C0D0A;
    line-height: 1.3;
}

.header-text p {
    margin: 5px 0 0 0;
    font-size: 13px;
    color: #666;
}

/* Close Button Styling */
.close-btn {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    transition: 0.2s;
}

.close-btn:hover { color: #FF6210; }

/* Form Fields */
#demoForm input {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border: 1px solid #eee;
    border-radius: 12px;
    background-color: #fcfcfc;
    font-size: 15px;
    box-sizing: border-box;
}

#demoForm input:focus {
    border-color: #FF6210;
    outline: none;
    background-color: #fff;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 15px;
    background-color: #FF6210;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover {
    background-color: #F15808;
    transform: translateY(-2px);
}