/* Sticky Chat Icon */
.chat-icon {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #3bafc0;
  color: #fff;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  cursor: pointer;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: background-color 0.3s ease;
}

.chat-icon:hover {
  background-color: #005ec4;
}

/* Chat Box */
.chat-box {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 320px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  overflow: hidden;
  display: none;
  flex-direction: column;
  z-index: 999;
}

/* Chat Header */
.chat-header {
  background-color: #007bff;
  color: white;
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
}

.chat-header button {
  background: transparent;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
}

/* Chat Body Form */
.chat-body {
  padding: 15px;
}

.chat-body label {
  display: block;
  font-size: 13px;
  color: #333;
  margin-top: 10px;
  margin-bottom: 4px;
}

.chat-body input,
.chat-body textarea {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  resize: none;
  margin-bottom: 8px;
}

.start-chat-btn {
  width: 100%;
  padding: 10px;
  background-color: #007bff;
  border: none;
  border-radius: 6px;
  color: white;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s;
}

.start-chat-btn:hover {
  background-color: #005ec4;
}
         footer {
    background-color: #000;
    color: #ccc;
    font-size: 15px;
  }


  .footer-search input {
    border-radius: 50px 0 0 50px;
    border: none;
    padding-left: 20px;
  }

  .footer-search button {
    border-radius: 0 50px 50px 0;
    background-color: #3bafc0;
    color: white;
    padding: 0 20px;
    border: none;
  }

  .footer-search button:hover {
    background-color: #3bafc0;
  }

  .social-icons a {
    margin: 0 10px;
    color: #bbb;
    font-size: 1.2rem;
    transition: 0.3s;
  }

  .social-icons a:hover {
    color: #00cba9;
  }

  footer h5 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 1rem;
  }

  footer a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
  }

  footer a:hover {
    color: #fff;
  }



  .footer-top {
    border-bottom: 1px solid #222;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
  }
    


.footer-bottom {
  background-color: #3bafc0;
  padding: 30px 20px;
  font-size: 14px;
  color: #fff;
  margin-top: -20px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-logo img {
  height: 50px;
  object-fit: contain;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  text-align: center;
  flex: 1;
}

.footer-links a {
  color: #ffffffcc;
  text-decoration: none;
  transition: color 0.3s;
  white-space: nowrap;
}

.footer-links a:hover {
  color: #fff;
  text-decoration: underline;
}


@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

}
