
body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #222;
    background: #f7f7f7;
}
header {
    background: #0a3d62;
    color: white;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header h1 {
    margin: 0;
    font-size: 24px;
}
nav a {
    color: white;
    margin-left: 20px;
    text-decoration: none;
    font-weight: bold;
}
.hero {
    background: url('https://images.unsplash.com/photo-1501183638710-841dd1904471?auto=format&fit=crop&w=1400&q=60') center/cover;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;

}
.hero h2 {
    font-size: 50px;
    text-shadow: 0 3px 7px rgba(0,0,0,0.5);
}
section {
    padding: 50px 40px;
    background: white;
    margin: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}
h3 {
    margin-top: 0;
    color: #0a3d62;
}
.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}
.card {
    background: #f2f2f2;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.07);
}
footer {
    background: #0a3d62;
    color: white;
    padding: 20px;
    text-align: center;
    margin-top: 40px;
}

#enhance{
    background: url('enhance.png') center/cover;
    color: #ffffff;

}

#clean{
    background: url('clean.png') center/cover;
    color:rgb(255, 255, 255);
}

#land{
    background: url('land.png') center/cover;
    color: rgb(255, 255, 253);
    
}

#move{
    background: url('move.png') center/cover ;
    color: #ffffff;
}

.words h4{
    color: rgb(255, 253, 253);
    font-size: 35px;
    text-shadow: 0 3px 7px rgba(0,0,0,0.5);
 
}

.words p{
    font-size: 22px;
    text-shadow: 0 3px 7px rgba(0,0,0,0.5);
}

#move:hover{
    opacity: 0.5;
}
#clean:hover{
    opacity: 0.5;
}

#enhance:hover{
    opacity: 0.5;
}

#land:hover{
    opacity: 0.5;
}
