
/* For WebKit browsers */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #070707;
}

::-webkit-scrollbar-thumb {
    background-color: #f07f22;
    border-radius: 0;
}

/* For Firefox */
::-moz-scrollbar {
    width: 12px;
}

::-moz-scrollbar-track {
    background: #070707;
}

::-moz-scrollbar-thumb {
    background-color: #f07f22;
    border-radius: 0;
}

/* For IE and Edge */
body {
    scrollbar-face-color: #f07f22;
    scrollbar-track-color: #070707;
    scrollbar-arrow-color: #f07f22;
    scrollbar-shadow-color: #070707;
    scrollbar-highlight-color: #070707;
    scrollbar-3dlight-color: #070707;

    scrollbar-darkshadow-color: #070707;
}

/* Optional: Hide scrollbar when not hovered (for WebKit and Firefox) */
::-webkit-scrollbar-thumb:hover,
::-webkit-scrollbar-thumb:active,
::-webkit-scrollbar-thumb:focus {
    background-color: #f07f22;
}

::-moz-scrollbar-thumb:hover,
::-moz-scrollbar-thumb:active,
::-moz-scrollbar-thumb:focus {
    background-color: #f07f22;
}

.header-nav-link {
    display: block;
    padding: 14px 20px;
    text-decoration: none;
    color: black;
    position: relative;
}

/* Add some space for the arrow icon */
.dropdown-arrow {
    margin-left: 8px;
    font-size: 0.8em; /* Smaller size for the arrow */
}

.dropdown-services {
    margin-top: 5px;
}

/* Dropdown container */
.dropdown-services .dropdown-content {
    display: none;
    position: absolute;
    top: 100%; /* Position below the parent item */
    background-color: #f1f1f1;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease; /* Smooth opacity transition */
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #ddd;
}

.dropdown-content {
    text-align: left !important;
}

/* Show the dropdown when hovering over the parent and add opacity */
.dropdown-services:hover .dropdown-content {
    display: block;
    opacity: 1;
}

.sold-sign {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #cb244b;
    color: white;
    font-size: 18px;
    font-weight: bold;
    padding: 5px 15px;
    border-radius: 5px;
    z-index: 10;
}

.mobile-phone-icon {
    margin-right: 1.5em;
    margin-top: 0.5em;
}

@media (min-width: 992px) {
    .mobile-phone-icon {
        display: none;
    }
}

/* Remove the hover background color change for Services link */
.dropdown-services > .header-nav-link {
    background-color: transparent; /* No hover effect */
}

@media (max-width: 992px) {
    .dropdown-services .dropdown-content {
        position: relative;
        top: 100%;
        z-index: 1;
        opacity: 0;
        max-width: unset;
        background-color: unset;
        border: unset;
        box-shadow: unset;
        transition: opacity 0.3s ease;
        margin-top: 2em;
        min-width: unset;
        text-align: center;
        right: 45%;
    }

    .dropdown-content a {
        color: whitesmoke;
    }
}