
        .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%;
        }