/* General styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #fff;
  }
  
 /* Header and Navigation */
.navbar {
    background-color: #407A2F52; /* Transparent navbar */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 15px; /* Reduced padding to bring the logo and nav items closer */
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    margin-left: 150px; /* Added margin to control spacing between logo and nav items */
}
/* Logo */
.logo img {
    height: 50px; /* Adjust height to fit design */
    width: auto; /* Maintain aspect ratio */
    display: block; /* Ensures proper alignment */
  }
 /* Navbar Nav Items for Larger Devices */
.nav-items {
  display: flex;
  list-style: none;
  gap: 30px;
  margin-right: 150px;
}

.nav-items li {
  margin: 0 15px;
}

.nav-items li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

.nav-items li a:hover {
  color:  #407A2F;; /* Highlight color */
}

/* Side Panel for Smaller Devices */
.side-panel {
  position: fixed;
  top: 0;
  right: -100%; /* Initially hidden */
  width: 250px;
  height: 100vh;
  background: #fff;
  box-shadow: -4px 0 8px rgba(0, 0, 0, 0.1);
  transition: right 0.3s ease-in-out;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.side-panel.active {
  right: 0; /* Show when active */
}

.side-nav-items {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.side-nav-items li {
  margin-bottom: 20px;
}

.side-nav-items li a {
  color: #333; /* Black text for side panel */
  text-decoration: none;
  font-size: 1.2rem;
}

.side-nav-items li a:hover {
  color: #00AEEF; /* Highlight color */
}

/* Menu Icon for Smaller Devices */
.menu-icon {
  display: block;
  font-size: 1.5rem;
  color: #fff;
  cursor: pointer;
}

/* Hide the navbar nav items on smaller devices */
@media (max-width: 768px) {
  .nav-items {
    display: none;
  }

  .menu-icon {
    display: block;
  }
}


  
  .menu-icon {
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
  }
  
  /* Landing Page */
  .landing-page {
    height: 100vh;
    background-image: url("../img/background2.png"); /* Replace with actual image path */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  .landing-box {
    background-color: #407A2F52; /* Transparent box with a green tint */
    color: #fff;
    padding: 40px 60px; /* Maintain padding for content inside */
    border-radius: 10px;
    text-align: center;
    width: calc(100% - 80px); /* Dynamically calculate width, accounting for padding */
    max-width: 1200px; /* Limit the maximum width for larger screens */
    margin: 0 auto; /* Center horizontally */
    font-size: 96px;
}
/* Landing Description */
.landing-description {
    padding: 20px 40px;
    text-align: center;
    max-width: 900px;
    margin: 20px auto; /* Adds spacing and centers the text */
    color: #555;
    font-size: 1.2rem;
    line-height: 1.8;
  }
  
  .landing-description p {
    margin: 0;
  }
  
.landing-box h1 {
    font-size: 3rem; /* Adjust text size for emphasis */
    font-weight: bold;
    margin-bottom: 20px;
    text-align: left;
    margin-left: 80px;
}

.landing-box h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: left;
    margin-left: 80px;
}

.landing-box p {
    font-size: 1.2rem;
    line-height: 1.8;
    text-align: left;
    margin-left: 80px;
    
}

/* About Section */
.about-section {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Ensure even spacing */
    padding: 40px 20px;
    gap: 20px;
    width: calc(100% - 40px); /* Full width minus padding */
    max-width: 1200px;
    margin: 40px auto; /* Center horizontally */
    margin-top: 100px;
}

.leaf-image.large {
    width: 300px;
    height: 600px;
}

.about-content {
    max-width: 600px; /* Increase to balance expanded layout */
    text-align: left;
}

.leaf-image-container {
    display: flex;
    gap: 20px;
}

.leaf-image {
    background-image: url("../img/short2.png");
    background-size: cover;
    background-position: center;
}

.leaf-image.small {
  width: 300px;
  height: 300px;
  margin-top: 130px;
  background-image: url("../img/short2.png"); /* Small image */
  background-size: cover;
  background-position: center;
}

.leaf-image.large {
  width: 300px;
  height: 600px;
  background-image: url("../img/long2.png"); /* Large image */
  background-size: cover;
  background-position: center;
}

.about-content h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #34495e;
    margin-left: 50px;
}

.about-content p {
    font-size: 1.1rem;
    color: #555;
    margin-left: 50px;
}

  /* Responsive Design */
  @media (max-width: 768px) {
   
    .about-section {
      flex-direction: column;
    }
  
    .leaf-image-container {
      flex-direction: column;
      align-items: center;
    }
  
    .leaf-image.small,
    .leaf-image.large {
      width: 200px;
      height: 200px;
    }
  
    .leaf-image.large {
      height: 400px;
    }
  
  
  

  }
  
  /* Mission and Vision Section */
.mission-vision-section {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: flex-start;
    padding: 40px 20px;
    margin-top: 100px;
  }
  
  .card {
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 45%; /* Cards take 45% width each */
    max-width: 580px;
    height: 300px;
  }
  
  .card-header {
    background-image: url("../img/mission.png"); /* Replace with your header image path */
    background-size: cover;
    background-position: center;
    padding: 20px;
    text-align: center;
    color: #fff;
  }
  
  .card-header h2 {
    font-size: 1.5rem;
    margin: 0;
  }
  
  .card-body {
    padding: 20px;
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    text-align: justify;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .mission-vision-section {
      flex-direction: column;
      align-items: center;
      gap: 30px;
    }
  
    .card {
      width: 90%; /* Full width for smaller screens */
    }
  
    .card-header h2 {
      font-size: 1.3rem;
    }
  
    .card-body {
      font-size: 0.9rem;
    }
    @media (max-width: 768px) {
        .values-container {
          flex-direction: column; /* Stack items vertically */
          gap: 20px; /* Add space between stacked items */
        }
      
        .value-card {
          width: 100%; /* Full width for mobile devices */
          height: auto; /* Adjust height dynamically */
          background-size: cover; /* Ensure the image covers the card */
          background-position: center; /* Center the image */
        }
      
        .value-card.large {
          height: 300px; /* Adjust the height for the larger image */
        }
      
        .value-card.small {
          height: 250px; /* Adjust height for smaller images */
        }
      
        .right-column {
          flex-direction: column; /* Stack the small images vertically */
          gap: 20px; /* Space between stacked cards */
        }
      
        .value-content {
          position: absolute;
          top: 50%; /* Center text vertically */
          left: 50%; /* Center text horizontally */
          transform: translate(-50%, -50%); /* Adjust for perfect centering */
          text-align: center; /* Center-align text */
        }
      
        .value-content h3 {
          font-size: 1.8rem; /* Smaller size for headings */
        }
      
        .value-content p {
          font-size: 1.2rem; /* Adjust size for better readability */
          margin: 0;
        }
      }
      
  }
  
  /* Values Section */
.values-section {
    text-align: center;
    padding: 40px 20px;
    margin-top: 100px;
  }
  
  .values-section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #333;
  }
  
  .values-container {
    display: flex;
    
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .value-card {
    position: relative;
    background-size: cover;
    background-position: center;

    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .value-card.large {
    flex: 2; /* Larger image on the left */
    height: 500px;
  }
  
  .value-card.small {
    flex: 1; /* Smaller stacked images on the right */
    height: 240px;
  }
  
  .right-column {
    display: flex;
    flex-direction: column;
    flex: 1;
  }
  
  .value-content {
    position: absolute;
    top: 20px; /* Move content upward */
    left: 20px; /* Align the content to the left */
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
    text-align: left; /* Ensure left alignment */
  }
  
  .value-content h3 {
    font-size: 60px; /* Increased font size */
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .value-content p {
    font-size: 60px; /* Increased font size for better balance with h3 */
    margin: 5px 0 0;
    line-height: 1.2; /* Adjust line height for better spacing */
  }
  
 
  
  /* Products Section */
.products-section {
    text-align: center;
    padding: 40px 20px;
    margin-top: 100px;
  }
  
  .products-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
  }
  
  .products-description {
    max-width: 1200px;
    margin: 0 auto 40px;
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
  }
  
  .products-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Ensures responsiveness */
    max-width: 1200px;
    margin-left: 135px;
  }
  
  .product-card {
    position: relative;
    background-size: cover;
    background-position: center;
    flex: 1;
    overflow: hidden;
    height: 300px; /* Default height for small cards */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .product-card.large {
    height: 450px; /* Larger middle card */
    margin-top: 40px; /* Move it down slightly */
    margin-bottom: 60px; /* Extend below the two small cards */
  }
  
  
  .product-card.small {
    height: 300px; /* Smaller cards */
    margin-top: 120px;
  }
  
  .product-content {
    position: absolute;
    top: 20%; /* Move to the middle of the card */
    left: 50%; /* Center horizontally */
    transform: translate(-50%, -60%); /* Adjust to move slightly upward */
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
    text-align: center; /* Center the text */
  }
  
  .product-content h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0;
  }
  
  .products-cta {
    margin-top: 40px;
  }
  
  .products-cta p {
    margin-bottom: 10px;
    font-size: 1rem;
    color: #555;
  }
  
  .cta-button {
    background-color: #225925;
    color: #fff;
    padding: 25px 40px; /* Increased padding for larger button size */
    font-size: 1rem; /* Increased font size */
    border: none;
    cursor: pointer;
  }
  
  .cta-button:hover {
    background-color: #335b24;
  }
  
  

  /* Bespoke Section */
.bespoke-section {
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    margin-top: 100px;
  }
  
  .bespoke-container {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 1200px;
    width: 100%;
  }
  
  .bespoke-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    height: 400px; /* Fixed height for the image */
    margin-right: 60px;
  }
  
  .bespoke-content {
    flex: 1;
    text-align: left;
  }
  
  .bespoke-content h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
  }
  
  .bespoke-content p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
  }
  
  .cta-button {
    background-color: #225925;
    color: #fff;
    padding: 15px 30px;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    text-align: center;
  }
  
  .cta-button:hover {
    background-color: #335b24;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .bespoke-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .bespoke-image {
      width: 100%;
      height: 300px;
    }
  
    .bespoke-content {
      text-align: center;
    }
  }
  
  /* Partners Section */
.partners-section {
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    margin-top: 100px;
  }
  
  .partners-container {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 1200px;
    width: 100%;
  }
  
  .partners-content {
    flex: 1;
    text-align: left;
  }
  
  .partners-content h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
  }
  
  .partners-content p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
  }
  
  .cta-button {
    background-color: #225925;
    color: #fff;
    padding: 15px 30px;
    font-size: 1.2rem;
    border: none;
    cursor: pointer;
    text-align: center;
  }
  
  .cta-button:hover {
    background-color: #335b24;
  }
  
  .partners-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    height: 400px; /* Fixed height for the image */
  }
  
 

  /* Team Section */
  .team-section {
    padding: 40px 20px;
    background-color: #f4f8f3; /* Light green background */
    text-align: center;
    margin-top: 100px;
  }
  
  .team-section h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #333;
  }
  
  .team-container {
    display: flex;
    justify-content: center;
    gap: 160px;
    flex-wrap: wrap; /* Ensures responsiveness */
    max-width: 1200px; /* Matches the rest of the page */
    margin: 0 auto; /* Center content horizontally */
    padding: 0 20px; /* Add padding to align with the logo and nav */
  }
  
  .team-member {
    text-align: center;
    flex: 1;
    max-width: 300px;
  }
  
  .team-image {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    margin-bottom: 20px;
  }
  
  .team-member h3 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
  }
  
  .team-member p {
    font-size: 1rem;
    color: #555;
    margin: 0;
  }


  /* Contact Section */
.contact-section {
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    background-color: #f9f9f9;
    margin-top: 100px;
  }
  
  .contact-container {
    display: flex;
    align-items: center;
    gap: 100px;
    max-width: 1200px;
    width: 100%;
  }
  
  .contact-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    height: 400px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .contact-details {
    flex: 1;
    text-align: left;
    color: #333;
  }
  
  .contact-details h2 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  
  .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1rem;
  }
  
  .contact-item i {
    font-size: 1.5rem;
    color: #407A2F;
  }
  
  .contact-item span,
  .contact-item address {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .contact-container {
      flex-direction: column;
      text-align: center;
    }
  
    .contact-image {
      width: 100%;
      height: 300px;
    }
  
    .contact-details {
      text-align: center;
    }
  
    .contact-item {
      justify-content: center;
    }
  
    .contact-item i {
      font-size: 1.2rem;
    }
  
    .contact-item span,
    .contact-item address {
      font-size: 0.9rem;
    }
  }
  

  /* Footer Section */
.site-footer {
    background-color: #34495E; /* Dark blue-grey */
    color: #fff;
    padding: 40px 20px;
    text-align: center;
    margin-top: 100px;
  }
  
  .footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .footer-about,
  .footer-links,
  .footer-contact {
    flex: 1;
    min-width: 250px;
  }
  
  .footer-about h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #00AEEF; /* Light blue for the title */
  }
  
  .footer-about p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #ddd;
  }
  
  .footer-links h4,
  .footer-contact h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #fff;
  }
  
  .footer-links ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-links li {
    margin-bottom: 5px;
  }
  
  .footer-links a {
    color: #ddd;
    text-decoration: none;
    font-size: 0.9rem;
  }
  
  .footer-links a:hover {
    color: #00AEEF; /* Highlight color */
  }
  
  .footer-contact p {
    margin: 5px 0;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .footer-bottom {
    margin-top: 20px;
    font-size: 0.8rem;
    color: #ddd;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .footer-about,
    .footer-links,
    .footer-contact {
      flex: unset;
    }
  }

  /* Simple Footer */
.simple-footer {
    background-color: #225925; /* Dark blue-grey */
    color: #fff;
    padding: 20px;
    text-align: center;
    font-size: 0.9rem;
  }
  
  .simple-footer a {
    color: white; /* Light blue */
    text-decoration: none;
  }
  
  .simple-footer a:hover {
    text-decoration: underline;
  }
  

  /* General responsiveness for smaller screens */
@media (max-width: 768px) {
    /* Navbar responsiveness */
    .logo {
      margin-left: 20px; /* Adjust logo position for smaller screens */
    }
  
    .nav-items {
      display: none; /* Hide nav items */
    }
  
    .menu-icon {
      display: block; /* Show menu icon for smaller screens */
    }
  
    /* Landing page box responsiveness */
    .landing-page {
      height: auto; /* Allow content to dictate height */
      padding: 20px; /* Add spacing */
    }
  
    .landing-box {
      padding: 20px; /* Reduce padding */
      width: 90%; /* Reduce box width */
      margin-top: 80px;
    }
  
    .landing-box h1 {
      font-size: 2rem; /* Smaller font size */
      margin-left: 10px; /* Align with smaller screens */
    }
  
    .landing-box h2,
    .landing-box p {
      font-size: 1rem; /* Adjust font sizes */
      margin-left: 10px; /* Align text properly */
    }
  
    /* About section responsiveness */
   /* About Section */
   .about-section {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin-top: -100px;
    width: 370px; /* Adapt width */
   max-width: 800px;
}
  
    .leaf-image.large {
      height: 200px; /* Reduce height */
      width: 340px; /* Adapt width */
      max-width: 1200px;
      align-items: left;
      
    }

    .leaf-image.small{
        height: 200px; /* Reduce height */
        width: 340px; /* Adapt width */
        max-width: 1200px;
        align-items: left;

    }
  
    .about-content {
      max-width: 800px; /* Expand text width */
      text-align: left; /* Center-align text */
    }
  
    .about-content h1,
    .about-content p {
      margin-left: 0; /* Reset left margin */
    }
  
    /* Mission and Vision section responsiveness */
    .mission-vision-section {
      flex-direction: column; /* Stack cards vertically */
      gap: 20px; /* Add spacing */
      margin-top: -20px;
    }
  
    .card {
      width: 90%; /* Reduce card width */
    }
  
    .card-body {
      text-align: center; /* Center-align text */
    }
  
    
  
   
  
    /* Bespoke section responsiveness */
    .bespoke-container {
      flex-direction: column; /* Stack content vertically */
      margin-left: 20px;
      
    }
  
    .bespoke-image {
      width: 100%; /* Adjust image width */
      height: 250px; /* Reduce height */
    }
  
    .bespoke-content {
      text-align: left;
    }
  
    /* Partners section responsiveness */
    .partners-container {
      flex-direction: column-reverse; /* Stack content vertically */
      text-align: left;
      margin-left: 20px;
    }
  
    .partners-image {
      width: 100%; /* Adjust image width */
      height: 250px; /* Reduce height */
    }
  
    /* Team section responsiveness */
    .team-container {
      flex-direction: column; /* Stack team members */
      text-align: left;
    }
  
    .team-image {
      height: 200px; /* Reduce image size */
    }
  
    .team-member {
      max-width: 100%; /* Expand container width */
      margin-top: 20px;
      margin-bottom: -60px;
    }
  
    /* Contact section responsiveness */
    .contact-container {
      flex-direction: column; /* Stack content vertically */
      text-align: center;
    }
  
    .contact-image {
      width: 100%; /* Adjust image width */
      height: 250px; /* Reduce height */
    }
  
    .contact-details {
      text-align: center;
    }
    .landing-description {
        
        text-align: left;
        
      }
  
    /* Footer responsiveness */
    .footer-container {
      flex-direction: column; /* Stack footer items */
      text-align: center;
    }
  
    .footer-about,
    .footer-links,
    .footer-contact {
      max-width: 100%; /* Expand to full width */
    }
  }
  

/* General Styles */
header {
    position: relative;
    z-index: 1000;
  }
  
  .menu-icon {
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1100;
  }
  
  .side-menu {
    position: fixed;
    top: 0;
    right: -100%; /* Initially hidden to the right */
    height: 100%;
    width: 300px;
    background-color: #335b24; /* Sidebar background color */
    color: black;
    box-shadow: -4px 0 8px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
    transition: right 0.3s ease-in-out; /* Smooth slide effect */
    z-index: 1000;
  }
  
  .side-menu.open {
    right: 0; /* Slide in from the right */
    color: black;
  }
  
  .menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background-color: #335b24;;
  }
  
  .menu-logo {
    height: 40px;
    width: auto;
  }
  
  .close-menu {
    font-size: 1.5rem;
    cursor: pointer;
    display: none; /* Hidden by default */
  }
  
  .side-menu.open .close-menu {
    display: block; /* Show when menu is open */
  }
  
  .menu-items {
    list-style: none;
    padding: 0;
    margin: 20px 0;
  }
  
  .menu-items li {
    padding: 15px 20px;
  }
  
  .menu-items li a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  
  .menu-items li a:hover {
    background-color: #335b24;
    border-radius: 4px;
  }
  
  /* Overlay Styling */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay */
  z-index: 999; /* Below the sidebar */
  display: none; /* Hidden by default */
}

.overlay.active {
  display: block; /* Show overlay when active */
}
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .menu-items li a {
      font-size: 0.9rem;
      
    }
    .nav-items .nav-link{
      color: black;
    }
  }
  

  /* Mobile and Tablet Responsiveness */
@media (max-width: 768px) {
  /* Stack cards vertically on small screens */
  .products-container {
    flex-direction: column;
    gap: 20px;
    align-items: center; /* Center-align cards */
  }

  /* Large card adjustments */
  .product-card.large {
    width: 90%; /* Full width on mobile */
    height: 350px; /* Adjust height for smaller screens */
    margin: 0; /* Remove extra margins */
  }

  /* Small card adjustments */
  .product-card.small {
    width: 90%; /* Full width on mobile */
    height: 250px; /* Adjust height for smaller screens */
    margin: 0; /* Remove margins */
  }

  /* Content inside cards */
  .product-content {
    bottom: 10px; /* Reduce bottom spacing */
    left: 10px; /* Adjust left alignment */
    right: 10px; /* Ensure proper padding */
    text-align: left; /* Keep text left-aligned */
  }

  /* Text size adjustments */
  .product-content h3 {
    font-size: 1.2rem; /* Smaller header size */
  }

  .product-content p {
    font-size: 1rem; /* Adjust paragraph size */
    line-height: 1.4;
  }
}

.menu-icon, .close-menu {
  cursor: pointer;
  font-size: 1.5rem;
  color: white; /* White color for menu icon */
}

.close-menu {
  font-size: 2rem;
  position: absolute;
  top: 20px;
  right: 20px;
  color: black; /* Black color for close icon */
  z-index: 1100;
}

