/* Contact Section */
.fullwidth-block.contact_section {
    background: url('../images/contactus.jpg') no-repeat center center/cover !important;
    padding: 100px 0;
    color: white;
    text-align: center;
    position: relative;
}

/* Center-align the title and subtitle */
.contact-section {
    text-align: center;
}

/* Adjust title styling */
.contact-section h2 {
    font-size: 28px;
    font-weight: bold;
    color: #043375;
    margin-bottom: 10px;
}

/* Adjust subtitle styling */
.contact-section p {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 20px;
}

/* Dark overlay for better readability */
.contact-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.contact-section .container {
    position: relative;
    z-index: 2;
}

/* Contact Form */
.contact_section .form-control, 
.contact_section textarea.form-control {
    background-color: rgba(255, 255, 255, 0.5) !important; /* Light whitish background */
    border: 1px solid #ccc; /* Light gray border */
    color: #000; /* Black text */
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 5px;
}

/* Placeholder color for better visibility */
.contact_section .form-control::placeholder,
.contact_section textarea.form-control::placeholder{
    color: rgba(0, 0, 0, 0.6);  /* Dark gray placeholder */
}

/* Focus effect to enhance visibility */
.contact_section .form-control:focus,
.contact_section textarea.form-control:focus{
    background-color: #ffffff !important; /* Fully white on focus */
    border-color: #2f9cff; /* Blue border when focused */
    outline: none;
    box-shadow: 0 0 5px rgba(47, 156, 255, 0.5); /* Soft blue glow */
}

/* Submit Button */
.btn-primary {
    background: #2f9cff;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    transition: 0.3s;
    color: white;
}

.btn-primary:hover {
    background: #d5071e;
}

/* Address Section */
.address-section {
    background: #f8f9fa;
    padding: 60px 0;
    text-align: center;
}

.address-box {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.address-box h3 {
    color: #043375;
    font-weight: bold;
    margin-bottom: 15px;
}

.address-box p {
    color: #333;
    font-size: 16px;
}