    
/* Footer Styles */
 footer {
      background: #34699A;
  color: #fff;
  padding: 50px 80px 20px;
  margin-top: 30px;
  width: 100%;        /* ✅ force full width */
  max-width: 100%;    /* ✅ prevent shrinking */
  box-sizing: border-box;
  
    }
  footer.img {
    color: white;
  }

    .footer-container {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
    }

    .footer-about {
      flex: 1;
      min-width: 250px;
      margin-right: 30px;
    }

    .footer-about img {
      width: 160px;
      margin-bottom: 15px;
    }

    .footer-about p {
      line-height: 1.6;
      color: #d6dbe0;
    }

    .footer-links {
      flex: 1;
      min-width: 180px;
    }

    .footer-links h3 {
      margin-bottom: 15px;
      font-size: 18px;
    }

    .footer-links ul {
      list-style: none;
    }

    .footer-links ul li {
      margin-bottom: 10px;
    }

    .footer-links ul li a {
      text-decoration: none;
      color: #d6dbe0;
      transition: color 0.3s;
    }

    .footer-links ul li a:hover {
      color: #FFD700;
    }

    .footer-contact {
      flex: 1.2;
      min-width: 250px;
    }

    .footer-contact h3 {
      margin-bottom: 15px;
      font-size: 18px;
    }

    .footer-contact p {
      margin-bottom: 10px;
      line-height: 1.6;
      color: #d6dbe0;
    }

    .footer-contact p i {
      color: #FFD700;
      margin-right: 8px;
    }

    .social-icons {
      margin-top: 15px;
    }

    .social-icons a {
      display: inline-block;
      margin-right: 12px;
      width: 40px;
      height: 40px;
      background: #001f3f;
      color: #fff;
      text-align: center;
      line-height: 40px;
      border-radius: 50%;
      transition: background 0.3s;
    }

    .social-icons a:hover {
      background: #FFD700;
      color: #001f3f;
    }

    .footer-bottom {
      text-align: center;
      margin-top: 30px;
      border-top: 1px solid #1c3d5a;
      padding-top: 15px;
      font-size: 14px;
      color: #bbb;
    }

    .footer-bottom span {
      font-weight: bold;
      color: #fff;
    }

/* Responsive */
@media (max-width: 768px) {
  .footer-links-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-column {
    width: 100%;
    margin: 15px 0;
  }
  .social-icons {
    justify-content: center;
  }
}
