body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #ffffff;
    color: #1a1a1a;
}
header {
    background-color: #28a745;
    color: white;
    padding: 20px;
    text-align: center;
}
nav {
    text-align: center;
    background: #f0f0f0;
    padding: 10px;
}
nav a {
    text-decoration: none;
    margin: 0 15px;
    color: #28a745;
    font-weight: bold;
}
.hero {
    text-align: center;
    padding: 50px 20px;
}
.hero h1 {
    font-size: 2.5em;
    color: #1a1a1a;
}
.hero p {
    font-size: 1.2em;
    color: #555;
}
.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    padding: 40px;
}
.service-card {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
    width: 180px;
    height: 140px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.03);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-color: #cceee5;
}

.service-card img {
    margin-bottom: 12px;
}

.service-card h6 {
    font-weight: 600;
    font-size: 1rem;
    color: #1a1a1a;
}

@keyframes fadeScaleUp {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}


.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}



.cta-buttons {
    text-align: center;
    margin-top: 30px;
}
.cta-buttons a {
    background: #28a745;
    color: white;
    padding: 12px 25px;
    margin: 10px;
    display: inline-block;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}
footer {
    background: #f0f0f0;
    text-align: center;
    padding: 20px;
    color: #777;
}
form {
    max-width: 500px;
    margin: 40px auto;
}
form input, form textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}
form button {
    background-color: #28a745;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
}

.footer-srhd {
    background: #ffffff; /* lighter and warmer than #f0f0f0 */
    color: #555;
    padding: 22px 12px;
    font-size: 0.9rem;
    border-top: 1px solid #ddd;
    text-align: center;
    font-weight: 400;
}
.footer-srhd a {
    color: #007b5e;
    text-decoration: none;
    margin: 0 10px;
    font-weight: 500;
}

.footer-srhd a:hover {
    text-decoration: underline;
}

.footer-srhd .footer-contact i {
    margin-right: 6px;
    color: #6c757d;
    font-size: 0.95rem;
    vertical-align: middle;
}
.footer-srhd .footer-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin: 10px 0;
}

@media (min-width: 600px) {
    .footer-srhd .footer-contact {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 16px;
    }
}
