
.fade-overlay {
    position: relative;
    width: 100%;
    height: auto;
    opacity: 0.6; /* Fades the image */
}

.overlay-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background: rgba(255, 255, 255, 0.8); /* Background for text */
    padding: 15px;
    border-radius: 10px;
    
}

.subsect2getstbtn {
    width: 80%;
    background-color: #2C5491;
    color: white;
    border: none;
    font-size: 18px;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 15px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .overlay-content {
        display: block;
    }
}