
/* Header Banner Section Start */
        
        /* Products Container */
        .products-container {
            perspective: 1200px;
            min-height: 50vh;
            padding: 2rem 1rem;
            background: linear-gradient(135deg, #ffffff, #e8f5e9);
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            overflow: hidden;
             background-image: url('../images/bg-image/Service-section-4.png');
        }

        /* Background Elements */
        .products-background {
            position: absolute;
            width: 100%;
            height: 100%;
            z-index: 0;
            overflow: hidden;
        }

        .bg-shape {
            position: absolute;
            border-radius: 50%;
            background: rgba(27, 94, 32, 0.1);
            animation: float-shapes 15s infinite linear;
        }

        .shape-1 {
            width: 200px;
            height: 200px;
            top: 10%;
            left: 5%;
            animation-delay: 0s;
        }

        .shape-2 {
            width: 150px;
            height: 150px;
            bottom: 15%;
            right: 10%;
            animation-delay: 3s;
        }

        .shape-3 {
            width: 100px;
            height: 100px;
            top: 60%;
            left: 30%;
            animation-delay: 6s;
        }

        /* Floating Background Crosses */
        .floating-cross {
            position: absolute;
            width: 60px;
            height: 60px;
            animation: float-cross 20s infinite linear;
        }

        .cross-bg-1 {
            top: 20%;
            right: 15%;
            animation-delay: 0s;
        }

        .cross-bg-2 {
            bottom: 25%;
            left: 20%;
            animation-delay: 7s;
        }

        .cross-bg-3 {
            top: 70%;
            right: 35%;
            animation-delay: 14s;
        }

        .bg-cross-line {
            position: absolute;
            background: rgba(46, 125, 50, 0.1);
            border-radius: 2px;
        }

        .bg-cross-line-1 {
            width: 60px;
            height: 4px;
            top: 50%;
            left: 0;
            transform: translateY(-50%);
        }

        .bg-cross-line-2 {
            width: 4px;
            height: 60px;
            left: 50%;
            top: 0;
            transform: translateX(-50%);
        }

        /* Products Showcase */
        .products-showcase {
            width: 95%;
            max-width: 1200px;
            transform-style: preserve-3d;
            animation: float 8s ease-in-out infinite;
            text-align: center;
            color: #2e7d32;
            padding: 2rem;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(12px);
            border-radius: 16px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(46, 125, 50, 0.2);
            position: relative;
            overflow: hidden;
            margin: 1rem auto;
            z-index: 1;
        }

        .products-showcase::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(46, 125, 50, 0) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
            z-index: -1;
        }

        .products-content {
            transform: translateZ(50px);
        }

        /* Typography */
        .products-title {
            font-size: clamp(2rem, 5vw, 3.5rem);
            margin-bottom: 1rem;
            font-weight: 700;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.5rem;
            color:rgb(255, 255, 255);
        }

        .title-part {
            display: inline-block;
            transform: translateZ(30px);
            transition: transform 0.3s ease;
            animation: cross-fade 3s ease-in-out infinite;
        }

        .title-part:nth-child(1) { animation-delay: 0s; }
        .title-part:nth-child(2) { animation-delay: 0.5s; }
        .title-part:nth-child(3) { animation-delay: 1s; }
        .title-part:nth-child(4) { animation-delay: 1.5s; }

        .title-part:hover {
            transform: translateZ(30px) scale(1.1);
        }

        .highlight {
            color: #2e7d32;
            text-shadow: 0 0 10px rgba(46, 125, 50, 0.3);
            position: relative;
        }

        .highlight::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: #2e7d32;
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.4s ease;
        }

        .highlight:hover::after {
            transform: scaleX(1);
            transform-origin: left;
        }

        .products-subtitle {
            font-size: clamp(1rem, 2vw, 1.25rem);
            margin-bottom: 2rem;
            opacity: 0.9;
            transform: translateZ(20px);
            color: #1b5e20;
        }

        /* Products Grid */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            perspective: 1000px;
            max-width: 1000px;
            margin: 0 auto;
        }

        /* Product Items */
        .product-item {
            background: rgba(255, 255, 255, 0.95);
            padding: 1.5rem;
            border-radius: 20px;
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            transform-style: preserve-3d;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(46, 125, 50, 0.1);
            min-height: 350px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: space-between;
        }

        .product-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent 0%, rgba(46,125,50,0.05) 100%);
            transform: translateY(100%);
            transition: transform 0.5s ease;
        }

        .product-item:hover {
            transform: translateY(-15px) translateZ(40px) rotateX(5deg);
            background: rgba(255, 255, 255, 1);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            border-color: rgba(46, 125, 50, 0.3);
        }

        .product-item:hover::before {
            transform: translateY(0);
        }

        .featured-product {
            border: 2px solid #2e7d32;
            box-shadow: 0 0 20px rgba(46, 125, 50, 0.2);
        }

        .featured-badge {
            position: absolute;
            top: 15px;
            right: -35px;
            background: #2e7d32;
            color: white;
            padding: 0.5rem 2.5rem;
            font-size: 0.75rem;
            font-weight: bold;
            transform: rotate(45deg);
            transform-origin: center;
            width: 140px;
            text-align: center;
            z-index: 2;
        }

        /* Product Image Container */
        .product-image-container {
            position: relative;
            width: 200px;
            height: 200px;
            border-radius: 16px;
            overflow: hidden;
            margin-bottom: 1.5rem;
        }

        .product-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
            border-radius: 16px;
        }

        .product-item:hover .product-image {
            transform: scale(1.1);
        }

        /* Cross Overlay */
        .cross-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
        }

        .cross-line {
            position: absolute;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 2px;
            animation: cross-pulse 2s ease-in-out infinite;
        }

        .cross-line-1 {
            width: 80%;
            height: 4px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation-delay: 0s;
        }

        .cross-line-2 {
            width: 4px;
            height: 80%;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation-delay: 0.5s;
        }

        .product-item:hover .cross-overlay {
            opacity: 1;
        }

        .product-info {
            text-align: center;
            width: 100%;
        }

        .product-info h3 {
            font-size: 1.3rem;
            margin-bottom: 0.75rem;
            color: #1b5e20;
            font-weight: 600;
        }

        .product-price {
            background: rgba(46, 125, 50, 0.1);
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            font-weight: bold;
            display: inline-block;
            transition: all 0.3s ease;
            color: #1b5e20;
            font-size: 1.1rem;
        }

        .product-item:hover .product-price {
            background: rgba(46, 125, 50, 0.2);
            transform: scale(1.05);
        }

        /* Animations */
        @keyframes float {
            0%, 100% {
                transform: rotateY(0deg) rotateX(5deg) translateY(0);
            }
            50% {
                transform: rotateY(5deg) rotateX(5deg) translateY(-15px);
            }
        }

        @keyframes float-shapes {
            0% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-30px) rotate(180deg);
            }
            100% {
                transform: translateY(0) rotate(360deg);
            }
        }

        @keyframes float-cross {
            0% {
                transform: translateY(0) rotate(0deg) scale(1);
            }
            25% {
                transform: translateY(-20px) rotate(90deg) scale(1.1);
            }
            50% {
                transform: translateY(0) rotate(180deg) scale(1);
            }
            75% {
                transform: translateY(-15px) rotate(270deg) scale(0.9);
            }
            100% {
                transform: translateY(0) rotate(360deg) scale(1);
            }
        }

        @keyframes cross-pulse {
            0%, 100% {
                opacity: 0.9;
                transform: translate(-50%, -50%) scale(1);
            }
            50% {
                opacity: 0.6;
                transform: translate(-50%, -50%) scale(1.1);
            }
        }

        @keyframes cross-fade {
            0%, 100% {
                opacity: 1;
                transform: translateZ(30px);
            }
            50% {
                opacity: 0.7;
                transform: translateZ(30px) rotateY(10deg);
            }
        }

        @keyframes rotate {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .products-showcase {
                padding: 1.5rem;
            }
            
            .products-grid {
                grid-template-columns: 1fr;
                max-width: 350px;
                gap: 1.5rem;
            }
            
            .product-item {
                min-height: 320px;
                padding: 1.25rem;
            }
            
            .product-image-container {
                width: 180px;
                height: 180px;
            }
            
            .featured-badge {
                top: 12px;
                right: -30px;
                font-size: 0.65rem;
                width: 120px;
            }
        }

        @media (max-width: 480px) {
            .products-showcase {
                padding: 1.25rem;
            }
            
            .products-title {
                font-size: 1.8rem;
            }
            
            .product-item {
                min-height: 300px;
            }
            
            .product-image-container {
                width: 160px;
                height: 160px;
            }
            
            .product-info h3 {
                font-size: 1.1rem;
            }
            
            .product-price {
                font-size: 1rem;
                padding: 0.6rem 1.2rem;
            }
            
            .featured-badge {
                top: 10px;
                right: -35px;
                font-size: 0.6rem;
                width: 110px;
            }
        }  

/* Header Banner Section End */


        /* Category Section Start */
        /* Reset and Base Styles */
        /* Base Styles */
:root {
    --pprimary-color: #2d5016;
    --psecondary-color: #4caf50;
    --paccent-color: #81c784;
    --ptext-color: #333;
    --white: #ffffff;
    --pbox-shadow: 0 20px 40px rgb(122, 122, 122);
    --transition: all 0.4s ease;
}



/* 3D Service Section Styles */
.service-section-3d {
    position: relative;
    padding: 80px 0;
    background-color: var(--white);
    overflow: hidden;
}

.category-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    perspective: 1000px;
}

.section-title h2 {
    font-size: 2.2rem;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    transform: translateZ(30px);
    text-shadow: 0 5px 15px rgba(45, 80, 22, 0.1);
}

.section-title .underline {
    height: 4px;
    width: 300px;
    background: linear-gradient(90deg, var(--secondary-color), var(--paccent-color));
    margin: 0 auto 20px;
    transform: translateZ(20px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.2);
}

.section-title p {
    color: var(--ptext-color);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    transform: translateZ(10px);
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    perspective: 1000px;
}

.service-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    padding: 25px;
    transition: var(--transition);
    transform-style: preserve-3d;
    box-shadow: var(--pbox-shadow);
    border: 1px solid rgba(76, 175, 80, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 350px;
}

.service-card:hover {
    transform: translateY(-10px) rotateX(3deg) rotateY(3deg);
    box-shadow: 0 25px 45px rgba(76, 175, 80, 0.2);
    background: rgba(255, 255, 255, 1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        60deg,
        transparent,
        rgba(76, 175, 80, 0.1),
        transparent
    );
    transform: rotate(45deg);
    transition: all 0.8s;
    z-index: -1;
}

.service-card:hover::before {
    animation: shine 1.5s;
}

.image-container {
    width: 300px;
    height: 300px;
    margin-bottom: 20px;
    border-radius: 8px; /* Changed from 50% to 8px for square with slightly rounded corners */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(76, 175, 80, 0.05);
    border: 1px solid rgba(76, 175, 80, 0.1);
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Changed from 'contain' to 'cover' for better square image filling */
    transition: transform 0.4s ease;
}

.service-card:hover img {
    transform: scale(1.05);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
    transform: translateZ(40px);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--pprimary-color);
    transform: translateZ(30px);
    font-weight: 600;
}

.service-card p {
    color: var(--text-color);
    margin-bottom: 20px;
    transform: translateZ(20px);
    font-size: 0.95rem;
    flex-grow: 1;
}

.learn-more {
    display: inline-block;
    padding: 10px 25px;
    background: linear-gradient(90deg, #11862a, #0f79269d);
    color: var(--white);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
    transform: translateZ(25px);
    box-shadow: 0 5px 15px rgba(76, 175, 79, 0.596);
    border: none;
    cursor: pointer;
}

.learn-more:hover {
    transform: translateZ(25px) scale(1.05);
    box-shadow: 0 10px 20px rgba(126, 126, 126, 0.4);
    background: linear-gradient(90deg, #115797, #115797);
    color: #ffffff;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0) translateZ(30px); }
    50% { transform: translateY(-8px) translateZ(30px); }
}

@keyframes shine {
    0% { left: -100%; opacity: 0; }
    20% { opacity: 0.5; }
    100% { left: 100%; opacity: 0; }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .services-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .service-section-3d {
        padding: 60px 0;
    }
    
    .service-card {
        min-height: 320px;
    }
}

@media (max-width: 576px) {
    .services-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .service-card {
        min-height: auto;
        padding: 20px 15px;
    }
    
    .image-container {
        width: 120px;
        height: 120px;
    }
}
    /* Category Section End */

            /* Products Section Start */
            .category-section {
                max-width: 1400px;
                margin: 2rem auto;
                padding: 0 1rem;
            }

            .category-section .category-header {
                display: flex;
                justify-content: space-between;
                align-items: center;
                margin-bottom: 2rem;
            }

            .category-section .category-title {
                font-size: 2rem;
                color: #2c3e50;
            }

            .category-section .filter-sort {
                display: flex;
                gap: 1rem;
            }

            .category-section .filter-sort select {
                padding: 0.5rem;
                border: 1px solid #ddd;
                border-radius: 4px;
                background-color: white;
                font-size: 0.9rem;
            }

            /* Product Grid */
            .category-section .product-grid {
                display: grid;
                grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
                gap: 2rem;
            }

            
            .category-section .product-image {
                width: 100%;
                height: 200px;
                background-color: #eee;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .category-section .product-image img {
                max-width: 100%;
                max-height: 100%;
                object-fit: cover;
            }


            .category-section .btn {
                display: inline-block;
                padding: 0.5rem 1rem;
                background-color: #3498db;
                color: white;
                border: none;
                border-radius: 4px;
                cursor: pointer;
                font-size: 0.9rem;
                transition: background-color 0.3s;
                text-align: center;
                text-decoration: none;
            }

            .category-section .btn:hover {
                background-color: #2980b9;
            }

            
            /* Pagination */
            .category-section .pagination {
                display: flex;
                justify-content: center;
                margin-top: 3rem;
                list-style: none;
            }

            .category-section .pagination li {
                margin: 0 0.3rem;
            }

            .category-section .pagination a {
                display: block;
                padding: 0.5rem 0.8rem;
                border: 1px solid #ddd;
                border-radius: 4px;
                color: #333;
                text-decoration: none;
                transition: all 0.3s;
            }

            .category-section .pagination a:hover, 
            .category-section .pagination a.active {
                background-color: #3498db;
                color: white;
                border-color: #3498db;
            }

            /* Responsive */
            @media (max-width: 768px) {
                .category-section .category-header {
                    flex-direction: column;
                    align-items: flex-start;
                    gap: 1rem;
                }
                
                .category-section .filter-sort {
                    width: 100%;
                }
                
                .category-section .filter-sort select {
                    flex: 1;
                }
                
                .category-section .product-grid {
                    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
                    gap: 1rem;
                }
            }

            @media (max-width: 480px) {
                .category-section .product-grid {
                    grid-template-columns: 1fr;
                }
                
                .category-section .nav-links {
                    display: none;
                }
            }

            
        .our-products-shape {
            position: absolute;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }

        .our-products-shape-1 {
            width: 80px;
            height: 80px;
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .our-products-shape-2 {
            width: 60px;
            height: 60px;
            top: 60%;
            right: 15%;
            animation-delay: 2s;
        }

        .our-products-shape-3 {
            width: 100px;
            height: 100px;
            bottom: 20%;
            left: 20%;
            animation-delay: 4s;
        }

        .our-products-shape-4 {
            width: 40px;
            height: 40px;
            top: 30%;
            right: 30%;
            animation-delay: 1s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        .our-products-particles {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .our-products-particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: rgba(255, 255, 255, 0.6);
            border-radius: 50%;
            animation: particle-float 12s linear infinite;
        }

        @keyframes particle-float {
            0% {
                transform: translateY(100vh) scale(0);
                opacity: 1;
            }
            100% {
                transform: translateY(-100px) scale(1);
                opacity: 0;
            }
        }

        .our-products-content {
            text-align: center;
            z-index: 10;
            max-width: 800px;
            padding: 0 20px;
        }

        .our-products-title {
            font-size: 3rem;
            font-weight: bold;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .our-products-subtitle {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .our-products-cta-button {
            display: inline-block;
            padding: 15px 30px;
            background: rgba(255, 255, 255, 0.2);
            color: white;
            text-decoration: none;
            border-radius: 30px;
            border: 2px solid white;
            transition: all 0.3s ease;
            font-weight: 600;
        }

        
        .product-card {
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .product-image {
            height: 250px;
            overflow: hidden;
            background: #f0f0f0;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .product-card:hover .product-image img {
            transform: scale(1.05);
        }

        .product-details {
            padding: 25px;
        }

        .product-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 10px;
            color: #333;
        }

        .product-description {
            color: #666;
            margin-bottom: 15px;
            line-height: 1.5;
        }

        .product-price {
            font-size: 1.4rem;
            font-weight: bold;
            color: #667eea;
            margin-bottom: 15px;
        }

        .product-rating {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 20px;
        }

        .stars {
            color: #ffc107;
            font-size: 1.1rem;
        }

        .review-count {
            color: #666;
            font-size: 0.9rem;
        }

        .product-actions {
            display: flex;
            gap: 10px;
        }


        .btn:not(.btn-secondary) {
            background: #099412;
            color: white;
        }

        .btn:not(.btn-secondary):hover {
            background: #115797;
            color: white;
        }

        .btn-secondary {
            background: transparent;
            color: #1b5e40;
            border: 2px solid #1f76c7;
        }

        .btn-secondary:hover {
            background: #667eea;
            color: white;
        }
            /* Products Section End */


        .our-products-header {
            position: relative;
            height: 50vh;
            background: linear-gradient(135deg, #115797 0%,rgb(89, 144, 196) 100%);
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .our-products-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.2) 0%, transparent 50%);
            animation: gradientShift 8s ease-in-out infinite;
        }

        @keyframes gradientShift {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.8; }
        }

        .our-products-nav {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 2rem 4rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            backdrop-filter: blur(10px);
            background: rgba(255, 255, 255, 0.1);
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        }

        .our-products-logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
            text-decoration: none;
            transform: perspective(1000px) rotateX(0deg);
            transition: transform 0.3s ease;
        }

        .our-products-logo:hover {
            transform: perspective(1000px) rotateX(15deg) rotateY(-15deg);
        }

        .our-products-nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .our-products-nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            transition: all 0.3s ease;
            transform: perspective(1000px) rotateX(0deg);
        }

        .our-products-nav-links a:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: perspective(1000px) rotateX(10deg) translateZ(10px);
        }

        .our-products-content {
            text-align: left;
            z-index: 100;
            max-width: 800px;
            padding: 3rem;
        }

        .our-products-title {
            font-size: 2.5rem;
            font-weight: 800;
            color: white;
            margin-bottom: 1rem;
            line-height: 1.1;
            transform: perspective(1000px) rotateX(0deg);
            animation: titleFloat 6s ease-in-out infinite;
        }

        @keyframes titleFloat {
            0%, 100% { 
                transform: perspective(1000px) rotateX(0deg) translateY(0px);
            }
            50% { 
                transform: perspective(1000px) rotateX(5deg) translateY(-10px);
            }
        }

        .our-products-subtitle {
            font-size: 1.25rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2rem;
            animation: subtitleSlide 1s ease-out 0.5s both;
        }

        @keyframes subtitleSlide {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .our-products-cta-button {
            display: inline-block;
            padding: 1rem 2rem;
            background: linear-gradient(45deg, #ff6b6b, #ffd93d);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transform: perspective(1000px) rotateX(0deg) translateZ(0px);
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
            animation: buttonPulse 2s ease-in-out infinite;
        }

        @keyframes buttonPulse {
            0%, 100% {
                box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
            }
            50% {
                box-shadow: 0 15px 40px rgba(255, 107, 107, 0.6);
            }
        }

        .our-products-cta-button:hover {
            transform: perspective(1000px) rotateX(-10deg) translateZ(20px) scale(1.05);
            box-shadow: 0 20px 50px rgba(255, 107, 107, 0.6);
        }

        .our-products-floating-shapes {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .our-products-shape {
            position: absolute;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 20px;
        }

        .our-products-shape-1 {
            width: 100px;
            height: 100px;
            top: 20%;
            left: 10%;
            animation: float1 8s ease-in-out infinite;
            transform-style: preserve-3d;
        }

        .our-products-shape-2 {
            width: 80px;
            height: 80px;
            top: 60%;
            right: 15%;
            animation: float2 6s ease-in-out infinite;
            transform-style: preserve-3d;
        }

        .our-products-shape-3 {
            width: 120px;
            height: 120px;
            bottom: 20%;
            left: 20%;
            animation: float3 10s ease-in-out infinite;
            transform-style: preserve-3d;
        }

        .our-products-shape-4 {
            width: 60px;
            height: 60px;
            top: 30%;
            right: 30%;
            animation: float4 7s ease-in-out infinite;
            transform-style: preserve-3d;
        }

        @keyframes float1 {
            0%, 100% {
                transform: perspective(1000px) rotateX(0deg) rotateY(0deg) translateZ(0px);
            }
            33% {
                transform: perspective(1000px) rotateX(15deg) rotateY(15deg) translateZ(50px);
            }
            66% {
                transform: perspective(1000px) rotateX(-10deg) rotateY(25deg) translateZ(25px);
            }
        }

        @keyframes float2 {
            0%, 100% {
                transform: perspective(1000px) rotateX(0deg) rotateY(0deg) translateZ(0px);
            }
            50% {
                transform: perspective(1000px) rotateX(25deg) rotateY(-20deg) translateZ(40px);
            }
        }

        @keyframes float3 {
            0%, 100% {
                transform: perspective(1000px) rotateX(0deg) rotateY(0deg) translateZ(0px);
            }
            25% {
                transform: perspective(1000px) rotateX(-15deg) rotateY(10deg) translateZ(30px);
            }
            75% {
                transform: perspective(1000px) rotateX(20deg) rotateY(-15deg) translateZ(60px);
            }
        }

        @keyframes float4 {
            0%, 100% {
                transform: perspective(1000px) rotateX(0deg) rotateY(0deg) translateZ(0px);
            }
            40% {
                transform: perspective(1000px) rotateX(30deg) rotateY(20deg) translateZ(35px);
            }
            80% {
                transform: perspective(1000px) rotateX(-20deg) rotateY(-10deg) translateZ(20px);
            }
        }

        .our-products-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .our-products-particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: rgba(255, 255, 255, 0.6);
            border-radius: 50%;
            animation: particleFloat 12s ease-in-out infinite;
        }

        .our-products-particle:nth-child(1) { top: 10%; left: 20%; animation-delay: 0s; }
        .our-products-particle:nth-child(2) { top: 20%; left: 80%; animation-delay: 2s; }
        .our-products-particle:nth-child(3) { top: 60%; left: 10%; animation-delay: 4s; }
        .our-products-particle:nth-child(4) { top: 80%; left: 70%; animation-delay: 6s; }
        .our-products-particle:nth-child(5) { top: 30%; left: 50%; animation-delay: 8s; }

        @keyframes particleFloat {
            0%, 100% {
                transform: translateY(0px) translateX(0px) scale(1);
                opacity: 0.6;
            }
            50% {
                transform: translateY(-50px) translateX(30px) scale(1.5);
                opacity: 1;
            }
        }

        @media (max-width: 768px) {
            .our-products-nav {
                padding: 1rem 2rem;
            }
            
            .our-products-nav-links {
                display: none;
            }
            
            .our-products-title {
                font-size: 2.5rem;
            }
            
            .our-products-subtitle {
                font-size: 1rem;
            }
            
            .our-products-shape {
                display: none;
            }
        }

        /* Prodcuct section End */


