.navbar {
    background-color: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(11px);
    -webkit-backdrop-filter: blur(12px);
}


html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

.hero {
    height: 95vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;

    background-image: url("../images/hero-background.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-content {
    text-align: center;
}

.about {
    background-color: #f8f9fa;
}

.btn {
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.biography-image img {
    height: 150px;
    width: 150px;
    border-radius: 50%;
}

.Services {
    text-align: center;
    background-color: white;
    padding: 80px 0;
}

.services-title {
    margin-bottom: 3rem;
}

.service-card {
    width: 18rem;
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transition: .4s;
}

.review-card {
    transition: .4s;
}

.review-card.fade {
    opacity: 0;
    transform: translateY(15px);
}

.stars {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

section {
    padding: 50px 0;
}