.popup-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1000;
  }
  
  /* Popup Buttons */
  .popup-buttons {
    display: none;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 5px;
    align-items: center;
  }
  
  .popup-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: white;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
  }
  
  .popup-btn img {
    width: 28px;
    height: auto;
  }
  
  .popup-btn:hover {
    transform: scale(1.1);
  }
  
  /* WhatsApp & Call Button Styling */
  .whatsapp {
    border: 2px solid #25D366;
  }
  
  .call {
    border: 2px solid #128C7E;
  }
  
  /* Tiny Toggle Button */
  .tiny-toggle-btn {
  background-color: #128C7E;
    border: none;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
  }
  
  .tiny-toggle-btn img {
  width: 40px;
    height: auto;
  }
  
  .tiny-toggle-btn:hover {
  background-color: #25D366;
  }




  .popup-buttons {
    display: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 0;
    transform: translateY(-10px);
}

.popup-buttons[style*="flex"] {
    opacity: 1;
    transform: translateY(0);
}




/* nav bar ....................................................... */



.navbar {
    width: 100%;
    position: fixed;
    z-index: 5;
    background-color: transparent;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.navbar.scrolled {
    background-color: #F0FFF0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.logo {
    height: 10vh;
    width: auto;
}

.nav-links {
    flex: 1;
    text-align: right;
}

.nav-links ul {
    list-style: none;
    display: flex;
    justify-content: flex-end;
}

.nav-links ul li {
    display: inline-block;
    padding: 8px 12px;
}

.nav-links ul li a {
    text-decoration: none;
    color: black;
    font-size: 15px;
    transition: 0.3s;
}

.nav-links ul li a:hover {
  color: #000000;
  font-weight: 600;}

.hamburger {
    display: none;
    font-size: 30px;
    cursor: pointer;
}
@media (max-width:620px){
    .drop{
      display: none !important;
    }
    .dropdown li {
      display: none !important;
    
    }
    .logo {
        height: 5vh;
    }
  }

  #dropdown2{
    display: none;
  }
  @media (max-width:620px){
    .dropdown2{
      position: relative !important;;
      top: 0vh !important;
      background-color: #F0FFF0 !important;
      z-index: 100;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 0vh;
      list-style-type: none;
    }
    .dropdown2 li a{
      color:  black;
      text-decoration: none;
     
    }
    
  }
  
/* Trying to hide navbar on click  */



/* Responsive Styles */
@media (max-width: 768px) {
    .nav-links {
        position: absolute !important;
        top: -15px !important;
        right: 0 !important;
        background-color: #F0FFF0 !important;
        width: 100%;
        display: none;
        flex-direction: column;
        text-align: center;
        box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
    }

    .nav-links ul {
        flex-direction: column;
    }

    .nav-links ul li {
        display: block;
        padding: 10px;
    }

    .hamburger {
        display: block;
    }

    .nav-active {
        display: flex !important;
    }
}

/* nav bar end ............................................................................. */



 /* Dropdown Styles */
 .dropdown {
  position: absolute;
  top: 60%; /* Position it just below the parent li */
  left: 80%; /* Center align under the parent */
  transform: translateX(-50%);
  background: white;
  min-width: 150px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  display: none; /* Hide by default */
  flex-direction: column;
  z-index: 1000;
  padding: 5px 0px ;
  padding-left: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.dropdown.active {
  display: flex;
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(5px);
}

.dropdown a {
  color: #2d5f2d;
  padding: 0px 0px ;
  padding-left: 10px;

  border-bottom: 1px solid #ddd;
  transition: 0.3s;
  text-align: center;
}


.dropdown a:hover {
    background-color: #f0f0f0;
    /* border-radius: 4px; */
}

/* Show dropdown on hover */
li:hover .dropdown {
    display: flex;
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(5px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .dropdown {
      display: flex !important; /* Hide the dropdown */
        opacity: 0 !important;
        visibility: hidden !important;
        position: absolute !important; /* Remove from the layout */
        top: -9999px !important; /* Move it off-screen */
        left: -9999px !important; /* Move it off-screen */
    }

    .dropdown.active {
        display: flex; /* Show when active */
        transform: none; /* Remove transform */
    }
    li:hover .dropdown {
        display: flex; /* Show on hover */
        transform: none; /* Remove transform */
    }

    /* Adjust parent li for better mobile experience */
    li {
        position: relative;
    }

    /* Make dropdown links stack vertically */
    .dropdown a {
        text-align: left;
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .dropdown {
        min-width: 100%; /* Full width on very small screens */
    }
}
