 :root {
            --primary-color: #263d33;
            --secondary-color: #f8f9fa;
            --text-color: #f8f9fa;
            --light-text: #fff;
            --dark-bg: #1b1b1b;
            --card-bg: #2b2b2b;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            overflow-x: hidden;
            background-color: var(--dark-bg);
            color: var(--text-color);
        }
        
        .navbar {
            background-color: var(--primary-color);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand img {
            height: 50px;
        }
        
        .nav-link {
            color: rgba(255,255,255,0.85) !important;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 0.5rem 1rem !important;
        }
        
        .nav-link:hover {
            color: white !important;
            transform: translateY(-2px);
        }
        
        .hero-section {
            background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)), url('../img/bg1.jpg') center/cover;
            min-height: 80vh;
            display: flex;
            align-items: center;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .services-section {
            padding: 100px 0;
            background-color: rgba(0, 0, 0, 0.1);
        }
        
        .service-full-card {
            background-color: var(--card-bg);
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            transition: transform 0.3s ease;
        }
        
        .service-full-card:hover {
            transform: translateY(-10px);
        }
        
        .service-content {
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .service-img {
            height: 100%;
            min-height: 300px;
            background-size: cover;
            background-position: center;
        }
        
        .service-full-card:nth-child(even) .row {
            flex-direction: row-reverse;
        }
        
        .service-icon {
            font-size: 2.5rem;
            color: #28a745;
            margin-bottom: 20px;
        }
        
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 60px;
            text-align: center;
            color: white;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: #28a745;
        }
        
        .about-section {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../img/background.jpg') center/cover;
            color: white;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .about-section::before {
            content: '';
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../img/background.jpg') center/cover;
            z-index: -1;
        }

        @media (max-width: 768px) {
            .about-section::before {
                position: absolute;
                background-attachment: scroll;
            }
        }
        
        .gallery-carousel .carousel-item {
            height: 500px;
        }
        
        .gallery-carousel .carousel-item img {
            height: 100%;
            width: 100%;
            object-fit: cover;
        }
        
        .trusted-wrapper {
            padding: 80px 0;
            background-color: rgba(0, 0, 0, 0.2);
            position: relative;
            overflow: hidden;
        }
        
        .trusted-logos {
            display: flex;
            width: max-content;
            animation: scroll 30s linear infinite;
        }
        
        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        
        .logo-item {
            flex: 0 0 auto;
            margin: 0 40px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .logo-item img {
            max-height: 60px;
            max-width: 180px;
            filter: brightness(0.8);
            transition: all 0.3s ease;
        }
        
        .logo-item img:hover {
            filter: brightness(1.2);
            transform: scale(1.05);
        }
        
        .contact-card {
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease;
            border: 1px solid rgba(40, 167, 69, 0.3);
            height: 100%;
            padding: 30px;
            background-color: var(--card-bg);
        }
        
        .floating-label-group {
            position: relative;
            margin-bottom: 1.5rem;
        }
        
        .floating-label-group label {
            position: absolute;
            top: 12px;
            left: 15px;
            color: #aaa;
            transition: all 0.3s ease;
            pointer-events: none;
        }
        
        .floating-label-group input:focus ~ label,
        .floating-label-group input:not(:placeholder-shown) ~ label,
        .floating-label-group textarea:focus ~ label,
        .floating-label-group textarea:not(:placeholder-shown) ~ label {
            top: -20px;
            left: 5px;
            font-size: 0.8rem;
            color: #28a745;
        }
        
        .form-control, .form-control:focus {
            background-color: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: white;
            padding: 15px;
        }
        
        .form-control::placeholder {
            color: #aaa;
        }
        
        .form-control:focus {
            box-shadow: 0 0 0 0.25rem rgba(40, 167, 69, 0.25);
            border-color: #28a745;
        }
        
        .contact-info-item {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
            padding: 1rem;
            background: rgba(40, 167, 69, 0.1);
            border-radius: 10px;
            border: 1px solid rgba(40, 167, 69, 0.2);
        }
        
        .icon-box {
            width: 45px;
            height: 45px;
            background: #28a745;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
        }
        
        .icon-box i {
            color: white;
            font-size: 1.2rem;
        }
        
        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin: 0 0.5rem;
            font-size: 1.2rem;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .social-icon.facebook {
            background-color: #3b5998;
            color: white;
        }
        
        .social-icon.instagram {
            background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
            color: white;
        }
        
        .social-icon.tiktok {
            background-color: #000;
            color: white;
        }
        
        .social-icon:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }
        
        footer {
              background-color: #1f1f1f;
            color: white;
            padding: 60px 0 30px;
        }
        
        .footer-title {
            font-weight: 600;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: rgba(255,255,255,0.5);
        }
        
        .footer-links a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover {
            color: white;
            transform: translateX(5px);
        }
        
        .copyright {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 20px;
            margin-top: 40px;
            text-align: center;
            font-size: 0.9rem;
            color: rgba(255,255,255,0.7);
        }
        @media (max-width: 992px) {
            .hero-section {
                min-height: 60vh;
            }
            
            .gallery-carousel .carousel-item {
                height: 400px;
            }
        }
        
        @media (max-width: 768px) {
            .navbar-brand img {
                height: 40px;
            }
            
            .hero-section {
                min-height: 50vh;
            padding: 60px 0;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .gallery-carousel .carousel-item {
                height: 300px;
            }
            
            .contact-card {
                margin-bottom: 30px;
            }
            
            .service-full-card .row {
                flex-direction: column !important;
            }
            
            .service-img {
                height: 250px;
            }
        }
        
        @media (max-width: 576px) {
            .hero-content h1 {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 1.6rem;
            }
            
            .gallery-carousel .carousel-item {
                height: 250px;
            }
            
            .trusted-wrapper {
                padding: 40px 0;
            }
            
            .logo-item {
                margin: 0 15px;
            }
            
            .service-content {
                padding: 25px;
            }
        }

        .btn-success {
            background-color: #336647;
            border: none;
            padding: 10px 25px;
            font-size: 18px;
            font-weight: bold;
            text-transform: uppercase;
            border-radius: 25px;
            transition: all 0.3s ease-in-out;
            }

            .btn-success:hover {
            background-color: #1f1f1f;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            }
            @media (max-width: 768px) {
                .position-relative > .position-absolute {
                    margin-top: 0 !important;
                    margin-left: 0 !important;
                    height: 100%;
                }
            }
            
        .section-animate {
            opacity: 0;
            transform: translateY(50px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }
        
        .section-animate.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        #products.section-animate { transition-delay: 0.1s; }
        .trusted-wrapper.section-animate { transition-delay: 0.2s; }
        .py-5.section-animate { transition-delay: 0.3s; }
        #about.section-animate { transition-delay: 0.4s; }
        #gallery.section-animate { transition-delay: 0.5s; }
        #trusted.section-animate { transition-delay: 0.6s; }
        #contact.section-animate { transition-delay: 0.7s; }
