/* General Styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}

/* Support Section Styling */
.support-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.pexels.com/photos/8867376/pexels-photo-8867376.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    padding: 20px;
}

.support-content {
    max-width: 800px;
}

.support-content h1 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.support-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.support-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.support-ticket-btn, .whatsapp-btn {
    background-color: #ff3333;
    color: #ffffff;
    border: none;
    border-radius: 25px;
    width: 300px;
    height: 40px;
    font-size: 16px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}
.whatsapp-btn i{
    margin-left: 10px;
}
.support-ticket-btn:hover, .whatsapp-btn:hover {
    background-color: #e60000;
    transform: translateY(-3px);
}

/* Popup Styling */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    overflow-y: scroll;
}

@media (max-width){
    .popup{
        align-items: start;
        padding-top: 50px;
    }
}

.popup-content {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px;
    max-width: 1200px;
    width: 90%;
    position: relative;
    animation: fadeIn 0.3s ease-in-out;
}

.popup-content h2 {
    font-size: 24px;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.popup-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}
#supportForm{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.formsl{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
}
.form-group {
    margin-bottom: 20px;
    width: 45%;
    min-width: 300px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    color: #333;
    box-sizing: border-box;
}

.form-group textarea {
    height: 100px;
    resize: none;
}

.form-buttons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.submit-btn, .cancel-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn {
    background-color: #ff3333;
    color: #ffffff;
}

.submit-btn:hover {
    background-color: #e60000;
}

.cancel-btn {
    background-color: #ddd;
    color: #333;
}

.cancel-btn:hover {
    background-color: #ccc;
}

/* Animation for Popup */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    

    .support-content h1 {
        font-size: 28px;
    }

    .support-content p {
        font-size: 14px;
    }

    .support-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .support-ticket-btn, .whatsapp-btn {
        width: 100%;
        max-width: 300px;
    }

    .popup-content {
        padding: 20px;
    }
}