body{
font-family:Arial,sans-serif;
margin:0;
padding:0;
background:#f4f4f4;
}

nav{
background:#c40000;
color:white;
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 30px;
}

nav ul{
list-style:none;
display:flex;
gap:20px;
margin:0;
padding:0;
}

nav a{
color:white;
text-decoration:none;
font-weight:bold;
}

.logo{
font-size:22px;
font-weight:bold;
}

header{
    background:url('cover.jpg');
    background-size:100% auto;
    background-repeat:no-repeat;
    background-position:center top;
    height:96vh;
}

.logo-img{
width:150px;
background:white;
padding:10px;
border-radius:10px;
}

header h1{
font-size:42px;
margin-top:20px;
}

header p{
font-size:22px;
}

section{
background:white;
margin:20px;
padding:30px;
border-radius:12px;
}

h2{
color:#c40000;
}

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:20px;
}

.card{
background:#f8f8f8;
padding:20px;
border-radius:10px;
box-shadow:0 2px 5px rgba(0,0,0,0.1);
}

.gallery{
width:100%;
border-radius:10px;
}

footer{
background:#222;
color:white;
text-align:center;
padding:30px;
margin-top:20px;
}

.whatsapp{
position:fixed;
right:20px;
bottom:20px;
background:#25D366;
color:white;
padding:15px 20px;
text-decoration:none;
border-radius:50px;
font-weight:bold;
box-shadow:0 3px 8px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {

    header{
        height: 250px !important;
    }

    section{
        margin-top: 10px !important;
    }

}

#careers{
    background:#fff;
    margin:20px;
    padding:30px;
    border-radius:15px;
}

#careers h2{
    color:#c40000;
    margin-bottom:15px;
}

.career-intro{
    margin-bottom:25px;
    line-height:1.8;
}

.job-card{
    background:#f8f8f8;
    padding:25px;
    margin-bottom:20px;
    border-left:5px solid #c40000;
    border-radius:10px;
    box-shadow:0 2px 10px rgba(0,0,0,0.08);
}

.job-card h3{
    color:#222;
    margin-bottom:10px;
}

.job-card ul{
    margin-top:10px;
    margin-bottom:20px;
}

.job-card li{
    margin-bottom:8px;
}

.job-card a{
    display:inline-block;
    background:#c40000;
    color:white;
    text-decoration:none;
    padding:12px 25px;
    border-radius:5px;
    font-weight:bold;
}

.job-card a:hover{
    background:#900000;
}

input,
textarea{
width:100%;
padding:12px;
border:1px solid #ccc;
border-radius:5px;
}

button{
background:#c40000;
color:white;
border:none;
padding:12px 25px;
border-radius:5px;
cursor:pointer;
}

button:hover{
background:#900000;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:15px;
}

.gallery-grid img{
    width:100%;
    border-radius:10px;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:20px;
}

.stat-box{
    background:#fff;
    padding:20px;
    text-align:center;
    border-radius:10px;
    box-shadow:0 2px 10px rgba(0,0,0,0.1);
}

.stat-box h3{
    color:#d60000;
    font-size:36px;
}

.download-btn{
    display:inline-block;
    background:#d60000;
    color:white;
    padding:12px 25px;
    border-radius:8px;
    text-decoration:none;
    margin-top:15px;
}

.download-btn:hover{
    background:#a80000;
}

.call-btn{
    position:fixed;
    bottom:90px;
    right:20px;
    background:#d60000;
    color:#fff;
    padding:15px 20px;
    border-radius:50px;
    text-decoration:none;
    font-weight:bold;
    z-index:999;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

.service-card{
    background:#fff;
    padding:25px;
    border-radius:12px;
    box-shadow:0 2px 10px rgba(0,0,0,0.1);
    text-align:center;
}

.service-card h3{
    color:#d60000;
}

#quotation form{
    max-width:700px;
    margin:auto;
}

#quotation input,
#quotation select,
#quotation textarea{
    width:100%;
    padding:12px;
    border:1px solid #ccc;
    border-radius:8px;
}

#quotation button{
    background:#d60000;
    color:white;
    border:none;
    padding:12px 25px;
    border-radius:8px;
    cursor:pointer;
}

#quotation button:hover{
    background:#a80000;
}