body {
    background: linear-gradient(to right, #e6ebd8, #84d0d8);
    font-family: "Poppins", sans-serif;
    margin: 0;
    overflow-x: hidden;
}

.hero {
    text-align: center;
    padding: 20px 20px;
    background: 
    linear-gradient(to right, rgba(70, 223, 254, 0.5), rgba(72, 182, 202, 0.5)),  
    url('bg.jpg') no-repeat center center / cover;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}


.hero img {
    max-width: 150px;  
    height: auto;
    margin: 0 auto 20px auto;  
    animation: fadeIn 2s;
}

.hero h1 {
    font-size: 40px;
    font-family: "Playfair Display", serif;
    margin-bottom: 20px;
    animation: fadeIn 2s;
}

.hero p {
    font-size: 18px;
    color: #f0f0f0;
    animation: slideIn 2s;
}

@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}

@keyframes slideIn {
    from {transform: translateY(20px);}
    to {transform: translateY(0);}
}

.services {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 20px;
}

.card {
    width: 300px;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #ffffff;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.card i {
    font-size: 50px;
    color: #45aba6;
    margin-bottom: 15px;
}

.card h5 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.card a {
    text-decoration: none;
    color: #45aba6;
    font-weight: bold;
}

footer {
    background-color: #2f7471;
    color: white;
    text-align: center;
    padding: 10px 20px; 
    position: fixed;
    bottom: 0;
    width: 100%;
    font-size: 14px; 
}

footer a {
    color: #ffffff;
    text-decoration: underline;
    font-weight: normal;
}