/* Works in Chrome, Edge, Safari */
::-webkit-scrollbar {
    width: 18px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background-color: #e35d47;
    border-radius: 2px;
    border: 2px solid #f1f1f1;
}

/* Optional: make corners sharper for a "boxy" look */
::-webkit-scrollbar-thumb {
    border-radius: 0;
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #e35d47 #f1f1f1;
}

.theme-color {
    color: #e35d47;
}

.btn-custom {
    background-color: #e35d47;
    border-radius: 6px;
    text-decoration: none;
}

.btn-custom a {
    color: white;
}
.btn-custom:hover {
    background-color: white;
    border: 3px solid #e35d47;
}
.btn-custom:hover a{
    color: #e35d47;
}
.top-bar {
    background-color: #e35d47;
    color: white;
    text-align: center;
    padding: 10px;
}

.move-txt-top-bar {
    overflow: hidden;
    white-space: nowrap;
    animation: moveText 15s linear infinite;
}

.top-navbar {
    border-bottom: 1px solid #ededed;
    background-color: white;
}

.logo-main {
    width: 160px
}

.custom-search-box {
    width: 100%;
    background-color: #fff;
    padding: 5px;
    border-radius: 5px;
    height: 50px;
    position: relative;
}

.custom-search-input {
    border: none;
    outline: none;
    padding: 10px;
    font-size: 16px;
    width: 90%;
    background: transparent;
    color: black;
}

.custom-search-button {
    background-color: #e35d47;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-search-button i {
    font-size: 16px;
}

.top-search {
    border-radius: 5px;
    border: 1px solid #ededed;
}

.support-sm-txt {
    font-size: 11px;
    font-weight: 700;
}

.blink-button {
    animation: blink 1s step-start infinite;
}

.head-sm-btn {
    font-size: 11px;
    font-weight: 800;
}

.top-nav-links {
    font-weight: 700;
    color: #5e5a5a;
    text-decoration: none;
    padding-left: 12px;
    padding-right: 12px;
}

.top-nav-links:hover {
    color: #e35d47;
}

.fixed-top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}

.fixed-top-navbar {
    position: fixed;
    top: 43px; /* or after the height of top-bar */
    width: 100%;
    z-index: 9998;
    background-color: white;
}


@keyframes blink {
    50% {
        opacity: 0;
    }
}

@keyframes moveText {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.scroll-navbar {
    position: fixed;
    top: 117px;
    width: 100%;
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    z-index: 1000;
}
.scroll-navbar.show {
    opacity: 1;
    transform: translateY(0);
}

.header-btn-1{
    background: #e35d47;
    padding: 5px 10px;
    color: white;
    border-radius: 4px;
}
.header-btn-2{
    background: #e35d47;
    padding: 5px 19px;
    color: white;
    border-radius: 4px;
}
.mt-10{
    margin-top: 10px;
}