body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #EFEFE8FF;
}
header {
    background: rgb(91, 165, 91);
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position:sticky; top: 0;

    /* box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); */
}
.logo {
    font-size: 20px;
    font-weight: bold;
    color: #EFEFE8FF;
    padding-right: 190px;
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    font-weight: bold;
}
nav ul li {
    display: inline;

}
nav ul li a {
    text-decoration: none;
    color: #EFEFE8FF;
    /* font-weight: bold; */

}
nav ul li  :hover {
    color:black;
}

.container {
    text-align: center;
    padding: 50px 20px;
}
h1 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
    animation: fadeIn 1.5s ease-in-out;
}
p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 30px;
    animation: fadeIn 2s ease-in-out;
}
.services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}
.service {
    width: 300px;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
    text-align: center;
    padding-bottom: 15px;
}
.service img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.service:hover {
    transform: scale(1.05);
}
.service-title {
    font-size: 20px;
    font-weight: bold;
    padding: 10px;
}
.price {
    font-size: 18px;
    font-weight: bold;
    color: #000;
    margin-bottom: 10px;
}
.btn {
    display: inline-block;
    background-color: #ff6600;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
}
.btn:hover {
    background-color: #e65c00;
}
.currency-switcher {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}
.currency-switcher button {
    display: block;
    margin-bottom: 5px;
    padding: 5px 10px;
    border: none;
    cursor: pointer;
}
.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    padding: 10px;
    border-radius: 50%;
    font-size: 20px;
    text-align: center;
    cursor: pointer;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
.services {
    display: flex;
    justify-content: center;
    padding: 20px;
    flex-wrap: wrap;
    
}

.service-card {
    background-color: #2c2c2f;
    border-radius: 10px;
    padding: 20px;
    margin: 10px;
    width: 400px;
    text-align: center;
    box-shadow: 0px 4px 6px rgba(241, 236, 236, 0.1);
    margin-bottom: 50px;
    color: aliceblue;


}

.service-card h2 {
    color: rgb(126, 245, 126);
}

button {
    background-color: rgb(233, 70, 70);
    color:white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #c9b886;
}


footer {
    background: rgb(73, 190, 73);
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    transition: background 0.3s ease-in-out;
}

.footer-section {
    max-width: 300px;
    text-align: left;
    margin: 30px;
    transition: transform 0.3s ease-in-out;
}

.footer-section:hover {
    transform: translateY(-5px);
}

.footer-section h2 {
    margin-bottom: 10px;
    color: green;
    transition: color 0.3s ease-in-out;
}

.footer-section h2:hover {
    color: rgb(189, 80, 80);
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin: 5px 0;
}

.footer-section ul li a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease-in-out;
}

.footer-section ul li a:hover {
    color: rgb(204, 80, 80);
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    text-decoration: none;
    font-size: 20px;
    transition: transform 0.3s ease-in-out;
}

.social-icons a:hover {
    transform: scale(1.2);
}

.address {
    font-style: normal;
    color: #333;
    transition: color 0.3s ease-in-out;
}

.address:hover {
    color: #007BFF;
}