/* General Styling */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f2f2f2;
    color: #333;
    overflow-x: hidden;
    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 */
}
/* 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;
  }


                /* whatsapp icom */
  .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: 40px;
    height: 40px;
    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;

    }
  }
.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: 60px;
}

.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;
}


/* Contact Us Section */
.contact-us {
    background-color: #007b5e;
    color: #fff;
    padding: 40px 20px;
    margin: 20px auto;
    border-radius: 8px;
    max-width: 100%;
    text-align: center;
    margin-bottom: 0;
}

.contact-us h2 {
    margin-bottom: 15px;
}

.contact-us p {
    font-size: large;
    margin-bottom: 15px;
    line-height: 1.6;
}

/* Footer Section */
footer {
    text-align: center;
    padding: 20px;
    background-color: #fff;
    color: #777;
    border-top: 1px solid #e0e0e0;
    width: 100%;
}

footer p {
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    header {
        padding: 10px;
    }
    .logo {
        height: 40px;
    }
    nav ul li {
        margin: 0 10px;
    }
    nav ul li a {
        padding: 8px 12px;
    }
   
    .contact-us {
        width: 95%;
    }
   
}

@media (max-width: 992px) {    
    .contact-us {
        width: 95%;
    }
}

@media (max-width: 768px) {
    nav {
        display: none; /* Hide the normal nav */
    }

    .menu-toggle {
        display: block; /* Show the menu toggle */
    }

    .sidebar {
        width: 250px;
    }
    .contact-us {
        width: 98%;
    }
}

@media (max-width: 576px) {
    .sidebar {
        width: 200px; /* Reduce sidebar width on smaller screens */
    }
    .contact-us h2 {
        font-size: 1.5rem;
    }

}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}
/* Keyframe Animation */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.icon {
    width:40px; /* Set a width for the icons */
    height: auto; /* Maintain aspect ratio */
    margin-right: 10px; /* Space between icon and text */
    vertical-align: middle; /* Align icon vertically with text */
}
/* footer */
.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 */
    }
  }
  /* /*----------------------------------------------------------------===================================================================== */


  /* Cover Section */
/* Cover Section */
.cover-section {
  background-image: url('https://img.freepik.com/free-photo/waibaidu-bridge-shanghai_1359-30.jpg?t=st=1738753260~exp=1738756860~hmac=3617723b0c0f937977a74961f05bf7dd77567b671668dc5ef439328e05cc6f64&w=996'); 
  position: relative;
  height: 100vh;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  animation: fadeInBackground 2s ease-out forwards; /* Add animation for background */
  padding: 20px;
  box-sizing: border-box;
  opacity: 0; /* Ensure the section is hidden initially */
  animation-delay: 0.5s; /* Slight delay before showing */
}

/* Fade-in animation for background */
@keyframes fadeInBackground {
  0% {
    opacity: 0;
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive Cover Text */
.cover-text h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  text-shadow: 13px 13px 8px rgba(0, 0, 0, 0.87);
  font-weight: bold;
  animation: fadeInText 2s ease-out forwards; /* Fade-in text with duration */
}

.cover-text p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0; /* Hidden initially */
  animation: fadeInText 2s ease-out 0.5s forwards; /* Fade-in animation for paragraph */
  text-shadow: 19px 15px 28px rgb(0, 0, 0);
  line-height: 1.5;
  font-weight: 500;
}

/* Fade-in animation for text */
@keyframes fadeInText {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design for Cover Section */
@media (max-width: 768px) {
  .cover-text h1 {
    font-size: 2.5rem; /* Adjust font size for smaller screens */
  }
  .cover-text p {
    font-size: 1rem; /* Adjust paragraph font size */
    max-width: 90%;
  }
}


/* Responsive Cover Section */
@media (max-width: 1024px) {
  .cover-text h1 {
      font-size: 2.5rem;
  }
  .cover-text p {
      font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .cover-section {
      min-height: 80vh;
  }
  .cover-text h1 {
      font-size: 2rem;
  }
  .cover-text p {
      font-size: 1rem;
  }
}
#products h1{
  font-size:xx-large;
  color: #007b5e;
}
/* Product Section */
.product-section {
  padding: 50px 20px;
  text-align: center;
  background: #f9f9f9;
}

/* Product Cards Grid */
.product-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Dynamic columns */
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Product Card Styling */
.product-card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Image Styling */
.product-card img {
 width: 250px;
  border-radius: 10px;
  margin-bottom: 15px;
  height: 200px;
  object-fit: cover;
  margin-top: -10px;
}

/* Stylish Heading */
.product-card h3 {
  font-size: 1.6rem;
  color:#007b5e  ;
  margin: 10px 0;
  position: relative;
  display: inline-block;
}

/* Line Decorations */
.product-card h3::before,
.product-card h3::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40px;
  height: 2px;
  background: #ff7b00;
}

.product-card h3::before {
  left: -50px;
}

.product-card h3::after {
  right: -50px;
}

/* Product Description */
.product-card p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 15px;
  padding: 0 10px;
  line-height: 1.5;
}

/* Button Styling */
.learn-more-btn {
  display: inline-block;
  background-color: #ff7b00;
  color: #fff;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin-top: 10px;
}

.learn-more-btn:hover {
  background-color: #e66a00;
  transform: scale(1.05);
}

/* Improved Responsive Design */
@media (max-width: 1024px) {
  .product-cards {
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .product-cards {
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .product-card {
      padding: 18px;
  }
}

@media (max-width: 480px) {
  .product-cards {
      grid-template-columns: 1fr;
  }
  .product-card h3::before,
  .product-card h3::after {
      width: 30px;
  }
}

/* quality======================== */
/* Quality Assurance */
/* Quality Commitment Section */
.quality-section {
  background: #007b5e;
  color: #fff;
  padding: 4rem 10%;
  text-align: center;
}

.quality-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
}

/* Left Side - Text */
.quality-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: bold;
  color: #007b5e ;
}
.quality-section {
  background: #1b1b1b;
  color: #fff;
}
.quality-list li::before {
  color: #ffd700; /* Golden checkmarks */
}

.quality-text p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.quality-list {
  list-style: none;
  padding: 0;
  text-align: left;
}

.quality-list li {
  font-size: 1.2rem;
  padding: 0.8rem 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.quality-list li::before {
  content: "✔";
  color: #ffd700;
  font-size: 1.5rem;
}

/* Right Side - Badges */
.certification-badges {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.certification-badges img {
  width: 120px;
  height: auto;
  transition: transform 0.3s ease;
}

.certification-badges img:hover {
  transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .quality-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .quality-list {
    text-align: center;
  }

  .certification-badges {
    justify-content: center;
    flex-wrap: wrap;
  }
}

.certification-badges {
  flex: 1 1 30%;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.certification-badges img {
  max-width: 150px;
  height: auto;
}

/* Sustainability */
.sustainability-section {
  padding: 4rem 2rem;
  background: #f8f9fa;
}
.sustainability-section h2{
  text-align: center;
  color: #007b5e;
}
.sustainability-section h3{
  color: #007b5e;
}
.eco-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 2rem auto;
}

.eco-card {
  padding: 2rem;
  background: #fff;
  border-radius: 10px;
  text-align: center;
}

.eco-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

/* Global Reach */
/* Global Reach Section */
.global-section {
  background: #1b1b1b;
  color: #fff;
  padding: 4rem 10%;
  text-align: center;
  width: 100%;
  height: auto;
}

.global-section h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #007b5e;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 2rem;
}

/* Stats Container */
.distribution-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

/* Stat Cards */
.stat-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  width: 30%;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease-in-out;
  
}

.stat-card:hover {
  transform: scale(1.05);
 
}

.stat-card h3 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #ffd700;
}

.stat-card p {
  font-size: 1.2rem;
  margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .distribution-stats {
    flex-direction: column;
    align-items: center;
  }
  .stat-card{
    width: 80%;
  }
}


/* Responsive Design */
@media (max-width: 768px) {
  .distribution-stats {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .quality-content {
      flex-direction: column;
      text-align: center;
  }
  
  .distribution-stats {
      position: relative;
      transform: none;
      left: auto;
      top: auto;
      margin-top: 2rem;
  }
}
