/* Remove "Powered by Google Translate" */
.goog-te-gadget {
    font-size: 0; /* Hide unwanted text */
  }
  
  /* Hide the Google branding */
  .goog-te-banner-frame.skiptranslate {
    display: none !important;
  }
  
  /* Ensure only the dropdown remains visible */
  .translate-wrapper {
    display: inline-block;
    margin-top: 14px
  }
  
  /* Style the dropdown like a button */
  #google_translate_element select {
    background-color: #6aa121 !important;
    color: white !important;
    font-size: 13px;
    padding: 5px 5px;
    cursor: pointer;
    transition: transform 0.3s ease;
    width: 150px; /* Reduce width */
    text-align: center;
  }
  
  /* Ensure the dropdown shows "Translate" */
  .goog-te-gadget select {
    width: 130px !important;
  }
  
  /* Top Bar Styling */
  .top-top-part {
    height: 50px;
    background-color: #6aa121 !important;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
  }
  
  .top-container {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
  }
  
  .top-social-icons {
    display: flex;
  }
  
  .top-social-link {
    width: 28px;
    height: 28px;
    background: white;
    color: #6aa121;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
    text-decoration: none;
    margin-right: 7px;
    transition: 0.3s;
  }
  
  .top-social-link:hover {
    background: #fff;
    color: #333;
  }
  
  .top-contact-email a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
  }
  
  .top-translate-wrapper {
    flex-grow: 1;
    text-align: center;
  }
  
  /* Navbar Styling */
  .navbar {
    margin: 50px 0;
    padding: 10px 20px;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(40, 124, 60, 0.1);
    border-bottom: 5px solid #6aa121;
        font-size: 1rem;
  }
  
  .navbar-brand img {
    width: 70px;
    height: 50px;
  }
  
  /* Mobile Menu Styling */
  .mobile-menu-wrapper {
    width: 100%;
  }
  
  /* Show mobile buttons only on small screens */
  .mobile-buttons {
    display: none;
  }
  
  /* Close button for mobile menu */
  .close-menu-btn {
    display: none; /* Hidden by default */
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
    z-index: 1010;
  }
  
  /* Navbar Links */
  .navbar-nav {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  
  .nav-link {
    font-size: 1rem;
    margin: 5px;
    font-weight: 500;
    display: flex;
    align-items: center;
    opacity: 1 !important;
    transition: transform 0.3s ease;
  }
  
  .nav-link i {
    margin-right: 5px;
        font-size: 1rem;
  }
  
  .nav-link:hover {
    color: #6aa121;
    transform: scale(1.05);
  }
  
  /* Buttons */
  .btn-primary {
    background-color: #6aa121;
    border-color: #6aa121;
    transition: transform 0.3s ease;
        font-size: 1rem;
  }
  
  .btn-primary:hover {
    transform: scale(1.05);
    background-color: #4d7e24;
        font-size: 1rem;
  }
  
  .btn-secondary {
    background-color: #ffffff;
    border-color: #6aa121;
    color: #6aa121;
    transition: transform 0.3s ease;
        font-size: 1rem;
  }
  
  .btn-secondary:hover {
    background-color: #6aa121;
    color: #ffffff;
    transform: scale(1.05);
  }
  
  /* Responsive Design */
  @media (max-width: 991px) {
    .top-social-icons,
    .top-contact-email {
      display: none !important;
    }
    
    .top-translate-wrapper {
      display: flex;
      justify-content: center;
      width: 100%;
    }
    
    /* Hide desktop buttons on mobile */
    .desktop-buttons {
      display: none !important;
    }
    
    /* Show mobile buttons */
    .mobile-buttons {
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-top: 20px;
      width: 100%;
    }
    
    /* Make mobile buttons wider */
    .mobile-buttons .btn {
      width: 200px;
      text-align: center;
      padding: 10px 0;
    }
    
    /* Fullscreen mobile menu */
    .navbar-collapse {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 0;
      background-color: rgba(106, 161, 33, 0.95);
      overflow: hidden;
      transition: height 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 1009;
    }
    
    /* When menu is open */
    .navbar-collapse.show {
      height: 100vh;
    }
    
    /* Show close button when menu is open */
    .navbar-collapse.show .close-menu-btn {
      display: block;
      animation: fadeIn 0.5s;
    }
    
    /* Style navbar items for mobile */
    .navbar-nav {
      flex-direction: column;
      text-align: center;
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.5s, transform 0.5s;
    }
    
    /* Animate navbar items when menu is open */
    .navbar-collapse.show .navbar-nav {
      opacity: 1;
      transform: translateY(0);
    }
    
    .nav-item {
      margin: 15px 0;
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.3s, transform 0.3s;
    }
    
    /* Staggered animation for nav items */
    .navbar-collapse.show .nav-item:nth-child(1) { animation: slideIn 0.3s 0.1s forwards; }
    .navbar-collapse.show .nav-item:nth-child(2) { animation: slideIn 0.3s 0.2s forwards; }
    .navbar-collapse.show .nav-item:nth-child(3) { animation: slideIn 0.3s 0.3s forwards; }
    .navbar-collapse.show .nav-item:nth-child(4) { animation: slideIn 0.3s 0.4s forwards; }
    .navbar-collapse.show .nav-item:nth-child(5) { animation: slideIn 0.3s 0.5s forwards; }
    .navbar-collapse.show .nav-item:nth-child(6) { animation: slideIn 0.3s 0.6s forwards; }
    .navbar-collapse.show .nav-item:nth-child(7) { animation: slideIn 0.3s 0.7s forwards; }
    .navbar-collapse.show .nav-item:nth-child(8) { animation: slideIn 0.3s 0.8s forwards; }
    
    /* Mobile nav links */
    .navbar-collapse .nav-link {
      color: white;
      font-size: .6rem;
      padding: 10px 20px;
    }
    
    /* Mobile buttons animation */
    .mobile-buttons {
      opacity: 0;
      transform: translateY(20px);
    }
    
    .navbar-collapse.show .mobile-buttons {
      animation: slideIn 0.5s 0.9s forwards;
    }
    
    /* Animations */
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }
    
    @keyframes slideIn {
      from { 
        opacity: 0;
        transform: translateY(20px);
      }
      to { 
        opacity: 1;
        transform: translateY(0);
      }
    }
  }