.main-footer {
  background: rgb(110, 50, 50);
  color: rgb(255, 255, 255);
  padding: 60px 40px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-col hr {
    border: 2px solid #ffffff;
    border-radius: 10px;
    height: 1px;
    background-color: #ffffff;
    margin: 20px 0px;
}

.footer-col h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #ffffff;
}
.footer-col {
  flex: 1 1 200px;
  min-width: 200px;
}

.footer-col2 img {
  max-width: 100%;
  height: 100px;
}

.footer-col h3 {
  font-size: 18px;
  margin-bottom: 15px;
  position: relative;
}

.footer-col p,
.footer-col a,
.footer-col li {
  font-size: 14px;
  color: #ffffff;
  line-height: 1.6;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col a:hover {
   color: #00bfa5;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col img {
  max-width: 100%;
  height: 90px;
  margin-bottom: 15px;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
}

.social-icons img {
  width: 30px;
  height: 30px;
  filter: brightness(100);
  transition: transform 0.2s;
}

.social-icons img:hover {
  transform: scale(1.1);
}

/* call floating*/
.call-float {
  position: fixed;
  bottom: 80px;
  right: 20px;
  background-color: #25D366;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.call-float img {
  width: 24px;
  height: 24px;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.whatsapp-float img {
  width: 24px;
  height: 24px;
}

/* ✅ Media Query for mobile */
@media (max-width: 768px) {
  .about-section {
    flex-direction: column;
    text-align: center;
  }

  .about-content, .about-image {
    flex: 1 1 100%;
  }

  .about-content h2 {
    font-size: 28px;
  }
}


@media (max-width: 768px) {
  .main-footer {
    padding: 40px 20px;
    text-align: center;
  }

  .footer-container {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }

  .footer-col {
    min-width: unset;
    width: 100%;
  }

  .footer-col h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .footer-col p,
  .footer-col a,
  .footer-col li {
    font-size: 13px;
  }

  .social-icons a {
    margin: 0 8px;
  }

  .social-icons img {
    width: 26px;
    height: 26px;
  }

  /* call floating*/
  .call-float {
  position: fixed;
  bottom: 80px;
  right: 20px;
  background-color: #25D366;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  }

  .call-float img {
  width: 24px;
  height: 24px;
  }
}

