
        /* Global Styles */
        :root {
            --primary: #5d9e47;
            --primary-dark: #3a7d2d;
            --secondary: #8b5a2b;
            --light: #f5f5dc;
            --dark: #333;
            --white: #fff;
            --gray: #f8f9fa;
            --gray: #f5f3f3;
        }
        .text-green{
            color: #5d9e47;
        }
        .bg-yellow{
            background: #fdb90b !important;
        }
        .text-yellow{
            color: #fdb90b !important;
        }
        .bg-brown{
            background: #ae8b46 !important;
        }
        .text-brown{
            color:#ae8b46 !important;
        }
        
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Open Sans', sans-serif;
            color: var(--dark);
            line-height: 1.6;
            font-size: 20px;
        }
        
        h1, h2, h3, h4 {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .container-fluid {
            width: 100%;
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .btn {
            display: inline-block;
            background: var(--primary);
            color: var(--white);
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }
        .product-info a{
            width: 100%;
            text-align: center;
            background: #ae8b46 !important;
        }
        
        .btn:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .section {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            font-size: 2.5rem;
            color: var(--primary-dark);
        }
        
        .text-center {
            text-align: center;
        }
        
        /* Header Styles */
        header {
            position: fixed;
            width: 100%;
            top: 0;
            left: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        
        header.scrolled {
            background: rgba(255, 255, 255, 0.98);
            padding: 5px 0;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0px 0px;
        }
        
        .logo {
            font-weight: 700;
            color: var(--primary-dark);
            text-decoration: none;
            display: flex;
        }
        
        .logo span {
            color: var(--primary);
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 30px;
        }
        
        nav ul li a {
            color: var(--dark);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }
        
        nav ul li a:hover {
            color: var(--primary);
        }
        
        .mobile-menu-btn {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        /* Hero Section */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/banner1.jpg') no-repeat center center/cover;
            display: flex;
            align-items: center;
            text-align: center;
            color: var(--white);
            padding-top: 80px;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }

         /* Hero Section */
         .hero2 {
          height: 60vh;
          background: url('../img/b1.jpg') no-repeat center center/cover;
          display: flex;
          align-items: center;
          text-align: center;
          color: var(--white);
          padding-top: 80px;
      }
      
      .hero2 h1 {
          font-size: 3.5rem;
          margin-bottom: 20px;
          line-height: 1.2;
      }
      
      .hero2 p {
          font-size: 1.2rem;
          margin-bottom: 30px;
      }
        
        /* About Section */
        .about {
            background: var(--gray);
        }
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .about-img {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border: 3px solid var(--primary);
            padding: 10px;
        }
        
        .about-img img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-text h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--primary-dark);
        }
        
        .about-text p {
            margin-bottom: 20px;
        }
        
        /* Products Section */
        .products {
            background: var(--white);
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .product-card {
            background: var(--gray);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
        }
        
        .product-img {
            height: 250px;
            overflow: hidden;
        }
        
        .product-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .product-card:hover .product-img img {
            transform: scale(1.1);
        }
        
        .product-info {
            padding: 20px;
        }
        
        .product-info h3 {
            font-size: 2rem;
            margin-bottom: 10px;
            color: var(--primary-dark);
        }
        .product-info b{
            font-size: 24px;
        }
        .product-info p {
            margin-bottom: 15px;
        }
        .product-info p + p {
            font-size: 18px;
            line-height: 28px;
            color: gray;
            min-height: 113px;
        }
        
        .product-price {
            font-weight: 700;
            color: var(--secondary);
            font-size: 1.2rem;
            margin-bottom: 15px;
            min-height: 65px;
        }
        
        /* Benefits Section */
        .benefits {
            background: var(--gray);
        }
        
        .benefits-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .benefit-card {
            background: var(--white);
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .benefit-icon {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        .benefit-card h3 {
            font-size: 2rem;
            margin-bottom: 15px;
            color: var(--primary-dark);
        }
        
        /* Process Section */
        .process-steps {
            display: flex;
            flex-direction: column;
            gap: 30px;
            position: relative;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .process-steps::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50px;
            width: 4px;
            height: 100%;
            background: var(--primary);
            background: #ae8b46;
            z-index: 1;
        }
        
        .step {
            display: flex;
            gap: 30px;
            position: relative;
            z-index: 2;
        }
        
        .step-number {
            width: 100px;
            height: 100px;
            background: var(--primary);
            background: #ae8b46;
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: 700;
            flex-shrink: 0;
        }
        
        .step-content {
            background: var(--white);
            background: #f5f3f3;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            flex-grow: 1;
        }
        
        .step-content h3 {
            font-size: 2rem;
            margin-bottom: 15px;
            color: var(--primary-dark);
        }


        /* Brands Section */
        .brands .item {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 220px;
        }
        
        .brands .item img {
            max-height: 200px;
            width: auto;
            object-fit: contain;
        }


        /* company logo Section */
        .company-logos{
            background: var(--primary-dark);
        }
        .logo-slider {
            width: 100%;
            background: #fff;
            padding: 30px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
          }
          .logo-slider .item img {
            max-height: 80px;
            max-width: 180px;
            margin: auto;
            filter: grayscale(100%);
            transition: filter 0.3s ease;
          }
          .logo-slider .item img:hover {
            filter: grayscale(0%);
          }

        
        /* Testimonials Section */
        .testimonials {
            background: var(--primary-dark);
            color: var(--white);
        }
        
        .testimonials .section-title {
            color: var(--white);
        }
        
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .testimonial-card {
            background: rgba(255, 255, 255, 0.1);
            padding: 30px;
            border-radius: 10px;
            position: relative;
        }
        
        .testimonial-card::before {
            content: '\201C';
            font-size: 5rem;
            color: rgba(255, 255, 255, 0.1);
            position: absolute;
            top: 10px;
            left: 10px;
            font-family: serif;
        }
        
        .testimonial-text {
            margin-bottom: 20px;
            position: relative;
            z-index: 2;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .author-img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
        }
        
        .author-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .author-info h4 {
            margin-bottom: 5px;
        }
        
        .author-info p {
            opacity: 0.8;
            font-size: 0.9rem;
        }
        
        .rating {
            color: #ffc107;
            margin-top: 5px;
        }
        
        /* Contact Section */
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background: var(--gray);
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: 600;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-family: 'Open Sans', sans-serif;
        }
        
        .form-group textarea {
            min-height: 150px;
        }
        
        /* Footer */
        footer {
            background: var(--dark);
            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.3rem;
            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 ease;
        }
        
        .footer-column ul li a:hover {
            color: var(--primary);
        }
        
        .social-links {
            display: flex;
            gap: 15px;
        }
        
        .social-links a {
            color: var(--white);
            font-size: 1.2rem;
            transition: color 0.3s ease;
        }
        
        .social-links a:hover {
            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) {
            .about-content {
                flex-direction: column;
            }
            
            .about-img {
                margin-bottom: 30px;
            }
        }
        
        @media (max-width: 768px) {
            .header-container {
                padding: 0 15px;
            }
            
            nav {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: var(--white);
                transition: all 0.3s ease;
                z-index: 999;
            }
            
            nav.active {
                left: 0;
            }
            
            nav ul {
                flex-direction: column;
                padding: 30px;
            }
            
            nav ul li {
                margin: 15px 0;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .section {
                padding: 40px 0;
            }
            
            .section-title {
                font-size: 2rem;
                margin-bottom: 30px;
                line-height: 1.2;
            }
            .section.products p{
                font-size: 16px;
            }
            .product-info h3 {
                font-size: 1.5rem;
            }
            .product-price {
                font-size: 1rem;
                min-height: auto;
            }
            .benefit-card {
                padding: 20px;
            }
            .benefit-card h3 {
                font-size: 1.5rem;
            }
            .benefit-card p {
                font-size: 17px;
            }
            .section.about.about-new .about-img{
                margin-top: 30px;
            }
            .step-content h3 {
                font-size: 1.5rem;
            }
            .process-steps p{
                font-size: 16px;
            }
        }
        
        @media (max-width: 576px) {
            .logo img{
                width: 90px;
            }
            .about-text h2 {
                font-size: 2rem;
            }
            .about-content {
                gap: 0px;
            }
            .about-text p {
                margin-bottom: 0px;
                font-size: 18px;
            }
            .hero h1 {
                font-size: 2rem;
            }
            
            .btn {
                padding: 10px 25px;
            }
            
            .step {
                flex-direction: column;
                align-items: center;
                gap: 0;
                border: 1px solid #ccc;
            }
            .step-content {
                padding: 20px;
                margin-top: 20px;
            }
            .process-steps::before{
                display: none;
            }
            
            .step-number {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
                margin-top: 20px;
            }
            
            .contact-form {
                padding: 30px 20px;
            }
        }
    