

    .footer-container {
      position: relative;
      /*background-color: rgba(0, 0, 0, 0.85);*/
      color: white;
      padding: 60px 20px 30px;
      overflow: hidden;
    }

    .cloud {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 200px;
      pointer-events: none;
      z-index: 1;
    }

    .cloud img {
      position: absolute;
      bottom: 0;
      left: -300px;
      height: 200px;
      opacity: 0.9;
      filter: drop-shadow(0 0 15px white);
      animation: cld calc(8s * var(--i)) linear infinite;
    }

    @keyframes cld {
      0% { transform: translateX(-100%); }
      100% { transform: translateX(100vw); }
    }

    .footer-content {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      position: relative;
      z-index: 2;
    }

    .footer-logo {
      flex: 1 1 200px;
      padding: 10px;
    }

    .footer-logo img {
      width: 200px;
      margin-bottom: 10px;
    }

    .location {
      color: #ccc;
      font-size: 14px;
      margin-top: 5px;
    }

    .location i {
      margin-right: 5px;
      color: #00f7ff;
    }

    .footer-section {
      flex: 1 1 160px;
      padding: 10px;
    }

    .footer-section h4 {
      margin-bottom: 12px;
      font-size: 16px;
      color: #00f7ff;
      text-transform: uppercase;
    }

    .footer-section ul {
      list-style: none;
    }

    .footer-section ul li {
      margin: 8px 0;
    }

    .footer-section ul li a {
      text-decoration: none;
      color: #ccc;
      padding: 6px 10px;
      border: 1px solid transparent;
      border-radius: 6px;
      display: inline-block;
      transition: 0.3s ease;
    }

    .footer-section ul li a:hover {
      color: #00f7ff;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid #00f7ff;
      transform: translateX(5px);
    }

    .footer-icons {
      display: flex;
      gap: 15px;
      margin-top: 10px;
    }

    .footer-icons a {
      color: #ccc;
      font-size: 20px;
      transition: 0.3s;
    }

    .footer-icons a:hover {
      color: #00f7ff;
      transform: scale(1.2);
    }

    .job-platforms {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 20px;
      justify-content: center;
      align-items: center;
      z-index: 2;
      position: relative;
    }

    .job-platforms a {
      background: rgba(255, 255, 255, 0.05);
      padding: 6px 14px;
      border-radius: 6px;
      font-size: 13px;
      color: #ccc;
      font-weight: bold;
      text-decoration: none;
      border: 1px solid transparent;
      transition: 0.3s ease;
    }

    .job-platforms a:hover {
      background: rgba(0, 255, 204, 0.1);
      color: #00f7ff;
      border-color: #00f7ff;
      transform: scale(1.05);
    }

.quote,
.copyright {
  color: #00f7ff;
  text-shadow: 1px 1px 1px #000, 0 0 3px #00f7ff;
  -webkit-text-stroke: 0.3px #00f7ff;
  font-weight: bold;
  z-index: 3;
  position: relative;
}




    .quote {
  text-align: center;
  font-style: italic;
  margin: 25px auto 10px;
  font-size: 15px;
  font-weight: bold;
  color: #00f7ff;
  text-shadow: 1px 1px 1px #000, 0 0 3px #00f7ff;
  -webkit-text-stroke: 0.3px #00f7ff;
  z-index: 3;
  position: relative;
}


    .copyright {
  text-align: center;
  font-size: 12px;
  font-weight: bold;
  color: #00f7ff;
  text-shadow: 1px 1px 1px #000, 0 0 3px #00f7ff;
  -webkit-text-stroke: 0.3px #00f7ff;
  z-index: 3;
  position: relative;
}

    @media (max-width: 768px) {
      .footer-content {
        flex-direction: column;
        text-align: center;
        align-items: center;
      }

      .footer-logo,
      .footer-section {
        flex: 1 1 100%;
      }

      .job-platforms {
        flex-direction: column;
        gap: 8px;
      }
    }