:root {
            --primary-green: #1e7e34;
            --secondary-gold: #ffd700;
            --dark-bg: #0d1b2a;
            --light-bg: #f8f9fa;
            --accent-blue: #0066cc;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            overflow-x: hidden;
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--primary-green) !important;
        }
        .navbar-brand i {
            color: var(--secondary-gold);
            margin-right: 10px;
        }
        .hero-section {
            background: linear-gradient(rgba(13, 27, 42, 0.9), rgba(30, 126, 52, 0.8)), url('https://images.unsplash.com/photo-1575361204480-aadea25e6e68?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
            color: white;
            padding: 120px 0;
            position: relative;
        }
        .hero-section h1 {
            font-size: 3.5rem;
            font-weight: 800;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
            margin-bottom: 25px;
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 40px;
            text-align: center;
            font-weight: 700;
            color: var(--dark-bg);
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--primary-green);
            border-radius: 2px;
        }
        .card-hover {
            transition: all 0.3s ease;
            border: none;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            height: 100%;
        }
        .card-hover:hover {
            transform: translateY(-12px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        .icon-box {
            width: 70px;
            height: 70px;
            background: var(--primary-green);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin: 0 auto 20px;
        }
        .stats-box {
            background: linear-gradient(135deg, var(--primary-green), #145a32);
            color: white;
            padding: 25px;
            border-radius: 10px;
            text-align: center;
            margin: 15px 0;
            box-shadow: 0 8px 20px rgba(30, 126, 52, 0.2);
        }
        .stats-box h3 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 5px;
        }
        .btn-primary-custom {
            background: var(--primary-green);
            border: none;
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 30px;
            transition: all 0.3s;
        }
        .btn-primary-custom:hover {
            background: #145a32;
            transform: scale(1.05);
        }
        .footer {
            background: var(--dark-bg);
            color: #ddd;
            padding: 60px 0 30px;
        }
        .footer h5 {
            color: white;
            margin-bottom: 25px;
            font-weight: 600;
        }
        .footer-links a {
            color: #bbb;
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
            transition: color 0.3s;
        }
        .footer-links a:hover {
            color: var(--secondary-gold);
            padding-left: 5px;
        }
        .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            margin-right: 10px;
            color: white;
            transition: all 0.3s;
        }
        .social-icons a:hover {
            background: var(--primary-green);
            transform: translateY(-3px);
        }
        .flink {
            display: inline-block;
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            color: #ccc;
            padding: 8px 20px;
            margin: 5px 10px;
            border-radius: 5px;
            text-decoration: none;
            transition: all 0.3s;
        }
        .flink:hover {
            background: rgba(255,255,255,0.1);
            color: white;
            border-color: var(--primary-green);
            transform: translateY(-3px);
        }
        .contact-info-box {
            background: var(--light-bg);
            border-left: 5px solid var(--primary-green);
            padding: 25px;
            border-radius: 0 10px 10px 0;
            margin-bottom: 25px;
        }
        .testimonial-card {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.05);
            position: relative;
            margin-top: 40px;
        }
        .testimonial-card:before {
            content: "\201C";
            font-size: 5rem;
            color: var(--primary-green);
            opacity: 0.2;
            position: absolute;
            top: -20px;
            left: 20px;
            font-family: Georgia, serif;
        }
        .client-image {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--primary-green);
        }
        .product-img {
            height: 220px;
            object-fit: cover;
            border-radius: 10px 10px 0 0;
        }
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2.5rem;
            }
            .hero-section {
                padding: 80px 0;
            }
            .stats-box h3 {
                font-size: 2rem;
            }
        }
        .schema-data {
            display: none;
        }
