*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
scroll-behavior:smooth;
}

body{
    background:url("background.jpg") center center fixed;
    background-size:cover;
    background-repeat:no-repeat;
    color:#222;
}

/* NAVBAR */

nav{
position:fixed;
top:0;
left:0;
width:100%;
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 8%;
box-sizing:border-box;
flex-wrap:wrap;
background:rgba(0,51,102,.9);
backdrop-filter:blur(10px);
z-index:9999;
}

.logo{
display:flex;
align-items:center;
gap:10px;
color:#f8fefff8;
font-size:36px;
font-weight:700;
}

.logo img{
width:90px;
height:90px;
border-radius:50%;
}

nav ul{
display:flex;
list-style:none;
gap:30px;
}

nav ul a{
text-decoration:none;
color:#fff;
font-weight:500;
transition:.3s;
}

nav ul a:hover{
color:#f4b400;
}

/* HERO */

.hero{
height:100vh;
background:url("images/banner.jpeg") center/cover;
display:flex;
justify-content:center;
align-items:center;
position:relative;
}
.btn{
    display:inline-block;
    padding:15px 35px;
    border-radius:40px;
    font-size:18px;
    text-decoration:none;
    font-weight:bold;
    margin:10px;
}

.call{
    background:#00ff88;
    color:white;
}

.whatsapp{
    background:#05f18e;
    color:white;
}
.service-card{
    background:#003366;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.2);
    transition:.3s;
}

.service-card:hover{
    transform:translateY(-10px);
}
.overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.45);
}
/* Scroll Animation */

.hidden{
opacity:0;
transform:translateY(50px);
transition:all .8s ease;
}

.show{
opacity:1;
transform:translateY(0);
}
.show{
opacity:1;
transform:translateY(0);
}

/* Paste below here */

.card{
    background:linear-gradient(135deg,#eb90083f,#f6f6f8);
    color:#e80d0d;
    border-radius:18px;
    box-shadow:0 10px 25px rgba(44, 59, 70, 0.854);
}

.card h3{
    color:#fff;
}

.card:hover{
transform:translateY(-10px) scale(1.03);
border-color:#fa0707;
box-shadow:0 20px 40px rgba(0,0,0,.2);
}

.card img{
width:100%;
height:220px;
object-fit:cover;
transition:.4s;
}

.card:hover img{
transform:scale(1.08);
}

.card h3{
padding:18px;
text-align:center;
color:#003366;
font-size:20px;
font-weight:600;
}
.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:25px;
margin-top:30px;
}

.card img{
width:100%;
height:220px;
object-fit:cover;
display:block;
}
.hero{
    height:90vh;
    background:url("images/banner.jpeg") center center/cover no-repeat;
    position:relative;
}

.hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
}

.hero-content{
    position:relative;
    z-index:2;
    color:#fff;
    text-align:center;
    top:50%;
    transform:translateY(-50%);
}

.hero h1{
    font-size:55px;
}

.hero p{
    font-size:30px;
}
section{
    padding:60px 10% 30px;
}

h2{
    text-align:center;
    color:#003366;
    margin-bottom:35px;
    font-size:35px;
}

.contact{
    background:#003366;
    color:#fff;
    border-radius:20px;
    padding:50px;
    margin-top:50px;
}

.contact p{
    font-size:18px;
    margin:15px 0;
}

iframe{
    width:100%;
    height:350px;
    border-radius:15px;
    margin-top:25px;
}

footer{
    background:#001a33;
    color:white;
    text-align:center;
    padding:20px;
    margin-top:40px;
}
#why-us{
    padding:70px 10%;
    background:#f8f9fc;
    text-align:center;
}

#why-us h2{
    color:#003366;
    font-size:38px;
    margin-bottom:40px;
}

.why-box{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

.why-box div{
    background:#fff;
    padding:25px;
    border-radius:12px;
    box-shadow:0 5px 20px rgba(0,0,0,.1);
    font-size:18px;
    font-weight:600;
    transition:.3s;
}

.why-box div:hover{
    transform:translateY(-8px);
    background:#003366;
    color:white;
}
body::before{
    content:"";
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(255, 255, 255, 0.308);
    z-index:-1;
}
#about{
    color:#222;
}

#about p{
    color:#0b0000ef;
    font-size:18px;
    font-weight:500;
    line-height:1.8;
}
html, body{
    overflow-x:hidden;
}
@media (max-width: 768px) {
    .hero h1 {
        font-size: 40px;
        line-height: 1.2;
    }

    .hero p {
        font-size: 22px;
    }
}
.card p{
    font-size: 15px;
    color: #555;
    text-align: center;
    margin: 10px;
    line-height: 1.5;
}
