.animated-footer {
    background-color: #004080;
    color: white;
    padding: 40px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-column {
    max-width: 300px;
}

.footer-column h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #00cccc;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin: 5px 0;
}

.footer-column ul li a {
    color: white;
    text-decoration: none;
}

.footer-column ul li a:hover {
    color: #00cccc;
    text-decoration: underline;
}

.footer-bottom {
    margin-top: 20px;
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links li {
    display: inline-block;
}

.social-links img {
    width: 30px;
    height: 30px;
    transition: transform 0.3s;
}

.social-links img:hover {
    transform: scale(1.2);
}


.animated-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #00cccc, transparent);
    animation: slide 3s linear infinite;
}

@keyframes slide {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.footer-column {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 1s ease-out forwards;
}

.footer-column:nth-child(1) {
    animation-delay: 0.2s;
}

.footer-column:nth-child(2) {
    animation-delay: 0.4s;
}

.footer-column:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}  



.mist {
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    animation: moveMist 60s linear infinite;
    pointer-events: none;
    z-index: 0;
  }
  .footer#contact.p{
    color:white
  }
  
  /* Mist Movement */
  @keyframes moveMist {
    from { transform: translateX(0); }
    to { transform: translateX(-25%); }
  }
  
  /* Rain Drops */
  .raindrops {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
  }
  
  /* Falling water drops */
  .drop {
    position: absolute;
    width: 20px;
    height: 20px;
    opacity: 0.7;
    animation: fall linear infinite;
    top: -40px;
  }
  
  /* Rainfall animation */
  @keyframes fall {
    to {
      transform: translateY(100vh) scale(0.8);
      opacity: 0;
    }
  }
