.why-us-section {
    position: relative;
    background-image: url("/images/bg/tree-mountain.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.why-us-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: -1;
}

.testimonial-section {
    position: relative;
    background-image: url("/images/bg/beautiful-landscape.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.testimonial-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: -1;
}

.global-branches {
    position: relative;
    background-image: url("/images/bg/contact.jpg");
    background-size: cover;
    background-position: center;
    padding: 80px 0;
}

.global-branches::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.blog-page-section {
    position: relative;
    background-image: url("/images/bg/beautiful-rainbow-nature.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.blog-page-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
    z-index: -1;
}

.plot-mela-section {
    position: relative;
    background-image: url("/images/bg/plot-view.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.plot-mela-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: -1;
}

.rotating-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 150px;
    height: 150px;
    transform-origin: center center;
    animation: rotate360 5s linear infinite;
}

@media(max-width: 800px) {
    .rotating-svg {

        width: 70px;
        height: 70px;

    }
}

.rotating-svg-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 150px;
    height: 150px;
    transform-origin: center center;
    animation: rotate360 5s linear infinite;
}

@keyframes rotate360 {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}