
        /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Arial, Helvetica, sans-serif;
           
        }

        body {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
            color: #3c2a21;
        }

        /* Color Theme Variables - Warm Formal Palette */
        /* :root {
            --primary-color: #8b2c28;
            --secondary-color: #a45a52; 
            --accent-color: #6d4c41; 
            --light-color: #f5f0e6; 
            --dark-color: #3c2a21; 
            --border-color: #d2b48c;
            --background-color: #f8f4ea; 
            --gold-accent: #c9a66b;
        } */
        :root {
            --primary-color: #5d3a6c;
            /* Deep purple */
            /* --secondary-color: #a26769;   hover colour  Dusty rose */
            --accent-color: #6d4a70;
            /* Muted plum */
            --light-color: #f8f1ff;
            /* Soft lavender-white */
            --dark-color: #2d2033;
            /* Near-black purple */
            --border-color: #c8a2c8;
            /* Lilac */
            --background-color: #fff9fb;
            /* Blush pink-white */
            --gold-accent: #d4a373;
            /* Warm bronze */
            --tab-switch-hover: #a57ecc;
            /* Light lavender */
        }

        /* Header Styles */
        .header {
            text-align: center;
            padding: 20px 0;
            background-color: var(--background-color);
            position: relative;
        }

        .logo {
            max-width: 200px;
            margin-bottom: 20px;
        }

        /* Desktop Navigation */
        .nav {
            display: flex;
            justify-content: center;
            border-bottom: 1px solid var(--border-color);
            padding-bottom: 10px;
            margin-bottom: 20px;
        }

        .nav a {
            margin: 0 15px;
            padding: 8px 15px;
            text-decoration: none;
            color: var(--dark-color);
            font-weight: bold;
            position: relative;
        }

        .nav a:hover {
            color: var(--primary-color);
        }

        .nav a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--primary-color);
            transition: width 0.3s;
        }

        .nav a:hover:after {
            width: 100%;
        }

        /* Mobile Hamburger Menu */
        .hamburger-menu {
            display: none;
        }

        .menu-toggle {
            display: none;
        }

        .hamburger-icon {
            display: none;
            cursor: pointer;
            padding: 10px;
            position: absolute;
            top: 20px;
            right: 20px;
            z-index: 1000;
        }

        .hamburger-icon span {
            display: block;
            width: 25px;
            height: 3px;
            margin: 5px 0;
            background-color: var(--dark-color);
            transition: all 0.3s;
        }

        .mobile-nav {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s, visibility 0.3s;
        }

        .mobile-nav-content {
            position: absolute;
            top: 0;
            right: -250px;
            width: 250px;
            height: 100%;
            background-color: var(--light-color);
            padding: 80px 20px 20px;
            transition: right 0.3s;
            overflow-y: auto;
        }

        .mobile-nav a {
            display: block;
            padding: 15px 10px;
            text-decoration: none;
            color: var(--dark-color);
            font-weight: bold;
            border-bottom: 1px solid var(--border-color);
            transition: background-color 0.3s;
        }

        .mobile-nav a:hover {
            background-color: var(--border-color);
            color: var(--primary-color);
        }

        #menu-toggle:checked~.mobile-nav {
            opacity: 1;
            visibility: visible;
        }

        #menu-toggle:checked~.mobile-nav .mobile-nav-content {
            right: 0;
        }

        #menu-toggle:checked~.hamburger-icon span:nth-child(1) {
            transform: translateY(8px) rotate(45deg);
        }

        #menu-toggle:checked~.hamburger-icon span:nth-child(2) {
            opacity: 0;
        }

        #menu-toggle:checked~.hamburger-icon span:nth-child(3) {
            transform: translateY(-8px) rotate(-45deg);
        }

        /* Image Slider Styles */
        .slider-container {
            position: relative;
            width: 100%;
            overflow: hidden;
            margin-bottom: 30px;
            border: 1px solid var(--border-color);
            border-radius: 8px;
        }

        .slider {
            width: 500%;
            height: 300px;
            display: flex;
            animation: slide 15s infinite;
        }

        .slide {
            width: 20%;
            height: 100%;
        }

        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        @keyframes slide {
            0% {
                transform: translateX(0);
            }

            20% {
                transform: translateX(0);
            }

            25% {
                transform: translateX(-20%);
            }

            45% {
                transform: translateX(-20%);
            }

            50% {
                transform: translateX(-40%);
            }

            70% {
                transform: translateX(-40%);
            }

            75% {
                transform: translateX(-60%);
            }

            95% {
                transform: translateX(-60%);
            }

            100% {
                transform: translateX(-80%);
            }
        }

        .slider-nav {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            transform: translateY(-50%);
        }

        .slider-nav label {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.7);
            border-radius: 50%;
            cursor: pointer;
            font-size: 20px;
            font-weight: bold;
            margin: 0 10px;
            transition: background-color 0.3s;
        }

        .slider-nav label:hover {
            background-color: rgba(255, 255, 255, 0.9);
        }

        /* Product Section Styles */
        .product-section {
            margin-bottom: 30px;
            background-color: var(--background-color);
            border-radius: 8px;
            overflow: hidden;
        }

        /* First div: Image and Features */
        .product-image-features {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            padding: 20px;
            /* border-bottom: 1px solid var(--border-color); */
        }

        .product-image {
            flex: 1;
            min-width: 300px;
            text-align: center;
        }

        .product-image img {
            max-width: 100%;
            border: 1px solid var(--border-color);
            padding: 5px;
            border-radius: 4px;
            background-color: white;
        }

        /* Features Container */
        .features-container {
            justify-content: space-evenly;
            flex: 1;
            min-width: 300px;
            display: grid;
            gap: 20px;
        }

        .feature {
            display: flex;
            align-items: center;
            gap: 15px;
            font-size: 1.2em;
            color: #333;
            /* background-color: #fff; */
            padding: 15px;
            border-radius: 8px;
            /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
            transition: transform 0.3s ease;
        }

        .feature:hover {
            transform: translateY(-5px);
        }

        .feature i {
            color: #c698f4;
            font-size: 2em;
            width: 40px;
            text-align: center;
        }

        .feature h3 {
            margin: 0;
            font-size: 1.1em;
            color: #444;
        }

        .feature p {
            margin: 0;
            color: #777;
        }

        /* Second div: Product Table */
        .product-table-container {
            padding: 20px;
            /* border-bottom: 1px solid var(--border-color); */
        }

        .product-table {
            width: 100%;
            border-collapse: collapse;
            border-radius: 4px;
            overflow: hidden;
        }

        .product-table th,
        .product-table td {
            border: 1px solid var(--border-color);
            padding: 10px;
            text-align: left;
        }

        .product-table th {
            background-color: var(--light-color);
            width: 30%;
            color: var(--dark-color);
        }

        /* Third div: Product Description */
        .product-description-container {
            padding: 20px;
        }

        .product-description {
            line-height: 1.6;
        }

        .product-description h2 {
            margin-bottom: 15px;
            color: var(--dark-color);
        }

        .product-description p {
            margin-bottom: 15px;
        }

        /* Responsive Styles */
        @media (max-width: 768px) {
            .product-image-features {
                flex-direction: column;
            }

            .features-container {
                margin-top: 20px;
            }
        }

        /* Tabbed Section Styles - Desktop */
        .tabs {
            margin-bottom: 30px;
            border-radius: 8px;
            overflow: hidden;
            border: 1px solid var(--border-color);
        }

        .tab-inputs {
            position: absolute;
            opacity: 0;
            z-index: -1;
        }

        .tab-labels {
            display: flex;
            flex-wrap: wrap;
            border-bottom: 1px solid var(--border-color);
            background-color: var(--light-color);
        }

        .tab-label {
            padding: 12px 20px;
            cursor: pointer;
            background-color: var(--light-color);
            margin-right: 2px;
            color: var(--dark-color);
            transition: all 0.3s;
        }

        .tab-label:hover {
            background-color: var(--tab-switch-hover);
            color: white;
        }

        .tab-content {
            display: none;
            padding: 20px;
            background-color: white;
        }

        #tab1:checked~.tab-labels .tab-label[for="tab1"],
        #tab2:checked~.tab-labels .tab-label[for="tab2"],
        #tab3:checked~.tab-labels .tab-label[for="tab3"],
        #tab4:checked~.tab-labels .tab-label[for="tab4"] {
            background-color: var(--primary-color);
            color: white;
        }

        #tab1:checked~.tab-contents #content1,
        #tab2:checked~.tab-contents #content2,
        #tab3:checked~.tab-contents #content3,
        #tab4:checked~.tab-contents #content4 {
            display: block;
        }

        /* Mobile Accordion Tabs */
        .mobile-tabs {
            display: none;
            margin-bottom: 30px;
        }

        .mobile-tab {
            margin-bottom: 5px;
            border-radius: 4px;
            overflow: hidden;
            border: 1px solid var(--border-color);
        }

        .mobile-tab-input {
            display: none;
        }

        .mobile-tab-label {
            display: block;
            padding: 15px;
            background-color: var(--light-color);
            color: var(--dark-color);
            font-weight: bold;
            cursor: pointer;
            position: relative;
        }

        .mobile-tab-label:after {
            content: '+';
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 20px;
            transition: transform 0.3s;
        }

        .mobile-tab-content {
            max-height: 0;
            overflow: hidden;
            background-color: white;
            transition: max-height 0.3s ease-out;
        }

        .mobile-tab-content-inner {
            padding: 15px;
            text-align: justify;
        }

        .mobile-tab-input:checked~.mobile-tab-label {
            background-color: var(--primary-color);
            color: white;
        }

        .mobile-tab-input:checked~.mobile-tab-label:after {
            content: '−';
        }

        .mobile-tab-input:checked~.mobile-tab-content {
            max-height: 1000px;
        }

        /* Cross-Selling Gallery Styles - Infinite Scroll */
        /* Cross-Selling Gallery Styles - Infinite Scroll */
        .gallery-container {
            margin-bottom: 30px;
            position: relative;
            overflow: hidden;
            padding: 15px;
            background-color: var(--background-color);
            border-radius: 8px;
        }

        .gallery-container h3 {
            margin-bottom: 15px;
            color: var(--dark-color);
        }

        .gallery-wrapper {
            width: 100%;
            overflow: hidden;
        }

        .gallery {
            display: flex;
            width: calc(215px * 20);
            /* Double the items for infinite scroll */
            animation: scrollGallery 20s linear infinite;
        }

        @keyframes scrollGallery {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(calc(-215px * 10));
            }

            /* Move back by half the items */
        }

        .gallery:hover {
            animation-play-state: paused;
        }

        .gallery-item {
            flex: 0 0 auto;
            width: 200px;
            /* height: 250px; */
            /* Fixed height to accommodate the image and content */
            margin-right: 15px;
            border: 1px solid var(--border-color);
            padding: 10px;
            text-align: center;
            background-color: white;
            border-radius: 4px;
            transition: transform 0.3s, box-shadow 0.3s;
            display: flex;
            flex-direction: column;
        }

        .gallery-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .gallery-item img {
            width: 100%;
            height: 150px;
            object-fit: cover;
            /* Changed from 'contain' to 'cover' */
            margin-bottom: 10px;
        }

        .gallery-item h4 {
            margin-bottom: 10px;
            font-size: 14px;
            color: var(--dark-color);
        }

        .gallery-item a {
            width: 100%;
            display: inline-block;
            padding: 5px 10px;
            background-color: var(--primary-color);
            color: white;
            text-decoration: none;
            border-radius: 3px;
            transition: background-color 0.3s;
            margin-top: auto;
            /* Pushes the button to the bottom */
        }

        .gallery-item a:hover {
            background-color: var(--accent-color);
        }

        /* Footer Styles */
        .footer {
            text-align: center;
            padding: 20px 0;
            background-color: var(--light-color);
            margin-top: 30px;
            border-radius: 8px;
        }

        .footer p {
            margin-bottom: 10px;
            font-size: 14px;
            color: var(--dark-color);
        }

        .footer-links a {
            margin: 0 10px;
            color: var(--primary-color);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: var(--accent-color);
            text-decoration: underline;
        }

        /* Responsive Styles */
        @media (max-width: 768px) {

            /* Show hamburger menu and hide regular nav */
            .nav {
                display: none;
            }
            .navbar .menu{
                display: none;
            }

            .hamburger-icon {
                display: none;
            }

            /* Hide banner on mobile */
            .slider-container {
                display: none;
            }

            .product-section {
                flex-direction: column;
            }

            /* Hide desktop tabs and show mobile accordion tabs */
            .tabs {
                display: none;
            }

            .mobile-tabs {
                display: block;
            }

            /* Adjust header for mobile */
            .header {
                padding-top: 20px;
                padding-bottom: 10px;
                text-align: center;
            }

            .logo {
                margin-bottom: 10px;
                max-width: 150px;
            }
        }
/* 
        .Des_heading {
            width: 30%;
        } */

        .gallery-item h4{
            display: none;
        }
        .navbar {
            display: flex;
            justify-content: center;
            gap: 30px;
            padding: 10px;
        }

        .menu {
            position: relative;
        }

        .menu>a {
            text-decoration: none;
            color: black;
            font-size: 16px;
            padding: 8px 12px;
        }

        .dropdown {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            min-width: 150px;
            border: 1px solid #ccc;
            background: white;
            text-align: center;
        }

        .dropdown a {
            display: block;
            padding: 10px;
            text-decoration: none;
            color: black;
        }

        .dropdown a:hover {
            background: #eee;
        }

        .menu:hover .dropdown {
            display: block;
            z-index: 10;
        }

        /* Improved Dropdown Styles */
        .navbar .menu {
            position: relative;
        }

        .navbar .dropdown {
            /* padding-top: 0.5rem; */
            /* margin-top: 0.5rem; */
            height: fit-content;
            display: none;
            position: absolute;
            top: 100%;
            left: -30%;
            /* min-width: 180px;             set your desired width */
            background-color: var(--light-color);
            border: 1px solid var(--border-color);
            border-radius: 6px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            /* padding: 8px 0;               vertical padding for list */
            z-index: 100;
            transition: opacity 0.2s ease, transform 0.2s ease;
            opacity: 0;
            transform: translateY(5px);
            visibility: hidden;
        }

        .navbar .menu:hover .dropdown {
            display: block;
            opacity: 1;
            transform: translateY(0);
            visibility: visible;
        }

        .navbar .dropdown a {
            display: block;
            padding: 10px 16px;
            /* add some breathing room */
            text-decoration: none;
            color: var(--dark-color);
            font-size: 0.95rem;
            transition: background-color 0.2s, color 0.2s;
        }

        .navbar .dropdown a:hover {
            background-color: var(--tab-switch-hover);
            color: white;
        }

        .navbar .menu>a {
            position: relative;
            text-decoration: none;
            color: black;
            font-size: 16px;
            padding: 8px 12px;
            display: inline-block;
        }

        .navbar .menu>a::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary-color);
            /* purple underline */
            transition: width 0.3s ease;
        }

        .navbar .menu>a:hover::after {
            width: 100%;
        }

        .mobile-tabs{
            text-align: justify;
        }

        .product-description , .tab-contents{
            text-align: justify;
        }