*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
    }
    
    body{
    background:#0b1118;
    color:white;
    }
    
    header{
        display:flex;
        justify-content:space-between;
        align-items:center;
        padding:15px 40px;
        background:#081019;
        position:fixed;
        width:100%;
        z-index:1000;
        border-bottom:2px solid #ff7a00;
    }
    
    .logo{
    display:flex;
    align-items:center;
    gap:10px;
    }
    
    .logo img{
    height:40px;
    }
    
    .logo h2{
    color:#ff7a00;
    }
    
    nav{
        display:flex;
        gap:30px;
        align-items:center;
    }
    
    nav a{
        color:#fff;
        text-decoration:none;
        font-weight:500;
        transition:.3s;
    }
    
    nav a:hover{
        color:#ffcc00;
    }
    
    .menu{
        display:none;
        font-size:26px;
        cursor:pointer;
        color:white;
    }
    @media(max-width:768px){

        .menu{
        display:block;
        }
        nav{
            position:absolute;
            top:70px;
            left:0;
            width:100%;
            background:#081019;
            flex-direction:column;
            align-items:flex-start;
            padding:20px;
            display:none;
            }
            
            nav.active{
            display:flex;
            }
            
            nav a{
            width:100%;
            padding:12px 0;
            border-bottom:1px solid rgba(255,255,255,0.08);
            color:#ffffff;
            }
            
            }
    
    .hero{
    height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    position:relative;
    }
    
    .hero::before{
        content:"";
        position:absolute;
        top:0;
        left:0;
        width:100%;
        height:100%;
        background-size:cover;
        background-position:center;
        animation: hero 18s infinite, zoom 18s infinite;
        filter: blur(3px);
        transform: scale(1.05);
        z-index:-1;
        }
    
    @keyframes hero{
    0%{background:url('../images/factory1.jpg');background-size:cover}
    33%{background:url('../images/factory2.jpg');background-size:cover}
    66%{background:url('../images/factory3.jpg');background-size:cover}
    100%{background:url('../images/factory1.jpg');background-size:cover}
    }
    @keyframes zoom{

        0%{
        transform:scale(1.05);
        }
        
        50%{
        transform:scale(1.15);
        }
        
        100%{
        transform:scale(1.05);
        }
        
        }

    .hero::after{
        content:"";
        position:absolute;
        top:0;
        left:0;
        width:100%;
        height:100%;
        background:rgba(0,0,0,0.30); /* adjust 0.35 - 0.55 */
        z-index:0;
        }
        
        .hero-content{
        position:relative;
        z-index:1;
        }
    .hero h1{
        color:#ffcc00;
        font-weight:700;
        text-shadow: 2px 4px 12px rgba(0,0,0,0.8);
        }
    
    .btn{
    background:#0c0c0c;
    padding:12px 30px;
    display:inline-block;
    margin-top:20px;
    }
    
    section{
    padding:100px 8%;
    }
    
    .title{
    text-align:center;
    margin-bottom:50px;
    color:#ff7a00;
    }
    
    .grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
    }
    
    .card{
    background:#101820;
    padding:30px;
    border-left:3px solid #ff7a00;
    }
    
    .carousel{
    overflow:hidden;
    }
    
    .carousel-track{
    display:flex;
    animation:scroll 25s linear infinite;
    }
    
    .carousel img{
        min-width:45%;
        height:380px;
        object-fit:contain;
        padding:25px;
        transition:0.4s ease;
        }
        .carousel img:hover{
            transform:scale(1.08);
            filter:brightness(1.1);
            }
        @media(max-width:768px){

            .carousel img{
            min-width:100%;
            height:260px;
            }
            
            }
    @keyframes scroll{
    0%{transform:translateX(0)}
    100%{transform:translateX(-50%)}
    }
    
    .contact input,
    .contact textarea{
    width:100%;
    padding:12px;
    margin-top:10px;
    background:#0f141a;
    border:1px solid #333;
    color:white;
    }
    
    .contact button{
    background:#f37107;
    padding:12px;
    margin-top:10px;
    }
    
    .whatsapp{
    position:fixed;
    bottom:20px;
    right:20px;
    background:#25d366;
    padding:15px;
    border-radius:50%;
    }
    
    footer{
    background:#000;
    padding:30px;
    text-align:center;
    }
    
   
    .get-quote,
.get-quote:link,
.get-quote:visited{
color:#fff !important;
text-decoration:none;
}

.get-quote:hover{
color:#ffffff;
opacity:0.9;
}
.btn.get-quote{
    color:#fff !important;
    }


    /* Placeholder text color */
input::placeholder,
textarea::placeholder{
color:#ffffff;
opacity:1;
}

/* For browser compatibility */
input::-webkit-input-placeholder{
color:#ffffff;
}

input:-ms-input-placeholder{
color:#ffffff;
}

textarea::-webkit-input-placeholder{
color:#ffffff;
}

textarea:-ms-input-placeholder{
color:#ffffff;
}

/* Industries Section */

.industries{ background:#0b1118; }

.industries-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:30px; }

.industry-card{ background:#111923; padding:30px 20px; border-radius:8px; text-align:center; transition:.3s ease; border:1px solid rgba(255,255,255,0.05); }

.industry-card:hover{ transform:translateY(-8px); box-shadow:0 10px 30px rgba(0,0,0,.5); }

.industry-card i{ font-size:40px; color:#ffcc00; margin-bottom:15px; }

/* Why Choose Us */

.why{ background:#0e141c; }

.why-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:30px; }

.why-card{ padding:30px; background:#111923; border-left:4px solid #ffcc00; border-radius:6px; }

/* Stats Section */

.stats{ background:linear-gradient(to right,#0b1118,#111923); text-align:center; }

.stats-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(200px,1fr)); gap:30px; }

.stat h2{ font-size:40px; color:#ffcc00; }

/* Clients */

.clients{ background:#0b1118; }

.client-track{ display:flex; gap:50px; animation:scroll 25s linear infinite; }

.client-track img{ height:60px; opacity:.7; }

.client-track img:hover{ opacity:1; }

/* Scroll Animation */

.fade-in{ opacity:0; transform:translateY(30px); transition:1s ease; }

.fade-in.active{ opacity:1; transform:translateY(0); }

.image-popup{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.9);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:9999;
    }
    
    .image-popup img{
    max-width:80%;
    max-height:80%;
    }
    
    .image-popup span{
    position:absolute;
    top:30px;
    right:40px;
    font-size:40px;
    cursor:pointer;
    color:white;
    }