
        :root {
            --primary-color: #0f6423;
            --primary-hover: #0d5820;
            --text-color: #333;
            --light-bg: #f8f9fa;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--text-color);
            padding-top: 80px;
        }

        /* Logo sizing */
        .logo {
            width: 200px;
            height: auto;
        }

        /* Header Styles */
        .navbar {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            padding: 15px 0;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
        }

        .navbar-brand img {
            height: 50px;
            width: auto;
        }

        .nav-link {
            color: var(--text-color);
            font-weight: 500;
            margin: 0 10px;
            position: relative;
        }

        .nav-link:hover,
        .nav-link:focus {
            color: var(--primary-color);
        }

        .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--primary-color);
            bottom: 0;
            left: 0;
            transition: width 0.3s;
        }

        .nav-link:hover:after {
            width: 100%;
        }

        /* Multi-level dropdown menu */
        .dropdown-menu {
            border: none;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .dropdown-item {
            position: relative;
            padding: 8px 20px;
        }

        .dropdown-submenu {
            position: relative;
        }

        .dropdown-submenu .dropdown-menu {
            top: 0;
            left: 100%;
            margin-top: -1px;
            margin-left: 0;
            display: none;
        }

        .dropdown-submenu:hover .dropdown-menu {
            display: block;
        }

        .dropdown-item:hover {
            background-color: rgba(15, 100, 35, 0.1);
            color: var(--primary-color);
        }

        .dropdown-toggle::after {
            float: right;
            margin-top: 8px;
        }

        .search-btn {
            color: var(--primary-color);
            border: 1px solid var(--primary-color);
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

        .search-btn:hover {
            background-color: var(--primary-color);
            color: white;
        }

        /* Hero Section */
        .hero-section {
            height: 600px;
            position: relative;
            overflow: hidden;
        }

        .carousel-item {
            height: 600px;
        }

        .carousel-item img {
            object-fit: cover;
            height: 100%;
            width: 100%;
        }

        .carousel-caption {
            background-color: rgba(0, 0, 0, 0.6);
            padding: 30px;
            border-radius: 5px;
            bottom: 100px;
        }

        .carousel-caption h1 {
            font-size: 3rem;
            font-weight: 700;
        }

        .carousel-caption p {
            font-size: 1.2rem;
        }

        .hero-bottom-bar {
            background-color: var(--primary-color);
            color: white;
            padding: 15px 0;
            position: absolute;
            bottom: 0;
            width: 100%;
            z-index: 10;
        }

        /* About Section */
        .about-section {
            padding: 80px 0;
        }

        .about-img {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .about-img img {
            width: 100%;
            height: auto;
            transition: transform 0.5s;
        }

        .about-img:hover img {
            transform: scale(1.05);
        }

        .about-content h2 {
            color: var(--primary-color);
            font-weight: 700;
            margin-bottom: 20px;
        }

        .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            padding: 10px 25px;
            font-weight: 500;
        }

        .btn-primary:hover {
            background-color: var(--primary-hover);
            border-color: var(--primary-hover);
        }

        /* Services Section */
        .services-section {
            padding: 80px 0;
            background-color: var(--light-bg);
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            color: var(--primary-color);
            font-weight: 700;
            position: relative;
            display: inline-block;
        }

        .section-title h2:after {
            content: '';
            position: absolute;
            width: 50px;
            height: 3px;
            background-color: var(--primary-color);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }

        .service-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
            transition: all 0.3s;
            height: 100%;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .service-img {
            height: 200px;
            overflow: hidden;
        }

        .service-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .service-card:hover .service-img img {
            transform: scale(1.1);
        }

        .service-content {
            padding: 20px;
        }

        .service-content h3 {
            color: var(--primary-color);
            margin-bottom: 15px;
        }

        .read-more {
            color: var(--primary-color);
            font-weight: 500;
            display: inline-block;
            margin-top: 15px;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .service-card:hover .read-more {
            opacity: 1;
        }

        /* Products Section */
        .products-section {
            padding: 80px 0;
        }

        .product-card {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .product-img {
            height: 250px;
            overflow: hidden;
        }

        .product-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .product-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(15, 100, 35, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .product-card:hover .product-overlay {
            opacity: 1;
        }

        .product-card:hover .product-img img {
            transform: scale(1.1);
        }

        .view-products {
            color: white;
            font-weight: 500;
            padding: 10px 20px;
            border: 2px solid white;
            border-radius: 30px;
            transition: all 0.3s;
        }

        .view-products:hover {
            background-color: white;
            color: var(--primary-color);
        }

        /* Stats Section */
        .stats-section {
            padding: 60px 0;
            background-color: var(--primary-color);
            color: white;
        }

        .stat-item {
            text-align: center;
            padding: 20px;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .stat-text {
            font-size: 1.2rem;
        }

        /* Work Together Section */
        .work-together {
            padding: 80px 0;
            background-color: var(--light-bg);
            text-align: center;
        }

        .work-together h2 {
            color: var(--primary-color);
            font-weight: 700;
            margin-bottom: 20px;
        }

        /* Network Section */
        .network-section {
            padding: 80px 0;
        }

        .network-item {
            text-align: center;
            margin-bottom: 30px;
        }

        .network-img {
            height: 100px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .network-img img {
            max-height: 100%;
            max-width: 100%;
            filter: grayscale(100%);
            transition: filter 0.3s;
        }

        .network-item:hover .network-img img {
            filter: grayscale(0%);
        }

        /* Competitive Advantage Section */
        .advantage-section {
            padding: 80px 0;
            background-color: white;
        }

        .advantage-card {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            height: 100%;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s;
        }

        .advantage-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .advantage-icon {
            width: 80px;
            height: 80px;
            background-color: rgba(15, 100, 35, 0.1);
            color: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 32px;
        }

        /* How We Work Section */
        .how-we-work-section {
            padding: 80px 0;
            background-color: var(--light-bg);
        }

        .work-step {
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            height: 100%;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .step-number {
            width: 60px;
            height: 60px;
            background-color: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: bold;
            margin: 0 auto 20px;
        }

        /* Why Choose Us Section */
        .choose-us-section {
            padding: 80px 0;
            background-color: white;
        }

        .feature-list {
            list-style: none;
            padding: 0;
        }

        .feature-list li {
            margin-bottom: 15px;
            padding-left: 30px;
            position: relative;
        }

        .feature-list li:before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            color: var(--primary-color);
            position: absolute;
            left: 0;
            top: 2px;
        }

        /* Our Values Section */
        .values-section {
            padding: 80px 0;
            background-color: var(--light-bg);
        }

        .value-card {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            height: 100%;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s;
        }

        .value-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .value-icon {
            width: 70px;
            height: 70px;
            background-color: rgba(15, 100, 35, 0.1);
            color: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 28px;
        }

        /* Certification Sections */
        .certification-section {
            padding: 60px 0;
        }

        .certification-slider,
        .partner-slider,
        .customer-slider {
            padding: 30px 0;
        }

        .certification-slider img,
        .partner-slider img,
        .customer-slider img {
            height: 80px;
            width: auto;
            margin: 0 auto;
            padding: 15px;
            border: 1px solid #ddd;
            background: white;
            border-radius: 5px;
            filter: grayscale(100%);
            transition: all 0.3s;
        }

        .certification-slider img:hover,
        .partner-slider img:hover,
        .customer-slider img:hover {
            filter: grayscale(0%);
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        /* Footer */
        .footer {
            background-color: #222;
            color: #ddd;
            padding: 60px 0 0;
        }

        .footer-logo img {
            height: 60px;
            margin-bottom: 20px;
        }

        .footer-about p {
            margin-bottom: 20px;
        }

        .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            color: white;
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            margin-right: 10px;
            transition: all 0.3s;
        }

        .social-icons a:hover {
            background-color: var(--primary-color);
            transform: translateY(-5px);
        }

        .footer-links h3 {
            color: white;
            font-size: 1.2rem;
            margin-bottom: 20px;
            position: relative;
        }

        .footer-links h3:after {
            content: '';
            position: absolute;
            width: 40px;
            height: 2px;
            background-color: var(--primary-color);
            bottom: -10px;
            left: 0;
        }

        .footer-links ul {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: #aaa;
            transition: all 0.3s;
        }

        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }

        .footer-contact i {
            color: var(--primary-color);
            margin-right: 10px;
        }

        .footer-bottom {
            padding: 20px 0;
            margin-top: 20px;
            text-align: center;
            border-top: 1px solid #444;
        }


        /* Owl Carousel Nav Customization */
        .owl-nav button {
            width: 40px;
            height: 40px;
            background-color: var(--primary-color) !important;
            color: white !important;
            border-radius: 50% !important;
            margin: 0 10px !important;
            transition: all 0.3s;
        }

        .owl-nav button:hover {
            background-color: var(--primary-hover) !important;
        }

        /* Responsive Adjustments */
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background-color: white;
                padding: 20px;
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
                margin-top: 15px;
            }

            .dropdown-submenu .dropdown-menu {
                left: 15px;
                right: 15px;
                width: auto;
            }

            .hero-section,
            .carousel-item {
                height: 500px;
            }

            .carousel-caption {
                bottom: 50px;
            }

            .carousel-caption h1 {
                font-size: 2rem;
            }

            .carousel-caption p {
                font-size: 1rem;
            }
        }

        @media (max-width: 767.98px) {
            body {
                padding-top: 70px;
            }

            .hero-section,
            .carousel-item {
                height: 400px;
            }

            .carousel-caption {
                padding: 15px;
                bottom: 20px;
            }

            .section-title h2 {
                font-size: 1.8rem;
            }

            .stat-number {
                font-size: 2rem;
            }

            .stat-text {
                font-size: 1rem;
            }

            .advantage-card,
            .value-card,
            .work-step {
                margin-bottom: 20px;
            }
        }

        /* Addition */

        /* Product Page Specific Styles */
.product-hero-section {
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    position: relative;
    color: #fff;
    margin-top: 80px;
}

.product-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.product-hero-section .container {
    position: relative;
    z-index: 1;
}

.product-hero-section h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.product-hero-section p {
    font-size: 1.2rem;
    max-width: 600px;
}

.product-detail-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.product-image-carousel {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-detail-content h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
}

.product-detail-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 25px;
}

.product-specs {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    border: 1px solid #e9ecef;
}

.product-specs h4 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #dee2e6;
}

.product-specs ul {
    padding-left: 20px;
}

.product-specs li {
    margin-bottom: 8px;
    color: #555;
}

.product-specs strong {
    color: #333;
}

.production-capacity {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    border: 1px solid #e9ecef;
}

.production-capacity h4 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #dee2e6;
}

.product-features-section {
    padding: 80px 0;
    background-color: #fff;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.section-title p {
    color: #6c757d;
    font-size: 1.1rem;
}

.feature-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 8px;
    background-color: #f8f9fa;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: #007bff;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.feature-card p {
    color: #6c757d;
    font-size: 0.95rem;
}

.product-gallery-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px;
    text-align: center;
}

.gallery-overlay p {
    margin: 0;
    font-size: 1rem;
}

.product-cta-section {
    padding: 60px 0;
    background-color: #007bff;
    color: #fff;
}

.product-cta-section h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.product-cta-section p {
    font-size: 1.1rem;
    margin-bottom: 0;
    opacity: 0.9;
}

.btn-light {
    background-color: #fff;
    color: #007bff;
    padding: 10px 25px;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-light:hover {
    background-color: #f8f9fa;
    color: #0069d9;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .product-hero-section {
        padding: 100px 0;
    }
    
    .product-hero-section h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 767.98px) {
    .product-hero-section {
        padding: 80px 0;
        margin-top: 70px;
    }
    
    .product-hero-section h1 {
        font-size: 1.8rem;
    }
    
    .product-detail-section,
    .product-features-section,
    .product-gallery-section {
        padding: 60px 0;
    }
    
    .section-title h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 575.98px) {
    .product-hero-section {
        padding: 60px 0;
    }
    
    .product-hero-section h1 {
        font-size: 1.5rem;
    }
    
    .product-hero-section p {
        font-size: 1rem;
    }
    
    .feature-card {
        margin-bottom: 20px;
    }
    
    .gallery-item img {
        height: 200px;
    }
    
    .product-cta-section .text-lg-end {
        text-align: center !important;
        margin-top: 20px;
    }
}