body { 
    font-family: 'Roboto', sans-serif; 
    background: #f4f7f6;
    margin-top: 20px;
}
.navbar { 
    background-color: #0056b3; 
    padding: 10px 0;
}
.navbar-brand { 
    font-size: 1.5em; 
    color: #fff;
}
.hero {
    background: url('img/background.webp') no-repeat center center;
    background-size: cover;
    padding: 100px 0;
}

.text-shadow {
    text-shadow: 2px 2px 4px #000;
}

.btn-primary {
    background-color: #007bff;
    border: none;
    box-shadow: 0 2px 4px #000;
}

.service-card {
    transition: transform .2s; /* Animation */
    margin: 20px;
}
.service-card:hover {
    transform: scale(1.05); /* Zoom effect */
}
footer { 
    background-color: #343a40; 
    color: white; 
    padding: 30px 0; 
    margin-top: 40px;
}
h1, h2, h3 { 
    color: #0056b3; 
}
.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}
.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}