/* Google Fonts imports removed to avoid network errors when offline.
    Using system font stack fallbacks instead. */
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300;400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700;800&display=swap');
@font-face {
    font-family: 'Industry';
    src: url('../fonts/Industry-Bold.woff2') format('woff2'),
        url('../fonts/Industry-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Industry-Demi';
    src: url('../fonts/Industry-Demi.woff2') format('woff2'),
        url('../fonts/Industry-Demi.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* ===== BASE RESET ===== */
*, *::before, *::after {
    box-sizing: border-box;
}

body {
    background-color: #2125291f;
    font-family: 'Roboto Condensed', 'Open Sans', sans-serif;
    overflow-x: hidden;
}

ul, p, h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
}

li {
    list-style-type: none;
}

a {
    transition: 0.45s;
}

a:hover {
    text-decoration: none;
}

input:focus-visible {
    outline: none !important;
}

img {
    max-width: 100%;
    height: auto;
}

/* Product color swatches */
.factured-product {
    display: flex;
    flex-direction: column;
    position: relative;
}
.factured-product a {
    position: relative;
    display: block;
    overflow: hidden;
}
.product-hover-icons {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 10;
}
.factured-product:hover .product-hover-icons {
    opacity: 1;
    pointer-events: all;
}
.product-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.8rem;
    height: 2.8rem;
    background: rgba(0, 105, 62, 0.95);
    color: #fff;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
    text-align: center;
}
.product-icon:hover {
    background: rgba(0, 105, 62, 1);
    transform: scale(1.2);
    box-shadow: 0 6px 16px rgba(0, 105, 62, 0.5);
    text-decoration: none;
    color: #fff;
}
.product-icon i {
    line-height: 51PX;
    transition: transform 0.3s ease;
}
.product-color-group{
    position: absolute;
    top: 0.75rem;
    left: 0.5rem;
    z-index: 1;
    display: grid;
    gap: 0.6rem;
    align-items: flex-start;
    padding: 0.5rem;
    flex-wrap: wrap;
}
.product-color-swatch{
    width: 1.3rem;
    height: 1.3rem;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.9);
    box-shadow: 0 0 0 1px rgba(15,23,42,0.1), inset 0 0 0 1px rgba(15,23,42,0.05);
    display: inline-block;
    cursor: default;
    transition: none;
}
.product-color-swatch:hover{
    transform: none;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.9), inset 0 0 0 1px rgba(15,23,42,0.05);
}
.product-color-swatch.active{
    box-shadow: 0 0 0 2px rgba(255,255,255,0.9), 0 0 0 3px rgba(34, 197, 94, 0.75);
}
.product-color-swatch[title]{
    cursor: help;
}

/* Cart item color preview */
.item-color-image img { border-radius: 4px; }
.cart-swatch { vertical-align: middle; }

/***************************************/

.carousel-indicators {
    display: none;
}

/* ===== BANNER / CAROUSEL ===== */
.carousel-item {
    position: relative;
}

.carousel-item img {
    width: 100%;
    height: auto;
    min-height: 250px;
    object-fit: cover;
}

#carouselExampleIndicators {
    position: relative;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.45), rgba(0,0,0,0.45));
    z-index: 1;
}

.banner-content {
    position: absolute;
    z-index: 2;
    top: 35%;
    left: 50px;
    color: #fff;
    max-width: 640px;
    padding: 20px;
}

.banner-content h1 {
    font-family: 'Roboto Condensed', 'Open Sans', sans-serif;
    font-size: 48px;
    line-height: 1.05;
    margin-bottom: 12px;
}

.banner-content .lead {
    font-size: 18px;
    margin-bottom: 20px;
    color: #f1f1f1;
}

.banner-content a:hover {
    text-decoration: none;
    background: #fff;
    color: #494949;
}

.btn-cta {
    display: inline-block;
    padding: 12px 28px;
    background: rgb(0, 105, 62);
    color: #fff;
    border-radius: 30px;
    text-transform: uppercase;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background: #000;
    color: #fff;
    text-decoration: none;
}

.btn-primary {
    display: inline-block;
    padding: 12px 28px;
    background: rgb(0, 105, 62);
    color: #fff;
    border: 2px solid rgb(0, 105, 62);
    border-radius: 30px;
    text-transform: uppercase;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #084f33;
    border-color: #084f33;
    color: #fff;
}

.btn-secondary {
    display: inline-block;
    padding: 12px 28px;
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.9);
    border-radius: 30px;
    text-transform: uppercase;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    margin-left: 12px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.08);
    text-decoration: none;
}

.page-section {
    background: #ffffff;
    padding: 80px 0;
}

.page-section.bg-light {
    background: #f7f7f7;
}

.page-section h1 {
    font-family: 'Roboto Condensed', 'Open Sans', sans-serif;
    font-size: 40px;
    margin-bottom: 24px;
    color: #153d23;
}

.page-section p,
.page-section ul {
    color: #333;
    line-height: 1.8;
}

.page-section ul {
    padding-left: 20px;
}

.page-section ul li {
    margin-bottom: 12px;
}

/* ===== CAROUSEL CONTROLS ===== */
.previse {
    position: absolute;
    top: 34%;
    z-index: 9999;
    left: 2%;
    text-align: center;
}

.previse i::before {
    font-size: 40px;
    padding: 10px 22px;
    border-radius: 30px;
    line-height: 109px;
    background-color: rgba(0, 105, 61, 0.384);
    transition: 0.25s ease;
    color: #ffffff;
}

.previse:hover i {
    color: #fff;
}

.next {
    position: absolute;
    top: 34%;
    z-index: 1;
    right: 5%;
    text-align: center;
}

.next i::before {
    font-size: 40px;
    line-height: 109px;
    background-color: rgba(0, 105, 61, 0.384);
    color: #ffffffb0;
    transition: 0.45s;
    padding: 10px 22px;
    border-radius: 30px;
}

.next:hover i {
    color: #fff;
}

/* ===== SCROLL REVEAL ANIMATIONS ===== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    visibility: hidden;
    transition: opacity 0.9s ease, transform 0.9s ease, visibility 0.9s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.scroll-reveal-left,
.scroll-reveal-right,
.scroll-reveal-fade,
.scroll-reveal-zoom {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.9s ease, transform 0.9s ease, visibility 0.9s ease;
}

.scroll-reveal-left {
    transform: translateX(-40px);
}

.scroll-reveal-right {
    transform: translateX(40px);
}

.scroll-reveal-fade {
    transform: translateY(40px);
}

.scroll-reveal-zoom {
    transform: scale(0.92);
}

.scroll-reveal-left.revealed,
.scroll-reveal-right.revealed,
.scroll-reveal-fade.revealed,
.scroll-reveal-zoom.revealed {
    opacity: 1;
    transform: none;
    visibility: visible;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1400px;
    overflow: hidden;
}
.bar{
    display: flex;
    background-color: #fff;
    width: 243px;
    height: 54px;
    -webkit-clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
    align-items: center;
    padding-left: 18px;
}
/* Allow nav dropdowns inside hero/category sections to overflow */
.categories,
.categories .container,
.categories .row,
.categories .col-md-6,
.nav-area,
.nav-area li {
    overflow: visible !important;
}

/* ===== HEADER AREA ===== */
.header-area {
    background-color: #171717;
    padding: 12px 0;
    border-bottom: 1px solid #3a3a3a;
}

.header-area .row {
    align-items: center;
    flex-wrap: nowrap;
    gap: 0;
}

.header-area .col-md-4 {
    flex-shrink: 0;
}

.header-area .col-md-8 {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
    flex-wrap: nowrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-align: center;
    flex-wrap: nowrap;
}

.logo p {
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    font-family: 'Roboto Condensed', sans-serif;
    padding-top: 0;
    margin: 0;
    white-space: nowrap;
}

.logo img {
    max-width: 60px;
    max-height: 60px;
    width: auto;
    height: auto;
    flex-shrink: 0;
}

.contact-us {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact {
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.contact li img {
    padding-right: 4px;
    max-height: 20px;
    width: auto;
}

.contact li {
    color: #fff;
    font-size: 14px;
    font-family: 'Roboto Condensed', sans-serif;
}

.languega li {
    color: #fff;
    font-size: 16px;
    font-family: 'Roboto Condensed', sans-serif;
}

.languega li img {
    padding: 0 9px 0 29px;
}

.languega {
    display: flex;
}

.languega a {
    color: #fff;
}

.search {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
}

.search li {
    color: #fff;
    font-size: 14px;
    font-family: 'Roboto Condensed', sans-serif;
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
    position: relative;
    white-space: nowrap;
}

.search a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #fff;
    font-size: 14px;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.search a i {
    font-size: 18px;
}

.search .wishlist-btn,
.search .cart-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 12px;
    background: rgba(255,255,255,0.08);
}

.search .wishlist-btn:hover,
.search .cart-btn:hover,
.search .search-btn:hover {
    background: rgba(255,255,255,0.16);
}

.search .cart-btn {
    position: relative;
}

.search .cart-btn i {
    font-size: 20px;
}

.search .cart-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background-color: #0b6f43;
    color: #fff;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
    border: 1px solid rgba(255,255,255,0.9);
}

.search .search-btn {
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.08);
    padding: 8px 14px;
    border-radius: 12px;
    font-size: 12px;
    text-transform: uppercase;
    white-space: nowrap;
}

.search .search-btn:hover {
    background: rgba(255,255,255,0.14);
}

#search {
    position: fixed;
    inset: 0;
    z-index: 100005;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.85);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 24px;
}

#search.open {
    opacity: 1;
    visibility: visible;
}

#search .search-box {
    width: 100%;
    max-width: 520px;
    padding: 40px 32px;
    background: rgba(0, 0, 0, 0.801);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

#search .search-box h2 {
    margin-bottom: 12px;
    color: #ffffff;
    font-size: 28px;
    letter-spacing: 0.5px;
}

#search .search-box p {
    margin-bottom: 28px;
    color: #cbd5e1;
    font-size: 15px;
}

#search .search-box form {
    display: grid;
    gap: 14px;
}

#search .search-box input[type="search"] {
    width: 100%;
    padding: 16px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.04);
    color: #f8fafc;
    font-size: 16px;
}

#search .search-box input[type="search"]::placeholder {
    color: rgba(255,255,255,0.6);
}

#search .search-box button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border: none;
    border-radius: 12px;
    background: #0b6f43;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.25s ease;
}

#search .search-box button:hover {
    background: #000;
    color: #fff;
}

#search .close-search {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 50%;
    background: rgba(255,255,255,0.07);
    color: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

#search .close-search:hover {
    background: rgba(255,255,255,0.16);
}

.search .hamburger, .search .headphone {
    display: none;
    font-size: 24px;
}

.sidenav-overlay {
    position: fixed;
    inset: 0;
    z-index: 99998;
    background: rgba(0, 0, 0, 0.55);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.sidenav-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.sidenav {
    height: 100%;
    width: 320px;
    position: fixed;
    z-index: 99999;
    top: 0;
    right: 0;
    background-color: rgba(16, 24, 40, 0.98);
    overflow-x: hidden;
    overflow-y: auto;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.35s ease, visibility 0s linear 0.35s;
    padding: 24px 18px;
    color: #f8fafc;
}

.sidenav.active {
    transform: translateX(0);
    visibility: visible;
    transition: transform 0.35s ease, visibility 0s linear 0s;
}

body.menu-open {
    overflow: hidden;
}

.sidenav .closebtn {
    position: absolute;
    top: 22px;
    left: 18px;
    font-size: 28px;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.sidenav-content {
    margin-top: 72px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.sidenav-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

.sidenav-logo img {
    width: 52px;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

.sidenav-logo p {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin: 0;
}

.sidenav nav ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sidenav nav ul li {
    position: relative;
}

.sidenav nav ul li > a,
.sidenav nav ul li > button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: transparent;
    border: none;
    color: #f8fafc;
    font-size: 18px;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 500;
    text-align: left;
    padding: 12px 0;
    cursor: pointer;
    transition: color 0.25s ease, background 0.25s ease;
}

.sidenav nav ul li > button.active {
    color: #78c158;
}

.sidenav nav ul li > button i {
    transition: transform 0.3s ease;
}

.sidenav nav ul li > a:hover,
.sidenav nav ul li > button:hover {
    color: #78c158;
}

.sidenav nav ul .dropdown-menu {
    display: none;
    position: static;
    padding: 12px 16px;
    margin-top: 10px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
    color: #e2e8f0;
}

.sidenav nav ul li.open > .dropdown-menu {
    display: block;
}

.sidenav nav ul .dropdown-menu li a {
    display: block;
    color: #e2e8f0;
    font-size: 16px;
    padding: 10px 0;
    text-decoration: none;
}

.sidenav nav ul .dropdown-menu li a:hover {
    color: #fff;
}

.sidenav nav ul li > button.active i {
    transform: rotate(180deg);
}

button:focus {
    outline: unset !important;
}

.sidenav button.toggle {
    width: 100%;
}
.cart-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background-color: #0b6f43;
    color: #fff;
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
    margin-left: -8px;
}

.search li img {
    max-height: 24px;
    width: auto;
}

.cart-overlay,
.search-overlay {
    position: fixed;
    inset: 0;
    z-index: 100005;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.85);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 24px;
}

.cart-overlay.open,
.search-overlay.open {
    opacity: 1;
    visibility: visible;
}

.cart-box,
.search-box {
    width: 100%;
    max-width: 560px;
    padding: 40px 32px;
    background: rgba(0, 0, 0, 0.685);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.cart-box h2,
.search-box h2 {
    margin-bottom: 12px;
    color: #ffffff;
    font-size: 28px;
    letter-spacing: 0.5px;
}

.cart-box p,
.search-box p {
    margin-bottom: 24px;
    color: #cbd5e1;
    font-size: 15px;
}

.cart-items {
    display: grid;
    gap: 18px;
    margin-bottom: 24px;
}

.cart-item {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
}

.cart-item .item-image img {
    width: 84px;
    border-radius: 12px;
}

.item-details h3 {
    margin: 0 0 6px;
    font-size: 18px;
    color: #ffffff;
}

.item-details p {
    margin: 4px 0;
    color: #cbd5e1;
    font-size: 14px;
}

.cart-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    margin-bottom: 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
}

.cart-summary span {
    color: #cbd5e1;
}

.cart-summary strong {
    font-size: 20px;
    color: #ffffff;
}

.cart-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.cart-actions .btn {
    min-width: 140px;
}

.cart-empty {
    text-align: center;
    padding: 20px;
    color: #cbd5e1;
    font-size: 15px;
}
.cart-actions button{
    background-color: #0b6f43;
    color: #fff;
    padding: 12px 28px;
    font-weight: 600;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 14px;
}

.cart-actions .btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.close-cart,
.close-wishlist {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 50%;
    background: rgba(255,255,255,0.07);
    color: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.close-cart:hover,
.close-wishlist:hover {
    background: rgba(255,255,255,0.16);
}

#wishlist {
    position: fixed;
    inset: 0;
    z-index: 100005;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.85);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 24px;
}

#wishlist.open {
    opacity: 1;
    visibility: visible;
}

.wishlist-box {
    width: 100%;
    max-width: 560px;
    padding: 40px 32px;
    background: rgba(0, 0, 0, 0.685);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.wishlist-box h2 {
    margin-bottom: 12px;
    color: #ffffff;
    font-size: 28px;
    letter-spacing: 0.5px;
}

.wishlist-box p {
    margin-bottom: 24px;
    color: #cbd5e1;
    font-size: 15px;
}

.wishlist-items {
    display: grid;
    gap: 18px;
    margin-bottom: 24px;
}

.wishlist-item {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
}

.wishlist-item .item-image img {
    width: 84px;
    border-radius: 12px;
}

.wishlist-item .item-details {
    flex: 1;
    min-width: 0;
}

.wishlist-item h3 {
    margin: 0 0 6px;
    font-size: 18px;
    color: #ffffff;
}

.wishlist-item p {
    margin: 4px 0;
    color: #cbd5e1;
    font-size: 14px;
}

.remove-wishlist {
    border: none;
    background: #dc3545;
    color: #ffffff;
    padding: 10px 18px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    white-space: nowrap;
}

.remove-wishlist:hover {
    background: #bd2130;
}

.wishlist-empty {
    padding: 24px 20px;
    margin-bottom: 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px dashed rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    color: #cbd5e1;
    font-size: 15px;
}

.wishlist-count {
    font-size: 16px;
    font-weight: 400;
    color: #94a3b8;
}

.wishlist-actions {
   display: grid;
    justify-content: center;
    gap: 12px;
}

.wishlist-actions .btn {
    min-width: 140px;
}

.wishlist-actions .btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

/* Keep header compact for one-line display */
@media (max-width: 767px) {
    .header-area .row {
        flex-wrap: wrap;
    }
    .logo img {
        max-width: 50px;
        max-height: 50px;
    }
    .logo p {
        font-size: 16px;
    }
    .search li {
        font-size: 12px;
    }
    .search .hamburger {
        display: inline-flex;
    }
    .categories {
        display: none;
    }
    .sidenav {
        width: min(320px, 100%);
    }
}

/* ===== CATEGORIES / NAV BAR ===== */
.categories .row {
    align-items: center;
}

.categories {
    background-color: #171717;
}



.bar li {
    text-align: center;
    display: flex;
}

.bar p {
    padding: 0 5px 0 13px;
    font-size: 18px;
    font-family: 'Roboto Condensed', sans-serif;
}

.bar a {
    color: #1e1e1e;
}

/* About page refinements */
.page-section .lead {
    font-size: 18px;
    color: #2d2d2d;
    margin-bottom: 12px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 28px;
}

.about-feature {
    background: #ffffff;
    border-radius: 8px;
    padding: 18px;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

.about-feature h3 {
    color: #153d23;
    font-size: 20px;
    margin-bottom: 8px;
}

.about-feature p {
    color: #444;
    line-height: 1.6;
    margin: 0;
}

.about-feature .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(0,105,62,0.08);
    color: #0b6f43;
    font-size: 22px;
    margin-bottom: 12px;
}

@media (max-width: 767px) {
    .about-features { grid-template-columns: 1fr; }
    .page-section { padding: 40px 0; }
}

.bar a span {
    padding-left: 8px;
    font-size: 16px;
    font-family: 'Roboto Condensed', sans-serif;
}



.drop i {
    padding-top: 5px;
}

/* ===== NAV AREA DROPDOWN FIXES ===== */
/* .nav-area li {
    position: relative;
}

.nav-area {
    display: flex;
    justify-content: center;
    position: relative;
} */

.nav-area > li > a,
.nav-area > li > .toggle {
    color: #fff;
    font-size: 18px;
    font-family: 'Roboto Condensed', sans-serif;
    padding: 18px;
    display: inline-block;
    background: transparent;
    border: none;
    cursor: pointer;
    font-weight: 500 !important;
}
.nav-area > li > a{
    color: #fff;
    font-size: 18px;
    font-family: 'Roboto Condensed', sans-serif;
    padding: 18px;
    display: inline-block;
    background: transparent;
    border: none;
    cursor: pointer;
    font-weight: 500;
}

/* .nav-area li:hover > .dropdown-menu,
.nav-area li.open > .dropdown-menu {
    display: block !important;
}

.nav-area .dropdown-menu li {
    width: 100%;
}
.nav-area .dropdown-menu li a {
    padding: 10px 18px;
    color: #fff;
    display: block;
    transition: background 0.2s ease, color 0.2s ease;
}

.nav-area .dropdown-menu li a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.nav-area, .categories, .nav-area li {
    overflow: visible !important;
}

/* Ensure nav dropdowns appear above carousel and overlays */
/*.nav-area .dropdown-menu {
    z-index: 100006 !important;
    pointer-events: auto !important;
}
.nav-area li.open > .dropdown-menu {
    display: block !important;
} */




/* ===== HEADER SOCIAL ICONS ===== */
.icons {
    display: flex;
    justify-content: flex-end;
}

.icons i {
    font-size: 20px;
}

.insta a {
    margin-right: 0 !important;
}

.icons img {
    padding-bottom: 5px;
}

.icons a {
    width: 36px;
    height: 36px;
    display: inline-block;
    margin-right: 10px;
    background-color: #fff;
    border-radius: 30px;
    line-height: 37px;
    text-align: center;
    color: #0a0a0a;
    padding-left: 2px;
}

/* ===== FOOTER ===== */
footer .container {
    max-width: 1170px;
}

footer {
    background-color: #141414;
}

.footer {
    padding: 80px 0 94px 0;
}

.look h2 {
    font-size: 36px;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    color: #fff;
    padding-bottom: 25px;
}

.look img {
    padding-bottom: 25px;
}

.look p {
    color: #d7d7d7;
    line-height: 25px;
    font-size: 17px;
    font-family: 'Roboto Condensed', sans-serif;
    padding-bottom: 21px;
}

.look-icons {
    display: flex;
    justify-content: flex-start;
    padding-top: 20px;
}

.look-icons i {
    font-size: 20px;
}

.look-icons img {
    padding-bottom: 5px;
}

.look-icons a {
    width: 36px;
    height: 36px;
    display: inline-block;
    margin-right: 10px;
    background-color: #fff;
    border-radius: 30px;
    line-height: 37px;
    text-align: center;
    color: #0a0a0a;
    padding-left: 2px;
}

.footer .col-md-3 {
    border-right: 1px solid #222222;
    padding-bottom: 46px;
}

.link h2 {
    padding-bottom: 30px;
    color: #fff;
    font-size: 20px;
    font-family: 'Roboto Condensed', sans-serif;
}

.nav-box a {
    color: #fff;
    font-size: 18px;
    font-family: 'Roboto Condensed', sans-serif;
    display: inline-block;
    padding-bottom: 4px;
}

.company p {
    font-size: 18px;
    font-family: 'Roboto Condensed', sans-serif;
    color: #d7d7d7;
    font-weight: 700;
    padding-bottom: 15px;
    display: inline-block;
}

.company h2 {
    font-size: 18px;
    font-family: 'Roboto Condensed', sans-serif;
    color: #d7d7d7;
    line-height: 25px;
}

.company span {
    padding-left: 26px;
}

.company i {
    padding-right: 13px;
    font-size: 20px;
    color: rgb(0, 105, 62);
}

.wera a {
    display: flex;
    color: rgb(0, 105, 62);
}

.wera p {
    padding: 10px 0 0 6px;
    color: #d7d7d7;
}

.wera i {
    font-size: 20px;
}

/* ===== NEWSLETTER / EMAIL ===== */
.email {
    background: linear-gradient(180deg, #f4f7fb 0%, #eef4fb 100%);
    padding: 72px 0;
}

.email .container {
    padding: 0;
}

.email-panel {
    background: #4950574d;
    border-radius: 32px;
    border: 1px solid rgba(16, 24, 40, 0.08);
    box-shadow: 0 24px 60px rgba(15, 44, 90, 0.08);
    padding: 36px 40px !important;
    max-width: 1180px;
    margin: 0 auto;
}

.newletter {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.newletter h2 {
    font-size: 32px;
    line-height: 1.05;
    color: #0f172a;
    letter-spacing: -0.02em;
    margin: 0;
}

.newletter p {
    font-size: 15px;
    color: #556376;
    max-width: 420px;
    margin: 0;
}

.email-bar {
    display: flex;
    justify-content: flex-end;
}

.email-bar form {
    width: 100%;
    max-width: 760px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
}

.email-bar input {
    flex: 1 1 0;
    min-width: 0;
    height: 58px;
    padding: 16px 22px;
    border-radius: 999px;
    border: 1px solid #dbeafe;
    color: #334155;
    background-color: #fff;
    font-size: 15px;
    font-family: 'Roboto Condensed', sans-serif;
    box-shadow: inset 0 1px 3px rgba(15, 23, 42, 0.05);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.email-bar input:focus {
    outline: none;
    border-color: #4f85ff;
    box-shadow: 0 0 0 4px rgba(0, 146, 233, 0.12);
}

.email-bar button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 170px;
    padding: 16px 26px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgb(0, 105, 62) 0%, rgb(0, 105, 62) 100%);
    color: #fff;
    border: 0;
    font-size: 14px;
    font-family: 'Roboto Condensed', sans-serif;
    text-transform: uppercase;
    line-height: 1;
    font-weight: 700;
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
    cursor: pointer;
    white-space: nowrap;
}

.email-bar button:hover {
    transform: translateY(-1px);
    box-shadow: 0 22px 44px rgba(0, 146, 233, 0.24);
    filter: brightness(1.04);
}

.email-bar button i {
    font-size: 14px;
}

/* ===== BOTTOM FOOTER ===== */
.bottom-footer {
    padding: 29px 0 28px 0;
}

.copy-rigth p {
    font-size: 17px;
    font-family: 'Roboto Condensed', sans-serif;
    color: #d7d7d7;
}

.design {
    display: flex;
    padding-left: 30%;
}

.design h2 {
    font-size: 17px;
    font-family: 'Roboto Condensed', sans-serif;
    color: #d7d7d7;
}

.design p {
    font-size: 17px;
    font-family: 'Roboto Condensed', sans-serif;
    padding-left: 4px;
    line-height: 21px;
    color: #000;
}

/* ===== INSTAGRAM / SOCIAL ===== */
.follower-photo {
    display: flex;
}

.insta-img {
    text-align: center;
    padding-top: 41px;
}

.insta-img h2 {
    font-size: 24px;
    font-family: 'Roboto Condensed', sans-serif;
    text-transform: uppercase;
    color: #211d14;
    padding: 15px 0 33px 0;
}

.soical-pack .container {
    max-width: 1378px;
}

/* ===== FEATURED PRODUCT (LARGE) ===== */
.factured-product-l img {
    position: relative;
    transition: all 2s cubic-bezier(0, 0, 0.2, 1);
}

.product-text {
    position: absolute;
    top: 7%;
    left: 50%;
    transform: translatex(-50%);
}

.product-text p {
    font-size: 26px;
    color: #fff;
    text-transform: uppercase;
    font-family: 'Roboto Condensed', sans-serif;
    transition: 0.45s;
    letter-spacing: 2.5px;
    text-align: center;
}

.produce-text {
    position: absolute;
    top: 7%;
    left: 33%;
    transform: translatex(-23%);
}

.produce-text h2 {
    font-size: 30px;
    color: #fff;
    text-transform: uppercase;
    font-family: 'Industry';
    transition: 0.45s;
}

.factured-product-l {
    margin: 0 11px;
}
.feature_products{
    position: relative;
    overflow: visible;
}

.factured-product-l a:hover p {
    color: #53a52d;
}

.factured-product-l a:hover h2 {
    color: #53a52d;
}

.factured-product-l a:hover img {
    transform: translateY(-20px);
}

.pack {
    padding: 40px 0;
}

/* ===== ONLINE CATALOG ===== */
.online-cateloge {
    padding: 40px 0 40px;
}

.owl-prev{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 8px;
    color: #1e1e1e;
    z-index: 9999;
}
.owl-next{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 8px;
    color: #1e1e1e;
    z-index: 9999;
}


.download button {
    position: absolute;
    top: 0;
    right: 0;
    width: 55px;
    height: 58px;
    border: 0;
    color: #fff;
    background-color: rgb(0, 105, 62);
}

.view {
    position: absolute;
    bottom: 9%;
    left: 52%;
}

.view p {
    background-color: #0c0c0c;
    color: #f2f2f2;
    border: 1px solid #0c0c0c;
    border-color: #3b3b3b;
    width: 235px;
    height: 58px;
    line-height: 55px;
    padding-left: 20px;
    position: relative;
    font-size: 18px;
    font-family: 'Roboto Condensed', sans-serif;
}

.view button {
    position: absolute;
    top: 0;
    right: 0;
    width: 55px;
    height: 58px;
    border: 0;
    color: #fff;
    background-color: rgb(0, 105, 62);
}

/* ===== EXHIBIT / FAIR ===== */
.exhibit {
    padding-top: 30px;
    display: flex;
    justify-content: space-around;
}

.scrollbar {
    height: 322px;
    background: #e8e8e8;
    overflow-y: scroll;
    width: 660px;
}

.scroller {
    background: #e8e8e8;
}

.fair h2 {
    padding: 33px 0 0;
}

.fair-text h2 {
    font-size: 13px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 800;
    color: #fff;
    background-color: rgb(0, 105, 62);
    width: 94px;
    height: 28px;
    line-height: 27px;
    text-align: center;
}

.fair-text h5 {
    font-size: 15px;
    font-family: 'Roboto Condensed', sans-serif;
    color: #000;
}

.fair-text p {
    font-size: 14px;
    font-family: 'Roboto Condensed', sans-serif;
    color: #000;
}

/* ===== MISSION SECTION (OLD) ===== */
.mission {
    display: flex;
    align-items: center;
}

.our-mission {
    padding: 80px 0;
    background: url(../images/link-img.png) no-repeat;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}

.mission-text {
    background: url(../images/back.png) no-repeat;
    background-size: cover;
    text-align: center;
    margin-left: -116px;
    padding: 58px 0;
    margin-bottom: 28px;
    margin-top: 17px;
}

.mission-text p {
    padding: 24px 52px 40px;
    font-size: 16px;
    font-family: 'Roboto Condensed', sans-serif;
}

.mission-text p span {
    letter-spacing: -0.01px;
}

.nav {
    display: block;
    padding-left: 54px;
    border: 0;
}

.nav-tabs .nav-link {
    border: 0 !important;
}

.nav-items {
    text-align: center;
    padding-bottom: 10px;
}

.nav-items a {
    border-radius: 0 !important;
    width: 190px;
    height: 121px;
    line-height: 32px;
    padding: 28px 0 30px;
    background-color: #ededed !important;
    color: #000 !important;
    position: relative;
}

/* ===== MAIN MISSION SECTION ===== */
.main_mission {
    padding: 80px 0 100px;
    background: #0d0d0d;
    background-image: url('../images/mission_bg (1).png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.main_mission .mission_inner {
    display: flex;
    justify-content: center;
    align-items: center;
}

.main_mission .mission_tabs {
    width: 100%;
}

.main_mission .mission_tab_inner {
    display: flex;
    gap: 32px;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
}

.main_mission .nav-tabs {
    flex: 0 0 220px;
    width: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-bottom: 0;
    padding-left: 0;
    margin-bottom: 0;
}

.main_mission .nav-tabs .nav-item {
    width: auto;
}

.main_mission .nav-tabs .nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 14px;
    background: #ffffff;
    color: #111;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 14px;
    min-height: 120px;
    min-width: 160px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
}

.main_mission .nav-tabs .nav-link img {
    width: 62px;
    height: 62px;
    object-fit: contain;
}

.main_mission .nav-tabs .nav-link.active {
    background: #ffffff;
    border-color: rgb(0, 105, 62) !important;
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.16);
}

.main_mission .nav-tabs .nav-link.active span {
    color: rgb(0, 105, 62);
}

.main_mission .tab-content.fact-contavt {
    flex: 1 1 calc(100% - 260px);
}
/* ===== CATALOGUE SECTION ===== */
.cataloge {
    padding: 60px 0;
    background: #efefef;
}
.cataloge .cate-text h2 {
    font-family: 'Industry', 'Roboto Condensed', sans-serif;
    font-size: 36px;
    margin-bottom: 18px;
    color: #0f172a;
}
.cataloge .cate-text p {
    font-size: 16px;
    color: #4b5563;
    max-width: 640px;
    margin-bottom: 22px;
    line-height: 1.6;
}
.cataloge .btn-cta {
    padding: 12px 34px;
    background: linear-gradient(90deg, #0b6f43 0%, #0b6f43 100%);
    box-shadow: 0 12px 30px rgba(11,111,67,0.18);
}
.cataloge .cat-img {
    display: flex;
    justify-content: center;
}
.cataloge .cat-img img {
    max-width: 420px;
    border-radius: 6px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.25);
    transform: rotate(-3deg);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.cataloge .cat-img img:hover {
    transform: rotate(0deg) translateY(-6px);
    box-shadow: 0 42px 80px rgba(0,0,0,0.32);
}
@media (max-width: 767px) {
    .cataloge {
        padding: 40px 0;
    }
    .cataloge .cate-text h2 {
        font-size: 28px;
    }
    .cataloge .cat-img img {
        max-width: 320px;
        transform: none;
        box-shadow: 0 20px 40px rgba(0,0,0,0.18);
    }
    .cataloge .cate-text {
        text-align: center;
        margin-bottom: 20px;
    }
}

.main_mission .tab_inside {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.main_mission .tabimg,
.main_mission .tab_text {
    flex: 1 1 48%;
    min-width: 320px;
}

.main_mission .tabimg {
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 28px 80px rgba(0,0,0,0.26);
}

.main_mission .tabimg img {
    width: 100%;
    height: 100%;
    max-height: 520px;
    object-fit: cover;
    display: block;
}

.main_mission .tab_text_inner {
    background: #ffffff;
    color: #111;
    padding: 40px 40px;
    border-radius: 26px;
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.12);
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.main_mission .tab_text_inner h2 {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.main_mission .tab_text_inner img {
    width: 130px;
    margin: 0 auto 20px;
    display: block;
}

.main_mission .tab_text_inner p {
    font-size: 15px;
    line-height: 1.85;
    color: #444;
    margin-bottom: 32px;
}

.main_mission .tab_text_inner a span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgb(0, 105, 62);
    font-weight: 700;
    text-transform: uppercase;
}

.main_mission .tab_text_inner a span i {
    font-size: 16px;
}

.our-mission .mission .mission-inner ul li a.active:before {
    background: rgb(0, 105, 62);
}

.our-mission .mission .mission-inner ul li a.active:after {
    background: rgb(0, 105, 62);
}

.our-mission .mission .mission-inner ul li a:before {
    content: "";
    width: 4px;
    height: 100%;
    background: transparent;
    position: absolute;
    top: 0;
    right: 0;
}

.mission-our {
    padding: 0 0 40px;
}

.our-mission .mission .mission-inner ul li a:after {
    content: "";
    width: 4px;
    height: 100%;
    background: transparent;
    position: absolute;
    top: 0;
    left: 0;
}

.inner-class {
    position: absolute;
    top: 21%;
    left: 34.4%;
    background: url(../images/back.png) no-repeat;
    text-align: center;
    background-size: cover;
    padding: 58px 0;
}

.inner-class p {
    padding: 24px 52px 40px;
    font-size: 16px;
    font-family: 'Roboto Condensed', sans-serif;
}
.banner-img1{
    display: none;
}

/* ===== FEATURED PRODUCTS (CAROUSEL) ===== */
.factured {
    position: relative;
    overflow: visible;
    position: relative;
}

.facture {
    text-align: center !important;
}

.facture h2 {
    font-size: 36px;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
}

.facture img {
    padding-bottom: 31px;
}

.factured-product {
    margin: 0 11px;
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.factured-product::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.08);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.factured-product:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12);
}

.factured-product:hover::after {
    opacity: 1;
}

.factured-product a {
    display: block;
    color: inherit;
    position: relative;
    z-index: 1;
}

.factured-product a:hover p {
    background-color: rgb(0, 105, 62);
    color: #fff;
}

.factured-product a:hover img {
    border-image-source: linear-gradient(#fff, rgb(0, 105, 62));
}

.factured-product img {
    width: 100%;
    display: block;
    border-radius: 18px 18px 0 0;
    border: none;
    transition: transform 0.45s ease;
}

.factured-product:hover img {
    transform: scale(1.02);
}

.fact-text {
    position: relative;
    z-index: 2;
    padding: 18px 16px 22px;
    transition: transform 0.35s ease;
}

.factured-product:hover .fact-text {
    transform: translateY(-4px);
}

.fact-text p {
    display: inline-block;
    padding: 6px 16px;
    font-size: 13px;
    color: #fff;
    background-color: #9f9f9f;
    text-align: center;
    text-transform: uppercase;
    font-family: 'Roboto Condensed', sans-serif;
    margin-top: 15px;
    border-radius: 999px;
    transition: background-color 0.45s ease, transform 0.45s ease;
}

.fact-text h5 {
    font-size: 20px;
    font-family: 'Roboto Condensed', sans-serif;
    color: #171717;
    margin: 12px 0 6px;
}

.fact-text h6 {
    font-size: 16px;
    font-family: 'Roboto Condensed', sans-serif;
    color: #171717;
}

/* ===== OWL CAROUSEL CONTROLS ===== */

.owl-prev{
    position: absolute;
    top: 35%;
    transform: translateY(-50%);
    left: -4%;
    color: #1e1e1e;
    z-index: 9999;
}


.owl-next{
    position: absolute;
    top: 35%;
    transform: translateY(-50%);
    color: #1e1e1e;
    right: -4%;
    z-index: 9999;
}

.owl-next i {
    transition: 0.45s;
    width: 45px;
    height: 90px;
    line-height: 90px;
    text-align: center;
    border-radius: 0;
    background-color: transparent;
    font-size: 45px;
}

.owl-prev i {
    transition: 0.45s;
    width: 45px;
    height: 90px;
    line-height: 90px;
    text-align: center;
    color: #1e1e1e;
    border-radius: 0;
    background-color: transparent;
    font-size: 45px;
}

/* ===== ABOUT SECTION ===== */
.main-about {
    padding: 100px 0;
}

.heading {
    max-width: 640px;
    padding-right: 20px;
}
.heading .eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    color: rgb(0, 105, 62);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.heading h2 {
    font-size: 44px;
    color: #111;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 26px;
}

.heading p {
    font-size: 17px;
    font-family: 'Roboto Condensed', sans-serif;
    color: #444;
    line-height: 1.85;
    margin-bottom: 20px;
}

.heading p:last-child {
    margin-bottom: 0;
}

.about-highlights {
    display: flex;
    gap: 16px;
    margin: 28px 0 20px;
    flex-wrap: wrap;
}

.highlight-item {
    background: #fff;
    border-radius: 18px;
    padding: 20px 22px;
    box-shadow: 0 18px 50px rgba(25, 65, 115, 0.08);
    min-width: 210px;
    flex: 1;
}

.highlight-item h4 {
    font-size: 22px;
    color: #11294b;
    margin-bottom: 8px;
}

.highlight-item p {
    color: #65758d;
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 0;
}

.main-about .btn-cta {
    margin-top: 10px;
    padding: 14px 38px;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 999px;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
}

.bluiding {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.12);
}

.bluiding img {
    width: 100%;
    height: auto;
    display: block;
}
.btton{
    display:none;
}
.heading h3,
.heading h6,
.heading p span,
.heading h3 span,
.heading h6 span {
    letter-spacing: normal;
}

/* ===== BRAND TABS SECTION ===== */
.brand-tabs-section {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 80px 0;
    font-family: 'Roboto Condensed', sans-serif;
    background-color: #111111;
    background-image: linear-gradient(180deg, #111111 0%, #1c1c1c 100%);
}

.tabs-container {
    display: flex;
    gap: 0;
    min-height: 520px;
    border-radius: 28px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(18px);
}

.content-display-area {
    position: relative;
    flex: 2.2;
    min-height: 520px;
    overflow: hidden;
    background-color: #111111;
}

.display-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.78);
}

.text-overlay-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 58%;
    max-width: 660px;
    background: rgba(255, 255, 255, 0.94);
    padding: 54px 46px;
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.24);
    z-index: 8;
    text-align: center;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.tab-content-card {
    display: none;
}

.tab-content-card.active {
    display: block;
}

.info-boxes-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 30%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    padding: 30px 20px;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, transparent 100%);
    z-index: 4;
}

.info-box-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.08);
    padding: 18px 16px;
    border-radius: 14px;
    backdrop-filter: blur(10px);
}

.info-box-icon {
    font-size: 24px;
    min-width: 30px;
    flex-shrink: 0;
    color: #fff;
}

.info-box-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.info-box-text strong {
    font-size: 13px;
    color: #fff;
    font-weight: 700;
}

.info-box-text span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.85);
}

.section-title {
    font-size: 44px;
    font-weight: 900;
    color: #111;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.section-divider {
    width: 48px;
    height: 4px;
    margin: 0 auto 24px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(0, 146, 233, 1), rgba(0, 192, 255, 0.85));
}

.section-description {
    font-size: 15px;
    color: #555;
    line-height: 1.75;
    margin-bottom: 30px;
    font-family: 'Roboto Condensed', sans-serif;
    letter-spacing: 0.2px;
}

.know-more-btn {
    display: inline-block;
    background-color: rgb(0, 105, 62);
    color: #ffffff;
    text-decoration: none;
    padding: 14px 36px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    border-radius: 999px;
    font-family: 'Roboto Condensed', sans-serif;
}

.know-more-btn:hover {
    background-color: transparent;
    color: #000;
    border-color: #000;
}

.tabs-navigation-menu {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 35px 30px;
    overflow: visible;
    background: #f5f8fc;
}

.tab-item {
    position: relative;
    background: #ffffff;
    border: 2px solid rgba(15, 35, 65, 0.08);
    padding: 28px 18px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.35s ease;
    border-radius: 20px;
    min-height: 120px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.tab-item:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: transparent;
    border-radius: 0 4px 4px 0;
    transition: all 0.3s ease;
}

.tab-item.active {
    border-color: rgb(0, 105, 62);
    background: rgba(0, 146, 233, 0.05);
}

.tab-item.active:before {
    background: rgb(0, 105, 62);
}

.tab-item:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 146, 233, 0.25);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.tab-icon {
    font-size: 32px;
    color: #888;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: all 0.3s ease;
}

.tab-icon.mission-icon {
    color: #d73a3a;
    font-size: 28px;
}

.tab-icon.vision-icon {
    color: #666;
    font-size: 28px;
}

.tab-icon.strength-icon {
    color: #f5a623;
    font-size: 28px;
}

.tab-label {
    font-size: 12px;
    font-weight: 700;
    color: #666;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    text-align: center;
    transition: all 0.3s ease;
}

.tab-item.active .tab-label {
    color: rgb(0, 105, 62);
}

.tab-item-outlined {
    border: 2px solid rgb(0, 105, 62) !important;
    background: #fff;
}

.tab-item-outlined .tab-label {
    color: rgb(0, 105, 62);
}

.tab-item-outlined .tab-icon.strength-icon {
    color: rgb(0, 105, 62);
}

/* ===== COLLECTION SECTION ===== */
.collection {
    padding: 0 0 40px 0;
    position: relative;
    overflow: hidden !important;
}

.collection .collection-text {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    max-width: 430px;
    padding: 30px 28px;
    background: rgba(0, 0, 0, 0.45);
    border-radius: 24px;
}

.collection h2 {
    font-size: 26px;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff;
}

.collection img {
    display: block;
    width: 100%;
    border-radius: 24px;
}

.collection .collection-text h2 {
    font-size: 32px;
    line-height: 1.1;
    margin-bottom: 18px;
}

.collection .collection-text p {
    font-size: 16px;
    color: #f1f1f1;
    font-family: 'Roboto Condensed', sans-serif;
    margin: 0 0 24px;
    line-height: 1.7;
    text-align: justify;
}

.collection .collection-text .btn-cta {
    margin-top: 0;
}

.cat-img {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    height: 100%;
}

.cat-img img {
    width: 100%;
    display: block;
    border-radius: 24px;
    object-fit: cover;
}

.cat-text {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background: rgba(0, 0, 0, 0.55);
    border-radius: 22px;
    padding: 24px;
}

.cat-text h4 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 12px;
    line-height: 1.2;
}

.cat-text p {
    color: #dcdcdc;
    font-size: 15px;
    margin-bottom: 16px;
    line-height: 1.8;
}

.cat-text a {
    color: #6bd07b;
    font-weight: 700;
}

.prod-img {
    padding-left: 0;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    height: 100%;
}

.our-collection .container > .row {
    align-items: stretch;
}

.bar-area {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    padding: 0;
}

.bar-area li {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 45px rgba(0,0,0,0.1);
    min-height: 100%;
}

.bar-area li a {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #171717;
    text-decoration: none;
    padding: 0;
    height: 100%;
}

.bar-area li img {
    width: 100%;
    display: block;
    object-fit: cover;
    flex: 1 1 auto;
}

.bar-area h4 {
    font-size: 18px;
    margin: 14px 16px 6px;
    color: #111;
}

.bar-area p {
    margin: 0 16px 18px;
    color: #6f6f6f;
    font-size: 14px;
}

/* ===== STATISTICS / BACK-PIC SECTION ===== */
.back-pic {
    position: relative;
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #000000);
    background-image: url('../images/back.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed !important;
    overflow: hidden;
}

.back-pic::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(135deg, #00000057);
}

.back-pic .container,
.back-pic .control_all {
    position: relative;
    z-index: 2;
}

.back-pic .container,
.back-pic .control_all {
    opacity: 0;
    transform: translateY(30px);
    visibility: hidden;
    transition: opacity 0.9s ease, transform 0.9s ease, visibility 0.9s ease;
}

.back-pic .container.revealed,
.back-pic .control_all.revealed {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.back-pic .content {
    text-align: center;
    margin-bottom: 60px;
    color: #fff;
}

.back-pic .content h1 {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
    color: #b3e5fc;
    font-family: 'Roboto Condensed', sans-serif;
}

.back-pic .content p {
    font-size: 44px;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin: 0;
    font-family: 'Roboto Condensed', sans-serif;
}

.control_all {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.counter-container {
    flex: 1;
    min-width: 160px;
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.clooted {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.counter {
    font-size: 56px;
    font-weight: 800;
    color: #00ff88;
    font-family: 'Roboto Condensed', sans-serif;
    line-height: 1;
    min-width: 80px;
}

.clooted h2 {
    font-size: 48px;
    font-weight: 700;
    color: #00ff88;
    margin: 0;
    line-height: 1;
    padding-left: 2px;
}

.counter-container span {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 1.6;
    text-transform: uppercase;
    color: #e1f5fe;
    font-family: 'Roboto Condensed', sans-serif;
}

/* ===== FLOATING BUTTONS ===== */
.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: #25d366;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
    z-index: 9999;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.24);
    color: #fff;
    background-color: #000;
}

.whatsapp-float i {
    font-size: 20px;
}

.scroll-top {
    position: fixed;
    left: 20px;
    bottom: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: #111;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
    z-index: 9999;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    transform: translateY(-2px);
    color: #000;
    background-color: green;
}

.scroll-top i {
    font-size: 20px;
}


/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* ===== XL: ≤ 1399px ===== */
@media (max-width: 1399px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .banner-content {
        left: 40px;
        max-width: 580px;
    }

    .banner-content h1 {
        font-size: 42px;
    }

    .previse i::before,
    .next i::before {
        font-size: 34px;
        padding: 8px 18px;
        line-height: 90px;
    }

    .previse {
        left: 1.5%;
        top: 36%;
    }

    .next {
        right: 3%;
        top: 36%;
    }

    .text-overlay-card {
        width: 62%;
        padding: 44px 38px;
    }

    .section-title {
        font-size: 38px;
    }

    .info-boxes-overlay {
        width: 32%;
        padding: 24px 16px;
    }

    .info-box-item {
        padding: 14px 12px;
    }
}

/* ===== LG: ≤ 1199px ===== */
@media (max-width: 1199px) {

    .container {
          width: 100%;
        padding-right: 15px;
        padding-left: 15px;
        margin-right: auto;
        margin-left: auto;
    }

    .header-area {
        padding: 14px 0;
    }

    .logo img {
        max-width: 180px;
    }

    .header-area .col-md-8 {
        justify-content: flex-end;
        gap: 16px;
    }

    .search li {
        font-size: 14px;
    }


    .banner-content {
        left: 30px;
        max-width: 520px;
    }

    .banner-content h1 {
        font-size: 38px;
    }

    .banner-content .lead {
        font-size: 16px;
    }

    .previse i::before,
    .next i::before {
        font-size: 30px;
        padding: 6px 16px;
        line-height: 80px;
    }

    .main-about {
        padding: 80px 0;
    }

    .heading h2 {
        font-size: 38px;
    }

    .heading p {
        font-size: 20px;
        margin-bottom: 5px;
        text-align: justify;
    }

    .highlight-item {
        min-width: 180px;
    }

    .highlight-item h4 {
        font-size: 20px;
    }

    .bluiding {
        border-radius: 22px;
    }

    .brand-tabs-section {
        padding: 60px 0;
    }

    .tabs-container {
        min-height: 460px;
        border-radius: 22px;
    }

    .content-display-area {
        min-height: 460px;
    }

    .text-overlay-card {
        width: 65%;
        padding: 40px 32px;
        border-radius: 24px;
    }

    .section-title {
        font-size: 34px;
    }

    .section-description {
        font-size: 14px;
    }

    .tabs-navigation-menu {
        padding: 28px 22px;
        gap: 14px;
    }

    .tab-item {
        padding: 22px 14px;
        min-height: 110px;
    }

    .tab-icon {
        font-size: 28px;
    }

    .main_mission {
        padding: 60px 0 80px;
    }

    .main_mission .nav-tabs {
        flex: 0 0 200px;
    }

    .main_mission .tab_text_inner {
        padding: 32px 30px;
    }

    .main_mission .tab_text_inner h2 {
        font-size: 30px;
    }

    .collection .collection-text {
        max-width: 336px;
        padding: 19px 13px;
        top: 45%;
    }

    .collection .collection-text h2 {
        font-size: 28px;
    }

    .footer {
        padding: 60px 0 70px;
    }

    .look h2 {
        font-size: 30px;
    }

    .email {
        padding: 56px 0;
    }

    .email-panel {
        padding: 30px 32px !important;
        border-radius: 26px;
    }

    .newletter h2 {
        font-size: 28px;
    }

    .email-bar form {
        max-width: 660px;
    }

    .email-bar button {
        min-width: 150px;
        padding: 14px 22px;
    }
    .nav-area a {
      padding: 9px;
      font-size: 16px;
    }
    .bar {
        width: 188px;
    }
    .main-point .row{
        display: block !important;
    }
    .main-point .row .col-md-5,.col-md-7,.cate-point .row,.cate-point .row .col-md-6{
        max-width: 100% !important;
    }
    .main-point .row .col-md-5 .heading,.main-point .row .col-md-7 .bluiding{
        max-width: 100% !important;
    }
    .heading p br{
        display: none;
    }
    .heading{
        padding-bottom: 20px;
    }
    .cate-point .row{
        display: block !important;
    }

}

/* ===== MD: ≤ 991px ===== */
@media (max-width: 992px) {
    .owl-prev i,.owl-next i {
        color: #fff;
    }
    .footer .row{
        display:grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 30px; 
    }
    .main_mission .nav-tabs {
        justify-content: center;
        
    }
    .footer .col-md-3{
        max-width: unset !important;
    }
    
    .search .hamburger, .search .headphone{
        display: block;
    }
    .categories {
        display:none;
    }
    .header-area .row,
    .categories .row,
    .main-about .row,
    .online-cateloge .row,
    .email .row {
        display: flex;
    }

    .header-area .col-md-4,
    .header-area .col-md-8,
    .categories .col-md-3,
    .categories .col-md-6,
    .our-collection .col-md-6,
    .online-cateloge .col-md-6,
    .email .col-md-5,
    .email .col-md-7 {
        flex: 1 1 100%;
        max-width: 100%;
    }

    /* Header responsive */
    .header-area {
        padding: 14px 0;
    }


    .header-area .col-md-8 {
        flex: 1 1 auto;
        max-width: none;
        justify-content: flex-end;
        gap: 16px;
    }

    .logo {
        justify-content: flex-start;
        margin-bottom: 0;
        gap: 10px;
    }

    .logo img {
        max-width: 140px;
        max-height: 60px;
    }

    .logo p {
        font-size: 18px;
    }

    .contact-us {
        flex-wrap: nowrap;
        justify-content: flex-end;
        gap: 12px;
        display: none;
    }

    .contact {
        gap: 6px;
    }

    .contact li {
        font-size: 14px;
    }

    .languega li img {
        padding: 0 8px 0 16px;
    }

    .search {
        width: auto;
        justify-content: flex-end;
        gap: 14px;
        flex-wrap: nowrap;
    }

    .search li {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .search a {
        padding: 0;
        font-size: 14px;
    }

    .search .search-btn {
        padding: 8px 12px;
        font-size: 12px;
        gap: 6px;
    }

    .search .search-btn i {
        font-size: 16px;
    }

    /* Nav responsive */
    .nav-area {
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-area li {
        width: auto;
        text-align: center;
    }

    .nav-area a {
        padding: 14px 12px;
        font-size: 16px;
    }

    .drop-down,
    .drop-do,
    .drop-dow {
        position: absolute;
        width: 191px;
    }

    .bar {
        width: 200px;
        height: 48px;
        padding-left: 14px;
    }

    .bar p {
        font-size: 16px;
    }

    .icons {
        justify-content: center;
        margin-top: 8px;
    }

    /* Banner responsive */
    .banner-content {
        left: 24px;
        top: 30%;
        max-width: 480px;
    }

    .banner-content h1 {
        font-size: 34px;
    }

    .banner-content .lead {
        font-size: 15px;
        margin-bottom: 16px;
    }

    .previse i::before,
    .next i::before {
        font-size: 26px;
        padding: 6px 14px;
        line-height: 70px;
    }

    .previse {
        left: 1%;
        top: 38%;
    }

    .next {
        right: 2%;
        top: 38%;
    }

    /* Featured products */
    .factured-product {
        margin: 0 6px;
    }

    .fact-text h5 {
        font-size: 18px;
    }

    .fact-text h6 {
        font-size: 15px;
    }

    /* Collection */
    .collection .collection-text {
        top: 43%;
        max-width: 381px;
        padding: 13px 16px;
    }

    .collection .collection-text h2 {
        font-size: 24px;
    }

    .collection .collection-text p {
        font-size: 14px;
        margin-bottom: 18px;
    }

    .bar-area {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    /* Catalog */
    .download,
    .view {
        position: static;
        left: 0;
        bottom: 0;
        width: 100%;
        margin-top: 16px;
    }

    .download p,
    .view p {
        width: 100%;
        padding-left: 18px;
    }

    .download button,
    .view button {
        width: 48px;
    }

    .scrollbar {
        width: 100%;
        max-width: 100%;
        height: auto;
        max-height: 322px;
    }

    .exhibit {
        flex-direction: column;
        align-items: stretch;
    }

    .fair-text h2 {
        width: auto;
    }

    /* About section */
    .main-about {
        padding: 60px 0;
    }

    .heading h2 {
        font-size: 34px;
        margin-bottom: 20px;
    }

    .heading p {
        font-size: 15px;
    }

    .highlight-item {
        min-width: 160px;
        padding: 16px 18px;
    }

    .highlight-item h4 {
        font-size: 18px;
    }

    /* Mission tabs */
    

    .main_mission .mission_tab_inner {
        flex-direction: column;
    }

    .main_mission .nav-tabs {
        flex-direction: row;
        flex: 0 0 auto;
        overflow-x: auto;
        gap: 14px;
        padding-bottom: 8px;
        width: 100%;
        -webkit-overflow-scrolling: touch;
    }

    .main_mission .nav-item {
        flex: 0 0 auto;
    }

    .main_mission .nav-tabs .nav-link {
        min-width: 140px;
        min-height: 100px;
        padding: 14px 12px;
    }

    .main_mission .nav-tabs .nav-link img {
        width: 48px;
        height: 48px;
    }

    .main_mission .tab_inside {
        flex-direction: column;
    }

    .main_mission .tabimg,
    .main_mission .tab_text,
    .main_mission .tab-content.fact-contavt {
        flex: 1 1 100%;
        min-width: 100%;
    }

    .main_mission .tabimg img {
        max-height: 360px;
    }

    .main_mission .tab_text_inner {
        padding: 28px 24px;
        min-height: auto;
    }

    .main_mission .tab_text_inner h2 {
        font-size: 26px;
    }

    /* Brand tabs */
    .brand-tabs-section {
        padding: 50px 0;
    }

    .tabs-container {
        min-height: auto;
        flex-direction: column;
        border-radius: 22px;
    }

    .content-display-area {
        min-height: 400px;
        order: 1;
    }

    .info-boxes-overlay {
        width: 100%;
        flex-direction: row;
        padding: 14px;
        gap: 8px;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.72) 0%, transparent 100%);
    }

    .info-box-item {
        flex: 1;
        padding: 10px 8px;
        border-radius: 10px;
    }

    .info-box-icon {
        font-size: 20px;
        min-width: 24px;
    }

    .info-box-text strong {
        font-size: 11px;
    }

    .info-box-text span {
        font-size: 9px;
    }

    .text-overlay-card {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        width: 100%;
        max-width: 100%;
        padding: 32px 28px;
        margin: 0;
        border-radius: 0 0 22px 22px;
    }

    .section-title {
        font-size: 30px;
    }

    .section-description {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .tabs-navigation-menu {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 14px;
        padding: 20px 18px;
        order: 2;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .tabs-navigation-menu::-webkit-scrollbar {
        height: 5px;
    }

    .tabs-navigation-menu::-webkit-scrollbar-track {
        background: transparent;
    }

    .tabs-navigation-menu::-webkit-scrollbar-thumb {
        background: rgba(0, 146, 233, 0.3);
        border-radius: 3px;
    }

    .tab-item {
        flex: 0 0 200px;
        min-width: 200px;
        min-height: 110px;
        padding: 18px 14px;
        scroll-snap-align: start;
        border-radius: 18px;
    }

    .tab-item:hover {
        transform: none;
    }

    /* Stats */
    .back-pic {
        padding: 60px 0 50px;
    }

    .back-pic .content {
        margin-bottom: 40px;
    }

    .back-pic .content p {
        font-size: 36px;
    }

    .counter {
        font-size: 41px;
        min-width: 40px;
    }

    .clooted h2 {
        font-size: 40px;
    }

    .counter-container span {
        font-size: 13px;
    }

    /* Newsletter */
    .email {
        padding: 44px 0;
    }

    .email-panel {
        padding: 28px 24px !important;
        border-radius: 22px;
    }

    .newletter h2 {
        font-size: 26px;
    }

    .email .row {
        flex-direction: column;
    }

    .email .col-md-5,
    .email .col-md-7 {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .email-bar {
        justify-content: flex-start;
        margin-top: 20px;
    }

    .email-bar form {
        max-width: 100%;
        margin-left: 0;
    }

    /* Footer */
    .footer {
        padding: 50px 0 60px;
    }

    .footer .col-md-3 {
        border-right: none;
        border-bottom: 1px solid #222222;
        padding-bottom: 30px;
        padding-top: 20px;
    }

    .footer .col-md-3:last-child {
        border-bottom: none;
    }

    .look h2 {
        font-size: 26px;
    }

    .look p {
        font-size: 15px;
    }

    .look-icons {
        justify-content: left;
        padding-top: 0;
    }

    .link h2 {
        font-size: 18px;
        padding-bottom: 20px;
    }

    .nav-box a {
        font-size: 16px;
    }

    /* Bottom footer */
    .bottom-footer .row {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .design {
        padding-left: 0;
        justify-content: center;
    }

    .copy-rigth p {
        font-size: 15px;
    }

    /* Old mission */
    .our-mission {
        background-attachment: scroll;
        padding: 60px 0;
    }

    .mission-text {
        margin-left: 0;
        padding: 40px 20px;
    }

    .mission-text p {
        padding: 20px 24px 30px;
    }

    .nav {
        padding-left: 0;
    }

    .nav-items a {
        width: 160px;
        height: 100px;
        padding: 20px 0;
    }

    .inner-class {
        position: static;
        padding: 40px 20px;
    }

    .inner-class p {
        padding: 20px 24px 30px;
    }

    /* Owl */
    .owl-prev {
        left: 8px;
        right: auto;
        top: 45%;
    }

    .owl-next {
        right: 8px;
        left: auto;
        top: 45%;
    }

    .owl-prev i,
    .owl-next i {
        width: 36px;
        height: 70px;
        line-height: 70px;
        font-size: 36px;
    }

    .product-text p {
        font-size: 20px;
    }

    .produce-text h2 {
        font-size: 24px;
    }
}

/* ===== SM: ≤ 767px ===== */
@media (max-width: 767px) {
    /* Header */
    .header-area {
        padding: 12px 0;
    }

    .logo {
        justify-content: center;
        margin-bottom: 10px;
    }

    .logo img {
        max-width: 150px;
        max-height: 60px;
    }

    .logo p {
        font-size: 15px;
    }

    .header-area .col-md-8 {
        justify-content: center;
    }

    .contact-us,
    .search,
    .icons {
        justify-content: center;
    }

    .contact {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }

    .contact li {
        font-size: 13px;
    }

    .languega {
        justify-content: center;
    }

    .languega li {
        font-size: 14px;
    }

    .languega li img {
        padding: 0 6px 0 14px;
    }

    .search {
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px;
    }

    .search a {
        padding: 8px 12px;
        font-size: 12px;
    }

    /* Nav bar */
    .bar {
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: 48px;
        padding: 10px 14px;
        -webkit-clip-path: none;
        clip-path: none;
        border-radius: 10px;
    }

    .bar a {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .bar p {
        font-size: 15px;
        padding: 0 4px 0 8px;
    }

    .nav-area {
        flex-direction: column;
        align-items: stretch;
    }

    .nav-area li {
        width: 100%;
    }

    .nav-area a {
        display: block;
        padding: 12px 16px;
        width: 100%;
        font-size: 16px;
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .drop-down,
    .drop-do,
    .drop-dow {
        position: static !important;
        width: 100% !important;
        display: none;
        background: #1a1a1a;
        border-radius: 0 0 10px 10px;
        overflow: hidden;
    }

    .drop-down li,
    .drop-do li,
    .drop-dow li {
        border: none !important;
    }

    .drop-down a,
    .drop-do a,
    .drop-dow a {
        padding: 10px 24px;
        font-size: 15px;
        background: #1a1a1a !important;
    }

    /* Mobile dropdown toggle */
    .nav-area li .drop-down,
    .nav-area li .drop-do,
    .nav-area li .drop-dow {
        display: none !important;
    }

    .nav-area li.open .drop-down,
    .nav-area li.open .drop-do,
    .nav-area li.open .drop-dow {
        display: block !important;
    }

    .icons {
        justify-content: center;
        padding-top: 10px;
    }

    /* Banner */
    .banner-content {
        left: 16px;
        right: 16px;
        top: 25%;
        max-width: 90%;
        padding: 16px;
    }

    .banner-content h1 {
        font-size: 28px;
        margin-bottom: 8px;
    }

    .banner-content .lead {
        font-size: 14px;
        margin-bottom: 14px;
    }

    .banner-content .btn-cta,
    .banner-content .btn-secondary {
        display: block;
        width: 100%;
        text-align: center;
        margin-top: 8px;
        margin-left: 0;
        padding: 12px 20px;
    }

    .banner-content .btn-secondary {
        margin-left: 0;
    }

    

    .previse i::before,
    .next i::before {
        font-size: 22px;
        padding: 8px 14px;
        line-height: 44px;
        border-radius: 50%;
    }

    /* Featured products */
    .factured {
        padding: 30px 0;
    }

    .facture h2 {
        font-size: 28px;
    }

    .facture img {
        padding-bottom: 20px;
        max-width: 60px;
    }

    .factured-product {
        margin: 0 6px;
        overflow: hidden;
        border-radius: 18px;
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    }

    .factured-product img {
        border-radius: 18px 18px 0 0;
    }


    .fact-text h5 {
        font-size: 16px;
    }

    .fact-text h6 {
        font-size: 13px;
    }

    .factured .owl-prev,
    .factured .owl-next {
        display: none;
    }

    /* Large featured product */
    .factured-product-l {
        margin: 0 4px;
    }

    .product-text p {
        font-size: 16px;
        letter-spacing: 1.5px;
    }

    .produce-text h2 {
        font-size: 20px;
    }

    /* Collection */
    .collection {
        padding: 0 0 24px 0;
    }

    .collection .collection-text {
        position: static;
        transform: none;
        margin: 16px 0 0;
        max-width: 100%;
        background: rgba(0, 0, 0, 0.65);
        padding: 20px;
        border-radius: 20px;
    }

    .collection .collection-text h2 {
        font-size: 24px;
    }

    .collection .collection-text p {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .cat-text {
        position: static;
        margin-top: 12px;
        padding: 18px;
        border-radius: 18px;
    }

    .cat-text h4 {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .cat-text p {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .bar-area {
        grid-template-columns: 1fr;
    }

    .bar-area li {
        min-height: auto;
    }

    .bar-area h4 {
        font-size: 16px;
        margin: 12px 14px 4px;
    }

    .bar-area p {
        margin: 0 14px 14px;
        font-size: 13px;
    }

    /* Catalog */
    .online-cateloge {
        padding: 30px 0;
    }

    .download,
    .view {
        position: static;
        width: 100%;
        margin-top: 12px;
    }

    .download p,
    .view p {
        width: 100%;
        height: 50px;
        line-height: 48px;
        font-size: 15px;
        padding-left: 14px;
    }

    .download button,
    .view button {
        width: 44px;
        height: 50px;
    }

    .scrollbar {
        width: 100%;
        height: 260px;
    }

    /* Mission section */
    .main_mission {
        background-attachment: scroll;
        padding: 40px 0 60px;
    }

    .main_mission .nav-tabs {
        flex-direction: row;
        overflow-x: auto;
        gap: 12px;
        padding-bottom: 8px;
        width: 100%;
    }

    .main_mission .nav-item {
        flex: 0 0 140px;
    }

    .main_mission .nav-tabs .nav-link {
        min-width: 140px;
        min-height: 90px;
        padding: 12px 10px;
        gap: 8px;
    }

    .main_mission .nav-tabs .nav-link img {
        width: 40px;
        height: 40px;
    }

    .main_mission .tab_inside {
        flex-direction: column;
        gap: 20px;
    }

    .main_mission .tabimg,
    .main_mission .tab_text {
        min-width: 100%;
        flex: 1 1 100%;
    }

    .main_mission .tabimg img {
        max-height: 280px;
    }

    .main_mission .tab_text_inner {
        padding: 24px 20px;
        min-height: auto;
        border-radius: 20px;
    }

    .main_mission .tab_text_inner h2 {
        font-size: 24px;
        margin-bottom: 14px;
    }

    .main_mission .tab_text_inner p {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .main_mission .tab_text_inner img {
        width: 100px;
        margin-bottom: 16px;
    }

    /* About */
    .main-about {
        padding: 50px 0;
    }

    .main-about .row {
        flex-direction: column;
    }

    .heading {
        max-width: 100%;
        padding-right: 0;
        margin-bottom: 30px;
    }

    .heading h2 {
        font-size: 30px;
        line-height: 1.1;
        margin-bottom: 18px;
    }

    .heading p {
        font-size: 15px;
    }

    .about-highlights {
        gap: 12px;
        margin: 20px 0 16px;
    }

    .highlight-item {
        min-width: 140px;
        padding: 16px;
        border-radius: 14px;
    }

    .highlight-item h4 {
        font-size: 18px;
    }

    .highlight-item p {
        font-size: 13px;
    }

    .main-about .btn-cta {
        padding: 12px 30px;
        font-size: 13px;
    }

    .bluiding {
        border-radius: 20px;
    }

    /* Brand tabs */
    .brand-tabs-section {
        padding: 40px 0;
    }

    .tabs-container {
        border-radius: 18px;
        min-height: auto;
        flex-direction: column;
    }

    .content-display-area {
        min-height: 300px;
        order: 1;
    }

    .info-boxes-overlay {
        width: 100%;
        flex-direction: row;
        padding: 10px;
        gap: 6px;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.65) 0%, transparent 100%);
    }

    .info-box-item {
        flex: 1;
        padding: 8px 6px;
        border-radius: 8px;
        gap: 6px;
    }

    .info-box-icon {
        font-size: 18px;
        min-width: 20px;
    }

    .info-box-text strong {
        font-size: 10px;
    }

    .info-box-text span {
        font-size: 8px;
    }

    .text-overlay-card {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        width: 100%;
        max-width: 100%;
        padding: 28px 22px;
        margin: 0;
        border-radius: 0 0 18px 18px;
    }

    .section-title {
        font-size: 26px;
        letter-spacing: 1px;
        margin-bottom: 14px;
    }

    .section-divider {
        width: 40px;
        height: 3px;
        margin-bottom: 18px;
    }

    .section-description {
        font-size: 13px;
        margin-bottom: 22px;
    }

    .know-more-btn {
        padding: 12px 28px;
        font-size: 12px;
    }

    .tabs-navigation-menu {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 12px;
        padding: 16px 14px;
        order: 2;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .tab-item {
        flex: 0 0 180px;
        min-width: 180px;
        min-height: 100px;
        padding: 16px 12px;
        scroll-snap-align: start;
        border-radius: 16px;
        gap: 8px;
    }

    .tab-icon {
        font-size: 26px;
    }

    .tab-label {
        font-size: 11px;
    }

    /* Stats */
    .back-pic {
        padding: 44px 0 36px;
        background-attachment: scroll;
    }

    .back-pic .content {
        margin-bottom: 32px;
    }

    .back-pic .content h1 {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .back-pic .content p {
        font-size: 26px;
        line-height: 1.15;
    }

    .control_all {
        gap: 16px;
        justify-content: center;
    }

    .counter-container {
        min-width: 120px;
        gap: 10px;
    }

    .counter {
        font-size: 36px;
        min-width: 60px;
    }

    .clooted h2 {
        font-size: 30px;
    }

    .counter-container span {
        font-size: 11px;
        letter-spacing: 0.3px;
    }

    /* Newsletter */
    .email {
        padding: 32px 0;
    }

    .email .container {
        padding: 0 12px;
    }

    .email-panel {
        padding: 22px 16px !important;
        border-radius: 20px;
    }

    .newletter h2 {
        font-size: 22px;
    }

    .newletter p {
        font-size: 13px;
    }

    .email-bar form {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .email-bar input,
    .email-bar button {
        width: 100%;
    }

    .email-bar input {
        height: 50px;
        padding: 14px 18px;
        font-size: 14px;
    }

    .email-bar button {
        min-width: auto;
        padding: 14px 20px;
        justify-content: center;
    }

    /* Footer */
    .footer {
        padding: 40px 0 50px;
    }

    .footer .col-md-3 {
        border-right: none;
        border-bottom: 1px solid #222222;
        padding-bottom: 24px;
        padding-top: 16px;
    }

    .footer .col-md-3:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .look h2 {
        font-size: 24px;
        padding-bottom: 18px;
    }

    .look p {
        font-size: 14px;
        line-height: 22px;
    }

    .link h2 {
        font-size: 18px;
        padding-bottom: 16px;
    }

    .nav-box a {
        font-size: 15px;
        padding-bottom: 2px;
    }

    .company p {
        font-size: 15px;
    }

    .company h2 {
        font-size: 15px;
    }

    .wera {
        justify-content: center;
        text-align: center;
    }

    /* Bottom footer */
    .bottom-footer {
        padding: 20px 0;
    }

    .bottom-footer .row {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .copy-rigth p {
        font-size: 14px;
    }

    .design {
        padding-left: 0;
        justify-content: center;
        flex-wrap: wrap;
    }

    .design h2,
    .design p {
        font-size: 14px;
    }

    /* Old mission */
    .our-mission {
        padding: 40px 0;
        background-attachment: scroll;
    }

    .mission-text {
        margin-left: 0;
        padding: 30px 16px;
        margin-bottom: 16px;
        margin-top: 12px;
    }

    .mission-text p {
        padding: 16px 16px 24px;
        font-size: 14px;
    }

    .nav {
        padding-left: 0;
    }

    .nav-items a {
        width: 140px;
        height: 90px;
        padding: 16px 0;
    }

    .inner-class {
        position: static;
        padding: 30px 16px;
    }

    .inner-class p {
        padding: 16px 16px 24px;
        font-size: 14px;
    }

    /* Instagram */
    .insta-img {
        padding-top: 24px;
    }

    .insta-img h2 {
        font-size: 20px;
        padding: 12px 0 20px;
    }

    .follower-photo {
        flex-wrap: wrap;
        justify-content: center;
    }

    /* Exhibit / Fair */
    .exhibit {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        padding-top: 20px;
    }

    .fair h2 {
        padding: 20px 0 0;
        font-size: 24px;
    }

    .fair-text h5 {
        font-size: 14px;
    }

    .fair-text p {
        font-size: 13px;
    }

    /* Product text overlays */
    .product-text {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        text-align: center;
        padding: 12px 0;
    }

    .product-text p {
        font-size: 18px;
    }

    .produce-text {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        text-align: center;
        padding: 12px 0;
    }

    .produce-text h2 {
        font-size: 22px;
    }
}
.owl-stage-outer{
    padding-bottom: 20px;
}
/* ===== XS: ≤ 575px ===== */
@media (max-width: 575px) {
    .wishlist-item{
        display:block !important;
    }
    .toped {
        display: none;
    }
    .cat-img img{
        padding: 16px 0 0 0;
    }
    .btton {
        display: block;
    }
    .banner-img1{
        display: block;
        width: 100%;
    }
    .banner-img{
        display: none;
    }
    .banner-content .btn-cta, .banner-content .btn-secondary{
        width: 45%;
    }
    .container {
        padding-left: 12px;
        padding-right: 12px;
    }
    .product-text p{
        color: #000;
        font-size: 18px;
        font-weight: bold;
    }
    .previse,.next {
        display: none;
    }
    .collection .collection-text {
        position: absolute;
        top: 58%;
        max-width: 366px;
        padding: 13px 16px;
    }
    /* Header */
    .header-area {
        padding: 10px 0;
    }

    .logo {
        gap: 10px;
    }

    .logo img {
        max-width: 130px;
        max-height: 50px;
    }

    .logo p {
        font-size: 13px;
        padding-top: 4px;
    }

    .header-area .col-md-8 {
        gap: 10px;
    }

    .contact-us {
        gap: 8px;
    }

    .contact li {
        font-size: 12px;
    }

    .contact li img {
        padding-right: 4px;
        max-height: 16px;
    }

    .languega li {
        font-size: 12px;
    }

    .languega li img {
        padding: 0 4px 0 10px;
        max-height: 14px;
    }

    .search {
        gap: 6px;
    }

    .search a {
        padding: 6px 10px;
        font-size: 11px;
        border-radius: 6px;
    }

    .search i {
        font-size: 14px;
        padding-right: 4px;
    }

    .search img {
        max-height: 16px;
    }

    /* Nav */
    .bar {
        padding: 8px 10px;
    }

    .bar p {
        font-size: 14px;
        padding: 0 2px 0 6px;
    }

    .bar a span {
        font-size: 13px;
        padding-left: 4px;
    }

    .nav-area a {
        padding: 10px 12px;
        font-size: 14px;
    }

    .drop-down a,
    .drop-do a,
    .drop-dow a {
        font-size: 13px;
        padding: 8px 16px;
    }

    .icons a {
        width: 32px;
        height: 32px;
        line-height: 33px;
        margin-right: 6px;
    }

    .icons i {
        font-size: 16px;
    }

    /* Banner */
    .banner-content {
        left: 12px;
        right: 12px;
        top: 35%;
        max-width: 95%;
        padding: 14px;
    }

    .banner-content h1 {
        font-size: 28px;
        margin-bottom: 6px;
    }

    .banner-content .lead {
        font-size: 17px;
        margin-bottom: 10px;
    }

    .btn-cta,
    .btn-secondary {
        padding: 10px 20px;
        font-size: 12px;
    }

    .previse i::before,
    .next i::before {
        font-size: 18px;
        padding: 6px 10px;
        line-height: 36px;
    }

    /* Featured */
    .factured {
        padding: 24px 0;
    }

    .facture h2 {
        font-size: 24px;
    }

    .factured-product {
        margin: 0 2px;
    }


    .fact-text h5 {
        font-size: 14px;
    }

    .fact-text h6 {
        font-size: 12px;
    }

    /* Collection */
    .collection .collection-text {
        padding: 16px;
        border-radius: 16px;
    }

    .collection .collection-text h2 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .collection .collection-text p {
        font-size: 13px;
        margin-bottom: 14px;
        line-height: 1.6;
    }

    .collection .collection-text .btn-cta {
        padding: 10px 22px;
        font-size: 12px;
    }

    .cat-text {
        padding: 14px;
        border-radius: 14px;
        margin-bottom: 12px;
    }

    .cat-text h4 {
        font-size: 18px;
    }

    .cat-text p {
        font-size: 13px;
        line-height: 1.6;
    }

    /* About */
    .main-about {
        padding: 40px 0;
    }

    .heading h2 {
        font-size: 26px;
        margin-bottom: 14px;
    }

    .heading .eyebrow {
        font-size: 11px;
        letter-spacing: 1.5px;
        margin-bottom: 12px;
    }

    .heading p {
        font-size: 14px;
        margin-bottom: 14px;
    }

    .about-highlights {
        flex-direction: column;
        gap: 10px;
        margin: 16px 0 14px;
    }

    .highlight-item {
        min-width: 100%;
        padding: 14px;
        border-radius: 14px;
    }

    .highlight-item h4 {
        font-size: 17px;
    }

    .main-about .btn-cta {
        padding: 10px 24px;
        font-size: 12px;
        width: 41%;
        text-align: center;
    }

    /* Brand tabs */
    .brand-tabs-section {
        padding: 30px 0;
    }

    .content-display-area {
        min-height: 240px;
    }

    .info-boxes-overlay {
        padding: 8px;
        gap: 4px;
        flex-direction: column;
    }

    .info-box-item {
        padding: 6px 6px;
        border-radius: 6px;
    }

    .info-box-icon {
        font-size: 16px;
        min-width: 18px;
    }

    .info-box-text strong {
        font-size: 9px;
    }

    .info-box-text span {
        font-size: 7px;
    }

    .text-overlay-card {
        padding: 22px 16px;
    }

    .section-title {
        font-size: 22px;
        letter-spacing: 0.5px;
        margin-bottom: 10px;
    }

    .section-divider {
        width: 32px;
        height: 3px;
        margin-bottom: 14px;
    }

    .section-description {
        font-size: 12px;
        margin-bottom: 18px;
        line-height: 1.65;
    }

    .know-more-btn {
        padding: 10px 22px;
        font-size: 11px;
        letter-spacing: 1px;
    }

    .tab-item {
        flex: 0 0 150px;
        min-width: 150px;
        min-height: 90px;
        padding: 12px 10px;
        border-radius: 14px;
    }

    .tab-icon {
        font-size: 22px;
    }

    .tab-label {
        font-size: 10px;
    }

    /* Mission */
    .main_mission {
        padding: 30px 0 40px;
    }

    .main_mission .nav-tabs .nav-link {
        min-width: 120px;
        min-height: 80px;
        padding: 10px 8px;
        gap: 6px;
        border-radius: 10px;
    }

    .main_mission .nav-tabs .nav-link img {
        width: 32px;
        height: 32px;
    }

    .main_mission .nav-item {
        flex: 0 0 120px;
    }

    .main_mission .tabimg img {
        max-height: 220px;
    }

    .main_mission .tab_text_inner {
        padding: 20px 16px;
        border-radius: 16px;
    }

    .main_mission .tab_text_inner h2 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .main_mission .tab_text_inner p {
        font-size: 13px;
        line-height: 1.7;
        margin-bottom: 18px;
    }

    .main_mission .tab_text_inner img {
        width: 80px;
        margin-bottom: 12px;
    }

    /* Stats */
    .back-pic {
        padding: 36px 0 28px;
    }

    .back-pic .content {
        margin-bottom: 24px;
    }

    .back-pic .content h1 {
        font-size: 10px;
        letter-spacing: 1.5px;
    }

    .back-pic .content p {
        font-size: 22px;
    }

    .control_all {
        gap: 12px;
    }

    .counter-container {
        min-width: 45%;
        gap: 8px;
    }

    .counter {
        font-size: 30px;
        min-width: 50px;
    }

    .clooted h2 {
        font-size: 24px;
    }

    .counter-container span {
        font-size: 10px;
    }

    /* Newsletter */
    .email {
        padding: 24px 0;
    }

    .email-panel {
        padding: 18px 12px !important;
        border-radius: 16px;
    }

    .newletter h2 {
        font-size: 20px;
    }

    .newletter p {
        font-size: 12px;
    }

    .email-bar input {
        height: 46px;
        padding: 12px 16px;
        font-size: 13px;
    }

    .email-bar button {
        padding: 12px 16px;
        font-size: 12px;
    }

    /* Footer */
    .footer {
        padding: 30px 0 40px;
    }

    .footer .col-md-3 {
        padding-bottom: 20px;
        padding-top: 12px;
    }

    .look h2 {
        font-size: 22px;
    }

    .look img {
        padding-bottom: 6px;
        max-width: 80px;
    }

    .look p {
        font-size: 13px;
        line-height: 20px;
    }

    .look-icons a {
        width: 32px;
        height: 32px;
        line-height: 33px;
        margin-right: 6px;
    }

    .look-icons i {
        font-size: 16px;
    }

    .link h2 {
        font-size: 16px;
        padding-bottom: 12px;
    }

    .nav-box a {
        font-size: 14px;
    }

    .company p {
        font-size: 14px;
        padding-bottom: 10px;
    }

    .company h2 {
        font-size: 14px;
        line-height: 22px;
    }

    .company i {
        font-size: 16px;
        padding-right: 8px;
    }

    .company span {
        padding-left: 16px;
    }

    .wera a {
        font-size: 14px;
    }

    .wera p {
        padding: 6px 0 0 4px;
        font-size: 13px;
    }

    /* Bottom footer */
    .bottom-footer {
        padding: 16px 0;
    }

    .copy-rigth p {
        font-size: 12px;
    }

    .design h2,
    .design p {
        font-size: 12px;
    }

    /* Floating buttons */
    .whatsapp-float {
        right: 14px;
        bottom: 14px;
        padding: 10px 14px;
        font-size: 13px;
        gap: 6px;
    }

    .whatsapp-float i {
        font-size: 18px;
    }

    .scroll-top {
        left: 14px;
        bottom: 14px;
        width: 44px;
        height: 44px;
    }

    .scroll-top i {
        font-size: 18px;
    }

    /* Scrollbar / Fair */
    .scrollbar {
        height: 200px;
    }

    .fair h2 {
        font-size: 20px;
    }

    /* Pack / Online catalog */
    .pack {
        padding: 24px 0;
    }

    .online-cateloge {
        padding: 24px 0;
    }
}

/* ===== XXS: ≤ 400px ===== */
@media (max-width: 400px) {
    .logo img {
        max-width: 110px;
    }

    .logo p {
        font-size: 12px;
    }

    .banner-content h1 {
        font-size: 18px;
    }

    .banner-content .lead {
        font-size: 12px;
    }
    .collection .collection-text {
        top: 42%;
        max-width: 313px;
    }
    .btn-cta,
    .btn-secondary {
        padding: 8px 16px;
        font-size: 11px;
    }

    .heading h2 {
        font-size: 22px;
    }

    .section-title {
        font-size: 20px;
    }

    .counter {
        font-size: 26px;
    }

    .clooted h2 {
        font-size: 20px;
    }

    .counter-container {
        min-width: 42%;
    }

    .counter-container span {
        font-size: 9px;
    }

    .main_mission .tab_text_inner h2 {
        font-size: 18px;
    }

    .main_mission .tab_text_inner p {
        font-size: 12px;
    }

    .collection .collection-text h2 {
        font-size: 18px;
    }

    .cat-text h4 {
        font-size: 16px;
    }

    .cat-text p {
        font-size: 12px;
    }

    .know-more-btn {
        padding: 8px 18px;
        font-size: 10px;
    }

    .newletter h2 {
        font-size: 18px;
    }

    .look h2 {
        font-size: 20px;
    }

    .link h2 {
        font-size: 15px;
    }
    .look p br{
        display: none;
        text-align: justify;
    }
    .whatsapp-float {
        padding: 8px 10px;
        font-size: 12px;
    }
    .company h2{
        font-size: 13px;
    }
    .wera p {
        padding: 13px 0 0 4px;
        font-size: 13px;
    }
    .scroll-top {
        width: 40px;
        height: 40px;
    }

    .scroll-top i {
        font-size: 16px;
    }
}

/* ===== LANDSCAPE ORIENTATION FIXES ===== */
@media (max-width: 767px) and (orientation: landscape) {
    .banner-content {
        top: 15%;
    }
    .collection .collection-text {
        top: 43%;
        max-width: 381px;
        padding: 13px 16px;
    }

    .banner-content h1 {
        font-size: 24px;
    }

    .carousel-item img {
        min-height: 200px;
    }

    .content-display-area {
        min-height: 260px;
    }

    .back-pic .content {
        margin-bottom: 20px;
    }

    .back-pic .content p {
        font-size: 24px;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .whatsapp-float,
    .scroll-top,
    .previse,
    .next,
    .owl-prev,
    .owl-next {
        display: none !important;
    }

    .header-area,
    .categories,
    .brand-tabs-section,
    .email,
    footer {
        background: #fff !important;
        color: #000 !important;
    }

    .banner-overlay {
        background: none !important;
    }

    .back-pic {
        background: #f5f5f5 !important;
    }

    body {
        background: #fff !important;
    }
}

/* ===== ACCESSIBILITY: REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .scroll-reveal,
    .scroll-reveal-left,
    .scroll-reveal-right {
        opacity: 1;
        transform: none;
        visibility: visible;
        transition: none;
    }

    .factured-product-l img {
        transition: none;
    }

    .back-pic .container,
    .back-pic .control_all {
        opacity: 1;
        transform: none;
        visibility: visible;
        transition: none;
    }
}

/* ===== TOUCH DEVICE OPTIMIZATIONS ===== */
@media (hover: none) and (pointer: coarse) {
    .nav-area li:hover .drop-down,
    .nav-area li:hover .drop-do,
    .nav-area li:hover .drop-dow {
        display: none !important;
    }

    .nav-area li.open .drop-down,
    .nav-area li.open .drop-do,
    .nav-area li.open .drop-dow {
        display: block !important;
    }

    .tab-item:hover {
        transform: none;
    }

    .factured-product-l a:hover img {
        transform: none;
    }

    .know-more-btn:hover {
        background-color: rgb(0, 105, 62);
        color: #ffffff;
    }

    .whatsapp-float:hover {
        transform: none;
        background-color: #25d366;
        color: #fff;
    }

    .scroll-top:hover {
        transform: none;
        background: #111;
        color: #fff;
    }
}

/* Strong overrides for Owl nav inside the product carousel to prevent clipping */
.feature_products {
    position: relative; /* ensure positioned ancestor */
    overflow: visible !important;
}
.feature_products .owl-nav {
    position: absolute;
    inset: 0; /* fill the carousel area */
    pointer-events: none; /* allow clicks only on buttons */
}
.feature_products .owl-nav .owl-prev,
.feature_products .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: auto;
    background: transparent;
    border: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.feature_products .owl-nav .owl-prev {
    left: 12px;
}
.feature_products .owl-nav .owl-next {
    right: 12px;
}

/* reduce large nav button size on small screens */
@media (max-width: 767px) {
    .feature_products .owl-nav .owl-prev,
    .feature_products .owl-nav .owl-next {
        width: 44px;
        height: 44px;
        background: rgba(0,0,0,0.06);
        border-radius: 8px;
        font-size: 20px;
    }
    
    
}

/* Online catalog download/view overlay buttons (desktop/tablet) */
@media (min-width: 768px) {
    .online {
        position: relative;
    }
    .online .download,
    .online .view {
        position: absolute !important;
        right: 12px !important;
        z-index: 40 !important;
        display: flex !important;
        align-items: center;
        gap: 8px;
        background: transparent !important;
        padding: 0 !important;
    }

    .online .download { top: 12px !important; }
    .online .view { top: 72px !important; }

    /* hide the paragraph text on overlay; keep accessible text in DOM */
    .online .download p,
    .online .view p {
        position: absolute;
        left: -9999px;
        width: 1px;
        height: 1px;
        overflow: hidden;
    }

    .online .download button,
    .online .view button {
        width: 48px !important;
        height: 48px !important;
        background: rgb(0,105,62) !important;
        border-radius: 8px !important;
        border: 0 !important;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    }

    .online .view button { background: #0c0c0c !important; }
}
.menued {
    position: relative !important;
    z-index: 9999;
}
.down-menu{
    position: absolute !important;
    top: 10%;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: none;
}
.menued li:hover .down-menu {
    display: block !important;
}