

html, body {
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
    color:white!important;
    
}

/* ... (Previous CSS rules) ... */

/* ... (Previous CSS rules) ... */

.header-actions {
  display: flex;
  align-items: center;
}

.get-in-touch-btn {
  background-color: #FFD700; /* Yellow */
  color: #006400; /* Dark Green */
  border: none;
  padding: 10px 15px;
  margin-right: 10px;
  cursor: pointer;
  font-weight: bold;
}

.get-in-touch-btn:last-child {
  margin-right: 0;
}

/* ... (Remaining CSS rules) ... */

.banner {
      background-color: #000000;
    color: #FFFFFF;
    text-align: center;
    /* padding: 10px; */
    font-size: 12px;
}
/* ... (Previous CSS rules) ... */

/* Improved style for the "Products" link */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropbtn {
  background-color: #006400; /* Dark Green */
  color: #FFD700; /* Yellow */
  padding: 10px 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

.subsribe-hr {
    width: 100%;
    margin: 10px 0;
    border: 0;
    border-top: 1px solid #ffd700;
    background:#006400;
}
/* ... (Previous CSS rules) ... */

/* Improved style for the dropdown content */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #006400 black; /* Light gray */
  border: 1px solid #006400; /* Add a border around the content */
  min-width: auto;
  padding-left:100px;
  padding-right:100px;
  left: -150px;
  text-align:center;
  white-space: nowrap; 
  /*box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);*/
  z-index: 2;
  
}

.dropdown-content a {
  color: #333; /* Dark gray */
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Add a hover effect for dropdown links */
.dropdown-content a:hover {
  background-color: #006400 /* Gray on hover */
  
  
}

/* ... (Remaining CSS rules) ... */


.dropdown:hover .dropdown-content {
  display: block;
  padding-top: 12px;

  background-image: linear-gradient(to bottom, transparent 0, transparent 11px, #006400 10px); /* Create a gradient with transparent at the top 12px and black (rgba(0, 0, 0, 1)) below */
 
}

/* ... (Remaining CSS rules) ... */

.banner p {
  margin: 5px; /* Adjust the margin for spacing */
  display: inline-block; /* Display the paragraphs in-line */
}

.banner p:not(:first-child) {
  margin-left: 15px; /* Add some space between the paragraphs */
}

.hovers {
  position: relative; /* Required for positioning the pseudo-element */
  /*text-transform: uppercase;*/
}

.hovers::after {
  content: ""; /* Required for the pseudo-element to appear */
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px; /* Height of the underline */
  background-color: #FFD700; /* Yellow underline color */
  transform: scaleX(0); /* Initial scaleX value to make the underline invisible */
  transform-origin: left; /* Start the transformation from the left */
  transition: transform 0.3s; /* Add transition effect for the underline */
}

.hovers:hover::after {
  transform: scaleX(1); /* Scale to full width on hover */
}

.always-underlined::after {
    content: ""; /* Required for the pseudo-element to appear */
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px; /* Height of the underline */
    background-color: #FFD700; /* Yellow underline color */
    transform: scaleX(1); /* Make the underline visible */
    transform-origin: left; /* Start the transformation from the left */
}
/* ... (Remaining CSS rules) ... */

header {
  background-color: #006400;
  display: flex;
  align-items: center;
  padding: 10px;
  box-shadow: inset -1px 12px 10px -10px rgb(255 215 0 / 50%), inset -2px -14px 10px -10px rgb(255 215 0 / 50%);
}


.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
     transition: all 1.3s ease;
}

.logo {
  flex: 1;
}

.logo img {
    width: 100%!important;
    height: auto;
    
}

.main-nav {
  flex: 3;
  display: flex;
  justify-content: space-around;
      margin-right: 25px;
}

.main-nav a {
  color: #FFD700;
  text-decoration: none;
  padding: 10px;
}

.mobile-menu {
  display: none;
}

footer {
  background-color: #006400;
  padding: 20px;
  color: #FFFFFF;
}

.footer-content {
  display: flex;
  justify-content: space-between;
}

.contact-info p {
  margin: 5px 0;
}

.social-media {
  display: flex;
  align-items: center;
}

.social-icon {
  color: #FFD700;
  font-size: 20px;
  margin: 0 5px;
  text-decoration: none;
}

/* Media Queries for Mobile */
@media (max-width: 768px) {
    .get-in-touch-btn {
        display:none;
    }
    .logo img {
    width: 90%!important;
    height: auto;
    padding-left:0px;
    
}
  .main-nav {
    display: none;
  }

  .mobile-menu {
    display: flex!important;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    height: 30px;
    cursor: pointer;
        padding-right: 20px;
  }

  .mobile-menu span {
    display: block;
    width: 30px;
    height: 5px;
    background-color: #FFD700;
  }

  .mobile-menu.open span {
    background-color: #FFFFFF;
  }

  .mobile-menu.open ~ .main-nav {
    display: flex;
    flex-direction: column;
    background-color: #006400;
    padding: 10px;
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
  }

  .main-nav a {
    padding: 10px 0;
    border-bottom: 1px solid #FFD700;
  }
    .stickybackground {
         background-image: url('/images/background/background2-mobile.jpg')!important; 
            background-size: cover; 
            background-attachment: fixed; 
            background-repeat: no-repeat;
       
        background-size: 100%;
    }
    
    .grow-shrink{
        display:none;
    }
}



     
        .stickybackground {
            background-image: url('/images/background/background2.jpg'); 
            background-size: cover; 
            background-attachment: fixed; 
            background-repeat: no-repeat;
            z-index:0;
        }
        .stickybackground::before{
            background-color: rgba(0, 0, 0, 0); /* Adjust the last value for the shadow transparency */
    z-index: 1; /* Place it above the background image */
    box-shadow: 0 0 10px 10px rgba(0, 0, 0, 0.5);
     width: 100%;
    height: 100%;
        }
        
        /* Media query for screens with a maximum width of 768px (adjust as needed) */
@media (max-width: 998px) {
  
   .stickybackground {
         background-image: url('/images/background/background2-mobile.jpg')!important; 
            background-size: cover!important; 
            background-attachment: fixed; 
            background-repeat: no-repeat;
       
        background-size: 100%;
    }
   
}


        .butoane-up {
            padding: 10px;
            background-color: #004700e3;
            border: none;
            box-shadow: 0px -1px 10px 3px rgb(255 182 0 / 55%);
            margin-right: 35px;
            color: #FFD700;
            cursor: pointer;
        }
    
        .butoane-up:hover {
            background: #ffd70070 !important;
            color: white;
            text-transform: uppercase;
            cursor: pointer;
    
        }
    
          .btnredirectinventory {
              width: 40%;
              border-radius: 5px;
              color: white;
              cursor: pointer;
              margin-right: 0px;
             
          }