﻿.contact-section {
    font-family: 'Segoe UI', sans-serif;
   
    min-height: 100vh;
    padding-top: 200px;
    padding-bottom: 60px;
    background: black;
}

    .contact-section label {
        font-weight: 600;
        margin-bottom: 6px;
    }

    .contact-section .form-control,
    .contact-section .form-select {
        border: 1px solid #ced4da;
        padding: 10px 15px;
        font-size: 1rem;
    }

    .contact-section .btn-warning {
        background-color: #fd7e14;
        color: white;
        border: none;
        transition: background-color 0.3s ease;
        padding: 10px 20px;
    }

        .contact-section .btn-warning:hover {
            background-color: #e65100;
        }

.glow-image {
    width: 300px;
    height: auto;
    animation: glowPulse 6s infinite;
    filter: drop-shadow(0 0 10px green);
    transition: filter 0.5s ease;
}

.logo-text {
    font-family: 'Segoe UI', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: textColorPulse 6s infinite;
}


/* ✅ RESPONSIVENESS BELOW */

/* Tablet and smaller */
@media (max-width: 768px) {
    .contact-section {
        padding-top: 100px;
        padding-bottom: 40px;
    }

    .glow-image {
        width: 220px;
        margin-bottom: 20px;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .contact-section .btn-warning {
        width: 100%;
    }
}

/* Mobile and smaller */
@media (max-width: 480px) {
    .glow-image {
        width: 160px;
    }

    .logo-text {
        font-size: 1rem;
        text-align: center;
    }

    .contact-section h2 {
        font-size: 1.4rem;
        text-align: center;
    }

    .contact-section form {
        text-align: center;
    }

    .contact-section .form-control,
    .contact-section .form-select {
        font-size: 0.95rem;
    }
}
