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;
}

.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
}
.content {
    max-width: 50%;
}
.content h1 {
    font-size: 40px;
    color: #6DAC4FFF;
}
.content p {
    color: black;
    font-size: 16px;
    margin: 20px 0;
}
.btn {
    background-color:red;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    margin-top: 20px;
}
.btn:hover {
    background-color: #000;
}
.image img {
    max-width: 400px;
    /* border-radius: 10px; */
    /* transform: rotate(-60deg); */
    /* transition: all; */
    animation: myfirst 1.5s infinite linear;

}
@keyframes myfirst {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(60deg);
    }
}
.services1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px;
    text-align: center;
}
.service1 {
    width: 22%;
    /* height: 20%; */
    /* margin: 15px; */
    padding: 20px;
    background: #EFEFE8FF;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); */
}
.service1 img {
    width: 70px;
    /* height: 100px; */
    margin-bottom: 10px;
}
.service1 p {
    font-size: 14px;
    color: #555;
}

.about {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
    background:white;
}
.about img {
    max-width: 300px;
    border-radius: 10px;
    margin-right: 50px;
}
.about-content {
    max-width: 50%;
}
.about-content h2 {
    font-size: 30px;
    color: green;
}
.about-content p {
    font-size: 16px;
    color:black;
    margin: 20px 0;
}
.container {
    display: flex;
    gap: 50px;
    margin-top: 10%;
}
.zodiac {
    width: 50%;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* background-color: #111; */
    border-radius: 50%;
    padding: 20px;
}
.zodiac img {
    width: 80%;
    display: flex;
}


header h1 {
    text-align: center;
    padding: 20px;
}


.services h1 {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
    font-size: 2.5em;
    color:white;
    position: relative;
    animation: fadeIn 2s ease-in-out;
    background: linear-gradient(to right, rgba(29, 29, 29, 0.781) 50%, rgb(29, 29, 29,0.781) );
    background-size: 50% 50%;
}

/* @keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
} */
.services {
    display: flex;
    justify-content: space-around;
    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;
}

.opening-hours {
    text-align: left;
    max-width: 400px;
    margin: 20px auto;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.opening-hours:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.opening-hours h2 {
    margin-bottom: 10px;
    padding: 10px;
    background: rgb(147, 243, 147);
    color: white;
    border-radius: 5px;
    text-align: center;
    transition: background 0.3s ease-in-out;
}

.opening-hours h2:hover {
    background: rgb(127, 223, 127);
}

.opening-hours p {
    margin: 10px 0;
    text-align: center;
    padding: 10px;
    background: rgb(230, 227, 227);
    border-radius: 5px;
    transition: background 0.3s ease-in-out;
}

.opening-hours p:hover {
    background: rgb(210, 207, 207);
}

.youtube-videos {
    padding: 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.youtube-videos h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
}

#video-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.video {
    width: 560px;
    margin-bottom: 20px;
}

.video h3 {
    font-size: 18px;
    color: #333;
    margin-top: 10px;
}

.video p {
    font-size: 14px;
    color: #666;
}

