.new-branch-section {
    background: url('../images/newbranch.png') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 100px 20px;
    position: relative;
}

.new-branch-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(0, 0, 0, 0.6); */
    /* Dark overlay */
    color: black;
}

.tamma {
    backdrop-filter: blur(30px);
    box-shadow: 0px 0px 2px;
    border-radius: 3px;
}

.content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 72vh;
    /* max-width: 600px; */
    margin: auto;
    padding-top: 73px;
}

.content h2 {
    font-size: 2.5rem;
    font-weight: bold;
}

.content p {
    font-size: 1.2rem;
    margin: 10px 0;
}

.btn {
    padding: 10px 20px;
    font-size: 1.1rem;
    border-radius: 5px;
}

.content {
    color: black;
}

@media (max-width: 768px) {
    .new-branch-section {
        padding: 60px 15px;
    }
    .content h2 {
        font-size: 2rem;
    }
    .content p {
        font-size: 1rem;
    }
    .new-branch-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        display: none;
        color: black;
        /* Dark overlay */
    }
    .content p {
        font-size: 1.2rem;
        margin: 10px 0;
    }
}