.header--sticky.header-one {
    position: relative;
    z-index: 999;
}

.header-top-one {
    background-color: var(--site-color);
    padding: 12px 0;
    font-size: 14px;
    border-bottom: 1px solid var(--site-color-dark);
    color: #fff;
}

.header-top-one .left {
    display: flex;
    align-items: center;
    gap: 25px;
}

.header-top-one .left a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-top-one .left a:hover {
    color: var(--site-color-light);
}

.header-top-one .right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 25px;
}

.top-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
}

.top-nav li a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.top-nav li a:hover {
    color: var(--site-color-light);
}

.social-wrapper-one {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 15px;
}

.social-wrapper-one li a {
    color: #fff;
    transition: 0.3s;
    display: block;
}

.social-wrapper-one li a:hover {
    color: var(--site-color-light);
    transform: translateY(-2px);
}

.header-main-one {
    padding: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    background: #fff;
    transition: all 0.3s ease;
}

.header-main-one.nav-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    animation: fadeInDown 0.5s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.main-header {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90px;
}

.main-logo {
    max-width: 180px;
    height: auto;
    transition: all 0.3s ease;
}

.thumbnail {
    display: block;
    width: 100%;
}


@media (max-width: 767px) {
    .main-logo {
        max-width: 250px !important;
        width: 100% !important;
    }

    .header-main-one {
        padding: 10px 0 !important;
    }
}

@media (max-width: 480px) {
    .main-logo {
        max-width: 220px !important;
    }
}

.header-nav {
    width: 100%;
}

.main-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 35px;
}

.main-menu {
    margin-left: 20px;
}

.header-nav__item {
    position: static;
    padding: 35px 0;
    display: flex;
    align-items: center;
}

.header-nav__item.relative-item {
    position: relative !important;
}

.header-nav__link {
    color: #1c1c1c;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.header-nav__link:hover {
    color: var(--site-color);
}

.header-nav__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s;
    z-index: 1000;
    border-top: 3px solid var(--site-color);
}

.header-nav__dropdown.cover-1,
.header-nav__dropdown.cover-2 {
    width: 100%;
    left: 0;
    right: 0;
    padding: 40px 0;
}

.header-nav__item:hover .header-nav__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header-nav__item:hover .header-nav__links {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header-nav__dropdown .container {}

.gallery.column-5 .flexbox {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0 -15px;
}

.gallery.column-5 .gallery-card {
    width: 20%;
    padding: 15px;
}

.navigation-dropdown__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #f9f9f9;
    border-radius: 8px;
    transition: 0.3s;
    border: 1px solid #eee;
}

.navigation-dropdown__item:hover {
    background: var(--site-color);
    border-color: var(--site-color);
    transform: translateY(-3px);
}

.navigation-dropdown__item .title {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    color: #1c1c1c;
    transition: 0.3s;
}

.navigation-dropdown__item .icon {
    color: #ccc;
    font-size: 12px;
}

.navigation-dropdown__item:hover .title,
.navigation-dropdown__item:hover .icon {
    color: #fff;
}

.section-header.small .small-title {
    color: var(--site-color);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.section-header.small .title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.border-draw {
    width: 60px;
    height: 4px;
    background: var(--site-color);
    margin-bottom: 20px;
}

.header-nav__links {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 240px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 15px 0;
    border-radius: 0 0 5px 5px;
    border-top: 3px solid var(--site-color);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: 0.3s;
    z-index: 1000;
}

.header-nav__links li a {
    display: block;
    padding: 12px 25px;
    color: #555;
    text-decoration: none;
    transition: 0.3s;
    font-size: 14px;
    font-weight: 500;
}

.header-nav__links li a:hover {
    color: var(--site-color);
    padding-left: 30px;
    background: #fdfdfd;
}

.header-right-actions {
    height: 100%;
}

.rts-btn.btn-primary {
    margin-top: 0 !important;
    background: var(--site-color);
    color: #fff;
    border: none;
    transition: 0.3s;
}

.rts-btn.btn-primary:hover {
    background: var(--site-color-dark);
    transform: translateY(-2px);
}

.side-bar * {
    box-sizing: border-box;
}

.side-bar {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100vh;
    background: #ffffff;
    z-index: 10000;
    padding: 30px 20px;
    transition: right 0.4s ease;
    overflow-y: auto;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}

.side-bar.show {
    right: 0;
}

.close-icon-menu {
    position: absolute;
    top: 40px;
    left: 20px;
    background: var(--site-color);
    color: #fff;
    border: none;
    border-radius: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.close-icon-menu:hover {
    background: #c00;
}

.language-switcher-top {
    position: absolute;
    top: 40px;
    right: 20px;
    height: 40px;
    display: flex;
    align-items: center;
}

.language-switcher-top a {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-area-sidebar {
    margin-top: 100px;
    margin-bottom: 20px;
    text-align: center;
}

.mainmenu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mainmenu>li {
    margin: 10px 0;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-radius: 5px;
    overflow: hidden;
}

.mainmenu>li>a {
    display: block;
    padding: 12px 15px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    position: relative;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
}

.mainmenu>li>a:hover {
    color: var(--site-color);
}

.mainmenu>li.has-droupdown>a::after {
    content: '\f107';
    font-family: 'FontAwesome';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s;
}

.mainmenu>li.has-droupdown.active>a::after {
    transform: translateY(-50%) rotate(180deg);
}

.submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: none;
    background: #f9f9f9;
    border-top: 1px solid #eee;
}

.submenu li a {
    display: block;
    padding: 10px 15px 10px 30px;
    color: #555;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s;
}

.submenu li a:hover {
    color: var(--site-color);
    padding-left: 35px;
}

.social-wrapper-two {
    display: flex;
    gap: 8px;
    margin-top: 30px;
    padding-left: 5px;
    margin-bottom: 30px;
}

.social-wrapper-two a {
    width: 40px;
    height: 40px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--site-color);
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.social-wrapper-two a:hover {
    background: var(--site-color);
    color: #fff;
    transform: translateY(-3px);
}

.rts-btn.btn-primary {
    display: block;
    background: var(--site-color);
    color: #fff;
    text-align: center;
    padding: 12px;
    border-radius: 15px;
    margin-top: 25px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    transition: background 0.3s;
}

.rts-btn.btn-primary:hover {
    background: var(--site-color-2);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.hamburger-menu {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    width: 30px;
}

.hamburger-icon {
    height: 3px;
    background: #333;
    margin: 3px 0;
    width: 100%;
    transition: 0.3s;
    display: block;
}

@media (max-width: 913px) {
    .header-top-one {
        display: none;
    }

    .col-xl-9 .main-header {
        display: none;
    }
}

@media (max-width: 1200px) {
    .main-menu {
        gap: 15px;
    }

    .header-nav__link {
        font-size: 13px;
    }
}