
        :root {
            --primary: #D4AF37;
            --secondary: #0B4619;
            --light: #F8F5E6;
            --dark: #333333;
            --white: #FFFFFF;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: var(--light);
            color: var(--dark);
            line-height: 1.6;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        header {
            background-color: var(--white);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo img {
            height: 50px;
        }
        
        .logo-text {
            font-size: 28px;
            font-weight: 700;
            color: var(--secondary);
            margin-left: 10px;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 25px;
        }
        
        nav ul li a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            transition: color 0.3s;
        }
        
        nav ul li a:hover {
            color: var(--primary);
        }
        
        .nav-cta {
            background-color: var(--primary);
            color: var(--white) !important;
            padding: 8px 15px;
            border-radius: 4px;
        }
        
        .mobile-menu-btn {
            display: none;
            font-size: 24px;
            cursor: pointer;
        }
        
        /* Hero Section */
        /* .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1594633312681-425c7b97ccd1?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1500&q=80');
            background-size: cover;
            background-position: center;
            color: var(--white);
            padding: 246px 0;
            text-align: center;
        } */

        /* new */
        .hero {
  position: relative;
  height: 100vh;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .hero {
    height: 70vh;
  }}

@media screen and (max-width: 468px) {
  .hero {
    height: 55vh;
  }}

@media screen and (max-width:1280px){
.hero{
    height:52vh;
}}

.hero video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
  z-index: -1;
}

.hero .container {
  position: relative;
  z-index: 1;
  top: 40%;
  transform: translateY(-40%);
}
        /* end */
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
        }
        
        .hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
        }
        
        .btn {
            display: inline-block;
            background-color: var(--primary);
            color: var(--white);
            padding: 12px 30px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            transition: background-color 0.3s;
        }
        
        .btn:hover {
            background-color: #c19b2c;
        }
        
        /* Features Section */
        .features {
            padding: 80px 0;
            background-color: var(--white);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            color: var(--secondary);
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }
        
        .section-title p {
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .feature-card {
            text-align: center;
            padding: 30px 20px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
        }
        
        .feature-icon {
            font-size: 40px;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        .feature-card h3 {
            margin-bottom: 15px;
            color: var(--secondary);
        }
        
        /* Products Section */
        .products {
            padding: 80px 0;
            background-color: var(--light);
        }
        @media screen and (max-width:1280px){
            .products{
                margin-top: -96px;
                margin-bottom: -130px
            }
          }
            
        
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }
        
        .product-card {
            background-color: var(--white);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .product-img {
            height: 200px;
            background-color: #f5f5f5;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .product-img i {
            font-size: 80px;
            color: var(--primary);
        }
        
        .product-info {
            padding: 20px;
        }
        
        .product-info h3 {
            margin-bottom: 10px;
            color: var(--secondary);
        }
        
        .product-price {
            font-size: 1.2rem;
            color: var(--primary);
            font-weight: 700;
            margin: 10px 0;
        }
        
        .add-to-cart {
            width: 100%;
            padding: 10px;
            background-color: var(--primary);
            color: var(--white);
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 600;
            transition: background-color 0.3s;
        }
        
        .add-to-cart:hover {
            background-color: #c19b2c;
        }
        
        /* Process Section */
        .process {
            padding: 80px 0;
            background-color: var(--white);
        }

        @media screen and (max-width:810px){
            .process{
                margin-bottom: -60px
            }
          }
        
        .process-steps {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            margin-top: 50px;
        }
        
        .step {
            flex-basis: calc(25% - 30px);
            text-align: center;
            position: relative;
        }
        
        .step-number {
            width: 50px;
            height: 50px;
            background-color: var(--primary);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0 auto 20px;
        }
        
        .step:not(:last-child)::after {
            content: "";
            position: absolute;
            top: 25px;
            right: -15%;
            width: 30%;
            height: 2px;
            background-color: var(--primary);
        }
        
        /* Footer */
        footer {
            background-color: var(--secondary);
            color: var(--white);
            padding: 60px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-column h3 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            color: var(--primary);
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a {
            color: var(--light);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-column ul li a:hover {
            color: var(--primary);
        }
        
        .social-links {
            display: flex;
            gap: 15px;
        }
        
        .social-links a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: var(--white);
            text-align: center;
            line-height: 40px;
            transition: background-color 0.3s;
        }
        
        .social-links a:hover {
            background-color: var(--primary);
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .step {
                flex-basis: calc(50% - 30px);
                margin-bottom: 40px;
            }
            
            .step:not(:last-child)::after {
                display: none;
            }
        }
        
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                text-align: center;
            }
            
            .logo {
                margin-bottom: 15px;
            }
            
            nav ul {
                flex-direction: column;
                align-items: center;
            }
            
            nav ul li {
                margin: 10px 0;
            }
            
            .mobile-menu-btn {
                display: block;
                position: absolute;
                top: 20px;
                right: 20px;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
        }
   




        /* product */




        :root {
            --primary: #D4AF37;
            --secondary: #0B4619;
            --light: #F8F5E6;
            --dark: #333333;
            --white: #FFFFFF;
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: var(--light);
            color: var(--dark);
            line-height: 1.6;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        header {
            background-color: var(--white);
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo-icon {
            font-size: 32px;
            color: var(--primary);
            margin-right: 10px;
        }
        
        .logo-text {
            font-size: 28px;
            font-weight: 700;
            color: var(--secondary);
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 25px;
        }
        
        nav ul li a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            transition: color 0.3s;
        }
        
        nav ul li a:hover {
            color: var(--primary);
        }
        
        .nav-cta {
            background-color: var(--primary);
            color: var(--white) !important;
            padding: 8px 15px;
            border-radius: 4px;
        }
        
        .mobile-menu-btn {
            display: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--secondary);
        }
        
        /* Page Header */
        .page-header {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1612336307429-8a0d4b2d685a?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1500&q=80');
            background-size: cover;
            background-position: center;
            color: var(--white);
            padding: 80px 0;
            text-align: center;
            margin-bottom: 40px;
        }
        
        .page-header h1 {
            font-size: 2.8rem;
            margin-bottom: 20px;
        }
        
        .breadcrumb {
            display: flex;
            justify-content: center;
            list-style: none;
        }
        
        .breadcrumb li {
            margin: 0 10px;
        }
        
        .breadcrumb li a {
            color: var(--primary);
            text-decoration: none;
        }
        
        .breadcrumb li::after {
            content: ">";
            margin-left: 10px;
            color: var(--white);
        }
        
        .breadcrumb li:last-child::after {
            content: "";
        }
        
        /* Products Section */
        .products-section {
            padding: 40px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            color: var(--secondary);
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }
        
        .section-title p {
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }
        
        .product-card {
            background-color: var(--white);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: transform 0.3s;
            position: relative;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
        }
        
        .product-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background-color: var(--primary);
            color: var(--white);
            padding: 5px 10px;
            border-radius: 4px;
            font-size: 0.8rem;
            font-weight: 600;
            z-index: 10;
        }
        
        .product-img {
            height: 250px;
            background-color: #f5f5f5;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }
        
        .product-img img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: transform 0.5s;
        }
        
        .product-card:hover .product-img img {
            transform: scale(1.05);
        }
        
        .product-info {
            padding: 20px;
        }
        
        .product-info h3 {
            margin-bottom: 10px;
            color: var(--secondary);
            font-size: 1.3rem;
        }
        
        .product-desc {
            color: #666;
            margin-bottom: 15px;
            font-size: 0.9rem;
        }
        
        .product-price {
            font-size: 1.4rem;
            color: var(--primary);
            font-weight: 700;
            margin: 10px 0;
        }
        
        .product-meta {
            display: flex;
            justify-content: space-between;
            margin: 15px 0;
            font-size: 0.9rem;
            color: #666;
        }
        
        .quantity-selector {
            display: flex;
            align-items: center;
            margin: 15px 0;
        }
        
        .quantity-btn {
            width: 30px;
            height: 30px;
            background-color: var(--light);
            border: none;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
        }
        
        .quantity-input {
            width: 40px;
            height: 30px;
            text-align: center;
            margin: 0 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
        }
        
        .add-to-cart {
            width: 100%;
            padding: 12px;
            background-color: var(--primary);
            color: var(--white);
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 600;
            transition: background-color 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        
        .add-to-cart:hover {
            background-color: #c19b2c;
        }
        
        /* Features Section */
        .features {
            background-color: var(--white);
            padding: 60px 0;
            margin: 60px 0;
        }
        @media screen and (max-width:1280px){
            .features{
                margin:5px 0;
            }
          }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .feature-card {
            text-align: center;
            padding: 30px 20px;
            border-radius: 8px;
            background-color: var(--light);
            box-shadow: var(--shadow);
            transition: transform 0.3s;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
        }
        
        .feature-icon {
            font-size: 40px;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        .feature-card h3 {
            margin-bottom: 15px;
            color: var(--secondary);
        }
        
        /* Cart Modal */
        .cart-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 2000;
            justify-content: center;
            align-items: center;
        }
        
        .cart-content {
            background-color: var(--white);
            padding: 30px;
            border-radius: 8px;
            width: 90%;
            max-width: 500px;
            position: relative;
        }
        
        .close-cart {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 1.5rem;
            cursor: pointer;
            color: #666;
        }
        
        .cart-items {
            max-height: 300px;
            overflow-y: auto;
            margin: 20px 0;
        }
        
        .cart-item {
            display: flex;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px solid #eee;
        }
        
        .cart-total {
            font-size: 1.2rem;
            font-weight: 700;
            margin: 20px 0;
            text-align: right;
        }
        
        .checkout-btn {
            background-color: var(--primary);
            color: var(--white);
            padding: 12px 20px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 600;
            width: 100%;
        }
        
        /* Footer */
        footer {
            background-color: var(--secondary);
            color: var(--white);
            padding: 60px 0 20px;
            margin-top: 60px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-column h3 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            color: var(--primary);
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a {
            color: var(--light);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-column ul li a:hover {
            color: var(--primary);
        }
        
        .social-links {
            display: flex;
            gap: 15px;
        }
        
        .social-links a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: var(--white);
            text-align: center;
            line-height: 40px;
            transition: background-color 0.3s;
        }
        
        .social-links a:hover {
            background-color: var(--primary);
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        /* Responsive Styles */
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                text-align: center;
            }
            
            .logo {
                margin-bottom: 15px;
            }
            
            nav ul {
                flex-direction: column;
                align-items: center;
                display: none;
            }
            
            nav ul.show {
                display: flex;
            }
            
            nav ul li {
                margin: 10px 0;
            }
            
            .mobile-menu-btn {
                display: block;
                position: absolute;
                top: 20px;
                right: 20px;
            }
            
            .page-header h1 {
                font-size: 2.2rem;
            }
        }
  

    /* product end */

    /* process start */
    
        :root {
            --primary: #D4AF37;
            --secondary: #0B4619;
            --light: #F8F5E6;
            --dark: #333333;
            --white: #FFFFFF;
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: var(--light);
            color: var(--dark);
            line-height: 1.6;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        header {
            background-color: var(--white);
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo-icon {
            font-size: 32px;
            color: var(--primary);
            margin-right: 10px;
        }
        
        .logo-text {
            font-size: 28px;
            font-weight: 700;
            color: var(--secondary);
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 25px;
        }
        
        nav ul li a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            transition: color 0.3s;
        }
        
        nav ul li a:hover {
            color: var(--primary);
        }
        
        .nav-cta {
            background-color: var(--primary);
            color: var(--white) !important;
            padding: 8px 15px;
            border-radius: 4px;
        }
        
        .mobile-menu-btn {
            display: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--secondary);
        }
        
        /* Page Header */
        .page-header {
            /* background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1594633312681-425c7b97ccd1?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1500&q=80'); */
            background-size: cover;
            background-position: center;
            color: var(--white);
            padding: 80px 0;
            text-align: center;
            margin-bottom: 40px;
        }
        
        .page-header h1 {
            font-size: 2.8rem;
            margin-bottom: 20px;
        }
        
        .breadcrumb {
            display: flex;
            justify-content: center;
            list-style: none;
        }
        
        .breadcrumb li {
            margin: 0 10px;
        }
        
        .breadcrumb li a {
            color: var(--primary);
            text-decoration: none;
        }
        
        .breadcrumb li::after {
            content: ">";
            margin-left: 10px;
            color: var(--white);
        }
        
        .breadcrumb li:last-child::after {
            content: "";
        }
        
        /* Process Section */
        .process-section {
            padding: 40px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            color: var(--secondary);
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }
        
        .section-title p {
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .process-timeline {
            position: relative;
            max-width: 1000px;
            margin: 0 auto 80px;
        }
        
        .process-timeline::before {
            content: "";
            position: absolute;
            top: 0;
            bottom: 0;
            left: 50%;
            width: 4px;
            background-color: var(--primary);
            transform: translateX(-50%);
        }
        
        .process-step {
            display: flex;
            justify-content: flex-end;
            padding-right: 30px;
            position: relative;
            margin-bottom: 80px;
            width: 50%;
        }
        
        .process-step:nth-child(even) {
            align-self: flex-end;
            justify-content: flex-start;
            padding-left: 30px;
            padding-right: 0;
            left: 50%;
        }
        
        .step-content {
            background-color: var(--white);
            border-radius: 8px;
            padding: 25px;
            box-shadow: var(--shadow);
            width: 100%;
            max-width: 400px;
            position: relative;
        }
        
        .step-number {
            position: absolute;
            width: 50px;
            height: 50px;
            background-color: var(--primary);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            top: -25px;
        }
        
        .process-step:nth-child(odd) .step-number {
            right: -25px;
        }
        
        .process-step:nth-child(even) .step-number {
            left: -25px;
        }
        
        .step-content h3 {
            color: var(--secondary);
            margin-bottom: 15px;
            font-size: 1.4rem;
        }
        
        .step-image {
            margin-top: 20px;
            border-radius: 8px;
            overflow: hidden;
        }
        
        .step-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        /* Authenticity Section */
        .authenticity {
            background-color: var(--white);
            padding: 60px 0;
            margin-bottom: 60px;
        }
        
        .authenticity-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }
        
        .authenticity-text h2 {
            color: var(--secondary);
            margin-bottom: 20px;
            font-size: 2.2rem;
        }
        
        .authenticity-features {
            margin-top: 30px;
        }
        
        .authenticity-feature {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
        }
        
        .authenticity-icon {
            font-size: 24px;
            color: var(--primary);
            margin-right: 15px;
            margin-top: 5px;
        }
        
        .qr-section {
            text-align: center;
            background-color: var(--light);
            padding: 30px;
            border-radius: 8px;
        }
        
        .qr-code {
            width: 200px;
            height: 200px;
            background-color: var(--white);
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            box-shadow: var(--shadow);
        }
        
        .qr-code i {
            font-size: 80px;
            color: var(--dark);
        }
        
        /* Quality Assurance */
        .quality-section {
            margin-bottom: 60px;
        }
        
        .quality-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .quality-card {
            text-align: center;
            padding: 30px 20px;
            border-radius: 8px;
            background-color: var(--white);
            box-shadow: var(--shadow);
            transition: transform 0.3s;
        }
        
        .quality-card:hover {
            transform: translateY(-10px);
        }
        
        .quality-icon {
            font-size: 40px;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        .quality-card h3 {
            margin-bottom: 15px;
            color: var(--secondary);
        }
        
        /* Footer */
        footer {
            background-color: var(--secondary);
            color: var(--white);
            padding: 60px 0 20px;
            margin-top: 60px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-column h3 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            color: var(--primary);
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a {
            color: var(--light);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-column ul li a:hover {
            color: var(--primary);
        }
        
        .social-links {
            display: flex;
            gap: 15px;
        }
        
        .social-links a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: var(--white);
            text-align: center;
            line-height: 40px;
            transition: background-color 0.3s;
        }
        
        .social-links a:hover {
            background-color: var(--primary);
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .process-timeline::before {
                left: 30px;
            }

        @media screen and (max-width:800px){
            .step-number{
                position: static;
                height: 36px;
                width:36px;
            }
          
            
        }
            
            .process-step {
                width: 100%;
                padding-left: 70px;
                padding-right: 0;
            }
            
            .process-step:nth-child(even) {
                left: 0;
                padding-left: 70px;
            }
            
            .process-step:nth-child(odd) .step-number {
                left: 5px;
                right: auto;
            }
            
            .process-step:nth-child(even) .step-number {
                left: 5px;
            }
            
            .authenticity-content {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                text-align: center;
            }
            
            .logo {
                margin-bottom: 15px;
            }
            
            nav ul {
                flex-direction: column;
                align-items: center;
                display: none;
            }
            
            nav ul.show {
                display: flex;
            }
            
            nav ul li {
                margin: 10px 0;
            }
            
            .mobile-menu-btn {
                display: block;
                position: absolute;
                top: 20px;
                right: 20px;
            }
            
            .page-header h1 {
                font-size: 2.2rem;
            }
        }
   /* process end */

   /* benefits start */
   
        :root {
            --primary: #D4AF37;
            --secondary: #0B4619;
            --light: #F8F5E6;
            --dark: #333333;
            --white: #FFFFFF;
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: var(--light);
            color: var(--dark);
            line-height: 1.6;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        header {
            background-color: var(--white);
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo-icon {
            font-size: 32px;
            color: var(--primary);
            margin-right: 10px;
        }
        
        .logo-text {
            font-size: 28px;
            font-weight: 700;
            color: var(--secondary);
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 25px;
        }
        
        nav ul li a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            transition: color 0.3s;
        }
        
        nav ul li a:hover {
            color: var(--primary);
        }
        
        .nav-cta {
            background-color: var(--primary);
            color: var(--white) !important;
            padding: 8px 15px;
            border-radius: 4px;
        }
        
        .mobile-menu-btn {
            display: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--secondary);
        }
        
        /* Page Header */
        .page-header {
            /* background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1542838132-92c53300491e?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1500&q=80'); */
            background-size: cover;
            background-position: center;
            color: var(--white);
            padding: 80px 0;
            text-align: center;
            margin-bottom: 40px;
        }
        
        .page-header h1 {
            font-size: 2.8rem;
            margin-bottom: 20px;
        }
        
        .breadcrumb {
            display: flex;
            justify-content: center;
            list-style: none;
        }
        
        .breadcrumb li {
            margin: 0 10px;
        }
        
        .breadcrumb li a {
            color: var(--primary);
            text-decoration: none;
        }
        
        .breadcrumb li::after {
            content: ">";
            margin-left: 10px;
            color: var(--white);
        }
        
        .breadcrumb li:last-child::after {
            content: "";
        }
        
        /* Benefits Section */
        .benefits-section {
            padding: 40px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            color: var(--secondary);
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            margin-bottom: 15px;
            margin-top:-46px;
        }

        @media-screen and (max-width:1280px){
            .section-title h2 {                
                margin-bottom: -43px;
            }
        }
        
        .section-title p {
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }
        
        .benefit-card {
            background-color: var(--white);
            border-radius: 8px;
            padding: 30px;
            box-shadow: var(--shadow);
            transition: transform 0.3s;
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        
        .benefit-card:hover {
            transform: translateY(-10px);
        }
        
        .benefit-icon {
            font-size: 40px;
            color: var(--primary);
            margin-bottom: 20px;
            text-align: center;
        }
        
        .benefit-card h3 {
            margin-bottom: 15px;
            color: var(--secondary);
            text-align: center;
        }
        
        /* Nutritional Info */
        .nutritional-section {
            background-color: var(--white);
            padding: 60px 0;
            margin-bottom: 60px;
        }
        
        .nutritional-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }
        
        .nutrition-facts {
            background-color: var(--light);
            padding: 30px;
            border-radius: 8px;
            box-shadow: var(--shadow);
        }
        
        .nutrition-facts h3 {
            color: var(--secondary);
            margin-bottom: 20px;
            text-align: center;
            font-size: 1.5rem;
        }
        
        .nutrition-table {
            width: 100%;
            border-collapse: collapse;
        }
        
        .nutrition-table th,
        .nutrition-table td {
            padding: 12px;
            text-align: left;
            border-bottom: 1px solid #ddd;
        }
        
        .nutrition-table th {
            background-color: var(--primary);
            color: var(--white);
        }
        
        .nutrition-table tr:last-child td {
            border-bottom: none;
        }
        
        /* Uses Section */
        .uses-section {
            margin-bottom: 60px;
        }
        
        .uses-tabs {
            display: flex;
            justify-content: center;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }
        
        .tab-button {
            padding: 12px 24px;
            background-color: var(--light);
            border: none;
            border-radius: 4px;
            margin: 0 10px 10px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .tab-button.active {
            background-color: var(--primary);
            color: var(--white);
        }
        
        .tab-content {
            display: none;
        }
        
        .tab-content.active {
            display: block;
            animation: fadeIn 0.5s;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        .use-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }
        
        .use-image {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        
        .use-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        /* FAQ Section */
        .faq-section {
            background-color: var(--white);
            padding: 60px 0;
            margin-bottom: 60px;
        }
        
        .faq-item {
            margin-bottom: 20px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        
        .faq-question {
            padding: 20px;
            background-color: var(--light);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
        }
        
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s, padding 0.3s;
        }
        
        .faq-item.active .faq-answer {
            padding: 20px;
            max-height: 300px;
        }
        
        /* Footer */
        footer {
            background-color: var(--secondary);
            color: var(--white);
            padding: 60px 0 20px;
            margin-top: 60px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-column h3 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            color: var(--primary);
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a {
            color: var(--light);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-column ul li a:hover {
            color: var(--primary);
        }
        
        .social-links {
            display: flex;
            gap: 15px;
        }
        
        .social-links a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: var(--white);
            text-align: center;
            line-height: 40px;
            transition: background-color 0.3s;
        }
        
        .social-links a:hover {
            background-color: var(--primary);
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .nutritional-content,
            .use-content {
                grid-template-columns: 1fr;
            }
            
            .use-image {
                order: -1;
            }
        }
        
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                text-align: center;
            }
            
            .logo {
                margin-bottom: 15px;
            }
            
            nav ul {
                flex-direction: column;
                align-items: center;
                display: none;
            }
            
            nav ul.show {
                display: flex;
            }
            
            nav ul li {
                margin: 10px 0;
            }
            
            .mobile-menu-btn {
                display: block;
                position: absolute;
                top: 20px;
                right: 20px;
            }
            
            .page-header h1 {
                font-size: 2.2rem;
            }
            
            .uses-tabs {
                flex-direction: column;
                align-items: center;
            }
            
            .tab-button {
                margin: 5px 0;
                width: 100%;
                max-width: 300px;
            }
        }
   

        /* contact start */
         
        /* :root {
            --primary: #D4AF37;
            --secondary: #0B4619;
            --light: #F8F5E6;
            --dark: #333333;
            --white: #FFFFFF;
            --shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        body {
            margin: 0;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: var(--light);
            color: var(--dark);
            line-height: 1.6;
        }
        .container {max-width: 1200px; margin: 0 auto; padding: 0 20px;}
        header {background: var(--white); box-shadow: var(--shadow); position: sticky; top:0; z-index:1000;}
        .header-container {display: flex; justify-content: space-between; align-items: center; padding: 15px 0;}
        .logo {display: flex; align-items: center;}
        .logo-icon {font-size: 32px; color: var(--primary); margin-right: 10px;}
        .logo-text {font-size: 28px; font-weight: 700; color: var(--secondary);}
        nav ul {display:flex; list-style:none;}
        nav ul li {margin-left:25px;}
        nav ul li a {text-decoration:none; color:var(--dark); font-weight:500; transition:0.3s;}
        nav ul li a:hover, nav ul li a.active {color: var(--primary);}
        .nav-cta {background: var(--primary); color:var(--white)!important; padding:8px 15px; border-radius:4px;}
        .mobile-menu-btn {display:none; font-size:24px; cursor:pointer; color:var(--secondary);}
        .page-header {
            background: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)),
                        url('https://images.unsplash.com/photo-1498837167922-ddd27525d352?w=1600&q=80');
            background-size:cover; background-position:center; color:var(--white);
            padding:80px 0; text-align:center; margin-bottom:40px;
        }
        .page-header h1 {font-size:2.5rem; margin-bottom:15px;}
        .breadcrumb {display:flex; justify-content:center; list-style:none;}
        .breadcrumb li {margin:0 10px;}
        .breadcrumb li a {color:var(--primary); text-decoration:none;}
        .breadcrumb li::after {content: ">"; margin-left:10px; color:var(--white);}
        .breadcrumb li:last-child::after {content:"";} */
        /* Contact Section */
        /* .contact-section {padding:60px 0;}
        .contact-grid {display:grid; grid-template-columns:1fr 1fr; gap:40px;}
        .contact-info {background: var(--white); padding:30px; border-radius:8px; box-shadow:var(--shadow);}
        .contact-info h3 {color: var(--secondary); margin-bottom:20px;}
        .contact-info ul {list-style:none;}
        .contact-info ul li {margin-bottom:15px; display:flex; align-items:center;}
        .contact-info i {color: var(--primary); margin-right:10px;}
        .social-links {display:flex; gap:15px; margin-top:20px;}
        .social-links a {display:inline-block; width:40px; height:40px; border-radius:50%;
            background:rgba(255,255,255); text-align:center; line-height:40px; color:var(--secondary);}
        .social-links a:hover {background: var(--primary); color:var(--white);}
        form {background:var(--white); padding:30px; border-radius:8px; box-shadow:var(--shadow);}
        form h3 {color:var(--secondary); margin-bottom:20px;}
        form input, form textarea {width:100%; padding:12px; margin-bottom:15px;
            border:1px solid #ccc; border-radius:4px; font-size:1rem;}
        form button {background:var(--primary); color:var(--white); border:none; padding:12px 20px;
            border-radius:4px; font-weight:600; cursor:pointer; transition:0.3s;}
        form button:hover {background: #b9962c;}
        .map {margin-top:40px; border-radius:8px; overflow:hidden; box-shadow:var(--shadow);} */
        /* Footer */
        /* footer {background:var(--secondary); color:var(--white); padding:60px 0 20px; margin-top:60px;}
        .footer-content {display:grid; grid-template-columns:repeat(auto-fit,minmax(250px,1fr)); gap:40px; margin-bottom:40px;}
        .footer-column h3 {color:var(--primary); margin-bottom:15px;}
        .footer-column ul {list-style:none;}
        .footer-column ul li {margin-bottom:10px;}
        .footer-column ul li a {color:var(--light); text-decoration:none; transition:0.3s;}
        .footer-column ul li a:hover {color:var(--primary);}
        .copyright {text-align:center; border-top:1px solid rgba(255,255,255,0.1); padding-top:20px;} */
        /* Responsive */
        /* @media (max-width:768px){
            .contact-grid {grid-template-columns:1fr;}
            nav ul {display:none; flex-direction:column; align-items:center;}
            nav ul.show {display:flex;}
            .mobile-menu-btn {display:block; position:absolute; top:20px; right:20px;}
        } */
    /* contact end */
/* css formate correction */

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

header {
	background: var(--white);
	box-shadow: var(--shadow);
	position: sticky;
	top: 0;
	z-index: 1000;
}

.header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
    padding:15px;
	/* padding: 15px 0; */
}

.logo {
	display: flex;
	align-items: center;
}

.logo-icon {
	font-size: 32px;
	color: var(--primary);
	margin-right: 10px;
}

.logo-text {
	font-size: 28px;
	font-weight: 700;
	color: var(--secondary);
}

nav ul {
	display: flex;
	list-style: none;
}

nav ul li {
	margin-left: 25px;
}

nav ul li a {
	text-decoration: none;
	color: var(--dark);
	font-weight: 500;
	transition: 0.3s;
}

nav ul li a:hover,
nav ul li a.active {
	color: var(--primary);
}

.nav-cta {
	background: var(--primary);
	color: var(--white) !important;
	padding: 8px 15px;
	border-radius: 4px;
}

.mobile-menu-btn {
	display: none;
	font-size: 24px;
	cursor: pointer;
	color: var(--secondary);
}

.page-header {
	/* background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
		url('https://images.unsplash.com/photo-1498837167922-ddd27525d352?w=1600&q=80'); */
	background-size: cover;
	background-position: center;
	color: var(--white);
	padding: 80px 0;
	text-align: center;
	margin-bottom: 40px;
}

.page-header h1 {
	font-size: 2.5rem;
	margin-bottom: 15px;
}

.breadcrumb {
	display: flex;
	justify-content: center;
	list-style: none;
}

.breadcrumb li {
	margin: 0 10px;
}

.breadcrumb li a {
	color: var(--primary);
	text-decoration: none;
}

.breadcrumb li::after {
	content: ">";
	margin-left: 10px;
	color: var(--white);
}

.breadcrumb li:last-child::after {
	content: "";
}

/* Contact Section */
.contact-section {
	padding: 60px 0;
}

.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
}

.contact-info {
	background: var(--white);
	padding: 30px;
	border-radius: 8px;
	box-shadow: var(--shadow);
}

.contact-info h3 {
	color: var(--secondary);
	margin-bottom: 20px;
}

.contact-info ul {
	list-style: none;
}

.contact-info ul li {
	margin-bottom: 15px;
	display: flex;
	align-items: center;
}

.contact-info i {
	color: var(--primary);
	margin-right: 10px;
}

.social-links {
	display: flex;
	gap: 15px;
	margin-top: 20px;
}

.social-links a {
	display: inline-block;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255, 255, 255);
	text-align: center;
	line-height: 40px;
	color: var(--secondary);
}

.social-links a:hover {
	background: var(--primary);
	color: var(--white);
}

form {
	background: var(--white);
	padding: 30px;
	border-radius: 8px;
	box-shadow: var(--shadow);
}

form h3 {
	color: var(--secondary);
	margin-bottom: 20px;
}

form input,
form textarea {
	width: 100%;
	padding: 12px;
	margin-bottom: 15px;
	border: 1px solid #ccc;
	border-radius: 4px;
	font-size: 1rem;
}

form button {
	background: var(--primary);
	color: var(--white);
	border: none;
	padding: 12px 20px;
	border-radius: 4px;
	font-weight: 600;
	cursor: pointer;
	transition: 0.3s;
}

form button:hover {
	background: #b9962c;
}

.map {
	margin-top: 40px;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: var(--shadow);
}

/* Footer */
footer {
	background: var(--secondary);
	color: var(--white);
	padding: 60px 0 20px;
	margin-top: 60px;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
	margin-bottom: 40px;
}

.footer-column h3 {
	color: var(--primary);
	margin-bottom: 15px;
}

.footer-column ul {
	list-style: none;
}

.footer-column ul li {
	margin-bottom: 10px;
}

.footer-column ul li a {
	color: var(--light);
	text-decoration: none;
	transition: 0.3s;
}

.footer-column ul li a:hover {
	color: var(--primary);
}

.copyright {
	text-align: center;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 20px;
}

/* Responsive */
@media (max-width:768px) {
	.contact-grid {
		grid-template-columns: 1fr;
	}

	nav ul {
		display: none;
		flex-direction: column;
		align-items: center;
	}

	nav ul.show {
		display: flex;
	}

	.mobile-menu-btn {
		display: block;
		position: absolute;
		top: 20px;
		right: 20px;
	}
}

/* contact end */

/* css formate correction end */


    /* nav start logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px; /* space between image and text */
}

.logo-img {
    height: 50px;  /* adjust as needed */
    width: auto;
    object-fit: contain;
}
    /* nav end logo */


    
    /* index.php before footer start */
    
        /* Quality Section Styles */
        .quality-section {
            padding: 60px 20px;
            background: linear-gradient(to bottom, #f8f6f0, #ffffff);
        }
        
        .quality-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .quality-header {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .quality-header h2 {
            font-size: 2.5rem;
            color: #8a6d3b;
            margin-bottom: 20px;
            font-weight: 700;
        }
        
        .quality-header p {
            font-size: 1.2rem;
            color: #666;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        /* Carousel Styles */
        .quality-carousel-container {
            position: relative;
            max-width: 1000px;
            margin: 40px auto;
            overflow: hidden;
        }
        
        .quality-carousel {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .quality-carousel-item {
            flex: 0 0 calc(25% - 20px);
            margin: 0 10px;
            text-align: center;
            padding: 25px 20px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            border-top: 4px solid #d4a017;
        }
        
        .quality-carousel-item img {
            max-width: 100%;
            height: 80px;
            object-fit: contain;
            margin-bottom: 15px;
        }
        
        .quality-carousel-item h3 {
            font-size: 1.2rem;
            color: #8a6d3b;
            margin-bottom: 10px;
        }
        
        .quality-carousel-item p {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.5;
        }
        
        .quality-carousel-control {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: white;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            cursor: pointer;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #8a6d3b;
            font-size: 1.2rem;
        }
        
        .quality-carousel-control.prev {
            left: -20px;
        }
        
        .quality-carousel-control.next {
            right: -20px;
        }
        
        .quality-carousel-dots {
            display: flex;
            justify-content: center;
            margin-top: 20px;
        }
        
        .quality-dot {
            width: 10px;
            height: 10px;
            background: #ddd;
            border-radius: 50%;
            margin: 0 5px;
            cursor: pointer;
        }
        
        .quality-dot.active {
            background: #d4a017;
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .quality-carousel-item {
                flex: 0 0 calc(33.333% - 20px);
            }
        }
        
        @media (max-width: 768px) {
            .quality-carousel-item {
                flex: 0 0 calc(50% - 20px);
            }
        }
        
        @media (max-width: 576px) {
            .quality-carousel-item {
                flex: 0 0 calc(100% - 20px);
            }
            
            .quality-header h2 {
                font-size: 2rem;
            }
            
            .quality-header p {
                font-size: 1rem;
            }
        }

    /* index.php before footer end  */