
        .hero-swiper .swiper-slide {
            height: 580px;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }
        .hero-swiper .swiper-slide::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(3, 19, 49, 0.45);
            z-index: 1;
        }
        .hero-swiper .slide-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: #fff;
            padding: 0 20px;
        }
        .hero-swiper .slide-content h1 {
            font-size: 3.4rem;
            font-weight: 700;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        .hero-swiper .slide-content h1 span {
            color: var(--primary);
        }
        .hero-swiper .slide-content p {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 600px;
            margin: 16px auto 28px;
        }
        .hero-swiper .swiper-pagination-bullet {
            background: #fff;
            opacity: 0.6;
        }
        .hero-swiper .swiper-pagination-bullet-active {
            background: var(--primary);
            opacity: 1;
        }
        .hero-swiper .swiper-button-next,
        .hero-swiper .swiper-button-prev {
            color: #fff;
            background: rgba(0, 0, 0, 0.25);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            transition: background var(--transition);
        }
        .hero-swiper .swiper-button-next:hover,
        .hero-swiper .swiper-button-prev:hover {
            background: var(--primary);
        }
        .hero-swiper .swiper-button-next::after,
        .hero-swiper .swiper-button-prev::after {
            font-size: 20px;
        }


        .about-section {
            background: #f8fafc;
        }
        .about-section .about-title {
            font-size: 2.6rem;
            font-weight: 700;
            color: var(--secondary);
        }
        .about-section .about-title span {
            color: var(--primary);
        }
        .about-section .about-text {
            color: #555;
            line-height: 1.8;
            margin: 16px 0 24px;
        }
        .about-section .stat-item {
            text-align: center;
            padding: 16px 10px;
            background: #fff;
            border-radius: var(--radius);
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
            transition: all var(--transition);
        }
        .about-section .stat-item:hover {
            transform: translateY(-6px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }
        .about-section .stat-item .number {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--primary);
        }
        .about-section .stat-item .label {
            font-size: 0.9rem;
            color: #6c757d;
            margin-top: 4px;
        }


        .products-section {
            background: #fff;
        }
        .products-section .category-tabs {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
            margin-bottom: 36px;
        }
        .products-section .category-tabs .cat-btn {
            padding: 6px 22px;
            border-radius: 30px;
            border: 2px solid #e0e0e0;
            background: transparent;
            font-weight: 600;
            color: #555;
            transition: all var(--transition);
            cursor: pointer;
        }
        .products-section .category-tabs .cat-btn:hover,
        .products-section .category-tabs .cat-btn.active {
            border-color: var(--primary);
            background: var(--primary);
            color: #fff;
        }

        .product-card {
            background: #fff;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
            transition: all var(--transition);
            height: 100%;
            border: 1px solid #f0f0f0;
        }
        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 14px 40px rgba(0, 0, 0, 0.10);
        }
        .product-card .product-img {
            height: 200px;
            background-size: cover;
            background-position: center;
            background-color: #f0f2f5;
			display:block;
        }
        .product-card .product-body {
            padding: 20px 18px 22px;
        }
        .product-card .product-body h5 {
            font-weight: 700;
            color: var(--secondary);
            font-size: 1.1rem;
        }
        .product-card .product-body p {
            color: #777;
            font-size: 0.9rem;
            margin: 6px 0 12px;
        }
        .product-card .product-body .more-link {
            color: var(--primary);
            font-weight: 600;
            font-size: 0.9rem;
            transition: all var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }
        .product-card .product-body .more-link:hover {
            color: var(--primary-dark);
            gap: 10px;
        }


        .service-section {
            background: var(--secondary-light);
            color: #fff;
        }
        .service-section .section-title {
            color: #fff;
        }
        .service-section .section-subtitle {
            color: rgba(255, 255, 255, 0.75);
        }

        .service-card {
            background: #fff;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
            transition: all var(--transition);
            height: 100%;
            color: #222;
        }
        .service-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 14px 40px rgba(0, 0, 0, 0.20);
        }
        .service-card .service-img-wrap {
            position: relative;
            overflow: hidden;
            height: 210px;
            background-size: cover;
            background-position: center;
            background-color: #d0d5dd;
        }
        .service-card .service-img-wrap .overlay {
            position: absolute;
            inset: 0;
            background: rgba(223, 101, 18, 0.75);
            transform: translateY(-100%);
            transition: transform 0.5s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 20px;
            text-align: center;
        }
        .service-card:hover .service-img-wrap .overlay {
            transform: translateY(0);
        }
        .service-card .service-body {
            padding: 20px 18px 22px;
        }
        .service-card .service-body h5 {
            font-weight: 700;
            color: var(--secondary);
            font-size: 1.1rem;
        }
        .service-card .service-body p {
            color: #777;
            font-size: 0.9rem;
            margin: 6px 0 12px;
        }
        .service-card .service-body .more-link {
            color: var(--primary);
            font-weight: 600;
            font-size: 0.9rem;
            transition: all var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }
        .service-card .service-body .more-link:hover {
            color: var(--primary-dark);
            gap: 10px;
        }

        .service-section .swiper-button-next,
        .service-section .swiper-button-prev {
            color: var(--primary);
            background: #fff;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
            transition: all var(--transition);
            position: relative;
            top: auto;
            left: auto;
            right: auto;
            margin: 0 6px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }
        .service-section .swiper-button-next:hover,
        .service-section .swiper-button-prev:hover {
            background: var(--primary);
            color: #fff;
        }
        .service-section .swiper-button-next::after,
        .service-section .swiper-button-prev::after {
            font-size: 16px;
        }
        .service-section .swiper-nav-wrap {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 30px;
        }

   
        .testimonials-section {
            background: #f8fafc;
        }
        .testimonial-card {
            background: #fff;
            border-radius: var(--radius);
            padding: 30px 28px;
            box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
            transition: all var(--transition);
            height: 100%;
            border: 1px solid #f0f0f0;
        }
        .testimonial-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 34px rgba(0, 0, 0, 0.08);
        }
        .testimonial-card .stars {
            color: var(--primary);
            margin-bottom: 12px;
            font-size: 1.1rem;
        }
        .testimonial-card .quote {
            font-style: italic;
            color: #444;
            line-height: 1.7;
        }
        .testimonial-card .client {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-top: 16px;
        }
        .testimonial-card .client .avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background-size: cover;
            background-position: center;
            background-color: #d0d5dd;
            flex-shrink: 0;
        }
        .testimonial-card .client .name {
            font-weight: 700;
            color: var(--secondary);
            margin-bottom: 0;
        }
        .testimonial-card .client .title {
            font-size: 0.85rem;
            color: #888;
        }


        .culture-section {
			position:relative;
       
			background-image: url('/images/w.jpg');
			background-size: 100% 100%;
            color: #fff;
            padding: 50px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
		.brand-overlay {
    background: rgba(0,0,0,0.65);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
		
        .culture-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 30% 50%, rgba(223, 101, 18, 0.08), transparent 70%);
            pointer-events: none;
        }
        .culture-section .culture-inner {
            position: relative;
            z-index: 1;
            max-width: 900px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .culture-section .culture-inner h2 {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        .culture-section .culture-inner h2 span {
            color: var(--primary);
        }
        .culture-section .culture-inner .tagline {
            font-size: 1.4rem;
            font-weight: 300;
            opacity: 0.85;
            margin-bottom: 32px;
        }
        .culture-section .culture-inner .values {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px 50px;
            margin-top: 30px;
        }
        .culture-section .culture-inner .values .val-item {
            font-size: 1.1rem;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .culture-section .culture-inner .values .val-item i {
            color: var(--primary);
            font-size: 1.5rem;
        }


        .news-section {
            background: #fff;
        }
        .news-card {
            background: #fff;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
            transition: all var(--transition);
            height: 100%;
            border: 1px solid #f0f0f0;
        }
        .news-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 34px rgba(0, 0, 0, 0.08);
        }
        .news-card .news-img {
            height: 180px;
            background-size: cover;
            background-position: center;
            background-color: #e9ecef;
        }
        .news-card .news-body {
            padding: 20px 18px 22px;
        }
        .news-card .news-body .date {
            font-size: 0.8rem;
            color: #999;
            display: flex;
            align-items: center;
            gap: 6px;
            margin-bottom: 6px;
        }
        .news-card .news-body .date i {
            color: var(--primary);
        }
        .news-card .news-body h5 {
            font-weight: 700;
            color: var(--secondary);
            font-size: 1.05rem;
        }
        .news-card .news-body p {
            color: #777;
            font-size: 0.9rem;
            margin: 6px 0 12px;
        }
        .news-card .news-body .more-link {
            color: var(--primary);
            font-weight: 600;
            font-size: 0.9rem;
            transition: all var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }
        .news-card .news-body .more-link:hover {
            color: var(--primary-dark);
            gap: 10px;
        }

        .news-section .swiper-button-next,
        .news-section .swiper-button-prev {
            color: var(--primary);
            background: #fff;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.10);
            transition: all var(--transition);
            position: relative;
            top: auto;
            left: auto;
            right: auto;
            margin: 0 6px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }
        .news-section .swiper-button-next:hover,
        .news-section .swiper-button-prev:hover {
            background: var(--primary);
            color: #fff;
        }
        .news-section .swiper-button-next::after,
        .news-section .swiper-button-prev::after {
            font-size: 16px;
        }
        .news-section .swiper-nav-wrap {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 30px;
        }

    


        @media (max-width: 991.98px) {
            .hero-swiper .swiper-slide {
                height: 420px;
            }
            .hero-swiper .slide-content h1 {
                font-size: 2.4rem;
            }
            .section-title {
                font-size: 2rem;
            }
            .about-section .about-title {
                font-size: 2rem;
            }
            .culture-section .culture-inner h2 {
                font-size: 2.2rem;
            }
            .culture-section .culture-inner .tagline {
                font-size: 1.1rem;
            }
            .footer .footer-about {
                max-width: 100%;
            }
        }

        @media (max-width: 767.98px) {
            .section-padding {
                padding: 50px 0;
            }
            .hero-swiper .swiper-slide {
                height: 340px;
            }
            .hero-swiper .slide-content h1 {
                font-size: 1.8rem;
            }
            .hero-swiper .slide-content p {
                font-size: 1rem;
            }
            .top-bar .contact-item {
                margin-left: 10px;
                font-size: 0.8rem;
            }
            .top-bar .sep {
                margin: 0 6px;
            }
            .about-section .stat-item .number {
                font-size: 1.6rem;
            }
            .culture-section .culture-inner .values {
                gap: 16px 30px;
            }
            .culture-section .culture-inner .values .val-item {
                font-size: 0.95rem;
            }
            .service-card .service-img-wrap {
                height: 170px;
            }
            .product-card .product-img {
                height: 160px;
            }
        }

        @media (max-width: 575.98px) {
            .top-bar .contact-item {
                margin-left: 6px;
                font-size: 0.7rem;
            }
            .top-bar .sep {
                display: none;
            }
            .hero-swiper .swiper-slide {
                height: 280px;
            }
            .hero-swiper .slide-content h1 {
                font-size: 1.4rem;
            }
            .hero-swiper .slide-content p {
                font-size: 0.85rem;
                margin: 10px 0 18px;
            }
            .hero-swiper .swiper-button-next,
            .hero-swiper .swiper-button-prev {
                width: 36px;
                height: 36px;
            }
            .hero-swiper .swiper-button-next::after,
            .hero-swiper .swiper-button-prev::after {
                font-size: 14px;
            }
            .section-title {
                font-size: 1.6rem;
            }
            .about-section .about-title {
                font-size: 1.6rem;
            }
            .culture-section .culture-inner h2 {
                font-size: 1.6rem;
            }
        }