/* Widox Theme - Custom Overrides & Modern UI Components */

/* Defensive Font Lock - Ensuring Icons Always Load */
* {
    font-family: "Poppins", sans-serif;
}

i,
[class^="fa-"],
[class*=" fa-"],
.fas,
.fab,
.far,
.fa {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", "Font Awesome 5 Free", "Font Awesome 5 Brands", "font-awesome" !important;
    font-style: normal !important;
    font-weight: 900 !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
strong,
.fw-bold,
b,
.counter {
    font-weight: 700 !important;
}

:root {
    --widox-gold: #E1B12C;
    --widox-dark: #1B1B1B;
    --widox-gray: #F4F4F4;
    --widox-text: #666666;
    --tp-theme-1: #E1B12C !important;
    --tp-common-black: #1B1B1B !important;
    --tp-ff-heading: 'Poppins', sans-serif !important;
    --tp-ff-body: 'Poppins', sans-serif !important;
}

html,
body {
    overflow-x: hidden !important;
    width: 100%;
}

body {
    color: var(--widox-text);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--tp-ff-heading);
    font-weight: 700;
}

.btn-widox {
    background-color: var(--widox-gold);
    color: var(--widox-dark);
    padding: 15px 35px;
    font-weight: 600;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 14px;
}

.btn-widox:hover {
    background-color: var(--widox-dark);
    color: var(--widox-gold);
}

.header-top {
    background-color: var(--widox-dark);
    color: #fff;
    padding: 10px 0;
    font-size: 14px;
}

.header-top .contact-info span {
    margin-right: 25px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.header-top .contact-info i {
    color: var(--widox-gold);
}

.header-top .social-links {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.header-top .social-links a:hover {
    color: var(--widox-gold);
}

/* Enhanced Floating Pill Header - Creative & Intuitive */
.main-header {
    background-color: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.03);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.main-header.fixed-pill {
    position: fixed;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    max-width: 1400px;
    border-radius: 50px;
    padding: 8px 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    z-index: 1010;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Ensuring the container stays balanced inside the pill */
.fixed-pill .container {
    max-width: 100%;
}

.logo-blue {
    filter: brightness(0) saturate(100%) invert(35%) sepia(96%) saturate(1900%) hue-rotate(195deg) brightness(90%) contrast(100%);
}

.search-trigger {
    background: transparent;
    border: none;
    color: var(--widox-dark);
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.search-trigger:hover {
    background: var(--widox-gold);
    color: var(--widox-dark);
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(225, 177, 44, 0.3);
}

.mobile-menu-trigger {
    background: transparent;
    border: none;
    color: var(--widox-dark);
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-trigger:hover {
    color: var(--widox-gold);
}

.navbar-brand {
    font-size: 28px;
    font-weight: 800;
    color: var(--widox-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

.navbar-brand img {
    height: 70px;
    /* Increased from 40px */
    width: auto;
    transition: all 0.3s ease;
}

.fixed-pill .navbar-brand img {
    height: 50px;
    /* Increased from 30px */
}

.nav-link {
    font-weight: 700;
    color: var(--widox-dark);
    margin: 0 12px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none !important;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
    padding: 10px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--widox-gold);
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--widox-gold);
}

.nav-link i {
    font-size: 8px;
    transition: transform 0.4s;
    opacity: 0.7;
}

.nav-item:hover .nav-link i {
    transform: rotate(180deg);
    color: var(--widox-gold);
}

.fixed-pill .nav-link {
    margin: 0 8px;
    padding: 5px 0;
}

/* Dropdown Styles */
.nav-item {
    position: relative;
    list-style: none;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background: #fff;
    min-width: 240px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border-radius: 16px;
    padding: 20px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 1000;
    display: block;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    padding: 12px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--widox-dark);
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    background: transparent;
}

.dropdown-item::after {
    content: '\f061';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 10px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    color: var(--widox-gold);
}

.dropdown-item:hover {
    background: rgba(225, 177, 44, 0.05);
    color: var(--widox-gold);
    padding-left: 35px;
}

.dropdown-item:hover::after {
    opacity: 1;
    transform: translateX(0);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 70vh;
    /* Reduced from 90vh */
    background: url('assets/img/custom/hero_bg.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    color: #fff;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* Slightly Darkened Overlay */
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-subtitle {
    color: var(--widox-gold);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 20px;
    display: block;
    font-size: 16px;
}

.hero-title {
    font-size: 70px;
    line-height: 1.1;
    margin-bottom: 30px;
    font-weight: 700;
    color: #fff;
    /* Explicit White */
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    /* Visibility Boost */
}

.hero-text {
    font-size: 18px;
    margin-bottom: 40px;
    color: #fff;
    /* Changed from #ddd to Solid White */
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* About Section */
.about-section {
    padding: 60px 0;
}

.about-title {
    font-size: 48px;
    margin-bottom: 25px;
}

.feature-list {
    list-style: none;
    margin-top: 30px;
}

.feature-list li {
    margin-bottom: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-list li i {
    color: var(--widox-gold);
    font-size: 20px;
}

/* Service Section */
.service-section {
    background-color: var(--widox-gray);
    padding: 120px 0;
}

.service-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s;
    position: relative;
    margin-bottom: 30px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-thumb {
    height: 300px;
    overflow: hidden;
}

.service-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.service-card:hover .service-thumb img {
    transform: scale(1.1);
}

.service-icon-badge {
    width: 60px;
    height: 60px;
    background: var(--widox-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 270px;
    left: 30px;
    z-index: 2;
    color: var(--widox-dark);
    font-size: 24px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.service-content {
    padding: 50px 30px 30px;
}

/* Call to Action */
.cta-section {
    position: relative;
    background: url('../img/custom/cta_bg.png') no-repeat center center/cover;
    padding: 100px 0 160px;
    text-align: center;
    color: #fff;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
}

.play-btn {
    width: 100px;
    height: 100px;
    background: var(--widox-gold);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--widox-dark);
    margin-bottom: 30px;
    position: relative;
}

.play-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--widox-gold);
    border-radius: 50%;
    animation: pulse-border 2s infinite;
}

@keyframes pulse-border {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.stats-bar-wrapper {
    position: absolute;
    bottom: -80px;
    left: 0;
    width: 100%;
    z-index: 10;
}

.stats-bar {
    background-color: var(--widox-gold);
    color: var(--widox-dark);
    padding: 50px 20px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 5px;
    color: var(--widox-dark);
}

.stat-item p {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 0;
    color: var(--widox-dark);
    text-transform: capitalize;
}

.btn-widox.white-bg {
    background-color: #fff;
    color: var(--widox-dark);
}

.btn-widox.white-bg:hover {
    background-color: var(--widox-dark);
    color: #fff;
}

footer {
    background-color: var(--widox-dark);
    color: #fff;
    padding: 80px 0 30px;
}

footer a {
    color: #aaa;
    transition: 0.3s;
}

footer a:hover {
    color: var(--widox-gold);
}

.footer-title {
    font-size: 24px;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.footer-title::after {
    content: '';
    width: 40px;
    height: 2px;
    background: var(--widox-gold);
    position: absolute;
    bottom: 0;
    left: 0;
}

.newsletter-form {
    display: flex;
    margin-top: 20px;
}

.newsletter-form input {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    padding: 15px;
    color: #fff;
    width: 70%;
}

.newsletter-form button {
    background: var(--widox-gold);
    border: none;
    padding: 15px;
    width: 30%;
    color: var(--widox-dark);
    font-weight: 700;
}

/* Social Proof Badge */
.floating-badge {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.avatar-group {
    display: flex;
}

.avatar-group img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -15px;
}

.avatar-group img:first-child {
    margin-left: 0;
}

/* Portfolio Showcase Styles */
.portfolio-showcase-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.portfolio-item {
    margin-bottom: 50px;
    position: relative;
}

.portfolio-item:hover {
    transform: translateY(-5px);
}

.portfolio-item-box {
    background: #fff;
    border: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
}

.portfolio-item-box h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: var(--widox-dark);
}

.portfolio-arrow {
    width: 35px;
    height: 35px;
    background: var(--widox-gold);
    color: var(--widox-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: 0.3s;
}

.portfolio-item:hover .portfolio-arrow {
    background: var(--widox-dark);
    color: var(--widox-gold);
}

.portfolio-img {
    width: 100%;
    height: auto;
    display: block;
}

.gray-bg-soft {
    background-color: #fafafa;
}

/* Creative Product Slider Styles improvement */
.product-slider-section {
    padding: 120px 0;
    background: #fff;
    position: relative;
}

.product-slider-item {
    background: #fff;
    border-radius: 20px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    text-align: center;
    border: 1px solid #f0f0f0;
    overflow: hidden;
    position: relative;
}

.product-slider-thumb {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.product-slider-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s ease;
}

.product-slider-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(225, 177, 44, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.4s;
    padding: 30px;
    color: var(--widox-dark);
    z-index: 2;
}

.product-slider-item:hover .product-slider-item-overlay {
    opacity: 1;
}

.product-slider-item:hover .product-slider-thumb img {
    transform: scale(1.15) rotate(2deg);
    filter: blur(2px);
}

.product-slider-content {
    padding: 25px;
    background: #fff;
    position: relative;
    z-index: 3;
}

/* Part 1: Wood Information Section (Species) */
.wood-info-section {
    padding: 140px 0;
    background: #fdfdfd url('https://www.transparenttextures.com/patterns/wood-pattern.png');
    color: var(--widox-dark);
    position: relative;
    border-top: 5px solid var(--widox-gold);
}

.wood-cards-row {
    position: relative;
}

.wood-card {
    background: #fff;
    border: 2px solid #f1f1f1;
    padding: 50px 40px;
    border-radius: 15px;
    transition: all 0.4s ease;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.wood-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--widox-gold);
    transform: scaleX(0);
    transition: 0.4s;
    transform-origin: left;
}

.wood-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.wood-card:hover::before {
    transform: scaleX(1);
}

.wood-icon {
    font-size: 50px;
    color: var(--widox-gold);
    margin-bottom: 25px;
    display: inline-block;
}

/* Part 2: Wood Wisdom Section - Brand New UI */
.wood-wisdom-section {
    padding: 140px 0;
    background-color: var(--widox-dark);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.wood-wisdom-content {
    position: relative;
    z-index: 1;
}

.wisdom-feature-box {
    background: rgba(255, 255, 255, 0.03);
    border-left: 4px solid var(--widox-gold);
    padding: 30px;
    margin-bottom: 30px;
    transition: 0.3s;
    border-radius: 0 15px 15px 0;
}

.wisdom-feature-box:hover {
    background: rgba(225, 177, 44, 0.08);
    transform: translateX(10px);
}

.wisdom-img-mask {
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111;
    position: relative;
}

.wisdom-img-mask img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    transition: 0.8s;
}

.swiper-slide-active .wisdom-img-mask img {
    transform: scale(1.05);
}

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

.wisdom-prev,
.wisdom-next {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    pointer-events: auto;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.wisdom-prev:hover,
.wisdom-next:hover {
    background: var(--widox-gold);
    color: #000;
    border-color: var(--widox-gold);
}

.wisdom-feature-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
}

.wisdom-feature-box h5 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 5px;
    transition: 0.3s;
}

.wisdom-feature-box p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
    transition: 0.3s;
    font-size: 15px;
}

.wisdom-feature-box:hover {
    background: var(--widox-gold);
    transform: translateY(-5px);
    border-color: var(--widox-gold);
    box-shadow: 0 15px 30px rgba(225, 177, 44, 0.3);
}

.wisdom-feature-box:hover h5,
.wisdom-feature-box:hover p,
.wisdom-feature-box:hover .text-widox-gold {
    color: var(--widox-dark) !important;
}

.wood-wisdom-section h1,
.wood-wisdom-section h2,
.wood-wisdom-section h3,
.wood-wisdom-section h4,
.wood-wisdom-section h5 {
    color: #ffffff !important;
}

/* Testimonials Overhaul - Market Trend Design */
.testimonial-section {
    padding: 60px 0;
    background-color: #fdfdfd;
    background-image: radial-gradient(circle at 20% 20%, rgba(225, 177, 44, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(225, 177, 44, 0.03) 0%, transparent 40%);
    position: relative;
    overflow: hidden;
}

.testimonial-box {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 35px 30px;
    border-radius: 25px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.03);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(0.95);
    opacity: 0.5;
    text-align: left;
    position: relative;
    border: 1px solid rgba(225, 177, 44, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.testimonial-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--widox-gold);
    opacity: 0;
    transition: 0.4s;
}

.swiper-slide-active .testimonial-box {
    transform: scale(1.02);
    opacity: 1;
    box-shadow: 0 25px 50px rgba(225, 177, 44, 0.1);
    border-color: rgba(225, 177, 44, 0.3);
    background: #fff;
}

.swiper-slide-active .testimonial-box::before {
    opacity: 1;
}

.quote-icon-modern {
    font-size: 45px;
    color: var(--widox-gold);
    opacity: 0.1;
    position: absolute;
    top: 20px;
    right: 20px;
    line-height: 1;
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 20px;
    font-weight: 400;
    position: relative;
    font-style: italic;
}

.testimonial-box .stars {
    background: rgba(225, 177, 44, 0.1);
    display: inline-flex;
    padding: 6px 12px;
    border-radius: 50px;
    margin-bottom: 15px;
}

.testimonial-box .stars i {
    color: var(--widox-gold);
    font-size: 12px;
    margin: 0 2px;
}

.client-info {
    display: flex;
    align-items: center;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.client-info img {
    width: 55px;
    height: 55px;
    border-radius: 15px;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.08);
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: #28a745;
    font-weight: 600;
    margin-top: 4px;
}

.testimonial-pagination {
    margin-top: 50px !important;
}

.testimonial-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--widox-dark);
    opacity: 0.1;
    margin: 0 8px !important;
    transition: 0.4s;
}

.testimonial-pagination .swiper-pagination-bullet-active {
    width: 40px;
    border-radius: 10px;
    background: var(--widox-gold);
    opacity: 1;
}

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

.testimonial-prev,
.testimonial-next {
    width: 65px;
    height: 65px;
    background: #fff;
    color: var(--widox-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.4s;
    pointer-events: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 18px;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: var(--widox-gold);
    color: #fff;
    transform: scale(1.1);
}

/* About Section Wood Pattern */
.about-section {
    position: relative;
    background: url('https://www.transparenttextures.com/patterns/wood-pattern.png');
    background-color: #fff;
}

/* Base improvements */
.section-space-large {
    padding: 140px 0;
}

/* Mobile Responsiveness Overrides */
@media (max-width: 991px) {
    .hero-title {
        font-size: 50px;
    }

    .navbar-brand {
        font-size: 24px;
    }

    .about-section,
    .service-section,
    .product-slider-section,
    .portfolio-showcase-section,
    .testimonial-section {
        padding: 80px 0;
    }

    .stats-bar-wrapper {
        position: relative;
        bottom: 0;
        margin-top: 40px;
    }

    .stats-bar {
        flex-direction: column;
        gap: 30px;
        padding: 40px;
        width: 100% !important;
    }

    .cta-section {
        padding: 80px 0 0;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 40px;
    }

    .hero-section {
        height: auto;
        padding: 100px 0;
    }

    .portfolio-item-box h4 {
        font-size: 16px;
    }

    .floating-badge {
        display: none !important;
    }
}

/* Scroll Progress Bar - Creative Touch */
.scroll-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: transparent;
    z-index: 1020;
}

.scroll-progress-bar {
    height: 100%;
    background: var(--widox-gold);
    width: 0%;
    transition: width 0.1s ease-out;
    box-shadow: 0 0 10px var(--widox-gold);
}

/* Offcanvas Menu Styling - Premium & Intuitive */
.widox-offcanvas {
    position: fixed;
    top: 0;
    right: -100%;
    width: 350px;
    height: 100vh;
    background: var(--widox-dark);
    z-index: 2000;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    padding: 60px 40px;
    color: #fff;
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.5);
}

.widox-offcanvas.active {
    right: 0;
}

.offcanvas-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.offcanvas-close:hover {
    background: var(--widox-gold);
    color: var(--widox-dark);
    border-color: var(--widox-gold);
    transform: rotate(90deg);
}

.offcanvas-menu nav ul {
    list-style: none;
    padding: 0;
    margin-top: 50px;
}

.offcanvas-menu nav ul li {
    margin-bottom: 25px;
}

.offcanvas-menu nav ul li a {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.offcanvas-menu nav ul li a:hover {
    color: var(--widox-gold);
    padding-left: 10px;
}