/* Navbar */
.navbar {
    height: 50px;
    background: #ffffffab;
    padding: 10px 0;
    align-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    padding: 0;
    z-index: 99999;
}

.navbar-container {
    /* width: 90%; */
    box-sizing: border-box;
    width: 100%;
    max-width: 1200px;
    padding-right: 15px;
    padding-left: 15px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: darkslateblue;
    font-size: 1.25rem;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.logo-img {
    position: absolute;
    max-height: 40px;
    min-width: 150px;
    width: auto;
    height: auto;
}

.logo-img-2 {
    top: 0px;
    left: 175px;
    position: relative;
    max-height: 35px;
    min-width: 100px;
    width: auto;
    opacity: 0.85;
    z-index: 9999;
}

@media (max-width: 360px) {
    .logo-img-2 {
        display: none;
    }
}


.nav-links a {
    font-size: 16px;
    color: steelblue;
    margin: 0 15px;
    text-decoration: none;
    font-weight: 500;
}

.nav-links a:hover {
    color: #2563eb;
    border-bottom-style: dotted;
    border-bottom-width: 2px;
    border-bottom-color: rgb(93, 156, 207);
}

/* Mobile Menu Toggle */
.menu-toggle {
    font-family: auto;
    display: none;
    background: none;
    border: none;
    font-size: 25px;
    color: #374151;
    cursor: pointer;
}

.alink {
    color: #0d5a67 !important;
}

.bgblur {
    filter: grayscale(1) blur(3px);
}

/* Responsive Adjustments */
@media (max-width: 1008px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 80px;
        right: 20px;
        bottom: 20px;
        background: #ffffffde;
        transition: max-height 0.5s ease-out;
        overflow: hidden;
        border-radius: 35px;
        max-height: 0;
        padding: 0;
    }

    .nav-links.active {
        display: flex;
        overflow: scroll;
        max-height: 500px;
        padding: 15px;
        box-shadow: inset 0px 0px 10px 5px rgb(144 144 144 / 25%);
        justify-content: space-between;
    }

    .nav-links a {
        border: 1px solid darkslategray;
        border-radius: 25px;
        padding: 8px 20px;
        text-align: center;
        margin: 0.5rem;
    }

    .menu-toggle {
        display: block;
    }

    .menu-toggle.active {
        color: #2563eb;
    }

}




/* Social Sidebar */

.social {
    width: 50px;
    z-index: 9999;
    position: fixed;
    top: 60px;
}

.social ul {
    padding: 0;
    list-style-type: none;
    transform: translatex(-260px);
}

.social ul li {
    display: block;
    margin: 10px 5px;
    background-color: rgb(103 121 201 / 50%);
    box-shadow: 0px 0px 10px 0px rgb(201 200 219 / 30%);
    width: 300px;
    text-align: right;
    padding: 8px;
    border-radius: 0 50px 50px 0;
    transition: all 1s;
}

.social ul li:hover {
    transform: translatex(110px);
}

.social ul li.show {
    transform: translatex(110px);
}

.social ul li a {
    color: white;
    text-decoration: none;
}

.social ul li i {
    place-content: center;
    text-align: center;
    margin-left: 15px;
    color: #34735c;
    background-color: #ffffffa3;
    padding: 3px 3px;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 20px;
    transform: rotate(0deg);
}

.social ul li:hover i {
    transform: rotate(360deg);
    transition: all 1s;
}

.social ul li .phone {
    font-size: 15px;
}