/* Existing CSS from your provided code */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;400;500;600;700&display=swap');

:root {
    --primary-color: #3f7bcf;
    --secondary-color: rgb(211, 24, 211);
    --accent-color: #41cea4;
    --text-color: #333333;
    --link-color: rgb(119, 209, 119);
    --background-color: #d3f7ec;
    --light-gray: #f0f0f0;
    --gray: #808080;
    --dark-gray: #555;
}

* {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    text-decoration: none;
}

body {
    height: 100vh;
    text-align: center;
    background-color: var(--background-color);
    padding: 0.1rem;
}

.header-content {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    background-color: var(--accent-color);
    color: var(--text-color);
    font-size: 1.5rem;
    font-weight: 600;
    position: relative;
}

.header-logo {
    position: absolute;
    left: 1rem;
}

.header-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.header-heading {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: cursive;
}

.header-nav {
    margin-left: auto;
    margin-right: 1rem;
    display: flex;
    gap: 1rem;
    list-style: none;
    color: var(--text-color);
}
.header-nav a{
    text-decoration: none;
    color: var(--text-color);
    font-family: cursive;
    font-size: 1.3rem;
    font-weight: 400;
    padding: 0.5rem;
}
@media screen and (max-width:640px){
    
}
.header-nav a:hover {
   color: var(--primary-color);
}
.header-nav a.active {
    color: var(--primary-color);
}

.logo-icon {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
}
/* Home Section Styles */
#home {
    padding: 50px 0;
    background-color: var(--background-color);
    text-align: center;
}

#home .home1 {
    width: 80%;
    margin: 0 auto;
}

#home h2 {
    font-size: 32px;
    color:var(--text-color);
    margin-bottom: 20px;
    font-family: cursive;
}

#home p {
    font-size: 18px;
    color: var(--gray);
    line-height: 1.6;
    font-family: cursive;
}

/* Products Section Styles */
#products {
    padding: 50px 0;
    background-color: #b5f4e1;
    text-align: center;
    border-radius: 4px;
}

#products .feature {
    width: 80%;
    margin: 0 auto;
}

#products h2 {
    font-size: 32px;
    color: var(--text-color);
    margin-bottom: 20px;
    font-family: cursive;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    justify-items: center;
    animation: slideFromLeft 2s linear 1s forwards ;
}
@keyframes slideFromLeft {
    0% {
        transform: translateX(-100%);
        }
        100% {
            transform: translateX(0);
            }
    
}

.feature-item {
    width: 200px;
    height: 200px;
    border-radius: 0.5rem;
    background-color: var(--accent-color);
    font-size: 1rem;
    color: var(--text-color);
    font-family: cursive;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    margin: 0.2rem;
}

.feature-icon {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 1px;
    border-radius: 10px;
    margin-top: 0.8rem;

}
.feature-item:hover {
    background-color: var(--accent-color);
    transform: scale(1.1);
    transition: all 0.3s ease-in-out;
 } 
 .feature-item:hover .feature-icon {
    transform: scale(1.1);
    transition: all 0.3s ease-in-out;
 }
 
.feature-item a {
    font-size: 18px;
    color: var(--dark-gray);
    display: block;
    margin-top: 10px;
    transition: color 0.3s ease;
    font-family: cursive;
    opacity: 0;
    transition: 0.6s;
}

.feature-item a:hover {
    color: var(--primary-color);
    opacity: 1;
}

/* About Section Styles */
.about {
    padding: 50px 0;
    background-color: var(--background-color);
    text-align: center;
}

.about-content {
    width: 80%;
    margin: 0 auto;
}

.about h1 {
    font-size: 32px;
    color: var(--text-color);
    margin-bottom: 20px;
    font-family: cursive;
}

.about p {
    font-size: 18px;
    color: var(--dark-gray);
    line-height: 1.6;
    font-family: cursive;
}

/* Footer Styles */

footer {
    background-color: var(--accent-color);
    color: var(--text-color);
    padding: 20px 10px;
    position: relative;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
    margin: 0 auto;
}

.footer-container  .address .contact-info {
    flex: 1;
    text-align: center;
    font-family: cursive;    
}
.footer-container  .address h2 {
    font-family: cursive;
    margin: 0.5rem;
}
.address address {
    font-family: cursive;
}
.contact-info h2 {
    font-family: cursive;
    margin: 0.5rem;
}
.contact-info p {
    font-family: cursive;
    margin: 0.5rem;
}
.footer-container .follow-icon {
    flex: 1;
    text-align: center; /* Align text to the left */
    font-family: cursive;
}
.follow-icon{
   display: flex;
   flex-direction: column;
   align-items: center;
   /* justify-content: center; */
   text-align: center;
}

.follow-icon h2 {
    margin: 0 auto;
    margin-bottom: 10px;
    font-family: cursive;
}

.social {
    display: flex;
    flex-direction: row; /* Align items in a row */
    align-items: center; /* Align items vertically centered */
    gap: 1rem;
}

.social-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem; /* Space between icon and text */
}

.social-icon img {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
}

.social-icon a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1em;
    font-family: cursive;
}

.social-icon a:hover {
    color: var(--primary-color);
}

.map{
    width: 2rem;
    cursor: pointer;
}
.map-txt{
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    font-family: cursive;
}
.copyright{
    font-family: cursive;
}