        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header Styles */
        header {
            position: fixed;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            width: 95%;
            max-width: 1100px;
            background: rgba(89, 29, 19, 0.15);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(244, 124, 38, 0.2);
            border-radius: 50px;
            z-index: 1000;
            box-shadow: 0 8px 32px rgba(89, 29, 19, 0.3);
        }

        .nav-container {
            padding: 0 30px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 60px;
        }

        .logo {
            font-size: 1.6rem;
            font-weight: 800;
            color: #f47c26;
            text-decoration: none;
            letter-spacing: 2px;
            text-transform: uppercase;
            background: linear-gradient(135deg, #f47c26, #ff8c42);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-links {
            display: flex;
            gap: 0;
            list-style: none;
            margin: 0;
            padding: 8px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 30px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .nav-links a {
            color: #fcfaec;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            padding: 10px 20px;
            border-radius: 25px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .nav-links a:hover {
            color: #591d13;
            background: rgba(244, 124, 38, 0.9);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(244, 124, 38, 0.3);
        }

        .nav-links a.active {
            color: #591d13;
            background: #f47c26;
            box-shadow: 0 2px 8px rgba(244, 124, 38, 0.4);
        }

        .nav-toggle {
            display: none;
            background: rgba(244, 124, 38, 0.2);
            border: 1px solid rgba(244, 124, 38, 0.3);
            color: #f47c26;
            font-size: 1.2rem;
            cursor: pointer;
            padding: 8px 12px;
            border-radius: 15px;
            backdrop-filter: blur(10px);
        }

        .nav-toggle:hover {
            background: rgba(244, 124, 38, 0.3);
        }


        .lang-switch {
            background: linear-gradient(135deg, #f47c26, #ff8c42);
            border-radius: 20px !important;
            padding: 0.5rem 1rem !important;
            color: white !important;
            font-weight: 600;
            box-shadow: 0 4px 15px rgba(244, 124, 38, 0.3);
        }

        .lang-switch:hover {
            background: #e46e20;
        }

 /* ========================================== */
        /* HERO SECTION WITH PHOTO BACKGROUND */
        /* ========================================== */
        .hero {
            height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            /* ========================================== */
            /* ADD YOUR HERO IMAGE URL HERE */
            /* Replace 'YOUR_HERO_IMAGE_URL_HERE' with your image path */
            /* Examples: */
            /* background-image: url('images/hero-background.jpg'); */
            /* background-image: url('https://example.com/hero.jpg'); */
            /* ========================================== */
            background-image: url("../images/hero_bg.jpg");
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            background-attachment: fixed;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            /* Dark overlay to ensure text is readable over your background image */
            background: 
                linear-gradient(135deg, rgba(26, 26, 26, 0.6), rgba(45, 45, 45, 0.4)),
                radial-gradient(circle at 20% 80%, rgba(244, 124, 38, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(244, 124, 38, 0.2) 0%, transparent 50%);
            animation: gradientShift 8s ease-in-out infinite;
            z-index: 2;
        }

        @keyframes gradientShift {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }

        .hero-content {
            position: relative;
            z-index: 10;
            text-align: center;
            color: rgb(255, 255, 255);
            max-width: 800px;
            margin: 0 auto;
            padding: 2rem;
            animation: fadeInUp 1s ease-out;
            background: rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-content h1 {
            font-size: 4rem;
            font-weight: 700;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #fff, #f47c26);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: textGlow 3s ease-in-out infinite;
        }

        @keyframes textGlow {
            0%, 100% { filter: drop-shadow(0 0 20px rgba(244, 124, 38, 0.5)); }
            50% { filter: drop-shadow(0 0 30px rgba(244, 124, 38, 0.8)); }
        }

        .highlight {
            position: relative;
            display: inline-block;
        }

        .highlight::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, #f47c26, #ff8c42);
            transform: scaleX(0);
            transform-origin: left;
            animation: underlineExpand 2s ease-out 0.5s forwards;
        }

        @keyframes underlineExpand {
            to { transform: scaleX(1); }
        }

        .hero-content p {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            opacity: 0.1;
            animation: fadeInUp 1s ease-out 0.3s both;
        }

        .cta-button {
            display: inline-block;
            background: linear-gradient(135deg, #f47c26, #ff8c42);
            color: white;
            padding: 1rem 3rem;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 10px 30px rgba(244, 124, 38, 0.3);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            animation: fadeInUp 1s ease-out 0.6s both;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.6s ease;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(244, 124, 38, 0.5);
        }

        /* Services Section - NEW SLIDESHOW STYLE */
        .services {
            padding: 6rem 0;
            background: linear-gradient(135deg, #fcfaec, #fcfaec);
            position: relative;
            overflow: hidden;
        }

        .services::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 10% 20%, rgba(244, 124, 38, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 90% 80%, rgba(244, 124, 38, 0.05) 0%, transparent 50%);
            pointer-events: none;
        }

        .section-title {
            text-align: center;
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 3rem;
            color: #f47c26;
            position: relative;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .section-title.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #f47c26, #ff8c42);
            border-radius: 2px;
            animation: titleUnderline 1s ease-out 0.5s both;
        }

        @keyframes titleUnderline {
            from { width: 0; }
            to { width: 80px; }
        }

        /* Slideshow Container */
        .slideshow-container {
            display: flex;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scroll-behavior: smooth;
            gap: 2rem;
            padding: 2rem;
            position: relative;
            z-index: 10;
        }

        .slideshow-container::-webkit-scrollbar {
            height: 8px;
        }

        .slideshow-container::-webkit-scrollbar-track {
            background: rgba(244, 124, 38, 0.1);
            border-radius: 4px;
        }

        .slideshow-container::-webkit-scrollbar-thumb {
            background: linear-gradient(90deg, #f47c26, #ff8c42);
            border-radius: 4px;
        }

        /* Service Slide Styles */
        .service-slide {
            flex: 0 0 90%;
            max-width: 1000px;
            scroll-snap-align: center;
            display: flex;
            background: #fcfaec;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
            border-radius: 20px;
            overflow: hidden;
            min-height: 400px;
            transition: all 0.4s ease;
            opacity: 0;
            transform: translateY(50px);
            position: relative;
            border: 1px solid rgba(244, 124, 38, 0.1);
        }

        .service-slide.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .service-slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #f47c26, #ff8c42);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .service-slide:hover::before {
            transform: scaleX(1);
        }

        .service-slide:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 60px rgba(244, 124, 38, 0.15);
        }

        .service-slide img {
            width: 45%;
            height: auto;
            object-fit: cover;
            transition: transform 0.4s ease;
            position: relative;
        }

        .service-slide:hover img {
            transform: scale(1.05);
        }

        .service-slide-content {
            padding: 3rem;
            width: 55%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
        }

        .service-slide-content h2 {
            color: #333;
            margin-top: 0;
            margin-bottom: 1.5rem;
            font-size: 1.8rem;
            font-weight: 600;
            position: relative;
        }

        .service-slide-content h2::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 50px;
            height: 3px;
            background: linear-gradient(90deg, #f47c26, #ff8c42);
            border-radius: 2px;
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .service-slide:hover .service-slide-content h2::after {
            transform: scaleX(1);
        }

        .service-slide-content p {
            font-size: 1.1rem;
            line-height: 1.7;
            color: #666;
            margin-bottom: 2rem;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.4s ease;
        }

        .service-slide:hover .service-slide-content p {
            opacity: 1;
            transform: translateY(0);
        }

        /* Service CTA Button */
        .service-slide-cta {
            display: inline-block;
            background: linear-gradient(135deg, #f47c26, #ff8c42);
            color: white;
            padding: 0.8rem 2rem;
            text-decoration: none;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            align-self: flex-start;
            opacity: 0;
            transform: translateY(20px);
        }

        .service-slide:hover .service-slide-cta {
            opacity: 1;
            transform: translateY(0);
        }

        .service-slide-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s ease;
        }

        .service-slide-cta:hover::before {
            left: 100%;
        }

        .service-slide-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(244, 124, 38, 0.4);
        }

        /* Products Section - NEW SLIDESHOW STYLE */
        .products {
            padding: 6rem 0;
            background: linear-gradient(135deg, #3f140f, #652a22);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .products::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 30% 30%, rgba(244, 124, 38, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 70%, rgba(244, 124, 38, 0.1) 0%, transparent 50%);
            animation: backgroundPulse 8s ease-in-out infinite;
        }

        @keyframes backgroundPulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        .products .section-title {
            color: white;
        }

        .products p.section-description {
            text-align: center;
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 2rem;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s ease;
        }

        .products p.section-description.animate {
            opacity: 1;
            transform: translateY(0);
        }

        /* Product Slides Container */
        .products-slides {
            display: flex;
            flex-direction: row;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            height: 80vh;
            width: 100%;
            scroll-behavior: smooth;
            gap: 2rem;
            padding: 2rem;
            cursor: grab;
            user-select: none;
            touch-action: pan-y;
        }

        .products-slides::-webkit-scrollbar {
            height: 8px;
        }

        .products-slides::-webkit-scrollbar-track {
            background: rgba(0, 0, 0, 0.1);
        }

        .products-slides::-webkit-scrollbar-thumb {
            background: linear-gradient(90deg, #f47c26, #ff8c42);
            border-radius: 10px;
        }

        .product-slide {
            scroll-snap-align: start;
            flex: none;
            width: 90vw;
            max-width: 1200px;
            height: 70vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem;
            position: relative;
            overflow: hidden;
        }

        .product-slide-card {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.4s ease;
            position: relative;
            z-index: 10;
            color: white;
        }

        .product-slide-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #f47c26, #ff8c42);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .product-slide-card:hover::before {
            transform: scaleX(1);
        }

        .product-slide-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 30px 80px rgba(244, 124, 38, 0.2);
            border-color: rgba(244, 124, 38, 0.3);
        }

        .product-image-section {
            width: 45%;
            height: 100%;
            background: linear-gradient(135deg, #f47c26, #ff8c42);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .product-image-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transform: translateX(-100%);
            transition: transform 0.8s ease;
        }

        .product-slide-card:hover .product-image-section::before {
            transform: translateX(100%);
        }

        .product-icon {
            font-size: 5rem;
            color: white;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            transition: all 0.4s ease;
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        .product-slide-card:hover .product-icon {
            transform: scale(1.2) rotate(10deg);
            animation-play-state: paused;
        }

        .product-info-section {
            width: 55%;
            padding: 3rem;
            position: relative;
        }

        .product-title {
            font-size: 2.2rem;
            font-weight: 700;
            color: #f47c26;
            margin-bottom: 2rem;
            position: relative;
            animation: slideInRight 0.6s ease-out;
        }

        /* Product CTA Button CSS */
        .product-cta {
            display: inline-block;
            background: linear-gradient(135deg, #f47c26, #ff8c42);
            color: white;
            padding: 12px 30px;
            text-decoration: none;
            border-radius: 25px;
            font-weight: 600;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-top: 2rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            border: 2px solid transparent;
            box-shadow: 0 5px 15px rgba(244, 124, 38, 0.3);
        }

        .product-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.6s ease;
        }

        .product-cta:hover::before {
            left: 100%;
        }

        .product-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(244, 124, 38, 0.4);
            border-color: rgba(255, 255, 255, 0.2);
        }

        .product-cta:active {
            transform: translateY(-1px);
            box-shadow: 0 4px 15px rgba(244, 124, 38, 0.5);
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .product-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, #f47c26, #ff8c42);
            border-radius: 2px;
            animation: expandLine 0.8s ease-out 0.3s both;
        }

        @keyframes expandLine {
            from { width: 0; }
            to { width: 60px; }
        }

        .product-specs {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .product-specs li {
            margin-bottom: 1rem;
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.9);
            padding: 0.8rem 1.2rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(244, 124, 38, 0.3);
            border-radius: 10px;
            border-left: 4px solid #f47c26;
            position: relative;
            transform: translateX(-30px);
            opacity: 0;
            animation: slideInLeft 0.5s ease-out both;
            transition: all 0.3s ease;
        }

        .product-specs li:nth-child(1) { animation-delay: 0.1s; }
        .product-specs li:nth-child(2) { animation-delay: 0.2s; }
        .product-specs li:nth-child(3) { animation-delay: 0.3s; }
        .product-specs li:nth-child(4) { animation-delay: 0.4s; }
        .product-specs li:nth-child(5) { animation-delay: 0.5s; }

        @keyframes slideInLeft {
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        .product-specs li:hover {
            transform: translateX(10px);
            background: rgba(244, 124, 38, 0.1);
            border-color: #f47c26;
            box-shadow: 0 5px 15px rgba(244, 124, 38, 0.2);
        }

        .product-specs li::before {
            content: '▶';
            color: #f47c26;
            margin-right: 10px;
            font-size: 0.9rem;
            transition: transform 0.3s ease;
        }

        .product-specs li:hover::before {
            transform: translateX(5px);
        }

        /* Product Badge */
        .product-badge {
            position: absolute;
            top: 2rem;
            right: 2rem;
            background: linear-gradient(135deg, #f47c26, #ff8c42);
            color: white;
            padding: 0.7rem 1.5rem;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 600;
            z-index: 20;
            animation: badgePulse 2s ease-in-out infinite;
            box-shadow: 0 5px 20px rgba(244, 124, 38, 0.3);
        }

        @keyframes badgePulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        /* Products Navigation Dots */
        .products-nav {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 1rem;
            z-index: 1000;
            background: rgba(0, 0, 0, 0.5);
            padding: 1rem 2rem;
            border-radius: 30px;
            backdrop-filter: blur(10px);
        }

        .products-nav-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .products-nav-dot.active {
            background: #f47c26;
            transform: scale(1.3);
            box-shadow: 0 0 15px rgba(244, 124, 38, 0.5);
        }

        .products-nav-dot:hover {
            background: #f47c26;
            transform: scale(1.2);
        }

        /* About Section */
        .about {
            padding: 6rem 0;
            background: linear-gradient(135deg, #ffffff, #f8f9fa);
            position: relative;
            overflow: hidden;
        }

        .about::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 80% 20%, rgba(244, 124, 38, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(244, 124, 38, 0.05) 0%, transparent 50%);
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-text {
            opacity: 0;
            transform: translateX(-50px);
            transition: all 0.6s ease;
        }

        .about-text.animate {
            opacity: 1;
            transform: translateX(0);
        }

        .about-text h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 2rem;
            color: #333;
            position: relative;
        }

        .about-text h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, #f47c26, #ff8c42);
            border-radius: 2px;
        }

        .about-text p {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
            color: #666;
        }

        .stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }

        .stat-item {
            text-align: center;
            padding: 1.5rem;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(30px);
        }

        .stat-item.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .stat-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: #f47c26;
            margin-bottom: 0.5rem;
            counter-reset: number;
            animation: countUp 2s ease-out;
        }

        .stat-label {
            font-weight: 600;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
        }

        /* Contact Section */
        .contact {
            padding: 6rem 0;
            background: linear-gradient(135deg, #3f140f, #652a22);
            color: #fcfaec;
            position: relative;
            overflow: hidden;
        }

        .contact::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 25% 25%, rgba(244, 124, 38, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 75% 75%, rgba(244, 124, 38, 0.1) 0%, transparent 50%);
            animation: contactBackground 10s ease-in-out infinite;
        }

        @keyframes contactBackground {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.6; }
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            margin-top: 3rem;
        }

        .contact-info {
            opacity: 0;
            transform: translateX(-50px);
            transition: all 0.6s ease;
        }

        .contact-info.animate {
            opacity: 1;
            transform: translateX(0);
        }

        .contact-info h3 {
            font-size: 1.8rem;
            margin-bottom: 2rem;
            color: #f47c26;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 2rem;
            padding: 1.5rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .contact-item:hover {
            transform: translateX(10px);
            background: rgba(255, 255, 255, 0.1);
        }

        .contact-icon {
            font-size: 1.5rem;
            margin-top: 0.2rem;
        }

        .contact-form {
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.6s ease;
        }

        .contact-form.animate {
            opacity: 1;
            transform: translateX(0);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: #f47c26;
            font-weight: 600;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.05);
            color: white;
            font-size: 1rem;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #f47c26;
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(244, 124, 38, 0.2);
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        /* Footer */
        footer {
            background: #000;
            color: white;
            padding: 3rem 0 1rem;
            text-align: center;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
            flex-wrap: wrap;
            gap: 2rem;
        }

        .footer-logo {
            font-size: 2rem;
            font-weight: 700;
            color: #f47c26;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .footer-links {
            display: flex;
            list-style: none;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
        }

        .footer-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #f47c26;
            transition: width 0.3s ease;
        }

        .footer-links a:hover::after {
            width: 100%;
        }

        .footer-links a:hover {
            color: #f47c26;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            header {
                top: 10px;
                width: 98%;
                border-radius: 25px;
            }

            .nav-container {
                padding: 0 20px;
            }

            .nav-links {
                position: absolute;
                top: calc(100% + 15px);
                left: 50%;
                transform: translateX(-50%);
                width: 90%;
                background: rgba(89, 29, 19, 0.95);
                backdrop-filter: blur(20px);
                flex-direction: column;
                gap: 0;
                padding: 20px;
                border-radius: 20px;
                border: 1px solid rgba(244, 124, 38, 0.3);
                box-shadow: 0 10px 40px rgba(89, 29, 19, 0.4);
                opacity: 0;
                visibility: hidden;
                transform: translateX(-50%) translateY(-20px);
                transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            }

            .nav-links.show {
                opacity: 1;
                visibility: visible;
                transform: translateX(-50%) translateY(0);
            }

            .nav-links a {
                padding: 15px 0;
                margin: 5px 0;
                text-align: center;
                border-radius: 15px;
                font-size: 1rem;
                letter-spacing: 1px;
            }

            .nav-toggle {
                display: block;
            }

            .logo {
                font-size: 1.4rem;
            }


            .hero-content h1 {
                font-size: 2.5rem;
            }

            .hero-content p {
                font-size: 1.2rem;
            }

            .about-content,
            .contact-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .stats {
                grid-template-columns: 1fr;
            }

            .section-title {
                font-size: 2rem;
            }

            .service-slide {
                flex-direction: column;
                flex: 0 0 95%;
            }

            .service-slide img {
                width: 100%;
                height: 250px;
            }

            .service-slide-content {
                width: 100%;
                padding: 2rem;
            }

            .product-slide-card {
                flex-direction: column;
                width: 95%;
                min-height: auto;
            }

            .product-image-section {
                width: 100%;
                height: 250px;
            }

            .product-info-section {
                width: 100%;
                padding: 2rem;
            }

            .product-title {
                font-size: 1.8rem;
            }

            .product-specs li {
                font-size: 1rem;
                padding: 0.6rem 1rem;
            }
        }

        /* Scroll animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-in.animate {
            opacity: 1;
            transform: translateY(0);
        }

        /* Particle effect */
        .particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            pointer-events: none;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: rgba(244, 124, 38, 0.5);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }

        .particle:nth-child(1) { left: 10%; animation-delay: 0s; }
        .particle:nth-child(2) { left: 20%; animation-delay: 1s; }
        .particle:nth-child(3) { left: 30%; animation-delay: 2s; }
        .particle:nth-child(4) { left: 40%; animation-delay: 3s; }
        .particle:nth-child(5) { left: 50%; animation-delay: 4s; }
        .particle:nth-child(6) { left: 60%; animation-delay: 5s; }
        .particle:nth-child(7) { left: 70%; animation-delay: 0.5s; }
        .particle:nth-child(8) { left: 80%; animation-delay: 1.5s; }
        .particle:nth-child(9) { left: 90%; animation-delay: 2.5s; }

        @keyframes float {
            0%, 100% {
                transform: translateY(100vh) scale(0);
                opacity: 0;
            }
            10% {
                opacity: 1;
                transform: scale(1);
            }
            90% {
                opacity: 1;
                transform: scale(1);
            }
            100% {
                transform: translateY(-100px) scale(0);
                opacity: 0;
            }
        }


        /* Gallery Section */
        .gallery {
            padding: 6rem 0;
            background: linear-gradient(135deg, #fcfaec, #fcfaec);
            position: relative;
            overflow: hidden;
        }

        .gallery::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 80% 20%, rgba(244, 124, 38, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(244, 124, 38, 0.05) 0%, transparent 50%);
        }

        .gallery .section-description {
            text-align: center;
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 3rem;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s ease;
        }

        .gallery .section-description.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .gallery-filter {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .gallery-filter.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .filter-btn {
            padding: 0.8rem 2rem;
            background: transparent;
            border: 2px solid #e0e0e0;
            border-radius: 25px;
            color: #666;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            position: relative;
            overflow: hidden;
        }

        .filter-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #f47c26, #ff8c42);
            transition: left 0.4s ease;
            z-index: -1;
        }

        .filter-btn:hover::before,
        .filter-btn.active::before {
            left: 0;
        }

        .filter-btn:hover,
        .filter-btn.active {
            color: white;
            border-color: #f47c26;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(244, 124, 38, 0.3);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .gallery-item {
            opacity: 0;
            transform: translateY(50px) scale(0.9);
            transition: all 0.6s ease;
            position: relative;
        }

        .gallery-item.animate {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        .gallery-item.hidden {
            display: none;
        }

        .gallery-image {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            height: 300px;
            background: #f0f0f0;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
        }

        .gallery-image:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(244, 124, 38, 0.15);
        }

        .gallery-image img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            background: #fff;
            transition: transform 0.4s ease;
        }

        .gallery-image:hover img {
            transform: scale(1.1);
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(
                135deg,
                rgba(244, 124, 38, 0.9) 0%,
                rgba(255, 140, 66, 0.8) 100%
            );
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: all 0.4s ease;
            backdrop-filter: blur(5px);
        }

        .gallery-image:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-content {
            text-align: center;
            color: white;
            padding: 2rem;
            transform: translateY(20px);
            transition: transform 0.4s ease;
        }

        .gallery-image:hover .gallery-content {
            transform: translateY(0);
        }

        .gallery-content h3 {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .gallery-content p {
            font-size: 1rem;
            margin-bottom: 1rem;
            opacity: 0.9;
            line-height: 1.4;
        }

        .gallery-badges {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            flex-wrap: wrap;
        }

        .badge {
            background: rgba(255, 255, 255, 0.2);
            padding: 0.3rem 0.8rem;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: 600;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .gallery-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
        }

        .stat-card {
            text-align: center;
            padding: 2rem;
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(50px);
            position: relative;
            overflow: hidden;
        }

        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #f47c26, #ff8c42);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .stat-card:hover::before {
            transform: scaleX(1);
        }

        .stat-card.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .stat-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(244, 124, 38, 0.15);
        }

        .stat-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            animation: bounce 2s ease-in-out infinite;
        }

        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .stat-card:hover .stat-icon {
            animation-play-state: paused;
            transform: scale(1.2);
        }

        .stat-card .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: #f47c26;
            margin-bottom: 0.5rem;
            transition: all 0.3s ease;
        }

        .stat-card .stat-label {
            font-weight: 600;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
        }

        /* Mobile Responsive Styles for Gallery */
        @media (max-width: 768px) {
            .gallery-filter {
                justify-content: center;
                gap: 0.5rem;
            }
            
            .filter-btn {
                padding: 0.6rem 1.2rem;
                font-size: 0.8rem;
            }
            
            .gallery-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .gallery-image {
                height: 360px;
            }
            
            .gallery-stats {
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
            }
            
            .stat-card {
                padding: 1.5rem 1rem;
            }
        }
        
        .contact-item a {
    color: #ffffff;
    text-decoration: none;
    position: relative;
    display: inline-block;
    padding: 3px 6px;
    z-index: 1;
    transition: color 0.3s ease;
}

.contact-item a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: #ff8c2f;
    border-radius: 4px;
    z-index: -1;
    transition: width 0.35s ease;
}

.contact-item a:hover::before {
    width: 100%;
}

.contact-item a:hover {
    color: #ffffff;
}

#contact {
    scroll-margin-top: 150px;
}





.products-slides.dragging {
    cursor: grabbing;
    scroll-snap-type: none;
}

.products-slides img {
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}