/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding-top: 30px; /* Ensure navbar doesn't overlap content */
    background-color: #f4f7fa; /* Light background for better contrast */
}

/* Contact Section Styles */
#contact {
    background-color: #ffffff;
    padding: 60px 30px; /* Increased padding for a spacious layout */
    max-width: 800px; /* Limit the width for a more contained design */
    margin: auto;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border-radius: 12px; /* Slightly more rounded corners */
    position: relative; /* For pseudo-element positioning */
    overflow: hidden; /* To contain pseudo-elements */
}
.nav-link:hover, .nav-link.active {
    color: #f0a500;
}

/* Decorative Elements */
#contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #007bff 20%, rgba(0, 123, 255, 0.1) 100%);
    z-index: 0;
    border-radius: 12px;
}

#contact h2 {
    font-size: 2.5rem; /* Larger heading */
    font-weight: bold;
    text-align: center;
    color: #007bff;
    margin-bottom: 25px;
    position: relative; /* For positioning relative to parent */
    z-index: 1; /* Above the pseudo-element */
}

#contact p {
    font-size: 1.1rem; /* Slightly larger paragraph */
    line-height: 1.8; /* Increased line height for readability */
    color: #343a40;
    text-align: center;
    margin-bottom: 40px; /* Space between paragraph and form */
}

/* Contact Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    max-width: 600px; /* Keep the form width */
    margin: auto; /* Center the form */
    z-index: 1; /* Above the pseudo-element */
}

.contact-form .form-group {
    margin-bottom: 20px; /* Space between form fields */
}

.contact-form label {
    font-weight: bold;
    margin-bottom: 5px; /* Space between label and input */
}

.contact-form input,
.contact-form textarea {
    padding: 12px; /* Increased padding for a more comfortable feel */
    border: 2px solid #ced4da; /* Thicker border for better visibility */
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease; /* Smooth transition for focus */
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #007bff; /* Change border color on focus */
    outline: none; /* Remove default outline */
}

/* Submit Button Styles */
.contact-form button {
    background-color: #f0a500;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease, transform 0.3s ease; /* Added transform transition */
    z-index: 1; /* Above the pseudo-element */
}

.contact-form button:hover {
    background-color: #d48e00; /* Darker shade on hover */
    transform: translateY(-2px); /* Slight lift effect */
}

/* Footer Styles */
footer {
    background-color: #343a40;
    color: white;
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    #contact {
        padding: 40px 20px; /* Adjust padding for smaller screens */
    }

    #contact h2 {
        font-size: 2rem; /* Reduce heading size */
    }

    #contact p {
        font-size: 0.95rem; /* Reduce paragraph size */
    }

    .contact-form button {
        padding: 10px; /* Adjust button padding */
    }
}
/* styles.css */

body {
    font-family: Arial, sans-serif;
}

/* Navbar Styles */
.navbar {
    background-color: #f8f9fa;
}

.logo {
    width: 60px;
    height: 60px;
    margin-right: 10px;
}

.btn-primary {
    background-color: #f0a500;
    border: none;
    transition: background-color 0.3s ease-in-out;
}

.btn-primary:hover {
    background-color: #cc8500;
}

.logo-text-container {
    display: flex;
    flex-direction: column;
}

.logo-text-title {
    font-size: 1.5rem;
    margin: 0;
}

.logo-subtext {
    font-size: 0.9rem;
    margin: 0;
}

/* Modal Styles */
.modal-header {
    background-color: #007bff;
    color: white;
}

.modal-title {
    margin: 0;
}

/* Card Styles */
.card {
    border: none;
}

.card-title {
    font-size: 1.25rem;
}

.card-text {
    font-size: 0.9rem;
}

/* Contact Section */
#contact {
    background-color: #343a40;
}

footer {
    background-color: #343a40;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .logo {
        width: 40px;
        height: 40px;
    }
}
.container h2{
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    color: #007bff;
    margin-bottom: 20px;
}
.contact-info h4{
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    color: #007bff;
    margin-bottom: 20px;
}
/* General Styles */
html, body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
    font-family: 'Arial', sans-serif;
    background-color: #f4f7fa; /* Light background for better contrast */
}

/* Footer Styles */
footer {
    background-color: #343a40;
    color: white;
    padding: 20px 0; /* Ensure consistent padding */
    text-align: center;
    font-size: 0.9rem;
    margin-top: auto; /* Pushes footer to the bottom */
}
