
 body{
    font-family: 'Poppins', sans-serif;
    }
.hero{
    background:url(images/IMG_5377.jpg) center/cover no-repeat;
    height: 90vh;
    color:white;
    display:flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    }
.hero h1{
    font-size: 3rem;
    font-weight: 600;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
}
.hero p{
    font-size: 1.25rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.6)
}

section{
    padding: 80px 0;
}

h2{
    font-weight: 600;
    margin-bottom:40px;
}

.navbar{
    padding: 15px 0;
}

#services .card{
    border:none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition:transform 0.3s ease;
}
#services .card:hover{
    transform:translateY(-5px);
}

#gallery img{
    transition: transform 0.3s ease;
}

#gallery img:hover{
    transform:scale(1.05);
}

#contact form.form-control{
    border-radius: 10px;
    padding: 12px;
}