/*==========================
FLASHWELD ENGINEERS
Modern Industrial Theme
===========================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#081c2f;
    color:#fff;
    overflow-x:hidden;
}

/*================ HEADER ================*/

header{
    width:100%;
    height:80px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 8%;
    position:fixed;
    top:0;
    left:0;
    background:rgba(6,20,36,.95);
    backdrop-filter:blur(10px);
    z-index:1000;
    box-shadow:0 5px 20px rgba(0,0,0,.35);
}

.logo h2{
    color:#fff;
    font-weight:700;
    letter-spacing:1px;
}

.logo span{
    color:#ff8c00;
}

nav ul{
    display:flex;
    list-style:none;
}

nav ul li{
    margin-left:30px;
}

nav ul li a{
    text-decoration:none;
    color:#fff;
    font-weight:500;
    transition:.3s;
}

nav ul li a:hover{
    color:#ff8c00;
}

.quote-btn{
    text-decoration:none;
    color:#fff;
    background:#ff8c00;
    padding:12px 28px;
    border-radius:30px;
    transition:.4s;
    font-weight:600;
}

.quote-btn:hover{
    background:#ff6b00;
    transform:translateY(-3px);
}

/*================ HERO ================*/

.hero{
    position:relative;
    height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    overflow:hidden;
}

.hero-img{
    position:absolute;
    width:100%;
    height:100%;
    object-fit:cover;
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,15,35,.72);
}

.hero-content{
    position:relative;
    z-index:2;
    text-align:center;
    width:90%;
    max-width:900px;
}

.hero-content h4{
    color:#ff8c00;
    letter-spacing:3px;
    margin-bottom:15px;
}

.hero-content h1{
    font-size:70px;
    margin-bottom:20px;
}

.hero-content h2{
    font-size:30px;
    margin-bottom:20px;
    color:#ddd;
}

.hero-content p{
    font-size:18px;
    line-height:1.8;
    color:#ddd;
    margin-bottom:40px;
}

.btn{
    display:inline-block;
    padding:16px 45px;
    background:#ff8c00;
    color:#fff;
    text-decoration:none;
    border-radius:40px;
    transition:.4s;
    font-weight:600;
}

.btn:hover{
    background:#ff6b00;
    transform:translateY(-5px);
}

/*================ SECTION ================*/

section{
    padding:90px 8%;
}

section h2{
    text-align:center;
    font-size:42px;
    margin-bottom:50px;
    color:#ff8c00;
}

/*================ ABOUT ================*/

.about{
    display:flex;
    align-items:center;
    gap:60px;
}

.about-image{
    flex:1;
}

.about-image img{
    width:100%;
    border-radius:15px;
    box-shadow:0 15px 40px rgba(0,0,0,.4);
}

.about-text{
    flex:1;
}

.about-text h2{
    text-align:left;
}

.about-text p{
    line-height:2;
    color:#d8d8d8;
    margin-bottom:20px;
}

/*================ SERVICES ================*/

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:35px;
}

.card{
    background:#0d2a44;
    border-radius:18px;
    overflow:hidden;
    transition:.4s;
    box-shadow:0 10px 25px rgba(0,0,0,.35);
}

.card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(255,140,0,.35);
}

.card img{
    width:100%;
    height:250px;
    object-fit:cover;
}

.card h3{
    padding:25px;
    color:#ff8c00;
}

.card p{
    padding:0 25px 30px;
    line-height:1.8;
    color:#ddd;
}

/*================ WHY ================*/

.why{
    background:#0b2138;
}

.why-box{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:30px;
}

.why-box div{
    background:#143553;
    padding:45px;
    border-radius:15px;
    text-align:center;
    transition:.4s;
}

.why-box div:hover{
    background:#ff8c00;
}

.why-box i{
    font-size:55px;
    margin-bottom:20px;
}

/*================ GALLERY ================*/

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}

.gallery-grid img{
    width:100%;
    height:250px;
    object-fit:cover;
    border-radius:12px;
    transition:.5s;
    cursor:pointer;
}

.gallery-grid img:hover{
    transform:scale(1.05);
}

/*================ COUNTER ================*/

.counter{
    background:#ff8c00;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    text-align:center;
    gap:30px;
}

.counter h2{
    color:#fff;
    margin-bottom:10px;
    font-size:52px;
}

.counter p{
    color:#fff;
    font-size:20px;
}

/*================ CONTACT ================*/

.contact form{
    max-width:750px;
    margin:auto;
}

.contact input,
.contact textarea{
    width:100%;
    padding:18px;
    margin-bottom:20px;
    border:none;
    border-radius:8px;
    background:#12304d;
    color:#fff;
    font-size:16px;
}

.contact textarea{
    height:180px;
    resize:none;
}

.contact button{
    width:100%;
    padding:18px;
    background:#ff8c00;
    color:#fff;
    border:none;
    border-radius:8px;
    font-size:18px;
    cursor:pointer;
    transition:.3s;
}

.contact button:hover{
    background:#ff6b00;
}

/*================ FOOTER ================*/

footer{
    background:#061421;
    padding:50px 20px;
    text-align:center;
}

footer h2{
    color:#ff8c00;
    margin-bottom:20px;
}

footer p{
    margin:8px 0;
    color:#ccc;
}

/*================ RESPONSIVE ================*/

@media(max-width:992px){

.hero-content h1{
    font-size:48px;
}

.hero-content h2{
    font-size:24px;
}

.about{
    flex-direction:column;
}

header{
    flex-direction:column;
    height:auto;
    padding:20px;
}

nav ul{
    flex-wrap:wrap;
    justify-content:center;
    margin:20px 0;
}

nav ul li{
    margin:10px 15px;
}

.quote-btn{
    margin-bottom:15px;
}

}

@media(max-width:576px){

.hero-content h1{
    font-size:34px;
}

.hero-content h2{
    font-size:20px;
}

.hero-content p{
    font-size:16px;
}

section{
    padding:70px 20px;
}

section h2{
    font-size:32px;
}

}