body{font-family: 'Roboto', sans-serif;}

.highlight-animation {
    display: inline-block;
    overflow: hidden;
    position: relative;
  }
  
  #phrase1::after,
  #phrase2::after,
  #phrase3::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.74);
    animation: highlight-wipe 9s linear infinite;
  }
  
  #phrase1::after {
    z-index: 1;
    animation-delay: -3s;
  }
  
  #phrase2::after {
    z-index: 2;
    animation-delay: -6s;
  }
  
  #phrase3::after {
    z-index: 3;
  }
  
  @keyframes highlight-wipe {
    0%, 100% {
      transform: translateX(100%);
    }
    33.33%, 66.66% {
      transform: translateX(0%);
    }
  }
  





    /* Styles for responsiveness */
    @media (max-width: 767px) {
        /* Mobile styles */
        
        .font-roboto-serif-bold {
            font-size: 40px;
        }
        .lead {
            font-size: 16px;
        }
        .form-control {
            font-size: 14px;
        }
    }
    @media (min-width: 768px) {
        /* Tablet styles */
        .font-roboto-serif-bold {
            font-size: 50px;
        }
        .lead {
            font-size: 18px;
        }
        .form-control {
            font-size: 16px;
        }
    }



    .scroll-arrow {
      position: fixed;
      bottom: 20px;
      right: 20px;
      width: 40px;
      height: 40px;
      background-color: #000;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      cursor: pointer;
      opacity: 0.7;
      transition: opacity 0.3s;
    }
    
    .scroll-arrow:hover {
      opacity: 1;
    }
    
    .scroll-arrow i {
      color: #fff;
      font-size: 24px;
    }
    
    
    /* Custom styling for the chat widget */
      .chat-widget {
        position: fixed;
        bottom: 25px;
        left: 25px;
        width: 40px;
        height: 40px;
        background-color: #26b32d;
        color: #FFFFFF;
        border-radius: 50%;
        text-align: center;
        cursor: pointer;
    }

    .chat-widget:hover {
        background-color: #26b32d;
    }
    
    /* Center WhatsApp icon */
    .fa-whatsapp{
      padding-top:10%;
        font-size: 30px;
        line-height: 30px;
    }





  
/* autocomplete-dropdown */

  .autocomplete-dropdown {
    position: absolute;
    background-color: #fff;
    border: 1px solid #ccc;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1;
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .autocomplete-dropdown li {
    padding: 5px;
    cursor: pointer;
  }

  .autocomplete-dropdown li:nth-child(even) {
    background-color: #f4f4f4;
  }

  .autocomplete-dropdown li:hover {
    background-color: #ddd;
  }
