.footer {
    background: linear-gradient(135deg, #0099cc, #00c9a7);
    color: #fff;
    padding: 50px 20px 20px;
    font-family: "Poppins", sans-serif;
  }
  
  .footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
  }
  
  .footer-logo h2 {
    font-size: 28px;
    margin-bottom: 10px;
    text-transform: uppercase;
  }
  
  .footer-logo p {
    font-size: 14px;
    opacity: 0.9;
  }
  
  .footer-links h3,
  .footer-contact h3 {
    margin-bottom: 15px;
    font-size: 18px;
  }
  
  .footer-links ul,
  .footer-contact ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-links ul li {
    margin-bottom: 10px;
  }
  
  .footer-links ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s;
  }
  
  .footer-links ul li a:hover {
    color: #ffd60a;
  }
  
  .footer-contact ul li {
    font-size: 15px;
    margin-bottom: 8px;
    line-height: 1.6;
  }
  
  .footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 15px;
  }
  .footer-logo .tagline {
    font-size: 16px;
    font-weight: 600;
    color: #ffd60a;
    margin-bottom: 8px;
    display: block;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;   /* stack sections vertically */
      align-items: center;      /* center each section */
      text-align: center;       /* center text */
      gap: 30px;                /* spacing between sections */
    }
  
    .footer-logo,
    .footer-links,
    .footer-contact {
      width: 100%;              /* full width for each section */
    }
  
    .footer-links ul li,
    .footer-contact ul li {
      margin-bottom: 6px;       /* smaller spacing on mobile */
    }
  }
  