:root {
    --navbg: #262626;
    --font-base: "Oswald";
    --navColor: #525452;
    --fontcolor: #ad6c60;
    --fontlight: #bbb;
    --backcol: #999;
    --letterfont: #9c685f;
}

.contactpage {
    position: relative;
    background-image: url('/Image/contactpage.jpg');
    /* Replace with the path to your background image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    /* Text color on top of the image */
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1100px) {
    .contactpage {
        height: 30vh;
    }
}

.overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    /* Adjust the last value (0.5) for overlay opacity */
}

.contactpage .container-fluid {
    position: relative;
    /* Ensure z-index works within a relatively positioned container */
    z-index: 1;
    /* Set a higher z-index to ensure content is above the overlay */
}

.contactpage h2 {
    font-size: 3rem;
}

.contactpage p {
    font-size: 1.5rem;
}

.reachsection {
    padding: 3rem 6rem;
}

.reachsection .card {
    padding: 2rem;
    border: none;
    border-radius: 20px 0px 20px 0px;
    box-shadow: 10px 10px 20px #9c685f;
    transition: background-color 0.4s ease-in;
}

.reachsection .card:hover {
    background-color: #865a52;
    color: white;
}

.reachsection .card:hover .ic,
.reachsection .card:hover p {
    color: white !important;
}