/* Top Bar */


/* For responsive design */
@media (max-width: 768px) {
    .brand-wrapper.logo {
        max-height: 50px;
    }
}
.top-bar {
    background: linear-gradient(135deg, #4a6baf 0%, #4ecdc4 100%);
    color: white;
    font-size: 0.9rem;
}

.contact-info i {
    margin-right: 5px;
}

.social-links a {
    color: white;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    background: white;
    color: #4a6baf;
    transform: translateY(-2px);
}

/* Navbar */
.rainbow-navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.brand-wrapper {
    display: flex;
    align-items: center;
}

.logo-placeholder {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4a6baf 0%, #4ecdc4 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.logo-placeholder i {
    font-size: 28px;
    color: white;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #4a6baf 0%, #4ecdc4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.brand-subtitle {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

/* Navbar Links */
.navbar-nav {
    gap: 10px;
}

.navbar-nav .nav-link {
    color: #555;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 5px;
    transition: all 0.3s;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: #4a6baf;
    background: rgba(74, 107, 175, 0.1);
}

.navbar-nav .nav-link.active {
    color: #4a6baf;
    background: rgba(74, 107, 175, 0.1);
}

.navbar-nav .nav-link.active:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 15px;
    right: 15px;
    height: 3px;
    background: linear-gradient(90deg, #4a6baf, #4ecdc4);
    border-radius: 2px;
}

/* Nav Right */
.nav-right {
    display: flex;
    align-items: center;
}

.nav-right .btn {
    border-radius: 20px;
    padding: 8px 20px;
    font-weight: 500;
}

/* Mobile Responsive */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: white;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        margin-top: 15px;
    }
    
    .navbar-nav {
        margin-bottom: 15px;
    }
    
    .nav-right {
        flex-direction: column;
        gap: 10px;
    }
    
    .nav-right .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .brand-name {
        font-size: 1.5rem;
    }
    
    .logo-placeholder {
        width: 40px;
        height: 40px;
        margin-right: 10px;
    }
    
    .logo-placeholder i {
        font-size: 22px;
    }
}