:root {
  --footer-bg: #0b365d;
  --footer-accent: #d5651c;
  --footer-text: #fff;
  --footer-bg-light: #f5f5f9;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--footer-text);
}

.footer {
  position: relative;
  background-color: var(--footer-bg);
  color: var(--footer-text);
  padding-top: 6.25rem; /* 100px */
  padding-bottom: 2.5rem; /* 40px */
  /transition: background-color 0.3s ease, color 0.3s ease;/
}

.footer-wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 0; /* Behind all footer content */
  /animation: waveMove 8s infinite linear;/
}

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

/*.footer-wave path {
  fill: var(--footer-text);
}*/

.footer .container {
  position: relative;
  z-index: 1; /* Content above wave */
}

.footer a {
  color: var(--footer-text);
  text-decoration: none;
  margin: 0 0.75rem; /* 12px */
  transition: color 0.3s ease;
}

.footer a:hover {
  text-decoration: underline;
  color: var(--footer-accent);
}

.social-icons a {
  font-size: 1.4rem;
  margin-right: 0.75rem; /* 12px */
  color: var(--footer-accent);
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: var(--footer-text);
}

/* Mobile view adjustments */
@media (max-width: 576px) {
  .footer {
    padding-top: 3.75rem; /* 60px */
    padding-bottom: 1.25rem; /* 20px */
  }

  .footer h2 {
    
    font-size: 1.5rem;
  }

  .footer p {
    font-size: 0.9rem;
    margin-bottom: 10px;
  }

  .footer .d-flex {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer .social-icons {
    margin-top: 15px;
  }

  .footer .links {
    justify-content: center !important;
    flex-wrap: wrap;
    gap: 5px;
  }

  .footer .links a {
    margin: 5px;
    font-size: 0.9rem;
  }

  .footer .social-icons a {
    font-size: 1.2rem;
    margin: 0 8px;
  }

  .footer hr {
    margin: 20px 0;
  }

  .footer .mb-2 {
    font-size: 0.85rem;
  }
}

/* Optional: Dark mode support */
@media (prefers-color-scheme: dark) {
  .footer {
    background-color: #081f35;
  }

  .footer a:hover {
    color: #ffa861;
  }
}
/*.footer-wave path {
  fill: #fff; 
}
*/
.footer .container container1{
    margin-top:15px;
}