/* ==========================
   FOOTER STYLES
   ========================== */
   .bgimg-container {
    display: flex;
    justify-content: center;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
  }
  
  .bgimage {
    background-image: url('/images/bg.webp');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    min-height: 500px;
    width: 100%;
    position: relative;
  }
  
  .footer-container {
    position: absolute;
    top: 215px;
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px;
    box-sizing: border-box;
    background-color: #000066;
  }
  
  .footer-links {
    display: flex;
    justify-content: space-around;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-links h3,
  .footer-links a {
    color: white;
    text-decoration: none;
  }
  
  .footer-links h3 {
    font-size: 20px;
    font-weight: bold;
    text-decoration: underline;
    margin-bottom: 15px;
  }
  
  .footer-links li {
    font-size: 15px;
    margin-bottom: 10px;
  }
  
  .footer-links a:hover {
    color: #c5c5fc;
    transition: color 0.3s ease;
  }
  
  .social-media {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
  }
  
  .social-media h3 {
    font-size: 20px;
    color: white;
    margin-bottom: 15px;
  }
  
  .social-media-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  
  .social-media-icons a {
    margin: 0;
    transition: transform 0.3s ease;
  }
  
  .social-media-icons a:hover {
    transform: translateY(-2px);
  }
  
  .copyright {
    font-size: 15px;
    color: white;
    margin-top: 40px;
    text-align: center;
  }
  
  /* Footer responsive styles */
  @media (max-width: 768px) {
    .bgimg-container {
      width: 100%;
    }
    .bgimage {
      background-size: contain;
      background-position: top center;
      background-repeat: no-repeat;
      min-height: 500px;
      width: 100%;
      position: relative;
    }
    .footer-container {
      position: absolute;
      top: 105px;
      left: 0;
      right: 0;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 40px;
      box-sizing: border-box;
      background-color: #000066;	
    }
    .footer-links {
      display: flex;
      width: 100%;
      flex-direction: column;
      gap: 30px;
      text-align: center;
    }
    .footer-links h3 {
      margin-bottom: 10px;
      font-size: 18px;
    }
    .footer-links a {
      font-size: 14px;
    }
    .social-media h3 {
      font-size: 18px;
      color: #fff;
      margin-bottom: 10px;
    }
    .copyright {
      font-size: 14px;
      color: #fff;
      margin-top: 30px;
    }
   } 
  @media (max-width: 480px) {
  /* Footer responsive for mobile */
    .footer-container {
      top: 80px;
      padding: 30px 20px;
    }
    
    .footer-links {
      gap: 25px;
    }
    
    .footer-links h3 {
      font-size: 16px;
    }
    
    .footer-links a {
      font-size: 13px;
    }
    
    .social-media h3 {
      font-size: 16px;
    }
    
    .copyright {
      font-size: 13px;
      margin-top: 25px;
    }
   }
  @media (min-width: 769px) and (max-width: 1023px) {
   /* Footer responsive for tablet */
    .footer-container {
      top: 150px;
      padding: 35px 30px;
    }
    
    .footer-links {
      gap: 40px;
    }
  }
  