/* Fixed Header Redesign */

/* Ensure body has padding to prevent content overlap */
body {
    padding-top: 80px;
    /* Adjust based on header height */
}

.navbar-fixed-custom {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 15px 0;
    transition: padding 0.3s ease;
}

.navbar-fixed-custom.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.navbar-brand-logo {
    height: 50px;
    /* Adjust height to match design */
    width: auto;
    object-fit: contain;
}

.nav-link {
    font-weight: 500;
    color: #334155 !important;
    font-size: 0.95rem;
    padding: 0.5rem 1rem !important;
    transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active {
    color: #2563eb !important;
    /* Primary Blue */
}

/* Contact Section in Header */
.header-contact-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #64748b;
    margin-right: 20px;
    white-space: nowrap;
}

.header-contact-icon {
    color: #64748b;
    font-size: 1rem;
}

.header-btn {
    background-color: #2563eb;
    color: white !important;
    font-weight: 600;
    border-radius: 6px;
    /* Slightly rounded corners like screenshot */
    padding: 8px 20px;
    font-size: 0.9rem;
    transition: background-color 0.2s;
    white-space: nowrap;
}

.header-btn:hover {
    background-color: #1d4ed8;
}

/* Mobile adjustments */
@media (max-width: 991px) {
    .header-contact-info {
        display: none;
        /* Hide phone on mobile if space is tight, or move it */
    }

    .navbar-collapse {
        background: white;
        padding: 20px;
        border-radius: 0 0 10px 10px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        margin-top: 10px;
    }
}