* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    scroll-behavior: smooth;
}
header {
  position: fixed; /* Fixed position to stay on top */
  top: 0;
  z-index: 1000;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  font-size: larger;
  background-color: rgb(163, 160, 160); /* Gray background */
  box-shadow: inset 0 12px 22px rgba(0.4, 0.4, 0.5, 0.4); /* Inner shadow */
}

.logo {
    height: 50px;
    margin-left: 10%;
}

nav {
  
    margin-right: 10%;
    display: flex;
    align-items: center;
    
    
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
margin-top: -11px;
  font-family: 'Segoe UI', 'Roboto', 'Montserrat', 'Arial', 'Helvetica Neue', sans-serif;
  font-weight: bolder;
  font-size: 20px;
  line-height: 1;
  color: white;
  width: fit-content;
  display: flex;
  list-style: none;
    
           
}

nav ul li a {
    text-decoration: none;
    color: #ffffff;
    padding: 10px 15px;
    transition: background 0.3s, color 0.3s;
    border-radius: 5px;
}

nav ul li a:hover, nav ul li a.active {
    background-color: #007b5e;
    color: #ffffff;
}

/* Sliding Menu */
.menu-toggle {
    display: none;
    cursor: pointer;
    color: #ffffff;
    margin-right: 10%;
    font-size: 24px; /* Larger font for the toggle */
}

.sidebar {
    position: fixed;
    top: 0;
    right: -250px; /* Hidden off-screen */
    width: 250px;
    height: 100%;
    background: rgba(28, 28, 28, 0.9);
    transition: right 0.3s ease;
    z-index: 999;
    padding: 20px;
}

.sidebar ul {
    list-style: none;
    padding: 0;
    margin-top: 80px;
}

.sidebar ul li {
    margin: 20px 0;
}

.sidebar ul li a {
    color: #ffffff;
    text-decoration: none;
    padding: 10px 15px;
    display: block;
}

.sidebar ul li a:hover {
    background-color: #007b5e;
}

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-content {
z-index: 1;
position: relative; /* Ensures that any absolute elements are positioned relative to this container */
color: white; /* Assuming you want white text */
}

.hero h1 {
font-size: 60px;
margin-bottom: 20px;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Lighter shadow for the heading */
}

.hero p {
font-size: 20px;
text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3); /* Lighter shadow for the paragraph */
}

/* Optional: Background overlay for better text visibility */
.hero {
position: relative; /* Ensure it contains absolutely positioned elements */

height: 100vh; /* Full viewport height */
}


.hero::after {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.2); /* Dark overlay for contrast */
z-index: -1; /* Position it behind the text */
}

.hero p {
font-size: 20px;
text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); /* Lighter shadow for the paragraph */
opacity: 0; /* Initially hidden */
transform: translateY(20px); /* Start slightly below */
transition: opacity 0.5s ease, transform 0.5s ease; /* Smooth transition for opacity and transform */
}

/* Animation applied on hover */
.hero:hover p {
opacity: 1; /* Fully visible */
transform: translateY(0); /* Move to original position */
text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3); /* Retain lighter shadow effect on hover */
}

/* whatapps icon  */
.whatsapp-icon {
    position: fixed;
    bottom: 60px;
    right: 30px;
    text-align: center;
    z-index: 1000;
  }
  
  /* Link Styling */
  .whatsapp-link {
    text-decoration: none;
    display: inline-block;
    text-align: center;
  }
  
  /* Note Styling */
  .note {
    background: #25d366;
    color: white;
    font-size: 15px;
    font-weight: bold;
    padding: 15px 25px;
    text-align: center;
    position: relative;
    max-width: 220px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border: none;
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
  }
  
  /* Adding subtle gradient to note */
  .note {
    background: linear-gradient(135deg, #25d366, #1eb956);
  }
  
  /* Adding arrow design to the note */
  .note::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: #1eb956;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  }
  
  /* Hover effect for note */
  .whatsapp-link:hover .note {
    transform: scale(1.1);
    background: linear-gradient(135deg, #1eb956, #25d366);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  }
  
  /* Icon Styling */
  .icon {
    display: inline-block;
    width: 70px;
    height: 70px;
    margin-top: 10px;
  }
  
  .icon img {
    width: 100%;
    height: 100%;
   
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  /* Hover effect for icon */
  .whatsapp-link:hover img {
    transform: scale(1.15);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.3);
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .note {
      font-size: 13px;
      padding: 10px 20px;
      max-width: 180px;
    }
  
    .icon {
      width: 50px;
      height: 50px;
    }
  }
  
  @media (max-width: 480px) {
    .whatsapp-icon {
        position: fixed;
        bottom: 26%;
        right: 30px;
        text-align: center;
        z-index: 1000;
      }
    .note {
      font-size: 12px;
      padding: 8px 15px;
      max-width: 150px;
    }
  
    .icon {
      width: 40px;
      height: 40px;

    }
  }
  
  
  /* ------------------------ */

#about {
background-size: cover;
background-position: center;
color: white;
position: relative; /* Ensures proper positioning for the overlay */
}

/* Optional: Background overlay for better text visibility */
#about::after {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.2); /* Dark overlay for contrast */
z-index: -1; /* Position it behind the text */
}

.about-h2 {
font-size: 36px;
margin-bottom: 20px;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Add shadow to the heading */
}

.about-p {
font-size: 23px;
line-height: 1.6;
text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); /* Add shadow to the paragraph */
}

#about:hover .about-p {
animation: slideInFromBottom 2.5s forwards;
}

@keyframes slideInFromBottom {
0% {
transform: translateY(100%); /* Start off-screen below */
opacity: 0; /* Fully transparent */
}
100% {
transform: translateY(0); /* End at original position */
opacity: 1; /* Fully opaque */
}
}
.about-button {
display: inline-block;
margin-top: calc(4% + 12px);
padding: 12px 24px;
color: #ffffff;
background-color: #3CB371; /* Initial Parrot Green */
border: 2px solid #3CB371; /* Initial Parrot Green border */
font-size: 1rem;
font-weight: bold;
text-transform: uppercase;
text-decoration: none;
border-radius: 25px;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
z-index: 1;
}

.about-button::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgb(163, 160, 160); /* Gray background */
  box-shadow: inset 0 12px 22px rgba(0.4, 0.4, 0.5, 0.4); /* Inner shadow */
z-index: -1;
transform: scaleX(0);
transform-origin: right;
transition: transform 0.4s ease;
}

.about-button:hover::before {
transform: scaleX(1);
transform-origin: left;
}

.about-button:hover {
color: #ffffff; /* White text on hover */
border-color: #333333; /* Gray border on hover */
background-color: transparent;
transform: scale(1.05);
}



/* Content Section Styles */
.content-section {
padding: 40px 20px;
text-align: center;
color: white;
position: relative;
height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}

/* Background Video Styles */
.background-video-small {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
z-index: -1;
}

/* Product Section Styles */
.product-section {
padding: 40px 20px;
text-align: left;
color: white;
position: relative;
height: 100vh;
display: flex;
flex-direction: column;
}

/* Products Section Background */
#products {
background-size: cover;
background-position: center;
color: white;
position: relative; /* Ensures proper positioning for the overlay */
overflow: hidden; /* Prevent overflow during animations */
}

/* Background Overlay for Better Text Visibility */
#products::after {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.2); /* Dark overlay for contrast */
z-index: -1; /* Position it behind the text */
}

/* Product Title Styles */
.products-title {
padding-left: 35px;
font-size: 42px; /* Adjusted font size */
margin-top: 100px;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Add shadow to the heading */
}

/* Product Description Styles */
.products-description {
padding-left: 50px;
margin-top: 20px;
font-size: 40px; /* Adjusted font size */
text-shadow: 1px 1px 2px rgba(0, 0, 0, 1.5); /* Add shadow to the paragraph */
overflow-wrap: break-word; /* Break words if they exceed the container width */
font-weight: bold;
font-family: Arial, Helvetica, sans-serif;
}

/* Products List Styles */
.products-list {
list-style: none;
margin-left: 82px;
margin-top: 10px;
font-size: 18px; /* Adjusted font size for list items */
}

/* Initial State for List Items */
.products-list li {
opacity: 0; /* Start with hidden items */
transform: translateY(20px); /* Start below */
animation: none; /* No animation initially */
}

/* Apply animations only on hover */
#products:hover .products-list li {
animation: fadeIn 1.5s forwards; /* Adjusted animation duration */
}

/* Animation to reveal list items */
@keyframes fadeIn {
0% {
opacity: 0; /* Fully transparent */
transform: translateY(20px); /* Start slightly below */
}
100% {
opacity: 1; /* Fully opaque */
transform: translateY(0); /* Move to original position */
}
}

/* Delay for each list item with smoother timing */
.products-list li:nth-child(1) { animation-delay: 0.4s; }
.products-list li:nth-child(2) { animation-delay: 0.6s; }
.products-list li:nth-child(3) { animation-delay: 0.8s; }
.products-list li:nth-child(4) { animation-delay: 1s; }
.products-list li:nth-child(5) { animation-delay: 1.2s; }

/* Background Video Styles */
.background-video-small {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
z-index: -1;
}



.content-section {
padding: 40px 20px;
text-align: center;
position: relative;
color: white;
}

.background-video-small {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
z-index: -1;
}

.about-h2 {
font-size: 36px;
margin-bottom: 20px;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
animation: fadeIn 1s ease-in-out forwards; /* Adding fadeIn animation */
}

.about-p {
font-size: 23px;
line-height: 1.6;
text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
opacity: 0; /* Start hidden */
animation: fadeIn 1s ease-in-out forwards; /* Adding fadeIn animation */
animation-delay: 0.5s; /* Delay for paragraphs */
}
#contact {
padding: 0;
margin: 0;
}

.contact-section {
padding: 40px 20px;
text-align: center;
color: white;
position: relative;
height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;  
overflow: hidden; /* Ensure child elements don't overflow */
}

/* Apply hover effect to the entire contact section */
.contact-section:hover .contact-p {
animation: textHover 0.5s ease forwards; /* Trigger hover animation */
}

.contact-h {
font-size: 36px;
margin-bottom: 20px;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
animation: fadeIn 1s ease-in-out forwards; /* Initial fadeIn animation */
margin-top: 140px;
}

.contact-description {
font-size: 32px;
line-height: 1.6;
text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
opacity: 1; /* Fully visible */
animation: fadeIn 1s ease-in-out forwards; /* Initial fadeIn animation */
animation-delay: 0.5s; /* Delay for paragraphs */
font-family: 'Arial', sans-serif; /* Change the font family */
font-weight: 400; /* Adjust the weight if necessary */
color: white; /* Text color */
}

/* FadeIn animation */
@keyframes fadeIn {
0% {
opacity: 0; /* Fully transparent */
transform: translateY(20px); /* Start slightly below */
}
100% {
opacity: 1; /* Fully opaque */
transform: translateY(0); /* Move to original position */
}
}

/* Text Hover Animation for .contact-p */
@keyframes textHover {
0% {
transform: translateY(0); /* Original position */
opacity: 1; /* Fully opaque */
}
50% {
transform: translateY(-10px); /* Move slightly upward */
opacity: 0.8; /* Slightly fade */
}
100% {
transform: translateY(0); /* Return to original position */
opacity: 1; /* Fully opaque again */
}
}
.contact-section .mouse-btn {
display: none;  
overflow: hidden;
}


.footer {
    width: 100%;
    background-color: rgb(163, 160, 160); /* Gray background */
    box-shadow: inset 0 12px 22px rgba(0.4, 0.4, 0.5, 0.4); /* Inner shadow */
    text-align: center;
    padding: 20px 10px;
    font-size: 14px;
    color:white;
    margin-top: auto; /* This makes the footer stick to the bottom */
  }
  
  .footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .footer p {
    margin: 0 0 10px;
    font-weight: 500;
  }
  
  .social-media {
    display: flex;
    gap: 30px;
    justify-content: center;
  }
  
  .social-link img {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    filter: grayscale(10%);
  }
  
  .social-link:hover img {
    transform: scale(1.2);
    filter: grayscale(0%);
  }
  
  /* Responsive Footer */
  @media (max-width: 768px) {
    .footer p {
      font-size: 12px;
    }
  
    .social-link img {
      width: 20px;
      height: 20px;
    }
  
    .footer {
      padding: 15px 0; /* Adjust padding for smaller screens */
    }
  }
  


.scroll-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    visibility: hidden;
}

.scroll-buttons {
    position: absolute;
    left: -9999px; /* Move the buttons off-screen */
}
.mouse-btn {
width: 80px; 
height: auto; /* Allow height to adjust automatically based on content */
margin-top: 400px; /* Margin to give space from the bottom */
text-align: center; /* Center the text horizontally */
position: fixed;   
display: flex; /* Aligns the image and text */
flex-direction: column; /* Stack items vertically */
align-items: center; /* Centers the content horizontally */
}

.mouse-img {
width: 50px;
height: 50px;
margin-bottom: 5px;

/* Optional: If you want rounded borders */
}
.scroll {
display: flex;
justify-content: center; /* Centers the content horizontally */
align-items: center;     /* Centers the content vertically inside the element */
position: fixed;         /* Positions the element relative to the viewport */
bottom: 90px;               /* Places it at the bottom of the page */
left: 50%;               /* Aligns to the center of the viewport horizontally */
transform: translateX(-50%); /* Shifts it back by 50% to truly center it */
width: 100%;             /* Optional: You can adjust the width as needed */
/* Optional: Set a background color if desired */
font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif ;
font-size: larger;
}
.scroll-down {
font-size: 24px; /* Adjust size of the arrow */
font-weight: bold;
text-align: center;
color:white; /* Arrow color */
position: fixed;
bottom: 45px; /* Distance from the bottom of the page */
left: 50%; /* Center horizontally */
transform: translateX(-50%); /* Adjust to truly center */
animation: bounce 1s infinite; /* Optional: Add a bounce animation */
}

@keyframes bounce {
0%, 100% {
transform: translate(-50%, 0);
}
50% {
transform: translate(-50%, -10px);
}
}



.mouse-btn span {
display: block; /* Ensure the text takes the full width */
white-space: nowrap; /* Prevent the text from wrapping */
}

@media (max-width: 768px) {
    nav {
        display: none; /* Hide the normal nav */
    }

    .menu-toggle {
        display: block; /* Show the menu toggle */
    }

    .sidebar {
        width: 250px;
    }


/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}
.hero h1 {
font-size: 40px; /* Adjust heading size */
}

.hero p {
font-size: 16px; /* Smaller text for mobile */
}

.products-description {
font-size: 30px; /* Adjusted font for mobile */
}

.products-list li {
font-size: 16px; /* Adjust list font size */
}
}

.contact-p {
font-size: 20px;
margin: 10px 0;
margin-top: 5px;
}

.contact-p a {
text-decoration: none;
color: white;
display: flex;
align-items: center;
transition: color 0.3s ease;
}
.icon {
width: 40px;
height: 40px;
margin-right: 10px;
transition: transform 0.3s ease;
}

.icon:hover {
transform: scale(1.1); /* Slight zoom-in on hover */
}

@media (min-width: 1380px)  {
/* Styles for 1280px to 1919px */
body {
  
  font-size: 18px; /* Base font size for large screens */
  }
  .hero h1 {
  font-size: 80px; /* Larger heading size */
  }
  
  .hero p {
  font-size: 26px; /* Larger paragraph size */
  }
  .products-title {
  
  font-size: 48px; 
  }
  .products-description {
  font-size: 2.8rem; /* Adjusted description size */
  }
  
  .products-list {
  font-size: 28px; /* Adjusted font size for list items */
  margin-top: 30px;
  }
  .product-section span {
  font-size:44px; /* Adjusted font size for product section */
  margin-left: 28px;
  }
  
  .about-h2 {
  font-size: 48px; /* Larger heading size */
  }
  
  .about-p {
  font-size: 34px; /* Larger paragraph size */
  }
  
  .contact-h {
  
  font-size: 3rem; /* Larger contact heading */
  }
  
  .contact-description {
  margin-top: 15px;
  font-size: 2.4rem; /* Larger paragraph size */
  }
  .contact-p{
  font-size: 2rem; /* Larger contact paragraph */
  }
  
  .footer {
  padding: 30px; /* More padding for footer */
  }
  
}
@media (min-width: 360px) and (max-width: 514px) {
/* Styles for mobile devices */

body {
font-size: 14px; /* Base font size for mobile screens */
}

.hero h1 {
font-size: 30px; /* Adjusted heading size for mobile */
margin-bottom: 10px; /* Added margin for spacing */
}

.hero p {
font-size: 16px; /* Adjusted paragraph size for mobile */
margin-bottom: 20px; /* Added margin for spacing */
opacity: 1;
}
#about .logo {
display: none;
}
.products-title{
margin-top: 150px;
}
.products-description {

font-size: 22px; /* Adjusted description size for mobile */
line-height: 1.4; /* Increased line height for readability */
}

.products-list li {
font-size: 16px; /* Adjusted font size for list items */
opacity: 1;
}

.product-section span {
font-size: 20px; /* Adjusted font size for product section */
margin-left: 10px; /* Adjusted margin for spacing */
}

.about-h2 {
font-size: 28px; /* Adjusted heading size for about section */
}

.about-p {
font-size: 18px; /* Adjusted paragraph size for about section */
}

.contact-h {
margin-top: 220px; /* Reduced margin for contact heading */
font-size: 28px; /* Adjusted contact heading size */
}

.contact-description {
font-size: 22px; /* Adjusted paragraph size for contact section */
}

.footer {
padding: 10px; /* Adjusted padding for footer */
text-align: center; /* Centered footer text for better appearance */
}

}

/* Default button style */
.products-button {
    padding: 14px 22px 14px;
    color: #ffffff;
    background-color: #3CB371; /* Initial Parrot Green */
    border: 2px solid #3CB371; /* Initial Parrot Green border */
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    overflow: hidden;
    z-index: 1;
    text-align: center;
    width: 300px;
    height: auto;
    display: block;         /* Changed from inline-block */
    margin: 0 auto;         /* Center horizontally */
    position: relative;     /* Needed for ::before pseudo-element */
}

/* Hover state */
.products-button::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgb(163, 160, 160); /* Gray background */
  box-shadow: inset 0 12px 22px rgba(0.4, 0.4, 0.5, 0.4); /* Inner shadow */
z-index: -1;
transform: scaleX(0);
transform-origin: right;
transition: transform 0.4s ease;
}

.products-button:hover::before {
transform: scaleX(1);
transform-origin: left;
}

.products-button:hover {
color: #ffffff; /* White text on hover */
border-color: #333333; /* Gray border on hover */
background-color: transparent;
transform: scale(1.05);
}


/* Responsive Styles */

/* For screens less than 768px (tablet and small screens) */
@media (max-width: 768px) {
.products-button {
padding: 10px 20px; /* Adjust padding */
font-size: 1rem; /* Adjust font size */
width: 40%; /* Button width becomes 80% of container */
margin-top: 90px; /* Reduced margin-top */
}
}

/* For screens less than 480px (mobile) */
@media (max-width: 480px) {
.products-button {
padding: 8px 16px; /* Further reduce padding */
font-size: 0.9rem; /* Smaller font size */
width: 90%; /* Button takes up 90% of the screen width */
margin-top: 120px; /* Reduced margin-top */
}
}
/* From Uiverse.io by gharsh11032000 */ 
/* for sub menu on nav bar */
.menu {
  margin-top: -11px;
  font-family: 'Segoe UI', 'Roboto', 'Montserrat', 'Arial', 'Helvetica Neue', sans-serif;
  font-weight: bolder;
  font-size: 20px;
  line-height: 1;
  color: white;
  width: fit-content;
  display: flex;
  list-style: none;
}

.menu a {
  text-decoration: none;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

.menu .link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 36px;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}

.menu .link::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #007b5e;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}

.menu .link svg {
  width: 14px;
  height: 14px;
  fill: #000000;
  transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}

.menu .item {
  position: relative;
}

.menu .item .submenu {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  top: 100%;
  border-radius: 0 0 16px 16px;
  left: 0;
  width: 100%;
  overflow: hidden;
  border: 1px solid #cccccc;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 1;
  pointer-events: none;
  list-style: none;
  font-size: 18px;
}

.menu .item:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  border-top: transparent;
  border-color: #007b5e;
}

.menu .item:hover .link {
  color: #ffffff;
  border-radius: 16px 16px 0 0;
}

.menu .item:hover .link::after {
  transform: scaleX(1);
  transform-origin: right;
}

.menu .item:hover .link svg {
  fill: #ffffff;
  transform: rotate(-180deg);
}

.submenu .submenu-item  {
  width: 100%;
  transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
  
}

.submenu .submenu-link {
  display: block;
  padding: 12px 24px;
  width: 100%;
  position: relative;
  text-align: center;
  transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}

.submenu .submenu-item:last-child .submenu-link {
  border-bottom: none;
}

.submenu .submenu-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  transform: scaleX(0);
  width: 100%;
  height: 100%;
  background-color: #007b5e;
  z-index: -1;
  transform-origin: left;
  transition: transform 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}

.submenu .submenu-link:hover:before {
  transform: scaleX(1);
  transform-origin: right;
}

.submenu .submenu-link:hover {
  color: #ffffff;
}

