.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #12c655;
  color: white;
  border-radius: 30px;
  padding: 5px 10px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: Arial, sans-serif;
  text-decoration: none;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
  z-index: 1000;
  font-size:12px;
}

.whatsapp-float img {
  width: 24px;
  height: 24px;
}

.footer {
    background-color: #eefeff;
}

.footer-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;

    display: flex;
    color: black;
    padding: 40px;
    background-color: #ffffff;
}

.footer-logo-section {
    display: flex;
    align-self: flex-start;
    align-items: center;
    gap: 10px;
}

.logo {
    width: 150px;
    object-fit: cover;
}

.brand {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.footer-link ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 35px;

    list-style: none;
    padding: 0;
    line-height: 1.9;
}

.footer-link ul li,
.footer-link ul li a {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 400;
    text-decoration: none;
    color: black;
}

.footer-link ul img {
    width: 16px;
    height: 16px;
}

.footer-link-divider {
    display: flex;
    align-items: center;
    gap: 2px;
}

.footer-long-dash {
    width: 30px;
    height: 0px;
    top: 1840px;
    left: 700px;
    opacity: 1;
    border-width: 4px;
    border-radius: 4px;

    border: 1px solid var(--primary-color);
}

.footer-small-dash {
    width: 5px;
    height: 0px;
    top: 1840px;
    left: 771px;
    opacity: 1;
    border-width: 4px;
    border-radius: 4px;
    border: 1px solid var(--primary-color);
}

.footer-social-icon {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-social-icon img {
    width: 45px;
    height: 45px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #eefeff;
}

.footer-bottom p {
    font-size: 0.9rem;
    font-weight: 400;
}

.footer-bottom .powered span {
    color: #d32f2f;
    font-weight: bold;
}
.powered-by {
    font-size: 0.9rem;
    font-weight: 400;
}

.copyright {
    font-size: 1rem;
    font-weight: 400;
}
.cl {
    color: #3973b7;
}
.tech {
    color: #b11f3e;
}

@media (max-width: 992px) {
    .footer-container {
        padding: 30px;
        gap: 40px;
    }
    .contact-num {
        order: 4;
        justify-content: flex-start;
        min-width: 100%;
        margin-top: 20px;
        margin-left: 30px;
    }
    .logo {
        width: 100px;
        object-fit: cover;
    }
}

@media (max-width: 550px) {
}
