    
            * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --prm-blue-deep: #142f76;
            --prm-orange-accent: #df8c3e;
            --prm-white-pure: #ffffff;
            --prm-text-primary: #2c3e50;
            --prm-text-secondary: #5a6c7d;
            --prm-gray-light: #f4f6f9;
            --prm-shadow-soft: 0 4px 20px rgba(0,0,0,0.08);
            --prm-shadow-medium: 0 8px 30px rgba(0,0,0,0.12);
            --prm-transition-smooth: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            color: var(--prm-text-primary);
            line-height: 1.6;
            overflow-x: hidden;
            animation: prm-fade-in 0.5s ease-in;
        }
    
    /* ===== PRODUCT PAGE LAYOUT ===== */
        .prm-product-page-wrapper {
            padding: 50px 0;
            
        }

        .prm-container-fluid {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .prm-product-row {
            display: grid;
            grid-template-columns: 300px 1fr;
            gap: 30px;
        }

        /* ===== PRODUCT SIDEBAR ===== */
        .prm-sidebar-panel {
            background: var(--prm-white-pure);
            border-radius: 15px;
            box-shadow: var(--prm-shadow-soft);
           padding: 16px;
            position: sticky;
            top: 100px;
            max-height: calc(100vh - 120px);
            overflow-y: auto;
        }

        .prm-sidebar-panel::-webkit-scrollbar {
            width: 6px;
        }

        .prm-sidebar-panel::-webkit-scrollbar-thumb {
            background: linear-gradient(180deg, var(--prm-blue-deep), var(--prm-orange-accent));
            border-radius: 10px;
        }

        .prm-sidebar-heading {
            font-size: 20px;
            font-weight: 600;
            color: var(--prm-blue-deep);
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 2px solid var(--prm-orange-accent);
        }

        .prm-category-block {
            margin-bottom: 25px;
        }

        .prm-category-header {
            font-size: 16px;
            font-weight: 600;
            color: var(--prm-blue-deep);
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
            user-select: none;
            padding: 8px;
            border-radius: 8px;
            transition: var(--prm-transition-smooth);
        }

        .prm-category-header:hover {
            background: var(--prm-gray-light);
        }

        .prm-category-icon-box {
            width: 35px;
            height: 35px;
            background: linear-gradient(135deg, var(--prm-blue-deep), var(--prm-orange-accent));
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--prm-white-pure);
            font-size: 16px;
            flex-shrink: 0;
        }

        .prm-products-list {
            list-style: none;
            padding: 0;
            margin: 0;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease;
        }

        .prm-products-list.prm-list-expanded {
            max-height: 1000px;
        }

        .prm-product-list-item {
            margin-bottom: 6px;
        }

        .prm-product-link-anchor {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 12px;
            color: var(--prm-text-primary);
            text-decoration: none;
            border-radius: 8px;
            transition: var(--prm-transition-smooth);
            font-size: 14px;
            position: relative;
        }

        .prm-product-link-anchor::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 4px;
            height: 0;
            background: linear-gradient(180deg, var(--prm-blue-deep), var(--prm-orange-accent));
            transition: height 0.4s;
            border-radius: 0 4px 4px 0;
        }

        .prm-product-link-anchor:hover::before,
        .prm-product-link-anchor.prm-link-active::before {
            height: 100%;
        }

        .prm-product-link-anchor:hover,
        .prm-product-link-anchor.prm-link-active {
            background: linear-gradient(135deg, rgba(20, 47, 118, 0.1), rgba(223, 140, 62, 0.1));
            color: var(--prm-blue-deep);
            transform: translateX(5px);
        }

        .prm-product-link-anchor.prm-link-active {
            font-weight: 600;
        }

        .prm-product-link-anchor i {
            font-size: 10px;
            color: var(--prm-orange-accent);
            flex-shrink: 0;
        }

        /* ===== PRODUCT MAIN CONTENT ===== */
        .prm-product-main-content {
            min-width: 0;
        }

        .prm-hero-banner {
            position: relative;
            height: 400px;
           
            border-radius: 15px;
            overflow: hidden;
            margin-bottom: 40px;
        }

        .prm-banner-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
           
        }

        .prm-banner-overlay {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: var(--prm-white-pure);
            width: 85%;
            z-index: 2;
        }

        .prm-banner-title {
            font-size: clamp(28px, 5vw, 48px);
            font-weight: 700;
            margin-bottom: 15px;
            animation: prm-fade-in-up 0.8s ease;
        }

        .prm-banner-subtitle {
            font-size: clamp(16px, 3vw, 20px);
            opacity: 0.9;
            animation: prm-fade-in-up 1s ease;
        }

        @keyframes prm-fade-in-up {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .prm-content-section {
           margin-bottom: 20px;
            animation: prm-fade-in-up 0.6s ease;
        }

        .prm-section-heading {
           font-size: clamp(21px, 3vw, 25px);;
            font-weight: 600;
            color: var(--prm-blue-deep);
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 15px;
        }

        .prm-section-heading::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--prm-orange-accent), var(--prm-blue-deep));
            border-radius: 10px;
        }

        .prm-section-text {
            font-size: clamp(14px, 2vw, 16px);
            line-height: 1.8;
            color: var(--prm-text-primary);
        }

        .prm-features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }

        .prm-feature-card {
            background: var(--prm-gray-light);
            border-radius: 12px;
            padding: 25px;
            transition: var(--prm-transition-smooth);
            border: 2px solid transparent;
        }

        .prm-feature-card:hover {
            background: var(--prm-white-pure);
            border-color: var(--prm-orange-accent);
            transform: translateY(-5px);
            box-shadow: var(--prm-shadow-medium);
        }

        .prm-feature-icon-wrapper {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--prm-blue-deep), var(--prm-orange-accent));
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--prm-white-pure);
            font-size: 24px;
            margin-bottom: 15px;
            transition: var(--prm-transition-smooth);
        }

        .prm-feature-card:hover .prm-feature-icon-wrapper {
            transform: rotateY(360deg);
        }

        .prm-feature-title {
            font-size: 18px;
            font-weight: 600;
            color: var(--prm-blue-deep);
            margin-bottom: 10px;
        }

        .prm-feature-description {
            font-size: 14px;
            color: var(--prm-text-secondary);
            line-height: 1.6;
        }

        .prm-specs-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 20px;
            overflow-x: auto;
            display: block;
        }

        .prm-specs-table tbody {
            display: table;
            width: 100%;
        }

        .prm-specs-table tr {
            border-bottom: 1px solid var(--prm-gray-light);
            display: table-row;
        }

        .prm-specs-table td {
            padding: 15px;
            font-size: 14px;
            display: table-cell;
        }

        .prm-specs-table td:first-child {
            font-weight: 600;
            color: var(--prm-blue-deep);
            width: 35%;
        }

        .prm-specs-table td:last-child {
            color: var(--prm-text-primary);
        }

        .prm-applications-list {
            font-size: clamp(14px, 2vw, 16px);
            line-height: 2;
            color: var(--prm-text-primary);
            padding-left: 20px;
        }

        .prm-applications-list li {
            margin-bottom: 8px;
            position: relative;
        }

        .prm-applications-list li::marker {
            color: var(--prm-orange-accent);
        }

        .prm-cta-section {
            background: linear-gradient(135deg, var(--prm-blue-deep), var(--prm-orange-accent));
            padding: 40px;
            border-radius: 15px;
            text-align: center;
            color: var(--prm-white-pure);
            position: relative;
            overflow: hidden;
        }

        .prm-cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
            animation: prm-pulse-effect 8s ease-in-out infinite;
        }

        @keyframes prm-pulse-effect {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        .prm-cta-title {
            font-size: clamp(20px, 4vw, 28px);
            margin-bottom: 15px;
            position: relative;
            z-index: 1;
        }

        .prm-cta-text {
            font-size: clamp(14px, 2vw, 16px);
            margin-bottom: 25px;
            opacity: 0.9;
            position: relative;
            z-index: 1;
        }

        .prm-cta-button {
            background: var(--prm-white-pure);
            color: var(--prm-blue-deep);
            padding: 15px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            display: inline-block;
            transition: var(--prm-transition-smooth);
            box-shadow: 0 6px 20px rgba(0,0,0,0.2);
            position: relative;
            z-index: 1;
        }

        .prm-cta-button:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            background: var(--prm-orange-accent);
            color: var(--prm-white-pure);
        }

        /* ===== MOBILE OVERLAY ===== */
        .prm-mobile-backdrop {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.7);
            z-index: 999;
            backdrop-filter: blur(5px);
            opacity: 0;
            transition: opacity 0.4s;
        }

        .prm-mobile-backdrop.prm-backdrop-active {
            display: block;
            opacity: 1;
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 1200px) {
            .prm-product-row {
                grid-template-columns: 260px 1fr;
                gap: 25px;
            }
        }

        @media (max-width: 991px) {
            .prm-topbar-wrapper {
                display: none;
            }

            .prm-navbar-main {
                padding: 12px 0;
            }

            .prm-logo-wrapper img {
                height: 45px;
            }

            .prm-menu-toggle-btn {
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .prm-nav-menu-list {
                position: fixed;
                top: 0;
                right: -100%;
                width: 85%;
                max-width: 380px;
                height: 100vh;
                background: var(--prm-white-pure);
                flex-direction: column;
                align-items: stretch;
                gap: 0;
                padding: 75px 0 20px 0;
                box-shadow: -10px 0 40px rgba(0,0,0,0.3);
                transition: right 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
                overflow-y: auto;
                z-index: 1001;
            }

            .prm-nav-menu-list.prm-menu-open {
                right: 0;
            }

            .prm-mobile-close-btn {
                position: absolute;
                top: 20px;
                right: 20px;
                background: linear-gradient(135deg, var(--prm-blue-deep), var(--prm-orange-accent));
                border: none;
                width: 45px;
                height: 45px;
                border-radius: 50%;
                font-size: 22px;
                color: var(--prm-white-pure);
                cursor: pointer;
                display: flex;
                align-items: center;
                justify-content: center;
                transition: var(--prm-transition-smooth);
                box-shadow: 0 4px 15px rgba(20, 47, 118, 0.3);
            }

            .prm-mobile-close-btn:hover {
                transform: rotate(90deg) scale(1.1);
            }

            .prm-nav-item-element {
                border-bottom: 1px solid var(--prm-gray-light);
            }

            .prm-nav-link-anchor {
                padding: 18px 25px;
                justify-content: space-between;
                border-radius: 0;
            }

            .prm-cta-quote-btn {
                margin: 20px 25px;
                display: block;
                text-align: center;
            }

            .prm-product-row {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .prm-sidebar-panel {
                position: relative;
                top: 0;
                max-height: none;
            }

            .prm-hero-banner {
                height: 300px;
            }

            .prm-features-grid {
                grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
                gap: 15px;
            }
        }

        @media (max-width: 768px) {
            .prm-product-page-wrapper {
                padding: 30px 0;
            }

            .prm-hero-banner {
                height: 250px;
                margin-bottom: 30px;
            }

            .prm-content-section {
                margin-bottom: 35px;
            }

            .prm-features-grid {
                grid-template-columns: 1fr;
            }

            .prm-specs-table td {
                padding: 12px;
                font-size: 13px;
            }

            .prm-specs-table td:first-child {
                width: 40%;
            }

            .prm-cta-section {
                padding: 30px 20px;
            }
             .prm-product-page-wrapper {
            padding: 0px 0;
            
        }
        }

        @media (max-width: 600px) {
            .prm-cta-section {
    padding: 20px 16px;
  }
             
       
            .prm-navbar-container {
                padding: 0 15px;
            }

            .prm-logo-wrapper img {
                height: 40px;
            }

            .prm-nav-menu-list {
                width: 100%;
            }

            .prm-container-fluid {
                padding: 0 15px;
            }

            .prm-sidebar-panel {
                padding: 20px;
            }

            .prm-hero-banner {
                height: 200px;
            }

            .prm-contact-group {
                gap: 12px;
                font-size: 12px;
            }

            .prm-social-icon-link {
                width: 28px;
                height: 28px;
                font-size: 12px;
            }
        }

        @media (max-width: 400px) {
            .prm-feature-card {
                padding: 20px;
            }

            .prm-specs-table {
                font-size: 12px;
            }

            .prm-specs-table td {
                padding: 10px;
            }
        }

        /* ===== SMOOTH SCROLLING ===== */
        html {
            scroll-behavior: smooth;
        }

        /* ===== LOADING ANIMATION ===== */
        @keyframes prm-fade-in {
            from { opacity: 0; }
            to { opacity: 1; }
        }

      



/* product categories section styles */
        .prod-cat-section {
            padding: 80px 0;
            overflow: hidden;
        }

        .prod-cat-header {
            text-align: center;
            margin-bottom: 70px;
            position: relative;
        }

        .prod-cat-title {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .prod-cat-subtitle {
            font-size: clamp(1rem, 2vw, 1.2rem);
            color: var(--text-medium);
            max-width: 600px;
            margin: 0 auto 25px;
            line-height: 1.6;
        }

        .prod-cat-accent-line {
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, var(--accent-orange), var(--accent-gold));
            margin: 0 auto;
            border-radius: 10px;
            position: relative;
            overflow: hidden;
        }

        .prod-cat-accent-line::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
            animation: prod-cat-shimmer 2s infinite;
        }

        @keyframes prod-cat-shimmer {
            0% { left: -100%; }
            100% { left: 100%; }
        }

        /* Particle Effects */
        .prod-cat-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 10;
        }

        .prod-cat-particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: var(--accent-gold);
            border-radius: 50%;
            opacity: 0;
            animation: prod-cat-particle-rise 3s infinite;
            box-shadow: 0 0 10px rgba(244, 169, 68, 0.8);
        }

        @keyframes prod-cat-particle-rise {
            0% {
                opacity: 0;
                transform: translateY(0) scale(0);
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                opacity: 0;
                transform: translateY(-100px) scale(1.5);
            }
        }

        .prod-cat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .prod-cat-card {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            cursor: pointer;
            box-shadow: var(--shadow-md);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            background: var(--white);
            height: 400px;
            opacity: 0;
            transform: translateY(50px);
        }

        .prod-cat-card.prod-cat-animate-in {
            animation: prod-cat-fadeInUp 0.8s forwards;
        }

        @keyframes prod-cat-fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .prod-cat-card:nth-child(1) { animation-delay: 0.1s; }
        .prod-cat-card:nth-child(2) { animation-delay: 0.2s; }
        .prod-cat-card:nth-child(3) { animation-delay: 0.3s; }
        .prod-cat-card:nth-child(4) { animation-delay: 0.4s; }

        .prod-cat-card::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(135deg, var(--teal-accent), var(--accent-orange), var(--accent-gold));
            border-radius: 20px;
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: 0;
            animation: prod-cat-border-glow 3s linear infinite;
            background-size: 200% 200%;
        }

        @keyframes prod-cat-border-glow {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .prod-cat-card:hover::before {
            opacity: 1;
        }

        .prod-cat-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.7s ease;
            z-index: 2;
            pointer-events: none;
        }

        .prod-cat-card:hover::after {
            left: 100%;
        }

        .prod-cat-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 50px rgba(1, 97, 134, 0.3);
        }

        .prod-cat-card:active {
            transform: translateY(-8px) scale(1.01);
        }

        .prod-cat-img-wrapper {
            position: relative;
            width: 100%;
            height: 100%;
            overflow: hidden;
            border-radius: 18px;
            background: var(--darker-blue);
        }

        .prod-cat-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .prod-cat-card:hover .prod-cat-img {
            transform: scale(1.15) rotate(2deg);
        }

        .prod-cat-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, 
                rgba(1, 97, 134, 0.85) 0%, 
                rgba(20, 47, 118, 0.9) 50%, 
                rgba(10, 26, 62, 0.95) 100%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 35px;
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .prod-cat-card:hover .prod-cat-overlay {
            opacity: 1;
            animation: prod-cat-overlay-pulse 2s ease-in-out infinite;
        }

        @keyframes prod-cat-overlay-pulse {
            0%, 100% {
                background: linear-gradient(135deg, 
                    rgba(1, 97, 134, 0.85) 0%, 
                    rgba(20, 47, 118, 0.9) 50%, 
                    rgba(10, 26, 62, 0.95) 100%);
            }
            50% {
                background: linear-gradient(135deg, 
                    rgba(1, 97, 134, 0.9) 0%, 
                    rgba(20, 47, 118, 0.95) 50%, 
                    rgba(10, 26, 62, 1) 100%);
            }
        }

        .prod-cat-overlay::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 50% 50%, rgba(244, 169, 68, 0.2), transparent 70%);
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .prod-cat-card:hover .prod-cat-overlay::before {
            opacity: 1;
            animation: prod-cat-radial-pulse 2s ease-in-out infinite;
        }

        @keyframes prod-cat-radial-pulse {
            0%, 100% {
                transform: scale(0.8);
                opacity: 0.3;
            }
            50% {
                transform: scale(1.2);
                opacity: 0.6;
            }
        }

        .prod-cat-category-title {
            font-size: clamp(1.5rem, 3vw, 2rem);
            font-weight: 700;
            color: var(--white);
            margin-bottom: 15px;
            transform: translateY(30px);
            opacity: 0;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .prod-cat-card:hover .prod-cat-category-title {
            transform: translateY(0);
            opacity: 1;
        }

        .prod-cat-cta {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: var(--accent-gold);
            font-weight: 600;
            font-size: 1.1rem;
            text-decoration: none;
            transform: translateX(-20px);
            opacity: 0;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
        }

        .prod-cat-card:hover .prod-cat-cta {
            transform: translateX(0);
            opacity: 1;
        }

        .prod-cat-arrow {
            transition: transform 0.3s ease;
            font-size: 1.3rem;
        }

        .prod-cat-card:hover .prod-cat-arrow {
            transform: translateX(8px);
        }

        .prod-cat-floating-accent {
            position: absolute;
            width: 150px;
            height: 150px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(244, 169, 68, 0.2), transparent);
            pointer-events: none;
            z-index: -1;
        }

        .prod-cat-accent-1 {
            top: -50px;
            left: -50px;
            animation: prod-cat-float 6s ease-in-out infinite;
        }

        .prod-cat-accent-2 {
            bottom: -70px;
            right: -60px;
            animation: prod-cat-float 7s ease-in-out infinite reverse;
        }

        @keyframes prod-cat-float {
            0%, 100% { transform: translate(0, 0) scale(1); }
            50% { transform: translate(20px, 20px) scale(1.1); }
        }

        .prod-cat-label {
            position: absolute;
            bottom: 20px;
            left: 20px;
            background: rgba(255, 255, 255, 0.95);
            color: var(--primary-blue);
            padding: 10px 20px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
            backdrop-filter: blur(10px);
            box-shadow: var(--shadow-sm);
            z-index: 1;
            transition: all 0.3s ease;
           
        }

        .prod-cat-card:hover .prod-cat-label {
            opacity: 0;
            transform: translateY(10px);
        }

        /* Responsive Styles */
        
        /* Extra Small Devices (Portrait Phones, less than 576px) */
       @media (max-width: 575.98px) {
   

    .prod-cat-section {
        padding: 40px 0;
    }

    .prod-cat-header {
        margin-bottom: 40px;
        padding: 0 15px;
    }

    .prod-cat-title {
        font-size: 1.8rem; /* slightly smaller for 2 cards per row */
    }

    .prod-cat-subtitle {
        font-size: 0.9rem;
        padding: 0 10px;
    }

    .prod-cat-accent-line {
        width: 70px;
        height: 3px;
    }
     .prod-cat-label{
      display: none;
     }

    /* ================================
       Grid: 2 cards per row
    ================================== */
    .prod-cat-grid {
        display: grid;
        grid-template-columns: 1fr 1fr; /* 2 columns */
        gap: 15px; /* slightly smaller gap to fit two cards */
        padding: 0 15px;
    }

    /* Adjust card height for 2 columns */
    .prod-cat-card {
        height: 200px; /* shorter to fit 2 cards nicely */
    }

    /* Overlay adjustments */
    .prod-cat-overlay {
        opacity: 1;
        background: linear-gradient(180deg, 
            transparent 0%, 
            rgba(1, 97, 134, 0.75) 35%, 
            rgba(10, 26, 62, 0.95) 100%);
        padding: 15px; /* reduced padding to fit smaller cards */
    }

    .prod-cat-category-title {
        font-size: 1.2rem;
        transform: translateY(0);
        opacity: 1;
        margin-bottom: 8px;
    }

    .prod-cat-cta {
        font-size: 0.9rem;
        transform: translateX(0);
        opacity: 1;
    }

    .prod-cat-label {
        opacity: 1;
        bottom: 10px;
        left: 10px;
        padding: 6px 12px;
        font-size: 0.75rem;
    }

    .prod-cat-floating-accent {
        width: 80px;
        height: 80px;
    }

    /* Hover effect */
    .prod-cat-card:hover {
        transform: translateY(-3px) scale(1.02); /* smaller scale for mobile */
    }
}


        /* Small Devices (Landscape Phones, 576px to 767.98px) */
        @media (min-width: 576px) and (max-width: 767.98px) {
            body {
                padding: 40px 0;
            }

            .prod-cat-section {
                padding: 50px 0;
            }

            .prod-cat-header {
                margin-bottom: 50px;
            }

            .prod-cat-title {
                font-size: 2.5rem;
            }

            .prod-cat-subtitle {
                font-size: 1.05rem;
            }

            .prod-cat-grid {
                grid-template-columns: 1fr;
                gap: 30px;
                padding: 0 20px;
            }

            .prod-cat-card {
                height: 350px;
            }

            .prod-cat-overlay {
                opacity: 1;
                background: linear-gradient(180deg, 
                    transparent 0%, 
                    rgba(1, 97, 134, 0.7) 40%, 
                    rgba(10, 26, 62, 0.95) 100%);
                padding: 30px;
            }

            .prod-cat-category-title {
                font-size: 1.6rem;
                transform: translateY(0);
                opacity: 1;
            }

            .prod-cat-cta {
                font-size: 1.05rem;
                transform: translateX(0);
                opacity: 1;
            }

            .prod-cat-label {
                opacity: 1;
            }
        }

        /* Medium Devices (Tablets, 768px to 991.98px) */
        @media (min-width: 768px) and (max-width: 991.98px) {
            .prod-cat-section {
                padding: 60px 0;
            }

            .prod-cat-header {
                margin-bottom: 60px;
            }

            .prod-cat-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
                padding: 0 20px;
            }

            .prod-cat-card {
                height: 380px;
            }

            .prod-cat-overlay {
                padding: 30px;
            }

            .prod-cat-category-title {
                font-size: 1.7rem;
            }

            .prod-cat-cta {
                font-size: 1.05rem;
            }

            .prod-cat-card:hover {
                transform: translateY(-8px) scale(1.015);
            }
        }

        /* Large Devices (Desktops, 992px to 1199.98px) */
        @media (min-width: 992px) and (max-width: 1199.98px) {
            .prod-cat-section {
                padding: 70px 0;
            }

            .prod-cat-header {
                margin-bottom: 65px;
            }

            .prod-cat-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 35px;
            }

            .prod-cat-card {
                height: 390px;
            }

            .prod-cat-category-title {
                font-size: 1.8rem;
            }
        }

        /* Extra Large Devices (Large Desktops, 1200px to 1399.98px) */
        @media (min-width: 1200px) and (max-width: 1399.98px) {
            .prod-cat-grid {
                grid-template-columns: repeat(4, 1fr);
                gap: 35px;
            }

            .prod-cat-card {
                height: 400px;
            }
        }

        /* XXL Devices (Larger Desktops, 1400px and up) */
        @media (min-width: 1400px) {
            .prod-cat-section {
                padding: 90px 0;
            }

            .prod-cat-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 40px;
                max-width: 1600px;
            }

            .prod-cat-card {
                height: 350px;
            }

            .prod-cat-title {
                font-size: 3.8rem;
            }

            .prod-cat-subtitle {
                font-size: 1.3rem;
                max-width: 700px;
            }

            .prod-cat-category-title {
                font-size: 2.2rem;
            }

            .prod-cat-cta {
                font-size: 1.15rem;
            }
        }

        /* Landscape Orientation for Mobile Devices */
        @media (max-height: 600px) and (orientation: landscape) {
            .prod-cat-section {
                padding: 30px 0;
            }

            .prod-cat-header {
                margin-bottom: 30px;
            }

            .prod-cat-card {
                height: 280px;
            }

            .prod-cat-overlay {
                padding: 20px;
            }

            .prod-cat-category-title {
                font-size: 1.3rem;
                margin-bottom: 8px;
            }

            .prod-cat-cta {
                font-size: 0.95rem;
            }
        }

        /* High DPI Displays (Retina) */
        @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
            .prod-cat-img {
                image-rendering: -webkit-optimize-contrast;
                image-rendering: crisp-edges;
            }

            .prod-cat-card {
                box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
            }
        }

        /* Reduced Motion for Accessibility */
        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }

            .prod-cat-card:hover {
                transform: none;
            }

            .prod-cat-img {
                transition: none;
            }
        }

        /* Print Styles */
        @media print {
            body {
                background: white;
            }

            .prod-cat-section {
                padding: 20px 0;
            }

            .prod-cat-card {
                break-inside: avoid;
                box-shadow: none;
                border: 1px solid #ddd;
            }

            .prod-cat-overlay,
            .prod-cat-particles,
            .prod-cat-floating-accent {
                display: none;
            }

            .prod-cat-label {
                opacity: 1 !important;
            }
        }


        