.social-media a {
    margin-right: 15px;
    color: #000; /* Default icon color, adjust as needed */
    text-decoration: none;
}

.social-media a i {
    margin-right: 8px;
}


/* Fix padding for the navbar title */
.navbar-brand {
    padding: 10px 15px;  /* Adjust as necessary */
    font-size: 1.5rem;   /* Adjust the size to make it more prominent */
    line-height: 1.6;    /* Improve readability */
}

.navbar-brand span {
    display: inline-block;
    vertical-align: middle;
}

/* For smaller screens, ensure padding adjusts properly */
@media (max-width: 768px) {
    .navbar-brand {
        padding: 8px 10px;  /* Adjust smaller padding for mobile */
    }
}

/* Style to change the color of "Assistants" */
.brand-highlight {
    color: #ff6347;  /* Tomato color or use any other brand color */
    font-weight: 600; /* Make it a bit bolder */
}

.hero_section {
    position: relative;
    height: 40vh;
    overflow: hidden;
}

.hero_section .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero_section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 1;
}

.hero_section .hero-heading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #333;
    z-index: 2;
}
