    .top-bar {
  display: none; /* Add this to hide the top-bar */
  /* Your other styles for .top-bar */
}

    @media (max-width: 767px) {
  /* Hide all other elements except logo and call button in mobile view */
  .bottom-bar nav,
  .navbar-links,
  .navbar-dropdown,
  .top-bar {
    display: none;
  }

  .bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .bottom-bar img {
    max-height: 70px; /* Adjust the logo size for mobile view */
  }

  .bubble-button {
    margin-right: 0;
  }

  .mobile-nav {
    display: none;
  }
}


    .hidden-info {
  display: none;
}


    header {
      position: fixed;
      width: 100%;
      top: 0;
      z-index: 1000;
      
      
    }

    .header-main {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 20px;
    }

    .header-main img {
      max-height: 50px;
    }

    .top-bar {
      background: #f8f9fa;
      padding: 5px 0;
    }

    .top-bar .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .top-bar a {
      color: #333;
      text-decoration: none;
    }

    .top-bar i {
      margin-right: 8px;
    }

    .top-bar .phone {
      display: flex;
      align-items: center;
    }

    .top-bar .phone i {
      margin-right: 5px;
    }

    .navbar {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .navbar-links {
      list-style: none;
      display: flex;
      padding: 0;
      margin: 0;
    }

    .navbar-links li {
      margin-right: -3px;
    }

    .navbar-links a {
      text-decoration: none;
      color: #333;
    }

    .navbar-links .dropdown {
      display: none;
      position: absolute;
      background: white;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .navbar-links .navbar-dropdown:hover .dropdown {
      display: block;
    }

    .bubble-button {
      background: linear-gradient(145deg, #FF4500, #ff2700); /* Gradient background */
      color: white; /* Text color */
      border: none;
      border-radius: 50px; /* Round corners */
      padding: 12px 40px;
      font-size: 16px;
      font-weight: bold;
          margin-right: 20px;
      text-transform: uppercase;
      cursor: pointer;
      box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3); /* Shadow for bubble effect */
      transition: all 0.3s ease; /* Smooth transitions */
      position: relative;
      overflow: hidden;
    }

    .bubble-button::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 300%;
      height: 300%;
      background: rgba(255, 255, 255, 0.15);
      border-radius: 50%;
      transform: translate(-50%, -50%) scale(0);
      transition: transform 0.5s ease;
    }

    .bubble-button:hover::before {
      transform: translate(-50%, -50%) scale(1);
    }

    .bubble-button:hover {
      background: linear-gradient(145deg, #FF6347, #FF4500); /* Gradient background on hover */
      transform: scale(1.05); /* Slightly enlarge on hover */
    }

    .bubble-button:active {
      transform: scale(0.95); /* Slightly shrink on click */
    }
       #header {
    transition: transform 0.3s ease-in-out;
  }

  .scroll-down {
    transform: translateY(-100%);
  }
    

    .chat-icon {
      position: fixed;
      bottom: 87px;
      right: 15px;
      background-color: #0e8281;
      color: white;
      padding: 10px;
      border-radius: 50%;
      cursor: pointer;
      font-size: 24px;
    }

    .chatbox-container {
      display: none;
      z-index: 100000;
      position: fixed;
      bottom: 60px;
      right: 20px;
      padding: 10px;
      border-radius: 10px;
    }

    .chatbox {
      width: 300px;
      border: 0.5px solid #0e8281;
      border-radius: 10px;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }

    .chatbox__header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px;
      background-color: #0e8281;
      color: white;
      border-bottom: 1px solid #ccc;
      border-radius: 10px 10px 0 0;
    }

    .chatbox__messages {
      height: 250px;
      overflow-y: scroll;
      padding: 10px;
      background-color: #f9f9f9;
      border-bottom: 1px solid #0e8281;
    }

    .messages__item {
      margin: 10px 0;
      padding: 10px;
      border-radius: 10px;
    }

    .messages__item--visitor {
      background-color: #e1ffc7;
      text-align: left;
    }

    .messages__item--user {
      background-color: #c7e1ff;
      text-align: right;
    }

    .chatbox__input-container {
      display: flex;
      justify-content: center;
      padding: 10px;
      background-color: #0e8281;
      border-top: 1px solid #ccc;
    }

    .chatbox__input {
      flex: 1;
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 10px;
      margin-right: 10px;
      outline: none;
    }

    .chatbox__button {
      padding: 10px;
      background-color: #007bff;
      z-index: 10000;
      border: none;
      color: white;
      cursor: pointer;
      border-radius: 10px;
    }
     .chat-icon:hover {
      opacity: 1; 
      transform: scale(1.1); 
    }

    /* Click effect (optional) */
    .chat-icon:active {
      transform: scale(0.9); 
    }

    .close-icon {
      cursor: pointer;
      z-index: 10000;
    }

    /* Media query for mobile view */
    @media (max-width: 768px) {
      .chatbox-container {
        z-index: 100000;
      }
      .chat-icon {
        z-index: 10000; /* Ensures chat icon is in front */
      }
    }

    /* Style for WhatsApp icon */
    .whatsapp-icon {
      position: fixed;
      bottom: 150px;
      right: 10px;
      z-index: 10001; /* Adjust as needed */
      cursor: pointer;
    }

    .whatsapp-icon img {
      width: 60px; /* Adjust size as needed */
      height: 60px; /* Adjust size as needed */
    }

    /* Hover effect */
    .whatsapp-icon:hover {
      opacity: 5;
     
      transform: scale(1.1); 
    }

    /* Click effect (optional) */
    .whatsapp-icon:active {
      transform: scale(0.9); /* Scale down briefly on click */
    }