.header-style-1 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: #fff;
}
.sidebar-wrapper {
    height: 100vh;
    overflow-y: auto;
    position: sticky;
    top: 78px;
    background: #fff;
    border-right: 1px solid #efefef;
}

.sidebar-wrapper::-webkit-scrollbar {
    width: 6px;
}
.sidebar-wrapper::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}
.sidebar-wrapper::-webkit-scrollbar-thumb:hover {
    background: #999;
}

.catbox-scroll {
    max-height: 70vh;
    overflow-y: auto;
    overflow-x: hidden;
    border: 1px solid #efefef;
    border-radius: 6px;
    background: #fff;
    position: relative;
    padding: 5px 0;
}

.catbox-item {
    border-bottom: 1px solid #efefef;
    transition: background 0.3s ease;
}

.catbox-item:hover,
.catbox-item.active {
    color: #fff;
    background-color: #e5f3f3;
}
.catbox-toggle i,
.catbox-toggle.active i {
    color: #000 !important;
}

/* Category header */
.catbox-header {
    cursor: pointer;
    padding: 6px 12px;
    transition: background 0.2s ease;
}

.catbox-header a {
    color: #333;
    text-decoration: none;
}

.catbox-toggle i {
    font-size: 13px;
    color: #000;
    transition: transform 0.3s ease;
}

.catbox-toggle.active i {
    transform: rotate(90deg);
}
.catbox-sublist {
    display: none;
    padding-left: 35px;
    background: #fafafa;
}

.catbox-sublist li a {
    display: block;
    padding: 6px 12px;
    color: #555;
    text-decoration: none;
}

.catbox-sublist li a:hover {
    background: #f0f0f0;
}

.catbox-scroll::-webkit-scrollbar {
    width: 6px;
}
.catbox-scroll::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 3px;
}
.catbox-scroll::-webkit-scrollbar-thumb:hover {
    background-color: #999;
}

#slider .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #0e7673;
}
#slider.owl-theme .owl-dots .owl-dot span {
    width: 15px !important;
    height: 15px !important;
    margin: -60px 4px !important;
}

.featured_categories_bg {
    background: #f4e6e7;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .body-content {
        margin-top: 130px !important;
    }
    .especially_mobile_fs {
        font-size: 12px;
    }
}

.custom-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: top 0.4s ease;
    margin-top: 75px;
}

.custom-scroll-container {
    display: flex;
    align-items: center;
    overflow-x: auto;
    scroll-behavior: smooth;
    white-space: nowrap;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.custom-scroll-container::-webkit-scrollbar {
    display: none;
}

.custom-link {
    color: #6c757d;
    font-weight: 500;
    text-decoration: none;
    margin: 0 15px;
    padding: 8px 0;
    display: inline-block;
    position: relative;
    transition: color 0.3s;
    font-size: 15px;
}
.custom-link:hover,
.custom-link.active {
    color: #00796b;
}
.custom-link:hover::after,
.custom-link.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #00796b;
}

.custom-item {
    position: relative;
    display: inline-block;
}

.custom-dropdown {
    position: fixed;
    top: 120px;
    background: #fff;
    width: 80%;
    max-width: 900px;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    display: none;
    padding: 25px 30px;
    z-index: 2000;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.custom-item:hover > .custom-dropdown {
    display: block !important;
    opacity: 1;
    transform: translateY(0);
}

.custom-dropdown-title {
    font-weight: 600;
    color: #00796b;
    font-size: 17px;
    margin-bottom: 15px;
}

.custom-sub-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px 25px;
}

.custom-sub-list a {
    display: block;
    color: #555;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.custom-sub-list a:hover {
    color: #00796b;
}

.custom-scroll-btn {
    border: none;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}
.custom-scroll-btn:hover {
    background: #00796b;
    color: #fff;
}

.custom-hide-navbar {
    top: -200px;
}
