:root {
    --navbg: #262626;
    --font-base: "Oswald";
    --navColor: #525452;
    --fontcolor:rgba(224, 195, 252, 1);
    --fontlight: #bbb;
    --backcol: #999;
    --letterfont: rgba(224, 195, 252, 1);
    --gradient:linear-gradient(45deg, rgba(142, 197, 252, 1) 0%, rgba(224, 195, 252, 1) 100%);
}
.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 rgba(224, 195, 252, 1);
}
.reachsection .card:hover{
    background-color: rgba(224, 195, 252, 1);
    color: white;
}
