        :root {
            --primary: #00a759;
            --secondary: #e67e22;
            --light: #f8f9fa;
            --dark: #2c3e50;
            --gray: #7f8c8d;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: #f5f7fa;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }


        /* Additional CSS for mobile menu */
        .mobile-toggle {
            display: none;
            cursor: pointer;
            font-size: 24px;
            color: #333;
            background: none;
            border: none;
        }

        .mobile-close {
            display: none;
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 24px;
            cursor: pointer;
            color: #333;
            z-index: 1000;
            background: none;
            border: none;
            width: 30px;
            height: 30px;
            align-items: center;
            justify-content: center;
        }

        @media (max-width: 768px) {
            .container.header-container {
    padding: 5px 15px;
}
            .mobile-toggle {
                display: flex;
            }

            .mobile-close {
                display: flex;
            }

            .nav-menu {
                display: none;
                position: fixed;
                top: 0;
                right: -100%;
                width: 280px;
                height: 100vh;
                background: white;
                flex-direction: column;
                padding: 80px 20px 20px;
                box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
                transition: right 0.3s ease;
                z-index: 999;
                overflow-y: auto;
            }

            .nav-menu.active {
                display: flex;
                right: 0;
            }

            .nav-menu li {
                width: 100%;
                margin: 5px 0;
            }

            .nav-menu a {
                display: block;
                padding: 12px 15px;
                border-bottom: 1px solid #eee;
                text-decoration: none;
                color: #333;
            }

            .dropdown-menu {
                display: none;
                position: static;
                box-shadow: none;
                background: #f9f9f9;
                margin-left: 15px;
                padding: 0;
            }

            .dropdown.active .dropdown-menu {
                display: block;
            }

            .dropdown-menu li {
                margin: 0;
            }

            .dropdown-menu a {
                padding: 10px 15px;
                border-bottom: 1px solid #e0e0e0;
                font-size: 0.9em;
            }
        }






        .product-section {
            /* background: #1c1c1c; */
            background-image: url(../images/5.jpg);
            padding: 60px 0;
            text-align: center;
        }

        /* .section-title {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.underline {
  width: 60px;
  height: 3px;
  background-color: #ff2c2c;
  margin: 0 auto 40px;
  border-radius: 2px;
} */

        .product-item {
            background: #fff;
            border-radius: 10px;
            overflow: hidden;
            position: relative;
        }

        .product-img-sli {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
        }

        .product-img-sli img {
            width: 100%;
            height: auto;
            display: block;
            transition: 0.4s ease;
        }

        .product-img-sli:hover img {
            transform: scale(1.1);
        }

        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: 0.4s ease;
        }

        .product-img-sli:hover .overlay {
            opacity: 1;
        }

        .overlay h3 {
            color: #fff;
            font-size: 20px;
            margin-bottom: 12px;
            text-transform: uppercase;
        }

        .btn-view {
            background: #ff2c2c;
            color: #fff;
            padding: 8px 20px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            transition: 0.3s;
        }

        .btn-view:hover {
            background: #fff;
            color: #ff2c2c;
        }

        /* Owl Nav Buttons */
        .owl-nav {
            text-align: center;
            margin-top: 30px;
        }

        .owl-nav button {
            background: transparent;
            border: 2px solid #fff !important;
            color: #fff !important;
            font-size: 20px;
            padding: 8px 15px !important;
            border-radius: 5px;
            transition: 0.3s;
        }

        .owl-nav button:hover {
            background: #ff2c2c !important;
            border-color: #ff2c2c !important;
            color: #fff !important;
        }

        /* Owl Carousel Arrows */
        .owl-nav {
            position: relative;
            margin-top: 30px;
        }

        .owl-nav button {
            background: transparent !important;
            border: none !important;
            outline: none !important;
            position: absolute;
            top: 40%;
            transform: translateY(-50%);
            font-size: 30px !important;
            color: #fff !important;
            transition: 0.3s;
        }

        .owl-nav .owl-prev {
            left: -50px;
        }

        .owl-nav .owl-next {
            right: -50px;
        }

        .owl-nav button:hover {
            color: #ff2c2c !important;
        }

        /* Custom Arrow Style */
        .custom-prev,
        .custom-next {
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.1);
            width: 45px;
            height: 45px;
            border-radius: 50%;
            border: 2px solid #fff;
            transition: 0.3s;
        }

        .custom-prev:hover,
        .custom-next:hover {
            background: #ff2c2c;
            border-color: #ff2c2c;
            color: #fff;
        }

        .owl-nav .owl-prev {
            left: 10px;
        }

        .owl-nav .owl-next {
            right: 10px;
        }






        .section {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-title h2:after {
            content: '';
            position: absolute;
            width: 70px;
            height: 3px;
            background: var(--secondary);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }

        .section-title p {
            color: var(--gray);
            max-width: 700px;
            margin: 0 auto;
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            background: var(--secondary);
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .btn:hover {
            background: #d35400;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .btn-primary {
            background: var(--primary);
        }

        .btn-primary:hover {
            background: #154360;
        }

        /* Header Styles */
        header {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
            animation: slideDown 0.5s ease;
        }

        @keyframes slideDown {
            from {
                transform: translateY(-100%);
            }

            to {
                transform: translateY(0);
            }
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo img {
            height: 100px;
            margin-right: 10px;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.05);
            }

            100% {
                transform: scale(1);
            }
        }

        .logo h1 {
            font-size: 1.8rem;
            color: var(--primary);
        }

        .nav-menu {
            display: flex;
            list-style: none;
        }

        .nav-menu li {
            margin-left: 25px;
            position: relative;
        }

        .nav-menu a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 600;
            transition: color 0.3s;
            position: relative;
            display: flex;
            align-items: center;
        }

        .nav-menu a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--secondary);
            bottom: -5px;
            left: 0;
            transition: width 0.3s ease;
        }

        .nav-menu a:hover:after {
            width: 100%;
        }

        .nav-menu a:hover {
            color: var(--secondary);
        }

        /* Dropdown Styles */
        .dropdown {
            position: relative;
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            min-width: 220px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            border-radius: 4px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            z-index: 1000;
        }

        .dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-menu li {
            margin: 0;
            width: 100%;
        }

        .dropdown-menu a {
            padding: 12px 20px;
            display: block;
            border-bottom: 1px solid #f1f1f1;
            transition: all 0.3s;
        }

        .dropdown-menu a:after {
            display: none;
        }

        .dropdown-menu a:hover {
            background: var(--light);
            color: var(--secondary);
            padding-left: 25px;
        }

        .dropdown-menu a i {
            margin-right: 10px;
            color: var(--primary);
        }

        .mobile-toggle {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Banner Slider */
        .banner {
            position: relative;
            height: 600px;
            overflow: hidden;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
        }

        .slide.active {
            opacity: 1;
        }

        .slide-content {
            max-width: 600px;
            padding: 0 50px;
            color: white;
            transform: translateX(-100px);
            opacity: 0;
            transition: all 0.8s ease;
        }

        .slide.active .slide-content {
            transform: translateX(0);
            opacity: 1;
        }

        .slide-content h2 {
            font-size: 3rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
        }

        .slide-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
        }

        .slide-1 {
            background: linear-gradient(rgba(0, 0, 0, 0.055), rgba(0, 0, 0, 0.6)), url(../images/banner-1.jpg);
            background-size: cover;
            background-repeat: no-repeat;
        }

        .slide-2 {
            background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url(../images/banner-2.png);
            background-size: cover;
            background-repeat: no-repeat;
        }

        .slide-3 {
            background: linear-gradient(rgba(0, 0, 0, 0.164), rgba(0, 0, 0, 0)), url(../images/banner-3.jpg);
            background-size: cover;
            background-repeat: no-repeat;
        }

        .slider-nav {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s;
        }

        .slider-dot.active {
            background: white;
            transform: scale(1.2);
        }

        /* Categories Section */
        .categories-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .category-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            text-align: center;
            transform: translateY(2px);
            opacity: 1;
        }

        .category-card.animate {
            transform: translateY(0);
            opacity: 1;
        }

        .category-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .category-img {
            overflow: hidden;
            background-color: #f8f9fa;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .category-img:after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(26, 82, 118, 0.1);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .category-card:hover .category-img:after {
            opacity: 1;
        }

        .category-img img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            transition: transform 0.5s ease;
        }

        .category-card:hover .category-img img {
            transform: scale(1.1);
        }

        .category-img video {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            transition: transform 0.5s ease;
        }

        .category-card:hover .category-img video {
            transform: scale(1.1);
        }

        .category-info {
            padding: 25px 20px;
        }

        .category-info h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--primary);
        }

        .category-info p {
            color: var(--gray);
            margin-bottom: 20px;
            font-size: 0.95rem;
        }

        /* About Section */
        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .about-text {
            flex: 1;
        }

        .about-text h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--primary);
        }

        .about-text p {
            margin-bottom: 15px;
        }

        .about-image {
            flex: 1;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transform: perspective(1000px) rotateY(-10deg);
            transition: transform 0.5s ease;
        }

        .about-image:hover {
            transform: perspective(1000px) rotateY(0);
        }

        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }

        .about-image:hover img {
            transform: scale(1.05);
        }

        /* Products Section */
        .products {
            background-color: var(--light);
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }

        .product-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            transform: translateY(2px);
            opacity: 1;
        }

        .product-card.animate {
            transform: translateY(0);
            opacity: 1;
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .product-img {
            height: 220px;
            overflow: hidden;
            background-color: #f8f9fa;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            position: relative;
        }

        .product-img:after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(230, 126, 34, 0.1);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .product-card:hover .product-img:after {
            opacity: 1;
        }

        .product-img img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            transition: transform 0.5s ease;
        }

        .product-card:hover .product-img img {
            transform: scale(1.1);
        }

        .product-info {
            padding: 20px;
        }

        .product-info h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: var(--primary);
        }

        .product-info p {
            color: var(--gray);
            margin-bottom: 15px;
            font-size: 0.9rem;
        }

        .product-features {
            margin: 15px 0;
        }

        .product-features li {
            margin-bottom: 5px;
            font-size: 0.9rem;
            color: var(--gray);
        }

        /* Services Section */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .service-card {
            background: white;
            padding: 30px;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            transform: scale(0.9);
            opacity: 1;
        }

        .service-card.animate {
            transform: scale(1);
            opacity: 1;
        }

        .service-card:hover {
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .service-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }

        .service-card:hover .service-icon {
            color: var(--secondary);
            transform: rotateY(180deg);
        }

        .service-card h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--primary);
        }

        /* Testimonials */
        .testimonials-slider {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
        }

        .testimonial {
            background: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            text-align: center;
            transform: translateY(2px);
            opacity: 1;
            transition: all 0.5s ease;
        }

        .testimonial.animate {
            transform: translateY(0);
            opacity: 1;
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
            color: var(--gray);
            position: relative;
        }

        .testimonial-text:before,
        .testimonial-text:after {
            content: '"';
            font-size: 3rem;
            color: var(--secondary);
            opacity: 0.3;
            position: absolute;
        }

        .testimonial-text:before {
            top: -20px;
            left: -10px;
        }

        .testimonial-text:after {
            bottom: -40px;
            right: -10px;
        }

        .testimonial-author {
            font-weight: bold;
            color: var(--primary);
        }

        /* Contact Section */
        .contact-content {
            display: flex;
            gap: 50px;
        }

        .contact-info {
            flex: 1;
        }

        .contact-form {
            flex: 1;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
            transform: translateX(-2px);
            opacity: 1;
            transition: all 0.5s ease;
        }

        .contact-item.animate {
            transform: translateX(0);
            opacity: 1;
        }

        .contact-icon {
            font-size: 1.5rem;
            color: var(--primary);
            margin-right: 15px;
            margin-top: 5px;
            transition: all 0.3s ease;
        }

        .contact-item:hover .contact-icon {
            color: var(--secondary);
            transform: scale(1.2);
        }

        .contact-details h3 {
            font-size: 1.2rem;
            margin-bottom: 5px;
            color: var(--primary);
        }

        .form-group {
            margin-bottom: 20px;
            transform: translateX(2px);
            opacity: 1;
            transition: all 0.5s ease;
        }

        .form-group.animate {
            transform: translateX(0);
            opacity: 1;
        }

        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 2px rgba(26, 82, 118, 0.2);
            transform: translateY(-2px);
        }

        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }

        .map-container {
            margin-top: 40px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transform: translateY(2px);
            opacity: 1;
            transition: all 0.5s ease;
        }

        .map-container.animate {
            transform: translateY(0);
            opacity: 1;
        }

        .map-container iframe {
            width: 100%;
            height: 400px;
            border: none;
        }

        /* Footer */
        footer {
            background: var(--dark);
            color: white;
            padding: 70px 0 0;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }

        .footer-column h3 {
            font-size: 1.3rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-column h3:after {
            content: '';
            position: absolute;
            width: 40px;
            height: 2px;
            background: var(--secondary);
            bottom: 0;
            left: 0;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: #bdc3c7;
            text-decoration: none;
            transition: all 0.3s;
            position: relative;
            padding-left: 0;
        }

        .footer-links a:before {
            content: '»';
            position: absolute;
            left: -15px;
            opacity: 0;
            transition: all 0.3s;
        }

        .footer-links a:hover {
            color: var(--secondary);
            padding-left: 15px;
        }

        .footer-links a:hover:before {
            opacity: 1;
            left: 0;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            transition: all 0.3s;
        }

        .social-links a:hover {
            background: var(--secondary);
            transform: translateY(-3px) rotate(10deg);
        }

        .copyright {
            text-align: center;
            padding: 20px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #bdc3c7;
            font-size: 0.9rem;
        }

        /* Floating Animation */
        @keyframes float {
            0% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-10px);
            }

            100% {
                transform: translateY(0);
            }
        }

        .float {
            animation: float 3s ease-in-out infinite;
        }

        /* Arrow Navigation Styles */
        .slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
        }

        .slider-arrow:hover {
            background: rgba(255, 255, 255, 0.4);
            transform: translateY(-50%) scale(1.1);
        }

        .arrow-left {
            left: 20px;
        }

        .arrow-right {
            right: 20px;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {

            .about-content,
            .contact-content {
                flex-direction: column;
            }

            .categories-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .slide-content h2 {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            .mobile-toggle {
                display: block;
            }

            .nav-menu {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 80%;
                height: calc(100vh - 80px);
                background: white;
                flex-direction: column;
                align-items: center;
                padding-top: 50px;
                transition: left 0.3s ease;
                box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
            }

            .nav-menu.active {
                left: 0;
            }

            .nav-menu li {
                margin: 15px 0;
            }

            .dropdown-menu {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                background: transparent;
                display: none;
                margin-top: 10px;
            }

            .dropdown.active .dropdown-menu {
                display: block;
            }

            .dropdown-menu a {
                padding: 8px 20px;
                border-bottom: none;
            }

            .banner {
                height: 500px;
            }

            .slide-content h2 {
                font-size: 2rem;
            }

            .section {
                padding: 60px 0;
            }


            .section-title h2 {
                font-size: 2rem;
            }

            .categories-grid {
                grid-template-columns: 1fr;
            }

            .slider-arrow {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }

            .arrow-left {
                left: 10px;
            }

            .arrow-right {
                right: 10px;
            }
        }

        .faq-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        .faq-item {
            background: white;
            border-radius: 8px;
            margin-bottom: 15px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .faq-question {
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            font-size: 1.1rem;
            color: #2c3e50;
            background-color: #fff;
            border: none;
            width: 100%;
            text-align: left;
        }

        .faq-question:hover {
            background-color: #f1f8ff;
        }

        .faq-icon {
            font-size: 1.2rem;
            color: #3498db;
            transition: transform 0.3s ease;
        }

        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            color: #555;
            background-color: #fff;
        }

        .faq-item.active .faq-answer {
            padding: 0 20px 20px;
            max-height: 500px;
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }

        @media (max-width: 600px) {
            .faq-section {
                padding: 20px 15px;
            }

            .faq-question {
                font-size: 1rem;
                padding: 15px;
            }
        }

        .view-more-container {
            text-align: center;
            margin-top: 30px;
        }



           .page-header {
            background: #00a759;
            color: white;
            padding: 50px 20px;
            text-align: center;
        }

        .page-header h1 {
            font-size: 32px;
            margin-bottom: 10px;
        }

        .products-container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        .product-item {
            display: flex;
            margin-bottom: 60px;
            align-items: center;
            gap: 40px;
        }

        .product-item.reverse {
            flex-direction: row-reverse;
        }

        .product-image {
            flex: 1;
            text-align: center;
            padding: 20px;
        }

        .product-image img {
            width: 100%;
            max-width: 400px;
            height: 300px;
            object-fit: contain;
            border: 1px solid #ddd;
            border-radius: 5px;
            background: #f8f8f8;
        }

        .product-details {
            flex: 1;
            padding: 20px;
        }

        .product-category {
            color: #00a759;
            font-size: 20px;
            margin-bottom: 10px;
            font-weight: bold;
        }

        .product-model {
            color: #004499;
            font-size: 24px;
            margin-bottom: 15px;
            font-weight: bold;
        }

        .application-box {
            background: #e8f4ff;
            padding: 12px;
            margin: 15px 0;
            border-left: 4px solid #00a759;
        }

        .features {
            margin: 15px 0;
            line-height: 1.6;
        }

        .specs-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 15px;
        }

        .specs-table th {
            background: #00a759;
            color: white;
            padding: 10px;
            text-align: left;
        }

        .specs-table td {
            padding: 10px;
            border: 1px solid #ddd;
        }

        @media (max-width: 768px) {

            .product-item,
            .product-item.reverse {
                flex-direction: column;
            }

            .product-image,
            .product-details {
                flex: none;
                width: 100%;
            }
        }


         .features-list {
            list-style: none;
            margin: 15px 0;
        }

        .features-list li {
            padding: 8px 0;
            position: relative;
            padding-left: 25px;
        }

        .features-list li:before {
            content: "✓";
            color: #00a759;
            font-weight: bold;
            position: absolute;
            left: 0;
        }

        .specs-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 15px;
            font-size: 14px;
        }

        .specs-table th {
            background: #00a759;
            color: white;
            padding: 10px;
            text-align: left;
        }

        .specs-table td {
            padding: 10px;
            border: 1px solid #ddd;
        }