﻿.contact-section {
    max-width: 700px;
    margin: 50px auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    padding: 40px 35px;
    transition: all 0.3s ease;
}

    .contact-section:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
    }

    .contact-section h2 {
        text-align: center;
        font-weight: 700;
        font-size: 26px;
        color: #333;
        margin-bottom: 5px;
    }

.contact-subtitle {
    text-align: center;
    color: #777;
    font-size: 14px;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

    .form-group label {
        font-weight: 600;
        color: #444;
        display: block;
        margin-bottom: 8px;
        font-size: 15px;
    }

    .form-group i {
        color: #FF6F61;
        margin-right: 6px;
    }

.form-control, .form-control-file {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

    .form-control:focus {
        border-color: #FF6F61;
        box-shadow: 0 0 5px rgba(255, 111, 97, 0.3);
        outline: none;
    }

.btn-submit {
    background-color: #FF6F61;
    border: none;
    color: white;
    font-weight: 600;
    padding: 10px;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .btn-submit:hover {
        background-color: #e85b50;
    }

.contact-info {
    text-align: center;
    margin-top: 25px;
    font-size: 15px;
    color: #666;
}

    .contact-info i {
        color: #FF6F61;
        margin-right: 6px;
    }

.text-muted {
    font-size: 13px;
}
.contact-email {
    color: #FF6F61;
    text-decoration: none;
    font-weight: 600;
}

    .contact-email:hover {
        text-decoration: underline;
        color: #e65b50;
    }
/* Popup Notification */
.popup-message {
    position: fixed;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    font-weight: 600;
    font-size: 15px;
    color: #fff;
    transition: all 0.4s ease;
    z-index: 9999;
    opacity: 0;
}

    .popup-message.show {
        top: 20px;
        opacity: 1;
    }


