/* Contact Page Styles */

/* Body Styling */
body {
    font-family: 'Poppins', sans-serif;
    color: #333;
}

/* Contact Banner */
.contact-banner img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

/* Contact Section */
.contact-section {
    padding: 50px 0;
    background-color: #fff;
    margin-top: -150px;
}

.card {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Form Styles */
.contact-form .form-control {
    border-radius: 6px;
    padding: 10px;
    border: 1px solid #ccc;
    margin-bottom: 15px;
}

.contact-form textarea {
    resize: none;
}

.contact-form button {
    background-color: #007bff;
    color: white;
    padding: 12px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
}

.contact-form button:hover {
    background-color: #0056b3;
}

/* Footer Section */
.footer-section {
    background-color: #87181C;
    color: white;
    padding: 40px 0;
}

.footer-logo {
    width: 200px;
}

.footer-heading {
    font-size: 20px;
    font-weight: 600;
}

.footer-links {
    list-style-type: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a {
    color: #dbb9ba;
    text-decoration: none;
}

.footer-links li a:hover {
    text-decoration: underline;
}

.social-links img {
    width: 32px;
    margin-right: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-section {
        padding: 30px 15px;
    }

    .card {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .contact-banner img {
        height: 300px;
    }

    .navbar-nav {
        text-align: center;
    }

    .footer-links {
        text-align: center;
    }
}


/* General Styles */
.contact-section {
    background-color: #f8f9fa; /* Light background */
    font-family: 'Poppins', sans-serif;
    padding: 60px 0;
}

.card {
    border-radius: 10px;
    border: none;
}

h3 {
    font-weight: 600;
    font-size: 36px;
    color: #333; /* Default heading color */
}

p {
    font-size: 16px;
    line-height: 1.8;
    color: #000000;
}

.contact-link {
    text-decoration: none;
    font-size: 18px;
    color: #800000; /* Dark red */
}

.contact-link:hover {
    text-decoration: underline;
}

/* Form Input Styling */
.form-control {
    border-radius: 5px;
    border: 1px solid #ccc;
    padding: 12px;
    font-size: 16px;
}

.form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

textarea.form-control {
    resize: none;
}

/* Button Styling */
.btn-primary {
    background-color: #007bff;
    border: none;
    padding: 12px 20px;
    font-size: 18px;
    border-radius: 5px;
}

.btn-primary:hover {
    background-color: #0056b3;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-section .row {
        flex-direction: column;
    }
    
    .col-md-6 {
        margin-bottom: 20px;
    }

    h3 {
        font-size: 28px; /* Smaller headings on mobile */
    }

    p {
        font-size: 14px;
    }

    .form-control {
        font-size: 14px;
    }
}
