
        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .fade-in {
            animation: fadeIn 0.8s ease-in-out;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        .nav-link::after {
            margin-top: 2px;
        }
        
        .dropdown-content {
            transition: all 0.3s ease;
        }
        
        .dropdown.active .dropdown-content {
            display: block;
        }
            content: '';
            display: block;
            width: 0;
            height: 2px;
            background: #FBBF24;
            transition: width .3s;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .contact-float {
            animation: float 3s ease-in-out infinite;
        }
        
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0px); }
        }
        
        /* Slider Styles */
        .slider-container {
            position: relative;
            width: 100%;
            overflow: hidden;
        }
        
        .slider {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }
        
        .slide {
            min-width: 100%;
            position: relative;
        }
        
        .slide img {
            width: 100%;
            height: 100vh;
            object-fit: cover;
        }
        
        .slide-content {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            background: rgba(0, 0, 0, 0.4);
        }
        
        .slide-text {
            max-width: 1200px;
            padding: 0 2rem;
            margin: 0 auto;
            color: white;
            text-align: left;
        }
        
        .slide-text h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        
        .slide-text p {
            font-size: 1.25rem;
            margin-bottom: 2rem;
            max-width: 700px;
        }
        
        .slider-nav {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 0.5rem;
        }
        
        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: background 0.3s;
        }
        
        .slider-dot.active {
            background: white;
        }
        
        .slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.5);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 1.5rem;
            transition: background 0.3s;
        }
        
        .slider-arrow:hover {
            background: rgba(0, 0, 0, 0.8);
        }
        
        .slider-arrow.prev {
            left: 1rem;
        }
        
        .slider-arrow.next {
            right: 1rem;
        }
        
        @media (max-width: 768px) {
            .slide-text h1 {
                font-size: 2rem;
            }
            
            .slide-text p {
                font-size: 1rem;
            }
            
            .slide img {
                height: 70vh;
            }
        }
		.gradient-bg {
            background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
        }
		
		/* Optional: smoother continuous blink effect */
		@keyframes blink {
		  0%, 50%, 100% { opacity: 1; }
		  25%, 75% { opacity: 0; }
		}

		.live-dot {
		  animation: blink 1s infinite;
		}
		
		
		/* Contact Us */
		.contact-hero {
            background-image: linear-gradient(rgba(1, 41, 95, 0.8), rgba(1, 41, 95, 0.8)), url('https://images.unsplash.com/photo-1581092918056-0c4c3acd3789?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
        }
        
        .map-container {
            position: relative;
            overflow: hidden;
            padding-top: 56.25%; /* 16:9 Aspect Ratio */
        }
        
        .map-iframe {
            position: absolute;
            top: 0;
            left: 0;
            bottom: 0;
            right: 0;
            width: 100%;
            height: 100%;
            border: none;
        }
        
        .contact-card {
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        
        .contact-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }
        
        .contact-icon {
            transition: all 0.3s ease;
        }
        
        .contact-card:hover .contact-icon {
            transform: scale(1.1);
            color: #FBBF24;
        }
		
		/* Case Study*/
		.case-study-card {
            transition: all 0.3s ease;
        }
        
        .case-study-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .case-study-tag {
            transition: all 0.3s ease;
        }
        
        .case-study-tag:hover {
            background-color: #1E40AF;
            color: white;
        }
		
		/* Blogs */
		
        .blog-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .blog-card:hover .blog-title {
            color: #1E40AF;
        }
        
        .tag:hover {
            background-color: #1E40AF;
            color: white;
        }
        
        .article-content p {
            margin-bottom: 1.5rem;
            line-height: 1.7;
        }
        
        .article-content h2 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1E40AF;
            margin-top: 2.5rem;
            margin-bottom: 1.5rem;
        }
        
        .article-content h3 {
            font-size: 1.25rem;
            font-weight: 600;
            color: #1E40AF;
            margin-top: 2rem;
            margin-bottom: 1rem;
        }
        
        .article-content ul, .article-content ol {
            margin-bottom: 1.5rem;
            padding-left: 1.5rem;
        }
        
        .article-content ul li {
            list-style-type: disc;
            margin-bottom: 0.5rem;
        }
        
        .article-content ol li {
            list-style-type: decimal;
            margin-bottom: 0.5rem;
        }
        
        .article-content blockquote {
            border-left: 4px solid #FBBF24;
            padding-left: 1.5rem;
            margin: 2rem 0;
            font-style: italic;
            color: #4B5563;
        }
		
		/* Storage Racks */
		.spec-item {
            border-left: 4px solid #FBBF24;
            transition: all 0.3s;
        }
        
        .spec-item:hover {
            background-color: rgba(251, 191, 36, 0.1);
            transform: translateX(5px);
        }

		.rack-type-card {
            transition: all 0.3s;
            border-bottom: 4px solid transparent;
        }
        
        .rack-type-card:hover {
            transform: translateY(-5px);
            border-bottom-color: #FBBF24;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
		.capacity-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background-color: rgba(239, 68, 68, 0.9);
            color: white;
            padding: 8px 12px;
            border-radius: 4px;
            font-weight: bold;
            font-size: 1.1rem;
        }
		.capacity-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background-color: rgba(239, 68, 68, 0.9);
            color: white;
            padding: 8px 12px;
            border-radius: 4px;
            font-weight: bold;
            font-size: 1.1rem;
        }
		.faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        .faq-item.active .faq-answer {
            max-height: 500px;
        }
        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }
		.flow-animation {
            animation: flow 15s linear infinite;
        }
        
        @keyframes flow {
            0% { transform: translateX(0); }
            100% { transform: translateX(-100%); }
        }
		
		
		/* Robot Safety */
		.tech-spec-item {
            border-left: 4px solid #FBBF24;
            transition: all 0.3s;
        }
        
        .tech-spec-item:hover {
            background-color: rgba(251, 191, 36, 0.1);
            transform: translateX(5px);
        }
        
        .robot-feature-card {
            transition: all 0.3s;
            border-top: 4px solid transparent;
        }
        
        .robot-feature-card:hover {
            transform: translateY(-10px);
            border-top-color: #FBBF24;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
		
		.video-container {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
        }
        
        .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
		

	/* About Section */
 		/* ============================================================
		   REDESIGNED ABOUT SECTION STYLES
		   (self-contained, no conflicts with existing CSS)
		============================================================ */
		.pd2-about {
			padding: 5rem 0;
			background: #f8fafc;
			font-family: 'Inter', sans-serif;
		}
		.pd2-inner {
			max-width: 1200px;
			margin: 0 auto;
			padding: 0 1.5rem;
			display: grid;
			grid-template-columns: 1fr 1fr;
			gap: 4rem;
			align-items: start;
		}
		.pd2-eyebrow {
			display: inline-flex;
			align-items: center;
			gap: 7px;
			font-size: 0.7rem;
			font-weight: 600;
			letter-spacing: 0.1em;
			text-transform: uppercase;
			color: #1e40af;
			background: #eff6ff;
			border: 1px solid #bfdbfe;
			border-radius: 999px;
			padding: 5px 14px;
			margin-bottom: 1.25rem;
		}
		.pd2-accent-bar {
			width: 48px;
			height: 4px;
			background: #f59e0b;
			border-radius: 2px;
			margin-bottom: 1.25rem;
		}
		.pd2-headline {
			font-size: 2rem;
			font-weight: 700;
			color: #1e3a8a;
			line-height: 1.25;
			margin: 0 0 1rem;
		}
		.pd2-headline em {
			font-style: normal;
			color: #1d4ed8;
		}
		.pd2-body {
			font-size: 0.9375rem;
			color: #4b5563;
			line-height: 1.8;
			margin: 0 0 1.75rem;
		}
		.pd2-capability-grid {
			display: flex;
			flex-wrap: wrap;
			gap: 8px;
			margin-bottom: 2rem;
		}
		.pd2-cap-pill {
			font-size: 0.75rem;
			font-weight: 500;
			padding: 5px 13px;
			border-radius: 999px;
			border: 1px solid #e2e8f0;
			color: #374151;
			background: #fff;
			white-space: nowrap;
		}
		.pd2-cta {
			display: inline-flex;
			align-items: center;
			gap: 8px;
			background: #f59e0b;
			color: #1e3a8a;
			font-size: 0.9rem;
			font-weight: 700;
			padding: 0.75rem 1.75rem;
			border-radius: 6px;
			text-decoration: none;
			transition: background 0.2s;
		}
		.pd2-cta:hover { background: #d97706; }

		/* Right column */
		.pd2-right {
			display: flex;
			flex-direction: column;
			gap: 14px;
		}
		.pd2-img-wrap {
			position: relative;
			border-radius: 12px;
			overflow: hidden;
			border: 1px solid #e2e8f0;
			aspect-ratio: 16 / 9;
			background: #1e3a8a;
		}
		.pd2-img-wrap img {
			width: 100%;
			height: 100%;
			object-fit: cover;
			display: block;
		}
		.pd2-img-badge {
			position: absolute;
			bottom: 14px;
			left: 14px;
			background: rgba(255,255,255,0.96);
			border-radius: 8px;
			padding: 7px 14px;
			display: flex;
			align-items: center;
			gap: 8px;
			font-size: 0.78rem;
			font-weight: 600;
			color: #1e3a8a;
			border: 1px solid rgba(30,58,138,0.12);
			box-shadow: 0 2px 8px rgba(0,0,0,0.1);
		}
		.pd2-live-dot {
			width: 8px;
			height: 8px;
			border-radius: 50%;
			background: #22c55e;
			flex-shrink: 0;
			box-shadow: 0 0 0 3px rgba(34,197,94,0.25);
			animation: pd2-pulse 2s infinite;
		}
		@keyframes pd2-pulse {
			0%,100%{box-shadow:0 0 0 3px rgba(34,197,94,0.25);}
			50%{box-shadow:0 0 0 6px rgba(34,197,94,0.1);}
		}
		.pd2-stats {
			display: grid;
			grid-template-columns: 1fr 1fr;
			gap: 10px;
		}
		.pd2-stat {
			background: #fff;
			border: 1px solid #e2e8f0;
			border-radius: 10px;
			padding: 16px 18px;
			transition: box-shadow 0.2s;
		}
		.pd2-stat:hover { box-shadow: 0 4px 16px rgba(30,58,138,0.09); }
		.pd2-stat-num {
			font-size: 1.6rem;
			font-weight: 800;
			color: #1e3a8a;
			line-height: 1;
			margin-bottom: 4px;
		}
		.pd2-stat-num sup {
			font-size: 1rem;
			color: #f59e0b;
		}
		.pd2-stat-label {
			font-size: 0.78rem;
			color: #6b7280;
			font-weight: 500;
		}
		.pd2-cert-strip {
			display: flex;
			align-items: center;
			gap: 12px;
			background: #fff;
			border: 1px solid #e2e8f0;
			border-radius: 10px;
			padding: 12px 16px;
		}
		.pd2-cert-icon {
			width: 34px;
			height: 34px;
			min-width: 34px;
			border-radius: 8px;
			background: #f0fdf4;
			display: flex;
			align-items: center;
			justify-content: center;
		}
		.pd2-cert-icon i {
			color: #16a34a;
			font-size: 0.9rem;
		}
		.pd2-cert-title {
			font-size: 0.84rem;
			font-weight: 600;
			color: #1e3a8a;
			margin: 0 0 2px;
		}
		.pd2-cert-sub {
			font-size: 0.75rem;
			color: #9ca3af;
			margin: 0;
		}
		@media (max-width: 768px) {
			.pd2-inner {
				grid-template-columns: 1fr;
				gap: 2.5rem;
			}
			.pd2-headline { font-size: 1.5rem; }
		}