/* Header & Navbar Styling */
.site-header {
    background-color: #000000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.bg-black {
    background-color: #000000 !important;
}

/* Logo Styling */
.header-logo {
    height: 54px;
    width: auto;
    object-fit: contain;
    background-color: #ffffff;
    display: inline-block;
    vertical-align: middle;
}

/* Nav Links Styling */
.custom-nav-link {
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 600;
    padding-left: 10px !important;
    padding-right: 10px !important;
    transition: color 0.25s ease-in-out;
    white-space: nowrap;
}

/* Hover & Active Color: GREEN (#78A865) */
.custom-nav-link:hover,
.custom-nav-link:focus,
.custom-nav-link:active,
.custom-nav-link.active,
.custom-nav-link.active-green {
    color: #78A865 !important;
}

/* Contact Us Button Styling */
.btn-contact-purple {
    background-color: #603891;
    color: #ffffff !important;
    font-weight: 600;
    font-size: 14px;
    border: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-contact-purple:hover {
    background-color: #6a3d9e;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(83, 48, 123, 0.4);
}
