html {
    scroll-behavior: smooth;
}

.element {
    opacity: 0;
    transition: opacity 1s ease-out;
}

.element.animate {
    opacity: 1;
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    line-height: 1.6;
    font-size: 16px;
}

header {
    background: #16def8b2;
    color: #fff;
    padding: 1rem 0;
    text-align: center;
  
  
}

header h1 {
    margin-bottom: 0.5rem;

}

header nav ul {
    list-style: none;
    padding: 0;
  
}

header nav ul li {
    display: inline;
    margin: 0 10px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    
}

section {
    padding: 2rem;
    text-align: center;
}

section h2 {
    margin-bottom: 1rem;
}

#about {
    background: #f8faf9;
 
}

#about h2 {
    font-size: large
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-style: italic;
    color: darkturquoise;
    
}

#about h2:hover {

    font-size: xx-large;
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}


.about-text, .about-image {
    flex: 1 1 45%; /* 45% to allow for some margin between columns */
    margin: 1rem;
}

.about-text p {
    color: rgb(17, 16, 16);
    font-size: large;
}
.about-image img {
 
    height: 500px;
    width: 500px;
}
.services-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.service {
    background: #e6d925;
    margin: 1rem;
    padding: 1rem;
    flex: 1 1 45%; /* 45% to allow for some margin between columns */
    box-sizing: border-box;
    border-radius: 50%;
}
.service:hover {
    font-size: larger;
}



.circle-container {
    display: flex;
    gap: 20px;
}

.circle {
    width: 300px;
    height: 260px;
    overflow: hidden;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

footer {
    background: #1271ec;
    color: #fff;
    padding: 20px 0;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 20px;
}

.footer-section {
    flex: 1 1 200px; /* Flex-grow: 1, Flex-shrink: 1, Flex-basis: 200px */
    margin: 10px;
}

.footer-section h3 {
    margin-bottom: 10px;
}

.footer-section p, .footer-section ul {
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 5px;
}

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
}

.footer-section ul li a:hover {
    text-decoration: underline;
}

.social-media {
    display: flex;
    gap: 10px;
}

.social-media a img {
    width: 24px;
    height: 24px;
}

.footer-bottom {
    text-align: center;
    padding: 10px;
}

.footer-bottom p a {
    color: greenyellow;
    font-weight: bolder
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-section {
        text-align: center;
    }

    .social-media {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .about-text, .about-image, .service {
        flex: 1 1 100%;
    }
}
