/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jan 28 2026 | 06:41:20 */
/* 1. Fix Top Bar: Move 'Portal Login' to left and prevent stacking */
.header_top {
    text-align: left !important;
    padding: 5px 0 !important;
	white-space: nowrap !important; /* Forces Portal Login onto one line */
}

.header_top .container {
    justify-content: flex-start !important;
    max-width: 1450px !important; /* Matches main header for alignment */
}

/* 2. Bring Logo Closer to 'Why Aqore?' and Align Vertically */
.header_area .navbar .navbar-brand {
    margin-right: 25px !important; /* Drastically reduced to bring them closer */
    padding: 0 !important;
}

.header_area .navbar {
    justify-content: flex-start !important; /* Pulls the menu toward the logo */
}

/* 3. Tighten Menu Spacing (Decreased by 1px more to 3px) */
.header_area .navbar .navbar-nav > li > a {
    padding-left: 2px !important; 
    padding-right: 2px !important;
    font-size: 14px !important;
    white-space: nowrap !important;
    display: flex !important;
    align-items: center !important;
}

/* 4. Kill Duplicate 'Get Started' Button & Fix Alignment */
/* This targets the desktop container to hide any extra injected buttons */
.header_area .navbar > .btn_get, 
.header_area .navbar .btn_get:nth-of-type(2) {
    display: none !important;
}

/* Styling the remaining single button */
.header_area .btn_get {
    display: inline-block !important;
    white-space: nowrap !important;
    margin-left: 15px !important;
    vertical-align: middle !important;
}

/* 5. Header Container: Remove the 'Stretched' look */
.header_area .container {
    margin: 0 auto !important;
    align-items: center !important;
}