
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Arial', sans-serif;
            background: #fff;
            color: #333;
            overflow-x: hidden;
        }
        
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header */
        header {
            background: #fff;
            padding: 15px 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        
        header.scrolled {
            padding: 10px 0;
            box-shadow: 0 5px 20px rgba(0,0,0,0.15);
        }
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        /* .logo {
            font-size: 2.2rem;
            font-weight: bold;
            background: linear-gradient(45deg, #FF8C00, #FF4500);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            color: transparent;
            display: flex;
            align-items: center;
        } */
        
        /* .logo::before {
            content: "⚙️";
            margin-right: 10px;
            font-size: 1.8rem;
        } */
        
        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        
        .nav-links a {
            color: #333;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            position: relative;
            font-size: 1.1rem;
            padding: 5px 0;
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, #FF8C00, #FF4500);
            transition: width 0.3s ease;
            border-radius: 3px;
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        .nav-links a:hover {
            color: #FF4500;
        }
        
        .nav-cta {
            background: linear-gradient(45deg, #FF8C00, #FF4500);
            color: white;
            padding: 10px 25px;
            border-radius: 30px;
            margin-left: 20px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 69, 0, 0.3);
        }
        
        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 69, 0, 0.4);
            color: white;
        }
        /* Banner Start */

        .banner {
            position: relative;
            height: 80vh;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 130px;
        }

        .bg-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 25% 25%, #ff6b35 0%, transparent 50%),
                radial-gradient(circle at 75% 75%, #f7931e 0%, transparent 50%);
            opacity: 0.1;
            animation: pulse 4s ease-in-out infinite alternate;
        }

        @keyframes pulse {
            0% { opacity: 0.1; transform: scale(1); }
            100% { opacity: 0.2; transform: scale(1.05); }
        }

        .truck-container {
            position: relative;
            z-index: 10;
            perspective: 1000px;
        }

        .truck {
            width: 600px;
            height: 300px;
            position: relative;
            transform-style: preserve-3d;
            animation: truckFloat 6s ease-in-out infinite;
        }

        @keyframes truckFloat {
            0%, 100% { transform: translateY(0px) rotateY(0deg); }
            50% { transform: translateY(-20px) rotateY(5deg); }
        }

        .truck-body {
            width: 100%;
            height: 60%;
            margin-top: 200px;
            margin-left: 300px;
            background: linear-gradient(45deg, #2c3e5079, #34495e92, #2c3e50);
            border-radius: 15px;
            position: relative;
            box-shadow: 
                0 20px 40px rgba(0,0,0,0.4),
                inset 0 2px 10px rgba(255,255,255,0.1);
            transform-style: preserve-3d;
            animation: bodyShine 3s ease-in-out infinite alternate;
        }

        @keyframes bodyShine {
            0% { box-shadow: 0 20px 40px rgba(0,0,0,0.4), inset 0 2px 10px rgba(255,255,255,0.1); }
            100% { box-shadow: 0 25px 50px rgba(0,0,0,0.6), inset 0 4px 15px rgba(255,255,255,0.2); }
        }

        .truck-cabin {
            width: 40%;
            height: 80%;
            background: linear-gradient(135deg, #e74c3c, #c0392b);
            position: absolute;
            right: 0;
            top: -30%;
            border-radius: 10px 10px 5px 5px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.3);
            animation: cabinGlow 2s ease-in-out infinite alternate;
    text-align: center; 
        }

      

.truck-cabin h1 {
    color: #ffffff;
    padding-top: 40px;
    font-weight: 100;
    font-size: 75px;
    text-align: center;
    position: relative; /* Optional if you want to layer h1 and h3 more precisely */
    z-index: 1;
}

.truck-cabin h3 {
    color: #ffffff;
    position: absolute;
    top: 110px; /* Adjust this value to position it over h1 */
    left: 50%;
    transform: translateX(-50%);
    z-index: 2; /* Higher z-index so it overlaps h1 */
    margin: 0;
    padding: 0;
}




        @keyframes cabinGlow {
            0% { box-shadow: 0 10px 20px rgba(0,0,0,0.3); }
            100% { box-shadow: 0 15px 30px rgba(231,76,60,0.4); }
        }

        .truck-wheel {
            width: 80px;
            height: 80px;
            background: radial-gradient(circle, #2c3e50 30%, #34495e 60%, #1a252f 100%);
            border-radius: 50%;
            position: absolute;
            bottom: -40px;
            box-shadow: 
                0 5px 15px rgba(0,0,0,0.5),
                inset 0 0 20px rgba(255,255,255,0.1);
            animation: wheelSpin 2s linear infinite;
        }

        @keyframes wheelSpin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .wheel-front { 
            left: 750px;
            margin-bottom: 50px; 
        }
        .wheel-back { 
            left: 350px;
            margin-bottom: 50px; 
        }

        .wheel-spokes {
            position: absolute;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, transparent 40%, #95a5a6 45%, transparent 50%);
        }

        .content {
            position: absolute;
            left: 5%;
            top: 50%;
            transform: translateY(-50%);
            color: white;
            z-index: 15;
            animation: contentSlide 1s ease-out;
        }

        @keyframes contentSlide {
            0% { opacity: 0; transform: translateY(-50%) translateX(-100px); }
            100% { opacity: 1; transform: translateY(-50%) translateX(0); }
        }

        .title {
            font-size: 4rem;
            font-weight: bold;
            /* margin-bottom: 10px; */
            background: linear-gradient(45deg, #ff6b35, #f7931e, #ffcd3c);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            animation: titleGlow 3s ease-in-out infinite alternate;
        }

        @keyframes titleGlow {
            0% { filter: brightness(1); }
            100% { filter: brightness(1.2) drop-shadow(0 0 20px rgba(255,107,53,0.5)); }
        }

        .subtitle {
            font-size: 1.5rem;
            margin-bottom: 30px;
            opacity: 0.9;
            animation: subtitleFade 2s ease-out 0.5s both;
        }

        @keyframes subtitleFade {
            0% { opacity: 0; transform: translateY(20px); }
            100% { opacity: 0.9; transform: translateY(0); }
        }

        .cta-button {
            background: linear-gradient(45deg, #e74c3c, #c0392b);
            color: white;
            padding: 15px 40px;
            border: none;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(231,76,60,0.4);
            animation: buttonPulse 2s ease-in-out infinite alternate 1s;
        }

        @keyframes buttonPulse {
            0% { transform: scale(1); box-shadow: 0 5px 15px rgba(231,76,60,0.4); }
            100% { transform: scale(1.05); box-shadow: 0 8px 25px rgba(231,76,60,0.6); }
        }

        .cta-button:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 10px 30px rgba(231,76,60,0.6);
        }

        .particles {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: #ff6b35;
            border-radius: 50%;
            animation: particleFloat 8s linear infinite;
        }

        @keyframes particleFloat {
            0% { 
                transform: translateY(100vh) translateX(0px);
                opacity: 0;
            }
            10% { opacity: 1; }
            90% { opacity: 1; }
            100% { 
                transform: translateY(-100px) translateX(100px);
                opacity: 0;
            }
        }

        .road-lines {
            position: absolute;
            bottom: 0;
            width: 100%;
            height: 100px;
            background: repeating-linear-gradient(
                90deg,
                transparent 0px,
                transparent 40px,
                #ff6b35 40px,
                #ff6b35 80px
            );
            opacity: 0.3;
            animation: roadMove 3s linear infinite;
        }

        @keyframes roadMove {
            0% { transform: translateX(0); }
            100% { transform: translateX(-80px); }
        }

        .exhaust {
            position: absolute;
            left: 0;
            top: 50%;
            width: 100px;
            height: 20px;
            background: linear-gradient(90deg, rgba(255,255,255,0.1), transparent);
            border-radius: 10px;
            animation: exhaustPuff 1.5s ease-in-out infinite;
        }

        @keyframes exhaustPuff {
            0% { transform: translateX(0) scaleX(1); opacity: 0.3; }
            100% { transform: translateX(-50px) scaleX(2); opacity: 0; }
        }

        @media (max-width: 768px) {
            .truck {
                width: 400px;
                height: 200px;
            }
            
            .title {
                font-size: 2.5rem;
            }
            
            .subtitle {
                font-size: 1.2rem;
            }
            
            .content {
                left: 2%;
            }
        }
        /* Banner End */

        /* home-service-1 start */

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }        

        
        .home-service-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        .home-service-content-wrapper {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
            overflow: hidden;
        }

        .home-service-content-row {
            display: flex;
            align-items: center;
            min-height: 500px;
            margin-bottom: 0;
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .home-service-content-row:nth-child(even) {
            flex-direction: row-reverse;
        }

        .home-service-content-row:nth-child(even) .home-service-image-section {
            border-radius: 0 0 0 20px;
        }

        .home-service-content-row:first-child .home-service-image-section {
            border-radius: 20px 0 0 0;
        }

        .home-service-content-row:last-child .home-service-image-section {
            border-radius: 0 0 0 20px;
        }

        .home-service-content-row:first-child:last-child .home-service-image-section {
            border-radius: 20px 0 0 20px;
        }

        .home-service-image-section {
            flex: 1;
            height: 500px;
            background: linear-gradient(45deg, #FF8C00, #FF4500);
            position: relative;
            overflow: hidden;
        }

        .home-service-image-section img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }

        .home-service-image-section:hover img {
            transform: scale(1.05);
        }

        .home-service-image-placeholder {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #FF8C00 0%, #FF4500 100%);
            color: white;
            font-size: 24px;
            font-weight: bold;
            text-align: center;
        }

        .home-service-content-section {
            flex: 1;
            padding: 60px 50px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .home-service-content-section h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #FF8C00 0%, #FF4500 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
        }

        .home-service-content-section p {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 30px;
            color: #555;
        }

        .home-service-cta-button {
            display: inline-block;
            padding: 15px 35px;
            background: linear-gradient(135deg, #FF8C00 0%, #FF4500 100%);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
            border: none;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .home-service-cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
            background: linear-gradient(135deg, #FF8C00 0%, #FF4500 100%);
        }

        .home-service-feature-list {
            list-style: none;
            margin: 20px 0;
        }

        .home-service-feature-list li {
            padding: 8px 0;
            position: relative;
            padding-left: 25px;
            color: #666;
        }

        .home-service-feature-list li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #FF8C00;
            font-weight: bold;
            font-size: 1.2em;
        }

        @media (max-width: 768px) {
            .home-service-content-row,
            .home-service-content-row:nth-child(even) {
                flex-direction: column;
            }

            .home-service-image-section {
                height: 300px;
                border-radius: 20px 20px 0 0 !important;
            }

            .home-service-content-section {
                padding: 40px 30px;
            }

            .home-service-content-section h2 {
                font-size: 2rem;
            }

            .home-service-container {
                padding: 20px 15px;
            }
        }

        /* Animation for content reveal */
        .home-service-content-row {
            opacity: 0;
            transform: translateY(50px);
        }

        .home-service-content-row.animate {
            opacity: 1;
            transform: translateY(0);
        }

        /* home-service-1 end */
        /* Hero Section */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)), 
                        url('https://images.pexels.com/photos/2465995/pexels-photo-2465995.jpeg');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            position: relative;
        }
        
        .hero-content {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
            padding-top: 80px;
        }
        
        .hero h1 {
            font-size: 4rem;
            margin-bottom: 20px;
            color: #222;
            line-height: 1.2;
        }
        
        .hero h1 span {
            background: linear-gradient(45deg, #FF8C00, #FF4500);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .hero p {
            font-size: 1.3rem;
            margin-bottom: 30px;
            color: #555;
        }
        
        .cta-button {
            display: inline-block;
            background: linear-gradient(45deg, #FF8C00, #FF4500);
            color: #fff;
            padding: 15px 40px;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(255, 69, 0, 0.3);
            border: none;
            cursor: pointer;
        }
        
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(255, 69, 0, 0.5);
        }
        
        /* Features Section */
        .features {
            padding: 100px 0;
            background: #f9f9f9;
        }
        
        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 60px;
            color: #222;
            position: relative;
            display: inline-block;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #FF8C00, #FF4500);
            border-radius: 2px;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }
        
        .feature-card {
            background: #fff;
            padding: 40px 30px;
            border-radius: 15px;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid #eee;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
            border-color: #FF8C00;
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(45deg, #FF8C00, #FF4500);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 2rem;
            color: white;
        }
        
        .feature-card h3 {
            color: #222;
            margin-bottom: 15px;
            font-size: 1.4rem;
        }
        
        .feature-card p {
            color: #666;
            line-height: 1.6;
        }
        
        /* Categories Section */
        .categories {
            padding: 100px 0;
            background: #fff;
        }
        
        .categories-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .category-card {
            background: #fff;
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.3s ease;
            position: relative;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border: 1px solid #eee;
        }
        
        .category-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
            border-color: #FF8C00;
        }
        
        .category-image {
            height: 200px;
            background: #f5f5f5;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: #FF4500;
        }
        
        .category-info {
            padding: 25px;
        }
        
        .category-info h3 {
            color: #222;
            margin-bottom: 10px;
            font-size: 1.3rem;
        }
        
        .category-info p {
            color: #666;
            font-size: 0.9rem;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .main-wrapper {
            font-family: 'Arial', sans-serif;
            background: linear-gradient(135deg, #FF8C00 0%, #ff8c00 100%);
            min-height: 70vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .stats {
            padding: 80px 20px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .content-wrapper {
            max-width: 1200px;
            margin: 0 auto;
        }

        .stats-grid {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 30px;
            flex-wrap: wrap;
        }

        .stat-item {
            text-align: center;
            padding: 30px 20px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            flex: 1;
            min-width: 200px;
        }

        .stat-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, #fff, transparent);
            animation: shimmer 2s infinite;
        }

        @keyframes shimmer {
            0% { left: -100%; }
            100% { left: 100%; }
        }

        .stat-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }

        .stat-item h3 {
            font-size: 3.5rem;
            font-weight: bold;
            color: #fff;
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            font-family: 'Arial Black', sans-serif;
        }

        .stat-item p {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        @media (max-width: 768px) {
            .stats-grid {
                flex-direction: column;
                gap: 20px;
            }
            
            .stat-item {
                min-width: 100%;
            }
            
            .stat-item h3 {
                font-size: 2.5rem;
            }
            
            .stat-item p {
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .stats-grid {
                gap: 15px;
            }
        }
        
        /* Footer */
        footer {
            background: #222;
            padding: 60px 0 30px;
            border-top: 3px solid #FF4500;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-section h3 {
            color: #FF8C00;
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        
        .footer-section p, .footer-section a {
            color: #ccc;
            text-decoration: none;
            line-height: 1.8;
        }
        
        .footer-section a:hover {
            color: #FF4500;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #444;
            color: #888;
        }
        
        /* Mobile Responsive */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
            }
        }
     


        /* .container-fluid {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 70vh;
            background: #fffdfd;
            } */
        /* .container-fluid h1{
            color: #fffbfb;
            margin-bottom: 250px;
            margin-left: 150px;
        }   */
        
        /* .container-fluid h4{
            color: #fffbfb;
            margin-right: 250px;
        }   */

        /* .container-fluid .glass {
            position: relative;
            width: 180px;
            height: 200px;
            background: linear-gradient(#fff2, transparent);
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 25px 25px rgba(0, 0, 0, 0.25);
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            border-radius: 10px;
            backdrop-filter: blur(10px);
            transition: transform 0.7s ease;
            will-change: transform; */

            /* Simulate spread using translateX based on --r */
            /* transform: rotate(calc(var(--r) * 1deg)) translateX(calc(var(--r) * 6px));
            } */

        /* .h1{
             text-align: center;
             justify-content: center;  
             color: #ffffff; 
            } */
        
        /* .container-fluid:hover .glass {
            transform: rotate(0deg) translateX(0);
            }

        .container-fluid .glass::before {
            content: attr(data-text);
            position: absolute;
            bottom: 0;
            width: 100%;
            height: 40px;
            background: rgba(255, 255, 255, 0.05);
            display: flex;
            justify-content: center;
            align-items: center;
            color: #fff;
            }
        .container-fluid .glass svg {
            font-size: 2.5em;
            fill: #000000;
            } */

            /* body {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100vh;
	margin: 0;
	background: #f5f5f5;
} */

@keyframes scroll {
	0% { transform: translateX(0); }
	100% { transform: translateX(calc(-250px * 7)); }
}

.slider-name {
    /* background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%); */
    /* border: 2px solid #ff4500; */
    border-radius: 0;
    padding: 50px 40px;
    box-shadow: 
        0 0 50px rgba(255, 69, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    max-width: 1400px;
    width: 100%;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

.slider-name::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 69, 0, 0.1), transparent);
    animation: scan 4s linear infinite;
}

@keyframes scan {
    0% { left: -100%; }
    100% { left: 100%; }
}

.slider-name h4 {
    font-size: 2rem;
    font-weight: 300;
    color: #000000;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 2px;
    /* text-shadow: 
        0 0 10px #ff4500,
        0 0 20px #ff4500,
        0 0 30px #ff4500; */
    position: relative;
    z-index: 2;
}

.slider-name h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    /* background: linear-gradient(90deg, transparent, #ff4500, #ffd700, #ff4500, transparent); */
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { opacity: 0.5; box-shadow: 0 0 10px #ff4500; }
    to { opacity: 1; box-shadow: 0 0 20px #ff4500, 0 0 30px #ffd700; }
}

.slider {
    width: 100%;
    height: 120px;
    overflow: hidden;
    position: relative;
    background: #ffffff;
    border: 2px solid #ffffff;
    box-shadow: inset 0 0 30px rgba(255, 254, 254, 0.8);
}

.slide-track {
    display: flex;
    animation: slideLeft 20s linear infinite;
    height: 100%;
    align-items: center;
}

.slide {
    min-width: 320px;
    height: 140px;
    margin: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #1a1a1a, #333);
    border: 2px solid #444;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    clip-path: polygon(20px 0%, 100% 0%, calc(100% - 20px) 100%, 0% 100%);
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        rgba(255, 69, 0, 0.1) 0%,
        rgba(255, 215, 0, 0.1) 50%,
        rgba(255, 69, 0, 0.1) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.slide:hover::before {
    opacity: 1;
}

.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.slide:hover::after {
    left: 100%;
}

.slide:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: #ff4500;
    box-shadow: 
        0 20px 40px rgba(255, 69, 0, 0.3),
        0 0 30px rgba(255, 69, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.slide:nth-child(even) {
    clip-path: polygon(0% 0%, calc(100% - 20px) 0%, 100% 100%, 20px 100%);
}

.slide img {
    max-width: 280px;
    max-height: 100px;
    object-fit: contain;
    filter: brightness(1.2) contrast(1.1) saturate(1.2);
    transition: all 0.4s ease;
}

.slide:hover img {
    filter: brightness(1.5) contrast(1.3) saturate(1.4);
    transform: scale(1.1);
}

@keyframes slideLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.slider:hover .slide-track {
    animation-play-state: paused;
}

/* Grid pattern overlay */
.slider-name::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 69, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 69, 0, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
    z-index: 1;
}

/* Corner decorations */
/* .corner {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 3px solid #ff4500;
    z-index: 4;
} */

.corner.top-left {
    top: 20px;
    left: 20px;
    border-right: none;
    border-bottom: none;
}

.corner.top-right {
    top: 20px;
    right: 20px;
    border-left: none;
    border-bottom: none;
}

.corner.bottom-left {
    bottom: 20px;
    left: 20px;
    border-right: none;
    border-top: none;
}

.corner.bottom-right {
    bottom: 20px;
    right: 20px;
    border-left: none;
    border-top: none;
}

/* Power indicator */
/* .power-indicator {
    position: absolute;
    top: 25px;
    right: 80px;
    width: 12px;
    height: 12px;
    background: #00ff00;
    border-radius: 50%;
    box-shadow: 0 0 15px #00ff00;
    animation: pulse 2s infinite;
    z-index: 5;
} */

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Responsive design */
@media (max-width: 768px) {
    .slider-name {
        padding: 40px 25px;
        margin: 15px;
    }

    .slider-name h2 {
        font-size: 2.8rem;
        margin-bottom: 40px;
        letter-spacing: 2px;
    }

    .slide {
        min-width: 280px;
        height: 120px;
        margin: 0 8px;
    }

    .slide img {
        max-width: 220px;
        max-height: 80px;
    }

    .slider {
        height: 140px;
    }

    .corner {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 480px) {
    .slider-name h2 {
        font-size: 2.2rem;
        letter-spacing: 1px;
    }

    .slide {
        min-width: 240px;
        height: 100px;
    }

    .slide img {
        max-width: 180px;
        max-height: 60px;
    }

    .slider {
        height: 120px;
    }
}
