﻿
h1 {
    color: #FFFFFF;
}

.contact-heading-section {
    background-color: rgb(4 21 26 / 20%);
    border-radius: 12px;
    padding: 24px 48px;
}

.contact-section {
    background: #f8f9fa;
}

.contact-hero-section {
    background-image: url('/Images/page-header-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}
    /* Optional: minimum height */
    .contact-hero-section .row {
        min-height: 60vh;
    }

    /* Optional: dark overlay for readability */
    .contact-hero-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.45);
    }

    .contact-hero-section > .container-fluid {
        position: relative;
        z-index: 1;
    }

.g-recaptcha {
    transform: scale(0.9);
    transform-origin: 0 0;
}

@media (max-width: 576px) {
    .g-recaptcha {
        transform: scale(0.85);
    }
}