*{
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
     font-family: "Open Sans", sans-serif !important;
    color: #fff;
}
section{
    position: relative;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4); /* semi-transparent black */
    z-index: 1; /* ensure it's above other content */
    display: none; /* hide it by default */
}
.overlay.active {
    display: block; /* show it when active */
}
.bg-1{
    display: block;
    background: rgba(0, 0, 0, 0.6);
    background-image: url(../images/bg-1.jpg);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
    border-style: none;
    border-radius: 0px;
    position: relative;
    padding: 60px 10px;
    min-height: 90vh;
}
.bg-2{
    display: block;
    background: rgba(182,0,1,0.53);
    border-style: none;
    border-radius: 5px;
    z-index: 3;
}
.bg-3{
    display: block;
    background: #b60001;
    padding: 10px 0;
}
.bg-5{
    display: block;
    background: rgba(182,0,1,0.51);
    border-style: none;
    border-radius: 11px;
    z-index: 3;
}
.h1{
    font-size: 26px; line-height: 32px; font-weight: bold;
}
.h2{
    font-size: 18px;
    line-height: 18px; 
}
.p-text{
    font-size: 18px;
}
.m-hide{
    display: none;
}
.d-hide{
    display: block;
}
.text-white {
    color: white;
}
.text-BED100 {
    color: #BED100;
}
.fw-600 {
    font-weight: 600;
}
.form-control {
    background-color: rgba(255, 255, 255, 0.5); /* more subtle, blends better with dark backgrounds */
    color: #fff; /* keep white text for dark background */
    box-shadow: inset 0px 2px 4px rgba(0, 0, 0, 0.4); /* deeper inset shadow for contrast */
    -webkit-box-shadow: inset 0px 2px 4px rgba(0, 0, 0, 0.4);
    -moz-box-shadow: inset 0px 2px 4px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.3); /* subtle border for definition */
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 14px;
    height: auto;
    transition: background 0.3s, box-shadow 0.3s;
}

.form-control:focus {
    background-color: rgba(255, 255, 255, 0.25);
    outline: none;
    box-shadow: inset 0px 2px 5px rgba(0, 0, 0, 0.5), 0 0 5px rgba(255, 255, 255, 0.3);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.8);
    opacity: 1; /* For Firefox */
}
.font-size-14{
    font-size: 14px;    
}
.button:hover {
    background: linear-gradient(45deg, #ffffff, #ffffff); /* Gradient effect with deeper reds */
    box-shadow: inset 0px 1px 0px rgba(255, 255, 255, 0.2), inset 0 -1px 2px rgba(0, 0, 0, 0.2); /* Soft highlights */
    color: #000;
}

.button {
    background: linear-gradient(45deg, #ffffff, #ffffff); /* Reverse gradient on hover */
    box-shadow: inset 0px 1px 0px rgba(255, 255, 255, 0.3), inset 0 -1px 2px rgba(0, 0, 0, 0.3);

    border-radius: 50px; /* Slightly rounded corners */
    z-index: 8;
    width: 100%;
    cursor: pointer;
    transition: background 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    
  
    text-shadow: none;
    color: #000;
    border-width: 0;
    border-color: transparent;
    font-size: 21px;
    line-height: 21px;
    font-weight: 400;
    font-style: normal;
    text-align: center;
    background-repeat: no-repeat;
    padding:15px 10px;
    font-weight: 600;
}
.img-f{
    margin: auto;
    max-width: 100%;
}
.pt-103{
    padding-top: 10px;
}
@media (min-width: 576px) {
    .pt-103{
        padding-top: 136.06px;
    }
    .h1{
        font-size: 42px;
        line-height: 46px; 
        font-weight: bold;
    }
    .h2{
        font-size: 20px;
        line-height: 26px; 
    }
    .m-hide{
        display: block;
    }
    .d-hide{
        display: none;
    }
}