 .edu-footer {
      background: linear-gradient(to right, #0f172a, #1e293b);
      color: #f8fafc;
      font-family: 'Poppins', sans-serif;
      padding: 40px 20px 15px 20px;
    }

    .edu-footer .edu-wrapper {
      max-width: 1200px;
      margin: auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 30px;
    }

    .edu-footer .edu-section h3 {
        font-size: 1.3rem;
        color: var(--text_color_1);
        margin-bottom: 10px;
    }

    .edu-footer .edu-brand {
      font-size: 1.8rem;
      font-weight: bold;
      margin-bottom: 8px;
      color: var(--text_color_1);
    }

    .edu-footer p,
    .edu-footer a {
      font-size: 1rem;
      color: #cbd5e1;
      text-decoration: none;
      margin-bottom: 10px;
      display: block;
    }

    .edu-footer a:hover {
      color: #a5b4fc;
    }

    .edu-footer .edu-social a {
      font-size: 1.4rem;
      margin-right: 12px;
      color: #cbd5e1;
      display: inline;
    }

    .edu-footer .edu-social a:hover {
      color: #a5b4fc;
    }

    .edu-footer .edu-bottom {
      text-align: center;
      /*margin-top: 30px;*/
      font-size: .8rem;
      color: #94a3b8;
      border-top: 1px solid #334155;
      padding-top: 15px;
    }
    
    
.footer-links-bottom {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 15px 0;
  background-color: #0a0f23; /* Match your footer background */
  font-size: 14px;
  border-top: 1px solid #1c2030; /* Optional separator */
  margin-top:10px;
  flex-wrap: wrap;
}

.footer-links-bottom a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links-bottom a:hover {
  color: #8b9fff; /* Match your theme highlight */
}

/*=================================*/
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  z-index: 1000;
}

.whatsapp-float img {
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(15deg);
  background: #128c7e;
}

.whatsapp-float:hover img {
  transform: rotate(-15deg) scale(1.2);
}
/*=================================*/


    @media (max-width: 600px) {
      .edu-footer .edu-wrapper {
        text-align: center;
      }
      .edu-footer p, .edu-footer a {
        font-size: 1rem;
        text-transform: math-auto;
        margin-bottom: 15px;
    }

      .edu-footer .edu-social {
        justify-content: center;
      }
    }