body {
    margin: 0;
    font-family: Arial, sans-serif;
}
footer {
    background-color: #054a01;
    color: white;
    padding: 40px 0 20px 0;
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap;
}
.footer-content{
    /* flex: 1; */
    min-width: 200px;
    padding: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1.5s ease-out, transform 1.5s ease-out;
}

.footer-content.show{
    opacity: 1;
    transform: translateY(0);
}

footer h3 {
    margin-bottom: 15px;
}
footer a {
    color: white;
    text-decoration: none;
    display: block;
    margin: 5px 0;
}

footer a:hover {
    color: #f0a105;
    text-decoration: underline;
    transition: 0.9s ease;
}

.footer-content i {
    margin-right: 4px;
}

.footer-content i:hover {
    transform: translateY(-8px);
    transition: 0.5s ease-out;
}


.newsletter input {
    padding: 10px;
    width: 70%;
    border: none;
    border-radius: 5px;
}
.newsletter button {
    padding: 10px;
    background-color: #f0a105;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.newsletter button:hover {
    opacity: 0.8;
    transition: 0.5s ease;
}

.social-icons a {
    display: inline-block;
    margin-right: 10px;
    color: white;
    font-size: 20px;
}

.footer-bottom {
    /* position: relative; */
    align-items: center;
    padding-top: 10px;
    justify-content: flex-start;
    display: flex;
    margin-top: 10px;
    gap: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0; /* Initially hidden */
    transform: translateY(10px);
    transition: opacity 1.8s ease-out, transform 1.8s ease-out;
}

.footer-bottom .dot {
    font-size: 12px;
    color: white;
    font-weight: 900;
}

.footer-bottom p {
    margin: 0;
    padding: 0 10px;
}

.footer-bottom .copyright {
    font-weight: bold;
}

.footer-bottom.show {
    opacity: 1;
    transform: translateY(0);
}
