.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
.hover-zoom {
    transition: transform 0.3s ease;
}
.hover-zoom:hover {
    transform: scale(1.05);
}
.gradient-bg {
    background: linear-gradient(135deg, #FDFBF3 0%, #F5F1E8 100%);
}
.pulse-animation {
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}
.float-animation {
    animation: float 3s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
.hover-zoom {
    transition: transform 0.3s ease;
}
.hover-zoom:hover {
    transform: scale(1.05);
}
.gradient-bg {
  background: linear-gradient(135deg, #FDFBF3 0%, #F5F1E8 100%);
}

.pulse-animation {
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}
.float-animation {
    animation: float 3s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}
          
.footer {
  background-color: #264F7C; /* Navy */
  color: #FDFBF3; /* Creamy Off-White */
  padding: 2rem 1rem;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}


.footer-brand .logo {
  width: 200px;
  height: auto;
  margin-bottom: 0.5rem;
}

.footer-brand h2 {
  color: #EF5151; /* Coral Red */
  font-weight: 600;
  font-size: 24px;
  margin: 0.5rem 0;
}

.footer-brand p {
  color: #FDFBF3;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  font-weight: 400;
  text-align: center;
}


.footer-nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.footer-nav a {
  color: #FDFBF3;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.footer-nav a:hover {
  color: #EF5151;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer-social a {
  color: #FDFBF3;
  font-size: 1.2rem;
  transition: color 0.3s;
}

.footer-social a:hover {
  color: #EF5151;
}

.footer-bottom {
  border-top: 1px solid #FDFBF3;
  margin-top: 1rem;
  padding-top: 1rem;
  font-size: 0.85rem;
  font-weight: 400;
}
