/* ================= SERVICES DROPDOWN ================= */

.nav-links .dropdown {
    position: relative;
}

/* Services link */
.nav-links .dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Small arrow */
.dropdown-arrow {
    font-size: 12px;
    line-height: 1;
}

/* Dropdown box */
.nav-links .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;

    min-width: 270px;

    background: #ffffff;

    padding: 10px 0;
    margin: 0;

    list-style: none;

    border-radius: 4px;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);

    opacity: 0;
    visibility: hidden;

    transform: translateY(10px);

    transition: all 0.25s ease;

    z-index: 9999;
}

/* Dropdown items */
.nav-links .dropdown-menu li {
    width: 100%;
}

/* Dropdown links */
.nav-links .dropdown-menu li a {
    display: block;

    width: 100%;

    padding: 10px 18px;

    color: #172b4d;

    font-size: 14px;

    text-decoration: none;

    white-space: nowrap;

    transition: all 0.2s ease;
}

/* Hover on dropdown items */
.nav-links .dropdown-menu li a:hover {
    background: #f2f5f9;
    color: #e5252a;
}

/* Show dropdown when hovering Services */
.nav-links .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}








