/* Top Bar */
.top-bar {
    background: #2c3e50;
    color: white;
    padding: 8px 0;
    position: fixed;
    width: 100%;
    z-index: 1001;
    top: 0;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-info {
    display: flex;
    gap: 20px;
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
}
    .contact-info .btn-outline-info{
    padding-right: 10px !important;
    padding-left: 10px !important;
}

@media only screen and (max-width: 600px) {
    .contact-info span {
        font-size: 10px;
    }
    .contact-info {
        gap: 10px;
    }
    .contact-info .btn-outline-info{
    padding-right: 7px !important;
    padding-left: 7px !important;
}

}
/* Navigation with animation */
.navbar {
    top: 36px;
}

.nav-links li a {
    position: relative;
    overflow: hidden;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #3498db;
    transition: all 0.3s ease;
}

.nav-links li a:hover::after {
    width: 100%;
    left: 0;
}