.banrbtm {
    padding: 15px 0px 0px 0px;
    background: #000;
    color: #fff;
    margin-top: -91px;
    z-index: 9999;
    position: relative;
    z-index: 1;
}
.capcha input {
  width: 85%;
  float: right;
  margin-top: -4px;
}
.formbtns {
  background: #ffc107;
  border: 1px solid;
  padding: 10px 50px;
  border-radius: 10px;
}
.banrbtm .title {
    color: #fff;
}

.banrbtm .icon i {
    font-size: 50px;
    margin-right: 10px;
    color: #f2c758;
}

.services .title {
    margin: 10px 0px;
}

.navmenu a {
    color: #000;
}

.hero h2,
.hero p {
    color: #fff;
}

@media only screen and (max-width: 768px) {

    /* For mobile phones: */
    .mobile-nav-active .navmenu ul li {
        background: #fff;
    }
}

/* =============chat-icon================== */
#whatsapp-icon {
   position: fixed;
  bottom: 60px;
  right: 10px;
  width: 60px;
  height: 60px;
  background-color: green;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  animation: bounce 2s infinite;
  z-index: 1000;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Chat Box Styling */
#chat-box {
    position: fixed;
    bottom: -800px;
    right: 20px;
    width: 300px;
    background-color: #ffffff;
    border: 1px solid #FFC107;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    display: none;
    z-index: 1000;
    animation-fill-mode: forwards;
}

#chat-header {
    background-color: #f2c758;
    color:black;
    padding: 10px;
    border-radius: 10px 10px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#chat-header button {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
}

#chat-body {
    padding: 10px;
}

.message {
    background-color: #f2c758;
    color:black;
    border-radius: 10px;
    padding: 8px 12px;
    margin-bottom: 10px;
    display: inline-block;
}

/* Animations */
@keyframes slideUp {
    from {
        bottom: -400px;
    }

    to {
        bottom: 90px;
    }
}

@keyframes slideDown {
    from {
        bottom: 90px;
    }

    to {
        bottom: -400px;
    }
}