/* Top Bar */
.top-bar {
    background-color: #333;
    padding: 8px 0;
    font-size: 14px;
}

.top-bar a {
    color: #fff;
    text-decoration: none;
    margin-right: 20px;
}

.top-bar a:hover {
    color: #dc3545;
}

.top-bar i {
    margin-right: 5px;
}

.social-links a {
    margin-left: 15px;
    margin-right: 0;
}

/* Main Header */
.header-sticky {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand img {
    max-height: 75px;
}

.navbar-nav .nav-link {
    color: #333;
    font-weight: 500;
    padding: 25px 15px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #0958b8;
}

.navbar-nav .nav-link.active {
    position: relative;
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #0958b8;
    border-radius: 3px 3px 0 0;
}

/* Dropdown */
.dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 8px;
}

.dropdown-item {
    padding: 10px 20px;
    color: #333;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: #dc3545;
    padding-left: 25px;
}

/* Button */
.btn-primary {
    background-color: #0958b8;
    border-color: #fff;
    border-radius: 50px;
    padding: 8px 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #c82333;
    border-color: #c82333;
    transform: translateY(-2px);
}

/* Customer Registration */
.customer-registration {
    display: flex;
    align-items: center;
    color: #fff;
    text-decoration: none;
}

.customer-registration i {
    margin-right: 5px;
}

/* Responsive */
@media (max-width: 1199px) {
    .navbar-nav .nav-link {
        padding: 15px;
    }
}

@media (max-width: 991px) {
    .top-bar {
        font-size: 12px;
    }
    
    .social-links a {
        margin-left: 10px;
    }
} 