.navbar-brand .logo {
    height: 10vh;
    width: auto;
}
.jumbotron {
    /*background: url('../images/main2.jpg') no-repeat center center fixed; */
    background: url('../images/top_logo.png') no-repeat center center; 
    background-size: 50% auto;
    /*background-color: #d0d0d0;*/
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    height:80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.service-img-wrapper {
    position: relative;
    width: 80%; /* Adjust size as needed */
    padding-bottom: 80%; /* Aspect ratio 1:1 */
    margin: 0 auto 15px; /* Center and add bottom margin */
}
.service-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
@media (max-width: 576px) {
    .service-img-wrapper {
        max-width: 50%; /* Reduce size for smaller screens */
        padding-bottom: 50%;
    }
    .jumbotron {
		background-attachment: scroll;
        background-position: center;
        background-size: 80% auto;
        height:60vh;
    }
}