:root {
    --bg-header-top: #ebebeb;
    --bg-footer: #F4F4F4;
    --bg-copyright: #ebebeb;
    --bg-body: #18274A;
    --bg-menu: #ffffff;
    --color-red: #e60023;
    --color-body: #343a40;
    --color-orange: #FF7518;
    --color-black: #000000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    background-color: var(--bg-body);
    color: var(--color-body);
    font-size: 1rem;
}
a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
}

/** Line-clamp **/
.line-clamp-1 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-4 {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/** Maintenance **/
.maintenance {
    width: 100%;
    background-color: #ffcc00;
    color: #000;
    text-align: center;
    padding: 10px 0px;
    z-index: 10000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-size: 0.85rem;
}

/** Header **/
.header {
    position: relative;
    background: transparent;
}

.header-top {
    padding: 6px 0;
    background: var(--bg-header-top);
    font-size: 15px;
}

.flex-header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flex-header-top-right {
    display: flex;
    justify-content: end;
    align-items: center;
}

.flex-header-top-right a {
    line-height: 1;
    display: inline-block;
}

.flex-header-top-right img {
    transition: all 0.3s;
}

.flex-header-top-right a:hover img {
    opacity: 0.7;
}

.flex-header-top-left {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 10px;
}

.header-top-info {
    display: inline-flex;
    justify-content: start;
    align-items: center;
    gap: 6px;
}

/** Header bottom **/
.header-bottom {
    display: none;
}

.flex-header-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.header-cart {
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    font-size: 20px;
    transition: color 0.3s ease;
    color: #333;
}

.header-cart i {
    font-size: 24px;
}

.cart-count {
    position: absolute;
    top: 0px;
    right: 0px;
    transform: translate(50%, -50%);
    background-color: red;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 50%;
    line-height: 1;
    min-width: 20px;
    text-align: center;
    box-shadow: 0 0 0 2px #fff;
}

/* menu */
.mobile-menu,
.mobile-header,
.mobile-menu-overlay {
    display: none;
}

.home-page .menu {
    position: absolute;
}
.menu {
    background-color: #0000000D;
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}
.menu.menu-fixed {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #00000054;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.3s ease;
}


.menu-fixed {
    background-color: var(--bg-menu);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.menu-fixed .level-1 > li > a.menu-item {
    color: #fff !important;
    text-shadow: none;
}

.menu-right .level-1{
    background-color: none;
}

.home-page .menu__icon {
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.home-page .menu-fixed .menu__icon {
    background-color: #f5f5f5;
    color: #333;
}

/* 
.menu-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 998;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.3s ease;
} */

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}
.logo_name {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    width: 155px;
}
.flex-menu {
    display: flex;
    gap:50px;
    align-items: center;
}

.menu-right {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.menu-right ul {
    list-style: none;
    
}

.menu-right .level-1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    gap: 1px;
    font-size: 14px;
}
.container-menu {
    margin: 0 auto;
    padding: 0 30px;
}
.level-1 > li {
    text-align: center;
    position: relative;
}

.level-1 > li > a.menu-item {
    display: block;
    padding: 5px;
    color: #FFFFFF;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
    text-transform: uppercase;
    font-weight: 600;
}

.level-1 > li:hover > a.menu-item,
.level-1 > li.active > a.menu-item {
    color: var(--color-orange);
}

.submenu {
    display: block;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: #fff;
    z-index: 999;
    border-radius: 5px;
    list-style: none;
    padding: 0;
    margin: 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.level-1 > li,
.submenu li {
    position: relative;
}

.has-submenu:hover > .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu li a {
    display: block;
    padding: 10px 15px;
    color: #333;
    background: #fff;
    white-space: nowrap;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.2s ease;
    text-align: left;
}

.submenu li a:hover {
    background: #f5f5f5;
}

.level-3,
.level-4 {
    top: 0;
    left: 100%;
}

.menu__icons {
    display: flex;
    gap: 6px;
    align-items: center;
}

.menu__icon {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 30px;
    background-color: #f5f5f5;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
}

.menu__icon:hover {
    background-color: #e0e0e0;
    transform: scale(1.05);
    color: #000;
}

.menu__icon i {
    pointer-events: none;
}


.nav-menu {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 40px;
}

.menu-style-one {
    padding: 10px 0;
}

.menu-style-two {
    padding: 10px 0;
    display: none;
}

.menu-style-two .menu-right {
    margin-left: 0px;
}

.text-decoration-none img {
    width: 24px;
    height: 24px;
   
}

/** Profile menu **/
.menu__icon--user {
    position: relative;
    cursor: pointer;
    background-color: #f5f5f5;
    font-weight: bold;
    font-size: 16px;
    color: #333;
    justify-content: center;
    align-items: center;
}

.menu__icon--user .avatar-initial {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #ccc;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
}

.dropdown-user-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    min-width: 160px;
    display: none;
    z-index: 9999;
}

.dropdown-user-menu li {
    list-style: none;
}

.dropdown-user-menu li a {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    transition: background-color 0.2s ease;
    font-size: 15px;
    font-weight: normal;
}

.dropdown-user-menu li a:hover {
    background-color: #f2f2f2;
}

.menu__icon--user:hover .dropdown-user-menu {
    display: block;
}

/* Slider show */
.slideshow {
    background: #f5f5f5;
    position: relative;
    z-index: 1;
}

.slider-item a img {
    display: block;
    width: 100%;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 10;
    pointer-events: none;
    padding-left: 15px;
    padding-right: 15px;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.slider-btn:hover {
    background: #fff;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.slider-btn.prev {
    left: 20px;
}

.slider-btn.next {
    right: 20px;
}

.slider-btn i {
    font-size: 18px;
    color: #333;
}

.product-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-menu li {
    line-height: 1.2;
    margin-left: 20px;
}

.product-menu li a {
    display: block;
    padding: 12px 15px;
    text-decoration: none;
    color: #000000;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.product-menu li a:hover {
    background: #f8f8f8;
    color: #c72323;
}

.slide img {
    padding: 20px 0px;
    width: 850px;
    height: 400px;
    border-radius: 4px;
    display: block;
}

/* Why choice us */
.why-choice-us {
    padding: 60px 0px;
}

.why-choice-us-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.why-choice-us-item {
    padding: 20px;
    background-color: #fff;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.why-choice-us-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.why-choice-us-wrapper .owl-stage-outer .owl-stage,
.owl-news .owl-stage-outer .owl-stage,
.product-grid .owl-stage-outer .owl-stage {
    padding: 16px 0px;
}
.grecaptcha-badge {
    display: none;
}
.why-choice-us-item .thumb {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f4f4f4;
    border-radius: 50%;
    overflow: hidden;
}

.why-choice-us-item .thumb img {
    max-width: 50%;
    max-height: 50%;
    object-fit: contain;
}

.why-choice-us-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.why-choice-us-item h3 a {
    color: #222;
    text-decoration: none;
}

.why-choice-us-item:hover h3 a {
    color: var(--color-orange);
}

.why-choice-us-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    text-align: center;
}

.banner1 {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 5px;
}

.news-container {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.news-video {
    flex: 1;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
}

.news-list {
    width: 400px;
    background: #f5f5f5;
    border-radius: 8px;
    padding: 20px;
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.news-header h3 {
    color: #c72323;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
}

.view-all {
    color: #666;
    text-decoration: none;
    font-size: 14px;
}

.view-all i {
    margin-left: 5px;
    font-size: 12px;
}

.news-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
}

.news-item:last-child {
    border-bottom: none;
}

.news-image {
    width: 120px;
    height: 80px;
    border-radius: 4px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-content {
    flex: 1;
}

.news-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 8px;
}

.news-category {
    color: #c72323;
    font-size: 13px;
}

.news-date {
    color: #666;
    font-size: 13px;
}

.news-title {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 8px;
}

.news-desc {
    color: #666;
    font-size: 13px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.floating-contact {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 999;
}

.floating-contact a {
    width: 45px;
    height: 45px;
    background-color: #007bff;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    font-size: 20px;
}

.scroll-circle {
    position: fixed;
    right: 20px;
    bottom: 140px;
    width: 50px;
    height: 50px;
    z-index: 999;
    cursor: pointer;
}

.scroll-circle svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.scroll-circle .bg {
    fill: none;
    stroke: #e6e6e6;
    stroke-width: 5;
}

.scroll-circle .progress {
    fill: none;
    stroke: #007bff;
    stroke-width: 5;
    stroke-dasharray: 163.36;
    stroke-dashoffset: 163.36;
    transition: stroke-dashoffset 0.2s linear;
}

.scroll-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #007bff;
    font-size: 16px;
    pointer-events: none;
}

.contact-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 15px 0px;
    background: #fff;
}

.contact-btn {
    background: #ffd700;
    padding: 8px 15px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #000;
    font-size: 14px;
}
/* Contact Home */
.contact_home {
    padding: 60px 0;
    position: relative;
    background-color: var(--bg-body);
}

.contact_home_wrapper {
    gap: 40px;
    position: relative;
    align-items: start;
}

.contact_info {
    background-color: var(--bg-menu);
    padding: 40px;
    border-radius: 5px;
    min-height: 500px;
}

.contact_info_des{
    max-width: 500px;
}

.contact_title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000000;
    text-transform: uppercase;
}

.contact_desc {
    font-size: 15px;
    line-height: 1.6;
    font-weight: 400;
    margin-bottom: 25px;
    color: #000000;
}

.contact_details {
    margin-top: 15px;
}
.contact_item {
    font-family: "Montserrat", sans-serif;
}
.contact_item span {
    display: flex;
    align-items: center;
}

.contact_item i {
    color: #ff7518;
    font-size: 18px;
    margin-top: 3px;
}

.contact_item p {
    font-size: 14px;
    line-height: 1.5;
}

.image_contact {
    position: relative;
}

.image_contact img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    border-radius: 5px;
}

.stay_connected {
    position: absolute;
    bottom: 50px;
    left: 50px;
    color: var(--color-orange);
}

.stay_connected p {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.stay_connected .social_icons_home {
    display: flex;
    gap: 10px;
    margin-top: 0;
}

.stay_connected .social_icons_home a {
    font-size: 16px;
    text-decoration: none;
    color: #FF7518;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s;
}

.contact_form {
    background-color: #FFFFFF;
    padding: 40px;
    border-radius: 5px;
    box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.1);
    z-index: 1;
    position: absolute;
    top: 50%;
    left: 75%;
    transform: translate(-50%, -50%);
    width: 550px;
}

.form_title {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    text-align: center;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.form_group {
    margin-bottom: 20px;
}

.form_group input,
.form_group textarea {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 5px;
    background-color: #f2f2f2;
    font-size: 14px;
}

.form_group textarea {
    height: 120px;
    resize: none;
}

.form_group input:focus,
.form_group textarea:focus {
    outline: none;
    box-shadow: 0 0 0 2px var(--color-orange);
}

.submit_btn {
    width: 100%;
    padding: 14px;
    background-color: var(--color-orange);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    text-transform: uppercase;
}

.submit_btn:hover {
    background-color: #e66000;
}

/* Responsive styles for contact section */
@media (max-width: 991px) {
    .contact_home_wrapper {
        grid-template-columns: 1fr;
    }
}

/* Slogan */
.slogan {
    overflow: hidden;
    position: relative;
}

.slogan_content {
    font-family: "Inter", sans-serif;
    font-size: 120px;
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    white-space: nowrap;
    display: inline-block;
    padding-left: 100%;
    animation: marquee 20s linear infinite;
    letter-spacing: 1px;
    opacity: 0.3;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-200%);
    }
}

/** Footer **/
.footer {
    background-color: var(--bg-footer);
}

.footer-main {
    padding: 60px 0;
}

.footer-logo {
    margin-bottom: 16px;
}

.contact-btn i {
    font-size: 16px;
}

.flex-footer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}


.title_footer_col {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-black);
    border-bottom: 2px solid var(--color-orange);
    max-width: 100px;
    padding-bottom: 5px;
}

.footer-text {
    color: var(--color-black);
    line-height: 1.6;
    font-size: 15px;
}

.footer-logo a {
    display: block;
}

.footer-text ul {
    margin-left: 17px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--color-black);
    text-decoration: none;
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--color-orange);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    color: #666;
    font-size: 16px;
}

.copyright {
    padding: 15px 0;
    background: var(--bg-copyright);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.flex-copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.google-iframe {
    position: relative;
    min-height: 300px;
}

.google-iframe iframe {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
}

.footer-badges {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    width: 100%;
}

.footer-badges a {
    display: flex;
    align-items: center;
}

.mt-4 {
    margin-top: 1.5rem;
}

/** Pagination **/
.pagination-home {
    margin-top: 30px;
}

.pagination-home .pagination .page-item .page-link {
    color: #555555;
    font-size: 0.875rem;
}

.pagination-home .pagination .page-item.active .page-link {
    color: #ffffff;
    background-color: #555555;
    border-color: #555555;
}

.pagination {
    display: flex;
    text-align: center;
    margin-top: 15px;
    list-style: none;
    justify-content: center;
}

.pagination a {
    display: inline-block;
    vertical-align: top;
    margin: 0px 2px 3px 2px;
    color: #333;
    background: #eee;
    border: 1px solid rgba(161, 161, 161, 0.4);
    font-size: 12px;
    padding: 3px 10px 5px 10px;
    border-radius: 2px;
    text-decoration: none;
}

.pagination a:hover {
    background: #ccc;
}

/** Button loading **/
.btn-loading {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-loading.is-loading {
    pointer-events: none;
    opacity: 0.7;
}

.btn-loading span {
    display: none;
}

.btn-loading.is-loading span {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #fff;
    border-radius: 50%;
    border-right-color: transparent;
    animation: spinLoading 0.75s linear infinite;
}

@keyframes spinLoading {
    100% {
        transform: rotate(360deg);
    }
}

/** Notify **/
.notyf {
    padding: 15px;
    z-index: 9999999999 !important;
}

.notyf__message {
    white-space: nowrap;
}

.notyf__toast {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 12px 20px 12px;
    font-size: 14px;
    font-weight: 500;
    max-width: 100%;
}

.notyf__ripple {
    opacity: 0.12;
}

.notyf__wrapper {
    padding: 4px 8px;
}

.notyf__dismiss-btn {
    background: transparent;
    opacity: 1;
    cursor: pointer;
    height: 26px;
    width: 26px;
    border-radius: 4px !important;
}

.notyf__dismiss {
    height: 26px;
    width: 26px;
    border-radius: 4px !important;
}

/** Heading title **/
.heading-title {
    text-align: start;
    margin-bottom: 30px;
    position: relative;
}

.heading-title h2 {
    font-size: 32px;
    color: var(--bg-menu);
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.heading-title h2 span {
    position: relative;
    z-index: 2;
}

.heading-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100px;
    height: 25px;
    background: #ff6600;
    transition: all 0.4s ease;
}

.heading-title:hover::after {
    width: 100%;
    height: 14px;
    background: linear-gradient(to left, #FF7518 0%, rgba(255, 117, 24, 0) 100%);
}

.heading-title p {
    margin-top: 15px;
    font-size: 14px;
    color: #444;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
    font-style: italic;
    opacity: 0.85;
}

/* Who-are-we */
.who-we-are {
    padding: 40px 0;
}

.who-we-are-wrapper {
    position: relative;
}

.who-we-are img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.swiper {
    width: 100%;
    max-width: 1200px;
}

.swiper-slide {
    background-position: center;
    background-size: cover;
    width: 70%;
    max-width: 960px;
    transition: transform 0.5s ease;
}

/* MenuMobile submenu */
.mobile-has-submenu {
    position: relative;
}
.box_logo_header {
    display: flex;
    align-items: center;
}
.mobile-menu-item-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
}

.mobile-menu-link {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.mobile-submenu-trigger {
    background: none;
    border: none;
    padding: 12px 16px;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.mobile-menu-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-submenu-arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
    margin-left: auto;
    color: #888;
}

.mobile-submenu-arrow.rotated {
    transform: rotate(180deg);
}

.mobile-menu-item .active-span{
    font-weight: 600;
}

.mobile-menu-link:hover {
    background-color: #f5f5f5;
}

.mobile-submenu-trigger:hover {
    background-color: #f0f0f0;
}

.mobile-submenu-trigger:hover .mobile-submenu-arrow {
    color: #333;
}

.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    background-color: #fafafa;
    border-radius: 8px;
    padding: 0;
    transition: 0.2s all;
}

.mobile-submenu.active {
    max-height: 800px;
    padding: 4px 0;
}

.mobile-submenu-item {
    list-style: none;
}

.mobile-submenu-item a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.mobile-submenu-level-3 {
    background-color: #f9f9f9;
    padding-left: 10px;
}

.mobile-submenu-level-3 .mobile-submenu-item a {
    font-size: 14px;
}

.mobile-submenu-level-4 {
    background-color: #f9f9f9;
    padding-left: 20px;
}

.mobile-submenu-level-4 .mobile-submenu-item a {
    font-size: 14px;
}

.mobile-submenu-level-5 {
    background-color: #f9f9f9;
    padding-left: 30px;
}

.mobile-submenu-level-5 .mobile-submenu-item a {
    font-size: 14px;
}
/* Signage Service */
.signage_services {
    color: #fff;
    padding: 80px 20px;
    text-align: center;
}

.signage_services_header .subtitle {
  color: #ff7518;
  font-size: 36px;
  margin-bottom: 10px;
}

.signage_services_header .title {
  font-size: 45px;
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 50px;
}

.signage_services_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.service_item {
  background: transparent;
  padding: 20px;
  transition: all 0.3s ease;
}

.signage_services_list .service_item:nth-child(2) {
  margin-top: -30px;
}

.service_item .icon {
  font-size: 64px;
  color: #ff7518;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.service_item h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}

.service_item .underline {
  display: block;
  width: 120px;
  height: 8px;
  background-color: #FF7518;
  margin: 0 auto 20px;
  border-radius: 2px;
  transition: transform 0.3s ease, height 0.3s ease;
}

.service_item p {
  font-size: 16px;
  line-height: 1.6;
  color: #ffffff;
  font-weight: 400;
}

.service_item:hover .icon {
  transform: translateY(-10px);
}

.service_item:hover h3 {
  transform: translateY(-10px);
}

.service_item:hover .underline {
  height: 20px;
  transform: translateY(-6px);
}

/** Partner **/
.partner {
    background-size: cover;
    background-position: center;
    height: 600px;
    position: relative;
    background-image: url('../images/bg-partner.jpg');
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-position 1s ease;
}

.partner:hover {
    background-position: center 70%;
}
.partner .container {
    z-index: 2;
}

.partner-content-box {
    background-color: #ebebeb54;
    padding: 50px;
    text-align: center;
}

.partner-title-wrapper {
    margin-bottom: 40px;
}

.partner-subtitle {
    color: #D30000;
    font-size: 24px;
    font-weight: 400;
}

.partner-maintitle {
    color: var(--color-black);
    font-size: 40px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 30px;
}

.partner-wrapper {
    padding: 10px 0;
}

.partner-item {
    text-align: center;
    transition: transform 0.3s ease;
    width: 100%;
}

.partner-item:hover {
    transform: scale(1.05);
}

.partner-nav {
    display: none;
}

/** Product Hot **/
.product-hot {
    padding: 60px 0px;
}


/* Product Hot Navigation Styles */
.product-hot {
    position: relative;
}

.product-hot-wrapper {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.view_more {
    font-family: "Inter", sans-serif;
    margin-top: 20px;
    color: #FF7518;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    text-align: end;

}
/** Product **/
.product-item {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.product-item:hover {
    transform: translateY(-8px);
}

.product-image-wrapper {
    position: relative;
}

.product-item .thumb {
    position: relative;
}

.product-item .thumb img {
    width: 100%;
    border-radius: 8px;
}


.product-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-150%, -50%);
    opacity: 0; 
    transition: all 0.6s ease;
    white-space: nowrap;
}

.product-item:hover .product-overlay {
    transform: translate(-50%, -50%);
    opacity: 1; 
}

.more_product {
    background: linear-gradient(45deg, #ff6b35, #ff8c42);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.more_product i {
    font-size: 16px;
}
/* Product Info */
.product-item .info {
    padding: 16px;
    height: 120px;
    text-align: center;
}

.product-item .info h3 {
    margin: 0 0 8px 0;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 600;
}

.product-item .info h3 a {
    color: #7A7A7A;
    line-height: 1.6;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.product-item .info h3 a:hover {
    color: #ff6b35;
}

.product-item .info p {
    margin: 0 0 12px 0;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

/** Product category **/
.product-category {
    padding: 60px 0;
}

/** News Index **/
.news-index {
    padding: 60px 0;
}

.owl-news .owl-dots .owl-dot span {
    width: 36px;
    height: 3px;
    border-radius: 3px;
}

.owl-news .owl-dots .owl-dot.active span {
    background: #e60023;
}

.news-item-index {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    background: #fff;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.news-item-index:hover {
    transform: translateY(-4px);
}

.news-item-index .thumb img {
    width: 100%;
    height: auto;
    display: block;
}

.news-item-index .info {
    padding: 16px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-item-index h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
}

.news-item-index h3 a {
    color: #333;
    text-decoration: none;
}

.news-item-index:hover h3 a {
    color: var(--color-orange);
}

.news-item-index p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: auto;
}

.btn-read-more {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 12px;
    font-size: 14px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.btn-read-more .arrow {
    display: inline-block;
    margin-left: 6px;
    transition: transform 0.3s ease;
    font-size: 16px;
}

.btn-read-more:hover {
    color: #007bff;
}

.btn-read-more:hover .arrow {
    transform: translateX(6px);
}
/* About */
.static_content * {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.static_content {
    line-height: 1.5;
    color: var(--bg-menu);
}
.static_content h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.static_content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.static_content p {
    font-size: 15px;
    margin-bottom: 15px;
}
.static_content img {
    width: 100% !important;
    height: auto !important;
    margin: 10px 0;
    object-fit: contain;

}

/** Menu mobile **/
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    display: block;
}

.mobile-menu {
    display: block;
    position: fixed;
    top: 0;
    left: -70%;
    width: 70%;
    height: 100%;
    background-color: #fff;
    z-index: 999;
    overflow-y: auto;
    transition: left 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #ebebeb;
}

.mobile-logo {
    max-width: 150px;
}

.mobile-logo img {
    max-width: 100%;
    height: auto;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: var(--text-color-black);
    font-size: 18px;
    cursor: pointer;
    width: 30px;
    height: 30px;
}

.mobile-search {
    width: 200px;
    padding: 15px;
    overflow: hidden;
    position: relative;
}

.mobile-search form {
    display: flex;
    align-items: center;
    position: relative;
    justify-content: flex-end;
    border: var(--text-color-red) dashed 1px;
    border-radius: 20px;
}

.mobile-search input {
    width: 100px;
    padding: 8px 10px;
    outline: none;
    font-size: 14px;
    border: none;
}

.mobile-search button {
    background: var(--background-button);
    border: none;
    outline: none;
    padding: 8px 8px;
    border-radius: 30px;
    cursor: pointer;
    min-width: 36px;
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    color: var(--text-color-white);
}

.mobile-search.active button {
    background: var(--main-background);
}

.mobile-search.active button i {
    filter: brightness(0) saturate(100%) invert(24%) sepia(94%) saturate(7465%)
        hue-rotate(0deg) brightness(91%) contrast(122%);
    color: var(--text-color-red);
}

.mobile-search input::placeholder {
    color: var(--text-color-red);
    font-weight: 500;
    font-size: 16px;
}

.mobile-header .mobile-search {
    flex: 1;
    padding: 0 10px;
    max-width: 170px;
    margin-right: 10px;
}

.mobile-header .mobile-search form {
    justify-content: flex-end;
}

.mobile-menu .mobile-search {
    width: 100%;
    max-width: 100%;
    border-bottom: 1px solid #ebebeb;
}

.mobile-menu .mobile-search form {
    justify-content: space-between;
}

.mobile-menu .mobile-search input {
    width: 100%;
    opacity: 1;
    border: 1px solid #ddd;
    padding: 10px 15px;
}

.mobile-menu .mobile-search button {
    position: absolute;
    right: 5px;
}

.mobile-nav {
    padding: 15px 0;
    flex: 1;
}

.mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-item {
    border-bottom: 1px solid #f5f5f5;
}

.mobile-menu-item a {
    display: flex;
    align-items: center;
    padding: 15px;
    color: var(--text-color-black);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}

.mobile-menu-item.active a {
    color: var(--text-color-red);
}

.mobile-menu-item i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.mobile-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 15px;
    border-top: 1px solid #ebebeb;
}

.mobile-social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
    border-radius: 50%;
    color: var(--text-color-black);
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
}

.mobile-social-link:hover {
    background-color: var(--background-blue);
    color: #fff;
}

.mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    display: none;
}

.mobile-menu-toggle {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-header-logo {
    max-width: 140px;
}

.mobile-header-logo img {
    max-width: 100%;
    height: auto;
}

.mobile-header-actions {
    display: flex;
}

.mobile-search-toggle {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Language Section */
.mobile-language-section {
    border-top: 1px solid #ebebeb;
    padding: 20px 15px;
    margin-top: auto;
    background-color: #f8f9fa;
}

.mobile-language-title {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color-black);
}

.mobile-language-title i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
    color: var(--text-color-blue);
    font-size: 16px;
}

.mobile-language-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-lang-btn {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background-color: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-color-black);
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.mobile-lang-btn .flag-icon {
    width: 24px;
    height: 16px;
    margin-right: 12px;
    border-radius: 2px;
    object-fit: cover;
    border: 1px solid #ddd;
}

.mobile-lang-btn span {
    flex: 1;
    font-weight: 500;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/** Static page **/
.static-main {
    padding-top: 10px;
    padding-bottom: 30px;
}

.title-main {
    font-size: 28px;
    color: var(--bg-menu);
    text-transform: uppercase;
    position: relative;
    letter-spacing: 1px;
    text-align: center;
    margin: 16px 0;
}

/** Breadcrumb **/

.breadcrumb-nav {
    margin:10px 0;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 8px;
  background: linear-gradient(to left, #002c92, #0f0031);
    border-radius: 8px;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: #fff;
}

.breadcrumb-link {
    color: #fff;
    text-decoration: none;
    padding: 0.3rem 0.5rem;
    border-radius: 4px;
    transition: color 0.2s ease-in-out;
}

.breadcrumb-link:hover {
    color: var(--color-orange);
    background-color: transparent;
}

.breadcrumb-current {
    font-weight: bold;
    color: #333;
    padding: 0.3rem 0.5rem;
}

.breadcrumb-separator {
    margin: 0 0.5rem;
    color: #999;
}

/** Empty data **/
.empty-state {
    text-align: center;
    padding-bottom: 60px;
    padding-top: 24px;
}

.empty-content i {
    font-size: 64px;
    color: #ffffff;
    margin-bottom: 20px;
}

.empty-content h3 {
    color: #ffffff;
    margin-bottom: 10px;
}

.empty-content p {
    color: #ffffff;
    margin-bottom: 30px;
}

.empty-content a {
    color: #ffffff;
}

/** Phone fixed **/
.fixed-social {
    position: fixed;
    bottom: 4rem;
    right: 0.5rem;
    padding: 1.25rem;
    z-index: 1000;
}

.fixed-social .link-item {
    position: relative;
    margin-bottom: 0.625rem;
}

.fixed-social .link-item span {
    position: absolute;
    width: 0;
    height: 100%;
    top: 0.625rem;
    right: 0;
    left: 0;
    margin: 0 auto;
    z-index: 0;
    font-size: 3.75rem;
    border: 3px solid rgb(56, 32, 41);
    border-right: 0;
}

.fixed-social .social-button {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 46px;
    height: 46px;
    margin-bottom: 0.625rem;
    background-color: var(--color-orange);
    border-radius: 50%;
    font-size: 1.5rem;
    color: white;
    text-decoration: none;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.social-button svg {
    width: 24px;
    height: 24px;
}

.fixed-social .social-button:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.fixed-social .social-button img {
    width: 1.75rem;
    height: auto;
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-box-shadow: 0 0 0 0 rgba(146, 22, 30, 0.7);
        box-shadow: 0 0 0 0 rgba(146, 22, 30, 0.7);
    }

    70% {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
        -webkit-box-shadow: 0 0 0 10px rgba(146, 22, 30, 0);
        box-shadow: 0 0 0 10px rgba(146, 22, 30, 0);
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-box-shadow: 0 0 0 0 rgba(146, 22, 30, 0);
        box-shadow: 0 0 0 0 rgba(146, 22, 30, 0);
    }
}

@keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-box-shadow: 0 0 0 0 rgba(146, 22, 30, 0.7);
        box-shadow: 0 0 0 0 rgba(146, 22, 30, 0.7);
    }

    70% {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
        -webkit-box-shadow: 0 0 0 10px rgba(146, 22, 30, 0);
        box-shadow: 0 0 0 10px rgba(146, 22, 30, 0);
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-box-shadow: 0 0 0 0 rgba(146, 22, 30, 0);
        box-shadow: 0 0 0 0 rgba(146, 22, 30, 0);
    }
}

.pulse-1 {
    -webkit-animation: pulse 0.8s infinite;
    animation: pulse 0.8s infinite;
}

.pulse-2 {
    -webkit-animation: pulse 1.2s infinite 0.2s;
    animation: pulse 1.2s infinite 0.2s;
}

.pulse-3 {
    -webkit-animation: pulse 1.5s infinite 0.4s;
    animation: pulse 1.5s infinite 0.4s;
}

.pulse-4 {
    -webkit-animation: pulse 1.7s infinite 0.1s;
    animation: pulse 1.7s infinite 0.1s;
}

.link-item-phone {
    position: relative;
}

.phone-sub {
    position: absolute;
    right: calc(100% + 12px);
    min-width: 150px;
    max-width: 250px;
    background-color: var(--color-orange);
    border-radius: 6px;
    bottom: 0px;
    transform-origin: bottom right;
    transform: scale(0);
    transition: 0.3s all;
}

.phone-sub.open {
    transform: scale(1);
}

.phone-sub-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 5px;
    border-bottom: 1px solid #e3e3e3;
    color: #fff;
}

.phone-sub-item:last-child {
    border-bottom: 0px;
}

.phone-sub-item i {
    color: #fff;
    transform: rotate(90deg);
    width: 30px;
    height: 30px;
    margin-right: 5px;
}

.phone-sub-item .icon {
    color: var(--color-01);
    width: 30px;
    height: 30px;
    margin-right: 5px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;

    svg {
        fill: var(--color-01);
    }
}

.phone-sub-item:hover {
    span:not(.icon) {
        opacity: 0.6;
    }
}
/* Category Modal (Off-Canvas) */
.category-modal {
    position: fixed;
    top: 0;
    right: 0; /* Hiện từ bên phải */
    width: 100%;
    height: 100%;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.category-modal.active {
    opacity: 1;
    visibility: visible;
}

.category-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    transition: opacity 0.3s ease;
}

.category-modal-content {
    position: absolute;
    top: 0;
    right: -100%; 
    height: 100%;
    width: 60%;
    max-width: 700px;
    background-color: #f5f5f5;
    box-shadow: -2px 0 15px rgba(0,0,0,0.2);
    overflow-y: auto;
    transition: right 0.4s ease;
    display: flex;
    flex-direction: column;
}

.category-modal.active .category-modal-content {
    right: 0; /
}

/* Header */
.category-modal-header {
    padding: 25px 30px;
    border-bottom: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    position: sticky;
    top: 0;
    z-index: 1;
}

.category-modal-header h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
}

.category-modal-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    padding: 6px;
    transition: color 0.3s ease;
}

.category-modal-close:hover {
    color: #000;
}

/* Body */
.category-modal-body {
    font-family: "Raleway", sans-serif;
    padding: 30px;
    flex: 1;
    overflow-y: auto;
    background-color: #E3E3E3;
}

.category-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.category-column {
    padding: 0;
}

.category-title {
    margin: 0 0 15px 0;
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    text-transform: uppercase;
    line-height: line height/24px;
}

.category-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.category-list li {
    margin-bottom: 10px;
}

.category-list a {
    color: #000000;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.category-list a:hover {
    color: #ff7518;
}

#google_language_translator {
    display: none;
}

#goog-gt-tt,
.goog-te-balloon-frame,
#goog-gt-feedback,
#goog-gt-voting .google-te-banner-frame {
    display: none !important;
}

.language a {
    color: var(--text-color-white);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s;
    cursor: pointer;
    display: inline-block !important;
}

.language a:hover {
    color: var(--text-color-red);
}

.notranslate {
    translate: no;
    display: flex !important;
    gap:5px;
}
.goog-logo-link {
    display: none !important;
    font-size: 0px !important;
}

.goog-te-gadget {
    color: transparent !important;
    font-size: 0px !important;
}

.VIpgJd-ZVi9od-l4eHX-hSRGPd,
.VIpgJd-ZVi9od-l4eHX-hSRGPd:link,
.VIpgJd-ZVi9od-l4eHX-hSRGPd:visited,
.VIpgJd-ZVi9od-l4eHX-hSRGPd:hover,
.VIpgJd-ZVi9od-l4eHX-hSRGPd:active {
    display: none;
}

.goog-te-gadget img {
    display: none !important;
}

body>.skiptranslate {
    display: none;
    
}

body {
    top: 0px !important;
}


/* Responsive */
@media (max-width: 992px) {
    .category-modal-content {
        width: 80%;
    }
    .category-columns {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .category-modal-content {
        width: 100%;
    }
}


/* 4K and Ultra-wide Screens */
@media (min-width: 1600px) {
}

/* Ultra Large Devices (Extra Large Desktop) */
@media (max-width: 1599px) {
}

/* XXL Devices (Large Desktop) */
@media (max-width: 1399px) {
}

/* Extra Large Devices (Small Desktop) */
@media (max-width: 1199px) {
    .why-choice-us-wrapper {
        gap: 16px;
    }

    .why-choice-us-item h3 {
        font-size: 16px;
        height: 40px;
    }
}

/* Large Devices (Tablets) */
@media (max-width: 991px) {
}

/* Medium Devices (Tablets) */
@media (max-width: 767px) {
    .partner-item img {
            width: 100%;
        }
}

/* Small Devices (Phones) */
@media (max-width: 575px) {
}

/* Extra Small Devices */
@media (max-width: 374px) {
}
