.nav-container .logo{
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 30%;
    padding-left: 60px;
}
/* HEADER DEFAULT */
/* ────────────────────────────────────────────────
   Your original CSS – kept almost 100% unchanged
───────────────────────────────────────────────── */
.main-header {
    width: 100%;
    background: #007A67;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    transition: all 0.4s ease;
    padding: 20px 0;
    font-size: 18px;
    font-weight: 400;
}

.nav-container {
    width: 100%;
    max-width: 100%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.auriic-header-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 70%;
    gap: 60px;
    flex: 1 0 auto;
    justify-content: end;
    padding-right: 60px;
}

.logo {
    color: #fff;
    font-size: 28px;
    font-weight: bold;
}

.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 30px;
    padding: 0;
    margin: 0;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    transition: 0.3s;
    font-weight: 400;
}

.nav-menu a:hover {
    /* opacity: 0.8; */
    color: #ffffff;
}

.hire-btn {
    background: #C79C36;
    color: #fff !important;
    padding: 10px 22px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

/* ────────────────────────────────────────────────
   NEW RESPONSIVE + DROPDOWN STYLES (added only)
───────────────────────────────────────────────── */

/* Dropdown icon rotation */
.has-dropdown > a {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dropdown-icon {
    font-size: 0.9em;
    transition: transform 0.25s ease;
}

.has-dropdown:hover > a .dropdown-icon {
    transform: rotate(180deg);
}

/* Submenu – desktop hover */
.submenu {
    position: absolute;
    background: #006155;
    min-width: 220px;
    border-radius: 8px;
    padding: 12px 0;
    display: flex !important;
    flex-direction: column;
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all 0.25s ease;
    z-index: 1000;
    top: 75px;
}

/* Replace the old text-based icon styles */
.dropdown-icon {
    font-size: 0.85em;          /* slightly smaller than text */
    margin-left: 6px;
    transition: transform 0.25s ease;
    line-height: 1;             /* better alignment */
}

/* Still rotate on hover/active */
.has-dropdown:hover > a .dropdown-icon,
.has-dropdown.active > a .dropdown-icon {
    transform: rotate(180deg);
}

/* Optional: make it look even cleaner on mobile */

.has-dropdown:hover > .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    gap: 10px;
}

.nav-menu .submenu ul{
    display: flex;
    flex-direction: column;
}

.submenu li a {
    display: block;
    padding: 10px 24px;
    white-space: nowrap;
}

/* Mobile Menu */

/* Hide toggle on desktop */



/* ===== SCROLL STYLE ===== */
.main-header.scrolled {
    width: 90%;
    left: 50%;
    transform: translateX(-50%);
    top: 20px;
    border-radius: 60px;
    padding: 18px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}