.footer {
    background: linear-gradient(135deg, #004d00, #006400);
    color: #ffffff;
    padding: 60px 0 20px;
    font-family: 'Roboto', sans-serif;
    position: relative;
    overflow: hidden;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffffff, #00ff00, #ffffff);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-section {
    flex: 1;
    margin-bottom: 30px;
    min-width: 250px;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    transition: transform 0.3s ease;
}

.footer-section:hover {
    transform: translateY(-5px);
}

.footer-section h3 {
    color: #ffffff;
    font-size: 1.8em;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
    position: relative;
    padding-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 2px;
    background-color: #00ff00;
}

.about p {
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1.1em;
    color: #e0e0e0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.contact-info a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1em;
    transition: color 0.3s ease, transform 0.3s ease;
    margin-bottom: 2vh;
}

.contact-info p {
    transition: all 0.3s ease;
}

.contact-info p:hover {
    color: #00ff00;
    transform: translateY(-2px);
}

.contact-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.contact-info i {
    margin-right: 10px;
    color: #fff;
}

.social-links a {
    text-decoration: none;
    display: inline-block;
    margin-right: 15px;
    color: #ffffff;
    font-size: 1.3em;
    transition: all 0.3s ease, transform 0.3s ease;
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}



.social-links a:hover {
    color: #004d00;
    background-color: #00ff00;
    transform: translateY(-5px);
}

.team-member {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.team-member:hover {
    transform: translateX(15px);
}

.team-member img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-right: 15px;
    border: 3px solid #00ff00;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.team-member:hover img {
    transform: scale(1.15);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.member-info h4 {
    margin: 0;
    font-size: 1.3em;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.member-info p {
    margin: 0px 0 0;
    font-size: 1em;
    opacity: 0.85;
    color: #e0e0e0;
}

.footer-bottom {
    text-align: center;
    margin-top: 0px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1em;
    color: #ffffff;
    text-shadow: 0 2px 3px rgba(0, 0, 0, 0.3);
}

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

.footer-bottom i {
    color: #00ff00;
    animation: heartBeat 1.5s infinite;
}

@keyframes heartBeat {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: flex-start;
    }
}