 :root {
            --primary-green: #2d6a4f;
            --light-green: #52b788;
            --accent-gold: #f4a261;
            --dark-green: #1b4332;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
            overflow-x: hidden;
        }
        
        .navbar {
            background-color: var(--primary-green);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 10px;
            transition: all 0.3s;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-gold) !important;
        }
        
        .hero-section {
            background: linear-gradient(rgba(45, 106, 79, 0.9), rgba(45, 106, 79, 0.9)), url('../images/bg.png') center/cover no-repeat;
            color: white;
            padding: 100px 0;
            text-align: center;
        }
        
        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            animation: fadeInDown 1s ease;
        }
        
        .hero-subtitle {
            font-size: 1.5rem;
            margin-bottom: 30px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            animation: fadeInUp 1s ease 0.3s both;
        }
        
        .section-title {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--primary-green);
            margin-bottom: 40px;
            text-align: center;
            position: relative;
        }
        
        .section-title::after {
            content: "";
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--accent-gold);
        }
        
        .product-card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            height: 100%;
            display: flex;
            flex-direction: column;
            background: white;
            position: relative;
        }
        
        .product-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-green), var(--light-green));
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }
        
        .product-card:hover::before {
            transform: scaleX(1);
        }
        
        .product-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        
        .product-img-container {
            position: relative;
            overflow: hidden;
            height: 220px;
        }
        
        .product-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .product-card:hover .product-img {
            transform: scale(1.1);
        }
        
        .product-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, transparent 0%, rgba(45, 106, 79, 0.7) 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
            display: flex;
            align-items: flex-end;
            padding: 20px;
        }
        
        .product-card:hover .product-overlay {
            opacity: 1;
        }
        
        .overlay-text {
            color: white;
            font-weight: 600;
            transform: translateY(20px);
            transition: transform 0.3s ease;
        }
        
        .product-card:hover .overlay-text {
            transform: translateY(0);
        }
        
        .product-body {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .grade-badge {
            display: inline-block;
            padding: 6px 16px;
            background: linear-gradient(135deg, var(--light-green), var(--primary-green));
            color: white;
            border-radius: 25px;
            font-weight: 600;
            font-size: 0.85rem;
            margin-bottom: 15px;
            letter-spacing: 0.5px;
            box-shadow: 0 3px 10px rgba(45, 106, 79, 0.2);
        }
        
        .product-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--primary-green);
            margin-bottom: 12px;
            line-height: 1.3;
        }
        
        .product-description {
            color: #666;
            margin-bottom: 20px;
            flex-grow: 1;
            font-size: 0.95rem;
            line-height: 1.6;
        }
        
        .product-features {
            margin-bottom: 20px;
        }
        
        .product-feature {
            display: flex;
            align-items: center;
            margin-bottom: 8px;
            font-size: 0.9rem;
            color: #555;
        }
        
        .product-feature i {
            color: var(--light-green);
            margin-right: 8px;
            font-size: 0.9rem;
        }
        
        .btn-product {
            background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(45, 106, 79, 0.3);
        }
        
        .btn-product::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s;
        }
        
        .btn-product:hover::before {
            left: 100%;
        }
        
        .btn-product:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 20px rgba(45, 106, 79, 0.4);
            background: linear-gradient(135deg, var(--dark-green), var(--primary-green));
        }
        
        .btn-product:active {
            transform: translateY(-1px);
        }
        
        .btn-outline-product {
            background: transparent;
            color: var(--primary-green);
            border: 2px solid var(--primary-green);
            padding: 10px 28px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
        }
        
        .btn-outline-product:hover {
            background: var(--primary-green);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(45, 106, 79, 0.3);
        }
        
        .product-showcase {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-radius: 20px;
            padding: 50px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            margin-bottom: 50px;
            position: relative;
            overflow: hidden;
        }
        
        .product-showcase::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(82, 183, 136, 0.1) 0%, transparent 70%);
            border-radius: 50%;
        }
        
        .product-showcase::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -5%;
            width: 250px;
            height: 250px;
            background: radial-gradient(circle, rgba(244, 162, 97, 0.1) 0%, transparent 70%);
            border-radius: 50%;
        }
        
        .showcase-header {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
            z-index: 1;
        }
        
        .showcase-subtitle {
            color: var(--light-green);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.9rem;
            margin-bottom: 10px;
        }
        
        .showcase-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-green);
            margin-bottom: 15px;
        }
        
        .showcase-description {
            max-width: 700px;
            margin: 0 auto;
            color: #666;
            font-size: 1.1rem;
        }
        
        .product-row {
            position: relative;
            z-index: 1;
        }
        
        .info-section {
            background-color: #f8f9fa;
            padding: 80px 0;
        }
        
        .info-card {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            height: 100%;
            transition: all 0.3s;
        }
        
        .info-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }
        
        .info-icon {
            font-size: 2.5rem;
            color: var(--primary-green);
            margin-bottom: 20px;
        }
        
        .footer {
            background-color: var(--dark-green);
            color: white;
            padding: 50px 0 30px;
        }
        
        .footer-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--accent-gold);
        }
        
        .contact-item {
            margin-bottom: 15px;
        }
        
        .contact-item i {
            color: var(--accent-gold);
            margin-right: 10px;
        }
        
        .process-flow {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .process-step {
            text-align: center;
            padding: 20px;
            position: relative;
        }
        
        .process-step:not(:last-child)::after {
            content: "\f054";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            position: absolute;
            right: -15px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--light-green);
            font-size: 1.5rem;
        }
        
        .process-icon {
            width: 80px;
            height: 80px;
            background-color: var(--light-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            font-size: 2rem;
            color: white;
        }
        
        .stat-box {
            background-color: var(--primary-green);
            color: white;
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            margin-bottom: 20px;
            transition: all 0.3s;
        }
        
        .stat-box:hover {
            background-color: var(--dark-green);
            transform: translateY(-5px);
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .stat-label {
            font-size: .9rem;
        }
        
        .dropdown-menu {
            background-color: var(--primary-green);
            border: none;
        }
        
        .dropdown-item {
            color: rgba(255,255,255,0.9);
            transition: all 0.3s;
        }
        
        .dropdown-item:hover {
            background-color: var(--dark-green);
            color: white;
        }
        
        .testimonial-card {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            height: 100%;
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
            color: #555;
        }
        
        .testimonial-author {
            font-weight: 600;
            color: var(--primary-green);
        }
        
        .product-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .gallery-item {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s;
        }
        
        .gallery-item:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }
        
        .gallery-item img {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }
        
        .gallery-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(45, 106, 79, 0.8);
            color: white;
            padding: 10px;
            text-align: center;
            font-weight: 600;
        }
        
        /* Video Section Styles */
        .video-section {
            padding: 40px 0;
            background-color: #f8f9fa;
        }
        
        .video-container {
            position: relative;
            width: 100%;
            max-width: 800px;
            margin: 0 auto;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }
        
        .video-container video {
            width: 100%;
            height: 400px;
            display: block;
            max-height: 400px;
        }
        
        .video-placeholder {
            background-color: #e9ecef;
            height: 350px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            color: #6c757d;
        }
        
        .video-placeholder i {
            font-size: 3rem;
            margin-bottom: 15px;
            color: var(--primary-green);
        }
        
        .video-description {
            text-align: center;
            max-width: 700px;
            margin: 20px auto 0;
            font-size: 1rem;
            color: #555;
        }
        
        .video-controls {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 20px;
        }
        
        
        
        
         .page-header {
            background: linear-gradient(rgba(45, 106, 79, 0.9), rgba(45, 106, 79, 0.9)), url('../images/bg.png') center/cover no-repeat;
            color: white;
            padding: 80px 0;
            text-align: center;
        }
        
        .page-title {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .breadcrumb {
            background: none;
            padding: 0;
            margin: 0;
        }
        
        .breadcrumb-item a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
        }
        
        .breadcrumb-item.active {
            color: white;
        }
        
        @media (max-width: 992px) {
            .video-section {
                padding: 30px 0;
            }
            
            .video-container {
                max-width: 700px;
            }
            
            .video-container video {
                max-height: 350px;
            }
            
            .video-placeholder {
                height: 300px;
            }
        }
        
        @media (max-width: 768px) {
            .video-section {
                padding: 20px 0;
            }
            
            .section-title {
                font-size: 1.8rem;
                margin-bottom: 25px;
            }
            
            .video-container {
                max-width: 100%;
                margin: 0 15px;
            }
            
            .video-container video {
                max-height: 250px;
            }
            
            .video-placeholder {
                height: 250px;
            }
            
            .video-description {
                font-size: 0.95rem;
                margin: 15px 15px 0;
            }
            
            .video-controls {
                flex-wrap: wrap;
                gap: 10px;
                margin-top: 15px;
            }
            
            .video-controls .btn {
                font-size: 0.9rem;
                padding: 8px 20px;
            }
            
            .product-showcase {
                padding: 30px 20px;
            }
            
            .showcase-title {
                font-size: 2rem;
            }
            
            .product-card {
                margin-bottom: 25px;
            }
        }
        
        
        
        
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }