
        /* Google Fonts Import */
        @import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@400;500;700;900&display=swap');
   html {
            scroll-behavior: smooth;
        }

        /* Basic Body Styles */
        body {
            font-family: 'Vazirmatn', sans-serif;
            background-color: #141B27;
            color: #d1d5db;
            margin: 0;
            /* Added for demonstration purposes to show scrolling effect */
            height: 200vh; 
        }

        /* Sticky Navigation Styles */
        .sticky-nav {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 100;
            background-color: transparent;
            backdrop-filter: blur(8px);
            transition: background-color 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
        }

        /* Scrolled Navigation State */
        .scrolled-nav {
            background-color: rgba(20, 27, 39, 0.8);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
        }

        /* Desktop Navigation Link Hover Effect */
        .nav-link {
            position: relative;
            padding-bottom: 4px;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #B89E82;
            transition: width 0.3s ease;
        }
        .nav-link:hover::after {
            width: 100%;
        }

        /* Responsive Navigation Styles */
        @media (max-width: 1023px) {
            .desktop-nav {
                display: none;
            }
            .sticky-nav nav {
                padding: 1rem 1.5rem;
                justify-content: space-between;
            }
        }

        /* Mobile Menu Styles */
        #mobile-menu {
            transform: translateX(100%);
            transition: transform 0.4s ease-in-out;
            overflow-y: auto;
        }
        #mobile-menu.open {
            transform: translateX(0);
        }
        .mobile-nav-link {
            position: relative;
            padding-bottom: 4px;
        }
        .mobile-nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0; /* Adjusted for RTL */
            width: 0;
            height: 2px;
            background-color: #B89E82;
            transition: width 0.3s ease;
        }
        .mobile-nav-link:hover::after {
            width: 100%;
        }

        /* Styles for Mobile Submenus */
        .mobile-submenu {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-in-out;
        }
        li.submenu-open > .mobile-submenu {
            max-height: 500px; /* Adjust if submenu is taller */
        }
        .submenu-toggle-icon {
            transition: transform 0.3s ease-out;
        }
        li.submenu-open .submenu-toggle-icon {
            transform: rotate(180deg);
        }

        /* Hero Section Styles */
              .hero-section {
            position: relative;
            min-height: 100vh;
            width: 100%;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        #bg-video {
            position: absolute;
            top: 50%;
            left: 50%;
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            object-fit: cover;
            transform: translate(-50%, -50%);
            z-index: -1;
        }

        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(10, 10, 26, 0.9), rgba(10, 10, 26, 0.6));
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }
        
        .hero-cta-button {
            transition: all .3s ease-in-out;
        }

        .hero-cta-button:hover {
            transform: scale(1.05);
            box-shadow: 0 0 25px rgba(184, 158, 130, 0.7);
        }

        .glass-card {
            background: rgba(46, 58, 70, 0.5);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 1.5rem;
            transition: all .4s ease;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        .glass-card:hover {
            transform: translateY(-8px);
            border-color: rgba(184, 158, 130, 0.5);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
        }

        .hero-services-bar {
            margin-top: -100px; /* Overlap effect */
        }
        
        @media (max-width: 768px) {
            .hero-services-bar {
                margin-top: -90px; /* Adjusted overlap for mobile to prevent collision */
            }
        }

        .animate-fade-in-up {
            animation: fade-in-up 1s ease-out forwards;
        }



        .footer-link {
            position: relative;
            padding-bottom: 4px;
            transition: color 0.3s ease;
        }
        .footer-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 0;
            height: 1px;
            background-color: #B89E82;
            transition: width 0.4s ease;
        }
        .footer-link:hover {
            color: #B89E82;
        }
        .footer-link:hover::after {
            width: 100%;
        }

        .footer-social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background-color: transparent;
            border: 1px solid #2E3A46;
            color: #d1d5db;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .footer-social-icon:hover {
            background-color: #B89E82;
            border-color: #B89E82;
            color: #0a0a1a;
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 20px rgba(184, 158, 130, 0.25);
        }

        footer {
            position: relative;
            overflow: hidden;
            background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1MCIgaGVpZ2h0PSI1MCIgdmlld0JveD0iMCAwIDEwMCAxMDAiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9IiMxNDFCMjciLz48Y2lyY2xlIGN4PSIxMDAiIGN5PSIxMDAiIHI9IjUiIGZpbGw9IiNCODlFODIiIG9wYWNpdHk9IjAuMSI+PC9jaXJjbGU+PGNpcmNsZSBjeD0iMCIgY3k9IjUwIiByPSIzIiBmaWxsPSIjQjg5RTgyIiBvcGFjaXR5PSIwLjEiPjwvY2lyY2xlPjwvc3ZnPg==');
        }

        footer::before {
            content: '';
            position: absolute;
            top: -100px;
            left: 50%;
            transform: translateX(-50%);
            width: 1000px;
            height: 300px;
            background: radial-gradient(circle, rgba(184, 158, 130, 0.1), transparent 70%);
            pointer-events: none;
            filter: blur(50px);
        }
         /* Glassmorphism Circular Card Style */
        .category-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            background: rgba(42, 59, 76, 0.4); /* Glassy background */
            backdrop-filter: blur(10px);
            border: 1px solid rgba(217, 198, 176, 0.2); /* Subtle initial border */
            width: 7rem; /* 112px */
            height: 7rem; /* 112px */
            border-radius: 50%;
            transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.5s ease, border-color 0.5s ease, background 0.5s ease;
            position: relative;
            flex-shrink: 0;
            box-shadow: 0 10px 25px rgba(0,0,0,0.3);
        }
        
        .category-card:hover {
            transform: translateY(-12px) scale(1.05);
            box-shadow: 0 20px 40px rgba(11, 20, 30, 0.5), 0 0 30px rgba(217, 198, 176, 0.5);
            border-color: #D9C6B0; /* Light Beige Hover Border */
            background: rgba(42, 59, 76, 0.6);
        }
        
        .category-icon {
            color: #D9C6B0; /* Light Beige Icon Color */
            transition: all 0.5s ease;
            filter: drop-shadow(0 0 5px rgba(217, 198, 176, 0.5));
        }

        .category-card:hover .category-icon {
            transform: scale(1.1);
            filter: drop-shadow(0 0 12px #D9C6B0);
        }

        .category-title {
            font-size: 0.75rem;
            font-weight: 700;
            color: #D9C6B0; /* Light Beige for text */
            margin-top: 0.5rem;
            transition: color 0.5s ease;
        }

        .category-card:hover .category-title {
            color: #FFFFFF; /* White on Hover for better contrast */
        }
        
        /* Staggered animation for items loading in */
        .fade-in-section {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeIn forwards 0.8s ease-out;
            animation-delay: var(--delay);
        }

        @keyframes fadeIn {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
         .section-bg {
            position: relative;
            overflow: hidden;
            background-color: #0a0a1a;
        }

        .section-bg::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 1200px;
            height: 1200px;
            background: radial-gradient(circle, rgba(184, 158, 130, 0.1), transparent 60%);
            transform: translate(-50%, -50%);
            pointer-events: none;
        }
        .main-title {
            color: #D9C6B0; /* Light Beige Title */
            text-shadow: 0 0 20px rgba(217, 198, 176, 0.3);
        }

        /* Mobile Slider Styles */
        .mobile-slider {
            -ms-overflow-style: none; /* for Internet Explorer, Edge */
            scrollbar-width: none; /* for Firefox */
        }

        .mobile-slider::-webkit-scrollbar {
            display: none; /* for Chrome, Safari, and Opera */
        }
        
        /* This media query applies slider logic ONLY on screens smaller than 1024px */
        @media (max-width: 1023px) {
            .mobile-slider {
                overflow-x: auto;
                scroll-snap-type: x mandatory;
                /* Add padding to ensure the first and last items can be centered */
                padding-left: calc(50% - 3.5rem - 0.5rem); /* (50% viewport - half item width - half gap) */
                padding-right: calc(50% - 3.5rem - 0.5rem);
            }
            .mobile-slider .category-card {
                scroll-snap-align: center;
            }
        }

           /* Product card styles - Enhanced Hover Effect */
        .product-card {
            position: relative;
            overflow: hidden;
            border-radius: 1.5rem;
            transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            transform-style: preserve-3d;
            perspective: 1000px;
        }

        .product-card::before {
            content: '';
            position: absolute;
            inset: -2px;
            z-index: -1;
            background: linear-gradient(45deg, rgba(184, 158, 130, 0.4) 0%, rgba(184, 158, 130, 0.1) 50%, rgba(184, 158, 130, 0.4) 100%);
            opacity: 0;
            filter: blur(10px);
            transition: opacity 0.4s ease;
        }

        .product-card:hover {
            transform: translateY(-10px) rotateY(5deg) rotateX(5deg) scale(1.03); /* 3D Tilt */
            box-shadow: 0 25px 50px rgba(0,0,0,0.5), 0 0 30px rgba(184, 158, 130, 0.4); /* Lift and Glow */
        }
        
        .product-card:hover::before {
            opacity: 1;
        }
        
        .product-card-image {
            width: 100%;
            height: 300px;
            object-fit: cover;
            filter: grayscale(80%);
            transition: transform 0.6s ease, filter 0.6s ease;
        }
        
        .product-card:hover .product-card-image {
            transform: scale(1.15);
            filter: grayscale(0%);
        }
        
        .product-card-content {
            position: absolute;
            inset: 0;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 2rem;
            background: linear-gradient(to top, rgba(0,0,0,0.8) 20%, transparent 100%);
            transform: translateZ(20px); /* Add some depth */
        }
        
        .product-card-content h3,
        .product-card-content p,
        .product-card-content div {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.4s ease-out, transform 0.4s ease-out;
        }
        
        .product-card:hover .product-card-content h3 {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 0.1s;
        }

        .product-card:hover .product-card-content p {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 0.2s;
        }
        
        .product-card:hover .product-card-content div {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 0.3s;
        }

        .product-card-content .bx {
            transition: transform 0.3s ease;
        }

        .product-card:hover .product-card-content .bx {
            transform: translateX(-5px);
        }
        
        /* Mobile specific styles for the products section */
        @media (max-width: 768px) {
            .product-card {
                transform: none !important;
                box-shadow: 0 5px 15px rgba(0,0,0,0.3);
            }

            .product-card::before {
                content: none;
            }
            
            .product-card-image {
                filter: none; /* No grayscale on mobile for better look */
                transform: none;
                height: 250px;
            }
            
            /* Re-applying overlay style for mobile */
            .product-card-content {
                position: absolute;
                inset: 0;
                display: flex;
                flex-direction: column;
                justify-content: flex-end;
                padding: 1.5rem;
                background: linear-gradient(to top, rgba(0,0,0,0.9) 20%, transparent 100%);
                text-align: right;
            }

            /* Override hover effects from desktop and make content visible */
            .product-card-content h3,
            .product-card-content p,
            .product-card-content div {
                transform: translateY(0);
                opacity: 1;
                transition: none; /* Disable transitions on mobile */
            }

            .product-card-content h3 {
                margin-bottom: 0.5rem;
                font-size: 1.5rem;
            }

            .product-card-content p {
                font-size: 0.875rem;
            }
            
            .product-card-content div {
                 margin-top: 1rem;
            }
        }

           /* --- Desktop Slider Styles --- */
        .karm-component-wrapper {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            width: 100%;
            min-height: 100vh;
            padding: 20px 0;
            overflow: hidden;
        }

        .karm-slider-container {
            display: flex;
            width: 90vw;
            height: 75vh;
            max-width: 1600px;
            max-height: 900px;
            overflow: hidden;
            position: relative;
            box-shadow: 0 25px 50px -12px rgba(0,0,0,0.6);
            border-radius: 12px;
            transition: all 0.5s ease-in-out;
            border: 1px solid #111827;
        }

        .karm-slider-container:hover {
            box-shadow: 0 25px 60px -12px rgba(184, 158, 130, 0.4);
            border: 1px solid rgba(184, 158, 130, 0.5);
        }

        .karm-bg-layer {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            transition: opacity 0.9s cubic-bezier(0.39, 0.575, 0.565, 1);
            z-index: 0;
        }

        .karm-bg-layer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMDAiIGhlaWdodD0iMzAwIj4KPGZpbHRlciBpZD0ibiI+Cgk8ZmVUdXJib2xlbmNlIHR5cGU9ImZyYWN0YWxOb2lzZSIgYmFzZUZyZXF1ZW5jeT0iMC41IiBudWxPY3RhdmVlcz0iNCIgc3RpdGNoVGlsZXM9Im5vc3RpdGNoIi8+CjwvZmlsdGVyPgo8cmVjdCB3aWR0aD0iMTAwJSIgaGVpZHRoPSIxMDAlIiBmaWxsPSJ3aGl0ZSIgZmlsdGVyPSJ1cmwoI24pIiBvcGFjaXR5PSIwLjA1Ii8+Cjwvc3ZnPg==');
            opacity: 0.8;
        }
        
        #karm-bg-2 {
            opacity: 0;
        }

        .karm-slides-wrapper {
            display: flex;
            width: 100%;
            height: 100%;
            position: relative;
            z-index: 1;
        }

        .karm-slide {
            flex: 1;
            position: relative;
            overflow: hidden;
            cursor: pointer;
            transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
        }
        
        .karm-slide:hover {
            transform: scale(1.02) rotateY(1deg);
            box-shadow: inset 0 0 10px rgba(184, 158, 130, 0.3);
        }

        .karm-slide:not(:last-child) {
            border-left: 1px solid rgba(255, 255, 255, 0.1);
        }

        .karm-slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.3));
            z-index: 1;
            transition: background 0.8s ease;
        }

        .karm-slide::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent, rgba(184, 158, 130, 0.2), transparent);
            transform: translateY(-100%);
            transition: transform 0.7s ease-in-out;
            z-index: 2;
        }
        
        .karm-slide:hover::after {
            transform: translateY(100%);
        }

        .karm-slide:hover::before {
            background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.1));
        }
        
        .karm-content {
            position: relative;
            z-index: 2;
            padding: 40px;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            align-items: center;
            text-align: center;
            transform: translateY(-100px);
        }

        .karm-icon {
            width: 50px;
            height: 50px;
            margin-bottom: 20px;
            transition: transform 0.5s ease;
        }
        
        .karm-slide:hover .karm-icon {
            transform: scale(1.15);
        }

        .karm-icon i {
            font-size: 3rem; 
            color: #d1d5db;
            transition: color 0.3s ease, text-shadow 0.3s ease;
            text-shadow: 0 0 8px rgba(184, 158, 130, 0.8);
        }

        .karm-slide:hover .karm-icon i {
             color: #B89E82;
        }

        .karm-slide-title {
            font-size: 1.25rem;
            font-weight: 700;
            margin: 0 0 10px 0;
            transition: text-shadow 0.3s ease;
            text-shadow: 0 0 5px rgba(184, 158, 130, 0.2), 0 0 10px rgba(184, 158, 130, 0.1);
            color: #d1d5db;
        }

        .karm-slide:hover .karm-slide-title {
             text-shadow: 0 0 20px rgba(184, 158, 130, 0.7), 0 0 10px rgba(184, 158, 130, 0.5);
        }
        
        .karm-slide-title a {
            color: inherit;
            text-decoration: none;
        }
        

        /* --- Mobile Styles --- */
        @media (max-width: 768px) {
            .karm-component-wrapper {
                min-height: auto;
            }
             .karm-slider-container {
                display: none; /* Hide desktop slider on mobile */
             }

             /* --- Mobile Slider (Swiper) --- */
            .karm-mobile-slider-container {
                width: 100%;
                height: 65vh; /* Slider height */
                position: relative;
                display: flex;
                justify-content: center;
                align-items: center;
            }
            
            .karm-mobile-slider-container .swiper {
                width: 75vw; /* Card width */
                height: 100%;
            }

            .karm-mobile-slider-container .swiper-slide {
                background-position: center;
                background-size: cover;
                height: 100%;
                border-radius: 20px;
                overflow: hidden;
                box-shadow: 0 15px 40px rgba(0,0,0,0.4);
            }
            
            .karm-mobile-slider-container .karm-content {
                position: relative;
                z-index: 2;
                padding: 20px;
                height: 100%;
                display: flex;
                flex-direction: column;
                justify-content: flex-end;
                align-items: center;
                text-align: center;
                background: linear-gradient(to top, rgba(0,0,0,0.85), transparent 60%);
                transform: translateY(0); /* Reset transform */
            }

            .karm-title-wrapper {
                display: flex;
                align-items: center;
                gap: 12px;
                background-color: rgba(20, 25, 30, 0.6);
                padding: 10px 20px;
                border-radius: 50px;
                backdrop-filter: blur(12px);
                border: 1px solid rgba(255, 255, 255, 0.1);
                position: relative;
                overflow: hidden;
            }
            
            /* Light streak effect */
            .karm-title-wrapper::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                width: 50px;
                height: 100%;
                background: rgba(255,255,255,0.4);
                filter: blur(20px);
                transform: skewX(-20deg) translateX(-100px);
                transition: transform 0.8s;
            }

            .swiper-slide-active .karm-title-wrapper::before {
                transform: skewX(-20deg) translateX(300px);
                transition-delay: 0.5s;
            }

            .karm-mobile-slider-container .karm-icon {
                width: 38px;
                height: 38px;
                margin: 0;
            }

            .karm-mobile-slider-container .karm-icon i {
                font-size: 2rem;
                color: #ffffff;
                filter: drop-shadow(0 0 6px rgba(184, 158, 130, 0.7));
            }
            
            .karm-mobile-slider-container .karm-icon svg {
                 width: 100%;
                 height: 100%;
                 stroke: #ffffff;
                 filter: drop-shadow(0 0 6px rgba(184, 158, 130, 0.7));
            }

            .karm-mobile-slider-container .karm-slide-title {
                font-size: 1.2rem;
                font-weight: 600;
                margin: 0;
                color: #ffffff;
                line-height: 1;
            }

            /* --- Mobile Navigation Buttons --- */
            .karm-navigation-wrapper {
                position: relative;
                width: 150px;
                height: 50px;
                margin-top: 30px; /* Space from slider */
                display: flex;
                justify-content: center;
                align-items: center;
            }

            .swiper-button-next, .swiper-button-prev {
                position: static;
                margin: 0 10px;
                color: #fff;
                width: 50px;
                height: 50px;
                border-radius: 50%;
                background-color: rgba(255,255,255,0.1);
                transition: background-color 0.3s ease;
            }
            
            .swiper-button-next:hover, .swiper-button-prev:hover {
                background-color: rgba(184, 158, 130, 0.3);
            }

            .swiper-button-next:after, .swiper-button-prev:after {
                font-size: 18px;
                font-weight: 900;
            }
        }


                .glass-card {
            background: rgba(46, 58, 70, 0.4);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 1.5rem;
            transition: all .4s ease;
        }

        .glass-card:hover {
            transform: translateY(-8px);
            border-color: rgba(184, 158, 130, 0.5);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        }

        /* About Us video styles */
        .about-video-wrapper {
            position: relative;
            width: 100%;
            height: 100%;
            min-height: 300px;
            border-radius: 1.5rem;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
            transition: all 0.5s ease;
            border: 2px solid transparent;
        }

        .about-video-wrapper:hover {
            transform: translateY(-8px);
            border-color: #B89E82;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
        }

        .about-video-wrapper video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .video-controls {
            position: absolute;
            bottom: 1rem;
            left: 1rem;
            z-index: 10;
        }

        .video-control-button {
            background-color: rgba(184, 158, 130, 0.8);
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }

        .video-control-button:hover {
            background-color: rgba(184, 158, 130, 1);
            transform: scale(1.1);
        }

        .video-control-button i {
            color: white;
            font-size: 1.5rem;
        }
        
        .main-title {
            text-shadow: 0 0 10px rgba(184, 158, 130, 0.5), 0 0 20px rgba(184, 158, 130, 0.3);
        }

         /* Mobile specific styles for the about section */
        @media (max-width: 768px) {
            #about .glass-card {
                padding: 1.5rem;
            }
            .about-video-wrapper {
                margin-bottom: 2rem;
            }
            .about-video-wrapper:hover {
                transform: none;
                box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
                border-color: transparent;
            }
            .about-video-wrapper video {
                height: 250px;
            }
            .video-controls {
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                bottom: auto;
            }
            .video-control-button {
                width: 60px;
                height: 60px;
                background-color: rgba(0, 0, 0, 0.4);
                backdrop-filter: blur(5px);
                border: 1px solid rgba(255, 255, 255, 0.2);
            }
            .video-control-button i {
                font-size: 2.5rem;
            }
             #about .text-right {
                text-align: center;
            }
             #about .mt-6 {
                display: flex;
                justify-content: center;
            }
        }

                .key-service-card {
            padding: 2px;
            background: transparent;
            border-radius: 2rem;
            position: relative;
            overflow: hidden;
            transform-style: preserve-3d;
            transition: transform 0.4s ease-out;
            border: none;
        }
        
        .key-service-card::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 200%;
            height: 200%;
            background: conic-gradient(from var(--angle, 0deg), transparent 0%, rgba(184, 158, 130, 0.5) 10%, transparent 35%);
            animation: rotate-border 8s linear infinite;
            opacity: 0;
            transition: opacity 0.5s;
            z-index: 1;
        }

        .key-service-card:hover::before {
            opacity: 1;
        }

        .card-inner {
            background: #1C2A39;
            border-radius: calc(2rem - 2px);
            width: 100%;
            height: 100%;
            position: relative;
            z-index: 2;
            transform-style: preserve-3d;
            transition: transform 0.4s ease-out;
        }

        .card-content {
            padding: 2.5rem;
        }
        
        .key-service-icon {
            font-size: 4rem;
            color: #B89E82;
            transition: all 0.4s ease-out;
            filter: drop-shadow(0 0 8px rgba(184, 158, 130, 0.5));
            transform: translateZ(50px);
        }

        .key-service-card:hover .key-service-icon {
            color: #fff;
            filter: drop-shadow(0 0 20px rgba(255,255,255,0.9));
        }

        .key-service-title {
            font-size: 1.5rem;
            font-weight: 800;
            color: #fff;
            margin-top: 1.5rem;
            margin-bottom: 0.75rem;
            transition: all 0.4s ease-out;
            transform: translateZ(30px);
        }

        .key-service-card:hover .key-service-title {
            color: #B89E82;
            text-shadow: 0 0 15px rgba(184, 158, 130, 0.9);
        }

        .key-service-description {
            color: #a0aec0;
            font-size: 0.875rem;
            line-height: 1.6;
            transition: all 0.4s ease-out;
            transform: translateZ(20px);
        }

        .key-service-card:hover .key-service-description {
            color: #e2e8f0;
        }

         /* Mobile styles - disable complex hover effects but keep it attractive */
        @media (max-width: 1023px) {
            .grid {
                perspective: none;
            }
             .key-service-card {
                background: #1C2A39;
                border: 1px solid #2E3A46;
                padding: 0;
             }
             .key-service-card::before {
                display:none;
             }
             .key-service-card:active { /* Use :active for touch feedback */
                transform: translateY(-5px) scale(0.98);
                box-shadow: 0 10px 25px rgba(0,0,0,0.5);
                border-color: rgba(184, 158, 130, 0.6);
             }
             .card-inner {
                background: transparent;
                border-radius: 2rem;
             }
             .key-service-icon,
             .key-service-title,
             .key-service-description {
                transform: none; /* Flatten elements on mobile */
             }
        }

         /* Enhanced Why Us card styling */
        .why-us-card {
            background: #1C2A39;
            border: 1px solid #2E3A46;
            border-radius: 1.5rem;
            text-align: center;
            transition: all 0.4s ease-out;
            position: relative;
            overflow: hidden;
            transform-style: preserve-3d;
        }

        .why-us-card::before {
            content: '';
            position: absolute;
            left: var(--x);
            top: var(--y);
            transform: translate(-50%, -50%);
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(184, 158, 130, 0.3) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.5s ease;
            pointer-events: none;
        }

        .why-us-card:hover::before {
            opacity: 1;
        }

        .why-us-card:hover {
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
            border-color: rgba(184, 158, 130, 0.4);
        }
        
        .card-content {
            padding: 2.5rem;
            transform-style: preserve-3d;
            transition: transform 0.4s ease-out;
        }

        .why-us-card:hover .card-content {
            transform: rotateX(5deg) rotateY(-3deg) scale(1.05);
        }

        .why-us-icon-wrapper, .why-us-title, .why-us-description {
            position: relative;
            z-index: 1;
        }

        .why-us-icon-wrapper {
            width: 80px;
            height: 80px;
            background: rgba(184, 158, 130, 0.15);
            border: 1px solid rgba(184, 158, 130, 0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 2rem;
            transition: all 0.4s ease-out;
            transform: translateZ(40px);
        }
        .why-us-card:hover .why-us-icon-wrapper {
            transform: translateZ(60px) scale(1.1);
            background: #B89E82;
            box-shadow: 0 0 25px rgba(184, 158, 130, 0.7);
        }

        .why-us-icon {
            font-size: 3rem;
            color: #B89E82;
            transition: all 0.4s ease-out;
        }
        .why-us-card:hover .why-us-icon {
            color: #1C2A39;
        }

        .why-us-title {
            font-size: 1.5rem;
            font-weight: 800;
            color: #fff;
            transition: all 0.4s ease-out;
            transform: translateZ(30px);
        }
        .why-us-card:hover .why-us-title {
            transform: translateZ(50px);
            text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
        }

        .why-us-description {
            color: #9ca3af;
            font-size: 0.9rem;
            line-height: 1.6;
            margin-top: 1rem;
            transition: all 0.4s ease-out;
            transform: translateZ(20px);
        }
        .why-us-card:hover .why-us-description {
            transform: translateZ(40px);
            color: #e5e7eb;
        }

        /* Mobile specific styles */
        @media (max-width: 768px) {
            .grid {
                perspective: none;
            }

            .why-us-card {
                transform-style: flat;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
            }

            .why-us-card:hover {
                transform: none;
                 box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
                border-color: rgba(184, 158, 130, 0.2);
            }
            
            .why-us-card::before {
                display: none; /* Disable the glow effect on mobile */
            }

            .why-us-card:hover .card-content {
                transform: none;
            }

            .card-content {
                padding: 2rem;
            }

            .why-us-icon-wrapper,
            .why-us-card:hover .why-us-icon-wrapper,
            .why-us-title,
            .why-us-card:hover .why-us-title,
            .why-us-description,
            .why-us-card:hover .why-us-description {
                transform: none;
            }
            
            .why-us-card:hover .why-us-icon-wrapper {
                background: rgba(184, 158, 130, 0.15);
                box-shadow: none;
            }
            
            .why-us-card:hover .why-us-icon {
                color: #B89E82;
            }
            
            .why-us-card:hover .why-us-title {
                text-shadow: none;
            }
            
            .why-us-card:hover .why-us-description {
                color: #9ca3af;
            }
        }
             /* Desktop Masonry Grid Styles */
        .project-grid-container {
            column-count: 1;
            column-gap: 2rem;
        }
        @media (min-width: 768px) {
            .project-grid-container {
                column-count: 2;
            }
        }
        @media (min-width: 1024px) {
            .project-grid-container {
                column-count: 3;
            }
        }

        .project-grid-item {
            display: inline-block;
            width: 100%;
            margin-bottom: 2rem;
            position: relative;
            overflow: hidden;
            border-radius: 2rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            transition: all 0.5s ease-in-out;
            cursor: pointer;
        }

        .project-grid-item:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(184, 158, 130, 0.6);
        }

        .project-grid-item img {
            width: 100%;
            height: auto;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .project-grid-item:hover img {
            transform: scale(1.1);
        }

        .project-grid-item .project-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 2rem;
            background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
            color: white;
            text-align: right;
            transition: all 0.5s ease;
            transform: translateY(100%);
             opacity: 0;
        }
        
        .project-grid-item:hover .project-content {
            transform: translateY(0);
            opacity: 1;
        }
        
        .project-grid-item .project-content h3,
        .project-grid-item .project-content p {
            transform: translateY(20px);
            opacity: 0;
            transition: all 0.5s ease;
            transition-delay: 0.2s; /* Delay content animation */
        }

        .project-grid-item:hover .project-content h3,
        .project-grid-item:hover .project-content p {
            transform: translateY(0);
            opacity: 1;
        }

        /* --- Mobile Slider (Swiper) --- */
        .projects-swiper-container {
            width: 100%;
            padding-bottom: 50px; /* Space for pagination */
        }
        .projects-swiper .swiper-slide {
            width: 80%;
            height: auto;
            border-radius: 1.5rem;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.4);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
        }
        
        .projects-swiper .swiper-slide-active {
             box-shadow: 0 15px 45px rgba(184, 158, 130, 0.3);
        }

        .projects-swiper .swiper-slide .project-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 1.5rem;
            background: linear-gradient(to top, rgba(0,0,0,0.95) 20%, transparent);
            text-align: right;
        }

        .projects-swiper .swiper-slide h3 {
             font-size: 1.125rem;
             margin-bottom: 0.25rem;
        }
        
        .projects-swiper .swiper-slide p {
            font-size: 0.8rem;
            color: #d1d5db;
        }
        
        .projects-swiper .swiper-pagination-bullet {
            background-color: #B89E82;
            opacity: 0.5;
        }

        .projects-swiper .swiper-pagination-bullet-active {
            opacity: 1;
            width: 20px;
            border-radius: 5px;
        }
        
        .projects-swiper .swiper-button-next,
        .projects-swiper .swiper-button-prev {
            color: #fff;
            background-color: rgba(0,0,0,0.3);
            width: 44px;
            height: 44px;
            border-radius: 50%;
            backdrop-filter: blur(5px);
        }
        .projects-swiper .swiper-button-next:after,
        .projects-swiper .swiper-button-prev:after {
            font-size: 1.2rem;
            font-weight: bold;
        }

/* Desktop Card Styles */
        .news-card {
            background: rgba(46, 58, 70, 0.5);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 2rem;
            transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
            overflow: hidden;
        }
        .news-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 15px 50px rgba(0,0,0,0.5);
        }
        .news-card img {
            transition: transform 0.4s ease-in-out;
        }
        .news-card:hover img {
            transform: scale(1.05);
        }
        
        /* --- Mobile Slider (Swiper) --- */
       .news-swiper-container {
            width: 100%;
            padding-bottom: 50px; /* Space for pagination */
            display: none; /* Hidden by default */
        }
        @media (max-width: 767px) {
            .news-swiper-container {
                display: block;
            }
            .news-grid {
                display: none;
            }
        }
        .news-swiper .swiper-slide {
            width: 85%;
            height: 400px;
            border-radius: 1.5rem;
            overflow: hidden;
            position: relative;
            box-shadow: 0 10px 30px rgba(0,0,0,0.4);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
        }
        .news-swiper .swiper-slide-active {
            transform: scale(1.05);
            box-shadow: 0 15px 45px rgba(184, 158, 130, 0.3);
        }
        
        .news-swiper .news-card-image {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .news-swiper .news-card-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(10, 10, 26, 1) 25%, transparent 70%);
        }

        .news-swiper .news-card-content {
            position: relative;
            z-index: 2;
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            height: 100%;
            text-align: right;
        }

        .news-swiper .swiper-pagination-bullet {
            background-color: #B89E82;
            opacity: 0.6;
        }

        .news-swiper .swiper-pagination-bullet-active {
            opacity: 1;
            width: 25px;
            border-radius: 5px;
        }
        
        .news-swiper .swiper-button-next,
        .news-swiper .swiper-button-prev {
            color: #fff;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
        }
        .news-swiper .swiper-button-next:after,
        .news-swiper .swiper-button-prev:after {
            font-size: 1rem;
            font-weight: bold;
        }

          /* Marquee specific styles */
        .marquee-container {
            width: 100%;
            overflow: hidden;
            -webkit-mask-image: linear-gradient(to right, transparent, white 10%, white 90%, transparent);
            mask-image: linear-gradient(to right, transparent, white 10%, white 90%, transparent);
        }

        .marquee-track {
            display: flex;
            width: fit-content;
            animation: marquee-right 80s linear infinite;
        }
        
        .marquee-container:hover .marquee-track {
            animation-play-state: paused;
        }

        .logo-item {
            height: 80px !important;
            margin: 0 3rem;
            filter: grayscale(100%) brightness(0.7) contrast(1.2);
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .logo-item:hover {
            filter: grayscale(0%) brightness(1) contrast(1);
            transform: scale(1.15);
        }

        @media (max-width: 767px) {
            .logo-item {
                height: 60px;
                margin: 0 1.5rem;
            }
        }


        /* Product Gallery Styles */
        .product-gallery-main {
            transition: all 0.4s ease-in-out;
        }
        .product-gallery-main:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.4), 0 0 20px rgba(184, 158, 130, 0.4);
            border-color: #B89E82;
        }
        
        /* Updated styles for main image transition */
        .product-gallery-main img {
            transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
            transform-origin: center center;
        }

        .product-gallery-main img.image-is-changing {
            opacity: 0;
            transform: scale(0.95);
        }
       
        /* New Thumbnail Styles for fixed size and enhanced appeal */
        .thumbnail-container {
            position: relative;
            overflow: hidden;
            aspect-ratio: 1 / 1;
            border-radius: 0.75rem;
            cursor: pointer;
            border: 2px solid transparent;
            transition: all 0.3s ease-in-out;
        }
        .thumbnail-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.4s ease-in-out;
            filter: brightness(0.7) grayscale(30%);
        }
        .thumbnail-container.active,
        .thumbnail-container:hover {
            border-color: #B89E82;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5), 0 0 15px rgba(184, 158, 130, 0.6);
        }
        .thumbnail-container:hover img,
        .thumbnail-container.active img {
            transform: scale(1.1);
            filter: brightness(1) grayscale(0%);
        }
        
        /* FAQ Styles */
        .faq-item {
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .faq-item.active .faq-question {
            color: #B89E82;
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-in-out;
        }
        .faq-item.active .faq-answer {
            max-height: 200px;
        }
        .faq-toggle-icon {
            transition: transform 0.3s ease;
        }
        .faq-item.active .faq-toggle-icon {
            transform: rotate(180deg);
        }

        /* Product Card Styles (Used for related products) */
        .product-card {
            background: rgba(46, 58, 70, 0.5);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 1.5rem;
            transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
            overflow: hidden;
        }
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 50px rgba(0,0,0,0.5);
            border-color: #B89E82;
        }
        .product-card img {
            transition: transform 0.4s ease-in-out;
        }
        .product-card:hover img {
            transform: scale(1.05);
        }
        
        /* Modal Styles */
        #contact-modal-overlay:not(.hidden) {
            animation: fade-in 0.3s ease-out forwards;
        }
        #contact-modal:not(.hidden) {
            animation: modal-pop-in 0.3s ease-out forwards;
        }

        /* Lightbox Styles */
        #lightbox-overlay:not(.hidden) {
            animation: fade-in 0.3s ease-out forwards;
        }
        #lightbox-image {
            animation: modal-pop-in 0.3s ease-out forwards;
        }

        /* New Tab Styles */
        .tab-button {
            transition: all 0.3s ease;
            background-color: transparent;
            color: #9ca3af; /* gray-400 */
        }
        .tab-button:hover {
            color: #fff;
            background-color: rgba(184, 158, 130, 0.1);
        }
        .tab-button.active {
            color: #fff;
            background-color: rgba(184, 158, 130, 0.25);
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }
        .tab-content {
            display: none;
        }
        .tab-content.active {
            display: block;
            animation: tab-fade-in 0.5s ease;
        }

        @keyframes pulse-glow {
           '0%': { transform: 'scale(1)', boxShadow: '0 0 5px rgba(184, 158, 130, 0.3)' },
           '50%': { transform: 'scale(1.1)', boxShadow: '0 0 20px rgba(184, 158, 130, 0.8)' },
           '100%': { transform: 'scale(1)', boxShadow: '0 0 5px rgba(184, 158, 130, 0.3)' }
        }
        .product-gallery-main:hover #open-lightbox-btn {
            animation: pulse-glow 2s ease-in-out infinite;
        }
        
        /* Masonry Grid Styles */
        .masonry-grid {
            column-count: 1;
            column-gap: 1.5rem;
        }
        @media (min-width: 768px) {
            .masonry-grid {
                column-count: 2;
            }
        }
        @media (min-width: 1024px) {
            .masonry-grid {
                column-count: 3;
            }
        }
        .masonry-item {
            display: inline-block;
            width: 100%;
            margin-bottom: 1.5rem;
            break-inside: avoid;
        }
        
        
           .category-display-card { opacity: 0; background: rgba(46, 58, 70, 0.3); backdrop-filter: blur(15px); border: 1px solid rgba(255, 255, 255, 0.1); position: relative; display: block; transition: all 0.4s ease; }
        .category-display-card::before { content: ''; position: absolute; top: 0; left: -150%; width: 80%; height: 100%; z-index: 2; background: linear-gradient(to right, transparent 0%, rgba(255,255,255,0.2) 50%, transparent 100%); transform: skewX(-25deg); }
        .category-display-card:hover::before { left: 150%; transition: left 0.8s ease-in-out; }
        .category-display-card:hover { transform: translateY(-10px); }
        .view-switcher button { background-color: #2E3A46; color: #d1d5db; border: 1px solid transparent; transition: all 0.3s ease; }
        .view-switcher button.active { background-color: #B89E82; color: #0a0a1a; font-weight: bold; }
        .filter-select { background-color: #111827; color: #e5e7eb; border: 1px solid #4b5563; border-radius: 999px; padding: 0.5rem 1rem 0.5rem 2.5rem; -webkit-appearance: none; -moz-appearance: none; appearance: none; background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e"); background-repeat: no-repeat; background-position: left 0.75rem center; background-size: 1em; font-size: 0.8rem; font-weight: 500; transition: all 0.3s ease; cursor: pointer; text-align: right; }
        .filter-select:hover { border-color: #B89E82; background-color: #1f2937; }
        .filter-select:focus { outline: none; border-color: #B89E82; box-shadow: 0 0 0 2px rgba(184, 158, 130, 0.4); }
        .search-input { background-color: #111827; color: #e5e7eb; border: 1px solid #4b5563; border-radius: 999px; padding: 0.9rem 4rem 0.9rem 2.5rem; font-size: 1.1rem; font-weight: 500; transition: all 0.3s ease; width: 100%; box-shadow: 0 4px 15px rgba(0,0,0,0.2); }
        .search-input:focus { outline: none; border-color: #B89E82; background-color: #1f2937; box-shadow: 0 0 0 3px rgba(184, 158, 130, 0.4), 0 5px 20px rgba(0,0,0,0.3); }
        .search-input::placeholder { color: #6b7280; }
        #category-grid.view-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 2rem; }
        #category-grid.view-grid .category-display-card { height: 250px; border-radius: 2rem; overflow: hidden; border: 2px solid #2E3A46; }
        #category-grid.view-grid .category-display-card:hover { border-color: #B89E82; }
        .grid-view-content { position: relative; width: 100%; height: 100%; }
        .category-card-image { position: absolute; inset: 0; height: 100%; width: 100%; object-fit: cover; transition: all 0.5s ease; }
        .category-card-content { position: absolute; bottom: 0; width: 100%; padding: 1.5rem; text-align: center; background: linear-gradient(to top, rgba(10,10,26,0.8), transparent);}
        .category-card-title { transition: color 0.5s ease, text-shadow 0.5s ease, transform 0.5s ease; }
        #category-grid.view-list { display: flex; flex-direction: column; gap: 0; }
        #category-grid.view-list .category-display-card { height: auto; display: flex; align-items: center; border-radius: 0; background: transparent; border: none; border-bottom: 1px solid rgba(255, 255, 255, 0.1); padding: 1rem 0; }
        #category-grid.view-list .category-display-card:last-child { border-bottom: none; }
        #category-grid.view-list .category-display-card:hover { background: rgba(46, 58, 70, 0.3); transform: none; }
        .list-view-item { display: grid; grid-template-columns: 80px 1fr auto; align-items: center; width: 100%; padding: 0 1rem; gap: 1rem; }
        .list-view-image-wrapper { width: 80px; height: 60px; border-radius: 0.75rem; overflow: hidden; flex-shrink: 0; }
        .list-view-image { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
        #category-grid.view-list .category-display-card:hover .list-view-image { transform: scale(1.1); }
        .list-view-title-wrapper { position: relative; padding-bottom: 4px; justify-self: start; }
        .list-view-title-wrapper::after { content: ''; position: absolute; bottom: 0; right: 0; width: 0; height: 2px; background-color: #B89E82; transition: width 0.4s ease; }
        #category-grid.view-list .category-display-card:hover .list-view-title-wrapper::after { width: 100%; }
        .list-view-title { justify-self: start; color: #e5e7eb; font-size: 1rem; transition: color 0.4s ease; }
        #category-grid.view-list .category-display-card:hover .list-view-title { color: #B89E82; }
        .list-view-link { background-color: transparent; border: 1px solid #B89E82; color: #B89E82; padding: 0.5rem 1rem; border-radius: 999px; font-size: 0.875rem; white-space: nowrap; font-weight: 600; transition: all 0.3s ease; display: flex; align-items: center; gap: 0.5rem; overflow: hidden; }
        .list-view-link .link-icon { transform: translateX(200%); opacity: 0; transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
        #category-grid.view-list .category-display-card:hover .list-view-link { background-color: #B89E82; color: #0a0a1a; box-shadow: 0 0 15px rgba(184, 158, 130, 0.5); }
        #category-grid.view-list .category-display-card:hover .link-icon { transform: translateX(0); opacity: 1; }
        #category-grid.view-detailed-list { display: flex; flex-direction: column; gap: 2rem; }
        #category-grid.view-detailed-list .category-display-card { height: auto; border-radius: 1.5rem; }
        .detailed-list-item { display: grid; grid-template-columns: 120px 1fr; align-items: center; gap: 1.5rem; padding: 1.5rem; }
        .detailed-list-image { width: 120px; height: 120px; border-radius: 1rem; object-fit: cover; transition: transform 0.4s ease; }
        #category-grid.view-detailed-list .category-display-card:hover .detailed-list-image { transform: scale(1.05); }
        .detailed-list-content { text-align: right; }
        .detailed-list-title { font-size: 1.25rem; font-weight: bold; color: #fff; }
        .detailed-list-desc { font-size: 0.875rem; color: #d1d5db; margin: 0.5rem 0 1rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
        .detailed-list-link { background-color: #B89E82; color: #0a0a1a; padding: 0.5rem 1.5rem; border-radius: 999px; font-size: 0.875rem; display: inline-block; transition: all 0.3s ease; }
        #category-grid.view-detailed-list .category-display-card:hover .detailed-list-link { box-shadow: 0 0 15px rgba(184, 158, 130, 0.5); transform: scale(1.05); }
        .view-grid .list-view-item, .view-grid .detailed-list-item { display: none; }
        .view-list .grid-view-content, .view-list .detailed-list-item { display: none; }
        .view-detailed-list .grid-view-content, .view-detailed-list .list-view-item { display: none; }
        @media (max-width: 767px) {
            #category-grid.view-grid { grid-template-columns: 1fr; }
            @media (min-width: 500px) { #category-grid.view-grid { grid-template-columns: repeat(2, 1fr); } }
            #category-grid.view-list .list-view-item { grid-template-columns: 80px 1fr; grid-template-rows: auto auto; gap: 0.5rem 1rem; padding: 0 0.5rem; }
            #category-grid.view-list .list-view-image-wrapper { grid-row: span 2; }
            #category-grid.view-list .list-view-title-wrapper { align-self: end; }
            #category-grid.view-list .list-view-link { justify-self: start; align-self: start; padding: 0.25rem 0.75rem; font-size: 0.75rem; }
            #category-grid.view-detailed-list .category-display-card { overflow: hidden; }
            #category-grid.view-detailed-list .detailed-list-item { grid-template-columns: 100px 1fr; gap: 1rem; padding: 1rem; }
            #category-grid.view-detailed-list .detailed-list-image { width: 100px; height: 100px; }
            #category-grid.view-detailed-list .detailed-list-content { text-align: right; padding: 0; }
        
        /*--about-us--*/


.info-grid-container {
            perspective: 1500px;
        }

        .info-box {
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(184, 158, 130, 0.2);
            transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.4s ease, border-color 0.4s ease;
            transform-style: preserve-3d;
        }
        .info-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 50%;
            height: 100%;
            background: linear-gradient(to right, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
            transform: skewX(-25deg);
            transition: left 0.8s cubic-bezier(0.23, 1, 0.32, 1);
        }
        .info-box:hover::before {
            left: 150%;
        }
        .info-box:hover {
            border-color: rgba(184, 158, 130, 0.7);
            box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 30px rgba(184, 158, 130, 0.4);
            transform: translateY(-10px) rotateX(10deg) scale(1.05);
        }
        


       .info-grid-container {
            perspective: 1500px;
        }

        .info-box {
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(184, 158, 130, 0.2);
            transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.4s ease, border-color 0.4s ease;
            transform-style: preserve-3d;
        }
        .info-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 50%;
            height: 100%;
            background: linear-gradient(to right, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
            transform: skewX(-25deg);
            transition: left 0.8s cubic-bezier(0.23, 1, 0.32, 1);
        }
        .info-box:hover::before {
            left: 150%;
        }
        .info-box:hover {
            border-color: rgba(184, 158, 130, 0.7);
            box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 30px rgba(184, 158, 130, 0.4);
            transform: translateY(-10px) rotateX(10deg) scale(1.05);
        }
        
        #hero-content {
             transition: transform 0.1s linear;
        }

        .text-brand-teal {
            text-shadow: 0 0 10px rgba(184, 158, 130, 0.8), 0 0 20px rgba(184, 158, 130, 0.6);
        }
        
        .value-card {
            background-color: rgba(46, 58, 70, 0.2);
            border: 1px solid #2E3A46;
            transition: background-color 0.3s ease, border-color 0.3s ease;
        }
        .value-card:hover {
            background-color: rgba(46, 58, 70, 0.4);
            border-color: #B89E82;
        }

        /* Swiper Styles for Coverflow */
        .customer-swiper {
            width: 100%;
            padding-top: 50px;
            padding-bottom: 50px;
        }

        .customer-swiper .swiper-slide {
            background-position: center;
            background-size: cover;
            width: 300px;
            height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .customer-swiper .swiper-slide .customer-card {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 100%;
            background-color: rgba(46, 58, 70, 0.2);
            border: 1px solid #2E3A46;
            border-radius: 1rem;
            transition: background-color 0.4s ease, border-color 0.4s ease;
        }
        
        .customer-swiper .swiper-slide-active .customer-card {
             background-color: rgba(46, 58, 70, 0.5);
             border-color: #B89E82;
        }

        .customer-swiper .swiper-slide img {
            display: block;
            width: 70%;
            height: auto;
            filter: grayscale(100%) opacity(0.6);
            transition: filter 0.5s ease;
        }
        
        .customer-swiper .swiper-slide-active img {
            filter: grayscale(0%) opacity(1);
        }

        .swiper-pagination-bullet {
            background-color: rgba(184, 158, 130, 0.5);
            opacity: 1;
        }
        .swiper-pagination-bullet-active {
            background-color: #B89E82;
        }
        
        /* 3D Image Hover Effect */
        .image-container-3d {
            perspective: 1000px;
        }

        .image-container-3d img {
            transition: transform 0.1s linear, box-shadow 0.4s ease;
        }

        .image-container-3d:hover img {
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6), 0 0 20px rgba(184, 158, 130, 0.4);
        }
 
   
   }