
body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.8;
    color: #2d2d2d;
    background-color: #fff;
    padding-top: 90px;
}
h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: #0a2540;

}
h2.mb-4{
     text-shadow:1px 2px 5px #c7c7c7
}
/* Navbar */
.navbar {
    background: #ddddddbf;
    margin-top: -10px;
    box-shadow: 0 1px 18px rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease;
}
.navbar-brand {
    font-size: 1.7rem;
    color: #153e71 !important;
    font-weight: 800;
}
.nav-link {
    color: #102a5b !important;
    font-size: 1.07rem;
    font-weight: bold;
    margin-left: 25px;
    transition: color 0.3s ease, transform 0.3s ease;
}
.nav-link:hover {
    color: #ff6f61 !important;
    transform: translateY(-2px);
}
.a2p-disclaimer {
    font-size: 12px;  /* Slightly smaller font size than normal text */
    color: #6c757d !important;  /* Light gray color for subtle text */
    line-height: 1.4;  /* Slightly increased line height for readability */
    margin-top: 5px;  /* Space above the disclaimer */
    display: block;  /* Ensure it's on its own line */
}
.row.div-a2p {
    margin-top: -17px;
    margin-bottom: 17px;
}
.a2p-disclaimer .opt-out {
    font-weight: bold;
    color: #dc3545;  /* Red color for opt-out, to make it stand out */
}


.hero-section {
    background: linear-gradient(rgb(255 255 255 / 86%), rgb(92 153 197 / 61%)), url(https://reinvestorgroup.net/images/real_estate_bg.png) no-repeat center center;
    background-size: cover;
    padding: 10px 0;
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    margin-top: -90px;
}
.hero-section h1 {
    font-size: 50px;
    color: #153e71;
    line-height: 1.2;
    margin-bottom: 10px;
    z-index: 2;
    position: relative;
    margin-top: 120px;
    text-shadow: 1px 2px 5px #b9b9b9;
}
.hero-section p {
    font-size: 23px;
    font-weight: bold;
    z-index: 2;
    position: relative;
    padding: 8px;
    text-shadow: 1px 2px 5px #3d3d3d;
}
.secondary-title-wrap {
    background-color: #0e284978;
    color: #fbfbfb;
    border-radius: 24px;
}
.form-card {
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
form {
    text-align: left;
}
.form-label {
    font-weight: 700;
    color: #0a2540;
    font-size: 1.1rem;
    margin-left: 10px;
}
.form-control {
    border: 2px solid #e3e3e3;
    border-radius: 10px;
    padding: 10px 15px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.form-control:focus {
    border-color: #ff6f61;
    box-shadow: 0 0 12px rgba(255, 111, 97, 0.4);
}
.btn-custom {
    background: #ff6f61;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.25rem;
    padding: 15px;
    border-radius: 10px;
    border: none;
    transition: all 0.3s ease;
}
.btn-custom:hover {
    background: #e65b50;
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 111, 97, 0.5);
}

/* Sections */
.section-title {
    font-size: 3rem;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}
.section-title::after {
    content: '';
    width: 80px;
    height: 5px;
    background: #ff6f61;
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 5px;
}
.feature-card {
    background: #fff;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}
.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}
.feature-card h3 {
    font-size: 1.75rem;
    margin-bottom: 20px;
}
.bg-accent {
    background: #f5f7fa;
}

/* Testimonials */
.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    margin-bottom: 30px;
    position: relative;
}
.testimonial-card p::before {
    content: '“';
    font-size: 2.6rem;
    color: #b7b7b7;
    position: absolute;
    top: 32px;
    left: 1px;
    text-shadow: 1px 1px 1px #b7b7b7;
}
.testimonial-card p::after {
    content: '“';
    font-size: 2.6rem;
    color: #b7b7b7;
    position: absolute;
    bottom: 43px;
    text-shadow: 1px 1px 1px #b7b7b7;
    padding-left: 3px;
}

.testimonial-card p {
    font-style: italic;
    color: #7d7c7c;
    font-size: 1.1rem;
    margin-top: 20px;
    font-weight: bold;
}
.testimonial-card h4 {
    font-size: 1.2rem;
    color: #e75345;
    margin-top: 15px;
    font-weight: 600;
}

/* FAQ */
.faq-item {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.faq-item h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

/* Footer */
footer {
    background: #0a2540;
    color: #fff;
    padding: 60px 0;
    font-size: 1.1rem;
}
footer a {
    color: #ff6f61;
    text-decoration: none;
    transition: color 0.3s;
}
footer a:hover {
    color: #fff;
}
.footer-logo {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
}
.mb-4 {
    margin-bottom: 1rem!important;
}


.lead-conf-message {
    background: #324757;
    color: #fafafa;
    padding: 10px;
    border-radius: 7px;
    opacity: 0.70;
}
label.form-label.second-label-states-msg {
    font-size: 12px;
    margin-top: 1px;
    font-weight: normal;
}





input[type="checkbox"]:disabled {
    opacity: 1; /* Keeps the normal opacity */
    cursor: not-allowed; /* Shows a "not allowed" cursor */
    background-color: initial; /* Keeps the normal background color */
    color: initial; /* Keeps the normal text color */
    border: 1px solid #ccc; /* Customize the border color to your preference */
}
.title-wrap {
    background-color: #0a2540;
    border-radius: 10px;
    margin-bottom: 50px;
    margin-top: -20px;
}

h1.head-title {
    text-align: center;
    padding: 80px;
    color: #f5f5f5;
}

#propertyTypes{
    min-height: 154px;
}


.manual-entry {
    border-color: #ffcc00;
    background-color: #fffef2;
}
.manual-entry::placeholder {
    color: #e68a00;
    font-style: italic;
}

h5#submissionModalLabel {
    font-size: 23px;
    font-weight: bold;
}
.modal-content {
    box-shadow: 2px 2px 7px 8px #dbdbdb;
}
 select.form-control { -webkit-appearance: menulist; appearance: menulist; } /* Ensures dropdown arrow */



