html, body {
    height: 100%; /* Occupy the full height of the viewport */
    margin: 0; /* Remove any default margin */
    display: flex !important;
    flex-direction: column; /* Stack elements vertically */
}


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
.header{
    height: 130px;	
    width: 100%;
    position: relative;
    padding: 40px 20px 20px;
    box-sizing: border-box;
    background-color: #fff; /* Ensure the header background is white */
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1); /* Add subtle shadow */
    z-index: 100; /* Ensure the header stays above other content */
}

.logo-container{
    position: absolute;
    top: 30px;  /* Adjust this to position the logo vertically */
    left: 20px;  /* Position logo to the left */
    transform: translateX(0); /* Ensure it stays aligned */
    width: auto;
    max-width: 20vw; /* Logo resizes based on viewport width (20% of the viewport width) */
    height: auto; /* Maintain aspect ratio */
}


nav{
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: left;

}
nav img{
    width: 300px;

}
.nav-links{
    flex: 1;
    text-align: right;
}
.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;

}

.nav-links ul li a{
    color: rgba(0, 0, 0, 1);
    text-decoration: none;
    font-size: 18px;
}

.nav-links ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background: #90EE90;
    display: block;
    margin: auto;
    transition: 0.5s;
}

.nav-links ul li:hover:after{
    width: 100%;

}



.text-box{
    width: 90%;
    color: black;
    position: absolute;
    height: 250 px; /* Adjust this to keep the text fixed in the center relative to the header */
    left: 50%;
    transform: translate(-50%, -50%);  /* Keep it horizontally and vertically centered */
    text-align: center;
    
}

.text-box h1 {
    font-size: 4vw;
    margin-bottom: 5vh; /* Add vertical spacing relative to the viewport height */
}

.text-box p{
    margin: 10px 0 40px;
    font-size: 1.5vw;
    color: black;
}


.coming_soon-box {
    flex: 1; /* Allow this section to grow and fill available space */
    display: flex; /* Use flexbox to align text */
    flex-direction: column; /* Stack content inside vertically */
    justify-content: center; /* Center content vertically */
    align-items: center; /* Center content horizontally */
    text-align: center;
    width: 90%; /* Keep responsive layout */
    margin: 0 auto; /* Center horizontally */
    color: black;
    
}

.coming_soon-box h1 {
    font-size: 4vw; /* Scales text size based on viewport width */
    margin: 0; /* Remove unnecessary margins */
    padding: 0; /* Remove padding to prevent extra spacing */
}

.hero-btn{
    display: inline-block;
    text-decoration: none;
    color: #777;
    border: 1px solid #777;
    padding: 13px;
    font-size: 2vw; /* Use relative size to viewport width */
    background: transparent;
    position: relative;
    cursor: pointer;
   

}

.hero-btn:hover{
    border: 1px solid #90EE90;
    background: #90EE90;
    transition: 1s;
}






/*------- products -------*/
.products{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}


h1{
    font-size: 36px;
    font-weight: 600;

}

p{
    color: #777;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;

}

.row {
    display: flex;
    justify-content: center; /* Center the buttons */
    gap: 50px; /* Add spacing between the buttons */
    margin-top: 5%;
}

.product-col1,
.product-col2 {
    height: 50vh;
    flex-basis: 31%;
    border-radius: 10px;
    margin-bottom: 5%;
    padding: 0; /* Remove padding to avoid conflicts */
    box-sizing: border-box;
    transition: 0.5s;
}



h3{
    text-align: center;
    font-weight: 600;
    margin: 10px 0;
}




.button-link {
    display: block; /* Make the entire button clickable */
    text-decoration: none; /* Remove underline */
    color: inherit; /* Inherit text color */
    text-align: center;
}



/* Hide French text by default */
.FR {
    display: none;
}

/* Show French text when body has class 'fr' */
body.fr .EN {
    display: none;
}

body.fr .FR {
    display: block;
}




.product-image {
    width: 100%; /* Ensure it takes up full width */
    height: 100%; /* Ensure it fills the container */
    object-fit: cover; /* Crop the image properly */
    border-radius: 10px; /* Maintain rounded corners */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth hover effects */
}

.product-image:hover {
    transform: scale(1.05); /* Slight zoom on hover */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3); /* Add a shadow */
}

.button-link {
    position: relative; /* Make the container relative for text positioning */
    display: block;
    text-decoration: none; /* Remove underline */
    color: white; /* Text color */
    text-align: center;
}

.button-link h3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    z-index: 1;
    font-size: 3vw; /* Responsive font size */
}






/* -------footer----------- */
.footer {
    margin-top: auto; /* Push the footer to the bottom */
    background-color: #f8f8f8; /* Optional: Background color */
    padding: 20px; /* Optional: Padding */
    text-align: center; /* Center-align text */
}

.footer h4 {
    margin: 15px 0; /* Adjust spacing above and below the header */
    font-weight: 600; /* Keep bold font */
    font-size: 1.5rem; /* Keep font size consistent */
}

.fa-linkedin {
    color: #0077B5; /* LinkedIn's default blue color */
    font-size: 1.5rem; /* Ensure the icon is large enough */
    margin-top: 10px; /* Add spacing between elements */
    transition: color 0.3s ease; /* Smooth hover transition */
}

/* Change the color when hovering over the icon */
.fa-linkedin:hover {
    color: black; /* Change color on hover */
}




/* -------Products----------- */


/* Style the dropdown button */
.dropbtn{
    color: white;
    padding: 10px;
    font-size: 26px;
    border: none;
    cursor: pointer;
}

/* Style the dropdown content (hidden by default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: white; 
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

/* Style the links inside the dropdown */
.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

/* Change color on hover */
.dropdown-content a:hover {
    text-decoration: underline;
    color: #90EE90;
    transition: 0.5s;
}

/* Show the dropdown content when the dropdown button is clicked */
.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover #dropdown-arrow {
    transform: rotate(180deg);
    transition: transform 0.3s ease; /* Adjust the transition duration as needed */
}


.prodtxt {
    width: 100%;
    margin: 50px auto;
    text-align: center;
    flex: 1;
}

.text-box_prod{
    width: 100%;
    color: black;
    position: absolute;
    height: 250 px; /* Adjust this to keep the text fixed in the center relative to the header */
    left: 50%;
    transform: translate(-50%, -50%);  /* Keep it horizontally and vertically centered */
    text-align: center;
 
    
    
}

.text-box_prod h1 {
    font-size: 60px;
    
}





/* ----- contact us page --------*/


.contact-us{

    display: flex;
    justify-content: space-around;
    margin: 40px auto;
    max-width: 1000px;
    
}

.contact-container {
    display: flex;
    justify-content: space-between; /* Space out the columns */
    align-items: center; /* Align items vertically */
    width: 100%; /* Optional: Adjust width */
    margin: auto; /* Center the container */
    padding: 20px 0; /* Add spacing around the content */
    gap: 100px;
   
}

.contact-info {
    //flex: 1; /* Make it occupy available space */
    text-align: center; /* Align text to the left */
    font-size: 28px;
}

.contact-info .fa{
    font-size: 28px;
    color: #90EE90;
    margin: 30px;
    margin-right: 30px;
    align-items: center;
}

.contact-info div {
    margin-bottom: 20px; /* Add spacing between address and email */
}

.contact-button {
    flex: 0 0 auto; /* Prevent the button from stretching */
    text-align: center; /* Align button to the right */
    //height: 90px;
    width: 50%;
   
}




.hero-btn_c {
    display: inline-block; /* Ensure the button is inline */
    padding: 10px 20px;
    background-color: #90EE90; /* Button background color */
    color: white;
    text-decoration: none;
    font-size: 16px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.hero-btn_c:hover {
    background-color: #45a049; /* Darker shade on hover */
}



/* ------ensures english is shown by default until french is clicked-------- */
.FR{
    display: none;
}

.lang-btn {
    background-color: transparent;
    border: none;
    cursor: pointer;
    font-size: 18px; /* Match the font size of nav links */
    padding: 8px 12px; /* Match the padding of nav links */
    text-decoration: none;
    color: rgba(0, 0, 0, 1);
    transition: color 0.5s; /* Add transition for color change */
}

.lang-btn:hover {
    color: #90EE90; /* Change text color on hover to match the hover effect of nav links */
}

.lang-btn:focus {
    outline: none; /* Remove the default focus outline */
}





/* Product page layouy */


.product-page {
    width: 80%;
    margin: auto;
    text-align: center;
    flex: 1;
}

/* Value Proposition Section */
.value-prop {
    display: flex;
    justify-content: space-around;
    margin: 20px auto;
    max-width: 800px;
    gap: 80px;
}

.value-box {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 200px; /* Fixed square size */
    height: 200px; /* Fixed square size */
    background-color: #90ee90; /* Light green */
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.value-box img {
    max-width: 100px;
    max-height: 100px;
    margin-bottom: 10px;
}

.value-box p {
    font-size: 20px;
    font-weight: bold;
    color: white;
}

/* Product Description Section */
.product-description {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 800px;
    margin: 40px auto;
    gap: 20px;

    
       
	
   
}


.product-image_des {
    width: 100%; /* Ensure it takes up full width */
    height: 100%; /* Ensure it fills the container */
    object-fit: cover; /* Crop the image properly */
    border-radius: 10px; /* Maintain rounded corners */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth hover effects */
}


.product-image_des img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    //max-height: 350px; /* Fixed height for the image */
    //max-width: 350px;
    border-radius: 5px; /* Add rounded corners */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); /* Add shadow for styling */
    margin-left: 0px;
}

.product-info {
    display: flex;
    flex-direction: column; /* Stack the elements vertically */
    justify-content: space-between; /* Space out title, description, and button */
    height: auto; /* Match the height of the image */
    width: 100%; 
    margin-right: 0px;


}


.product-info h2 {

    font-size: 24px;
    color: #90EE90; /* Green for emphasis */
    margin-bottom: 0px;
}

.product-info p {
    font-size: 18px;
    color: black;
    margin-bottom: 0px;
text-align: justify;

}

.buy-now {
    padding: 10px 20px;
    background-color: #90EE90; /* Green button */
    color: white;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.buy-now:hover {
    background-color: #45a049;
}

































/* ------responsiveness-------- */

/* General styles are applied for both desktop and mobile */

/* Small Screens (max-width: 768px) */
@media (max-width: 768px) {
    
      .dropdown > a.dropbtn > i.fa-caret-down { 
    display: none !important; 
  }

  section.hero {
    margin-top: 60px !important; /* tweak to 88–112px if needed */
  }
    .header {
        height: 100px; /* Fixed header height */
        padding: 0; /* Remove padding to avoid shifts */
        display: flex; /* Enable flexbox */
        justify-content: center; /* Center horizontally */
        align-items: center; /* Center vertically */
        position: relative; /* Ensure content stays within bounds */
    }

    .logo-container {
        position: absolute; /* Allow precise centering */
        top: 50%; /* Vertically center based on the header */
        left: 20%; /* Horizontally center based on the header */
        transform: translate(-50%, -50%); /* Center the logo precisely */
        text-align: center; /* Center-align any text inside the container */
    }

    .logo-container img {
        max-height: 80px; /* Adjust the logo size for smaller screens */
        height: auto; /* Maintain aspect ratio */
        display: block; /* Avoid inline spacing issues */
        margin: 0; /* Reset margins */
    }


.nav-links ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex; /* Enables flexbox for horizontal alignment */
    flex-direction: row; /* Stacks items vertically for mobile */
    align-items: center; /* Centers items horizontally */
    justify-content: center; /* Centers items vertically within container */
    
}

.nav-links ul li {
    margin-top: 160px; /* Space between items */
}

.nav-links ul li a {
    text-decoration: none; /* Removes underline for links */
    font-size: 3.7vw; /* Responsive font size for mobile */
    text-align: center; /* Centers text within the link */
    padding-right: 0px;
    padding-left: 0px;
    
}

.nav-links .lang-btn{
    text-decoration: none; /* Removes underline for links */
    font-size: 3.7vw; /* Responsive font size for mobile */
    text-align: center; /* Centers text within the link */
    padding-right: 0px;
    padding-left: 0px;
    
}

    .text-box {
        width: 100%; /* Ensure full width for proper alignment */
        position: absolute; /* Allows it to flow with the page */
        margin: 0 auto; /* Center-align container horizontally */
        text-align: center; /* Center-align the text */
        margin-top: 300px; /* Adjust spacing from the top 280*/
    }

    .text-box h1 {
        font-size: 6vw; /* Adjust text size for small screens */
        margin: 0; /* Ensure no extra margin causes misalignment */
    }


    .text-box_prod {
        width: 100%; /* Ensure full width for proper alignment */
        position: absolute; /* Allows it to flow with the page */
        margin: 0 auto; /* Center-align container horizontally */
        text-align: center; /* Center-align the text */
        margin-top: 60px; /* Adjust spacing from the top 280*/
    }

    .text-box_prod h1 {
        font-size: 6vw; /* Adjust text size for small screens */
        margin: 0; /* Ensure no extra margin causes misalignment */
    }



    .button-link h3 {
        font-size: 10vw; /* Increase font size for readability */
        text-align: center; /* Center-align text inside the button */
        margin: 10px 0; /* Optional: Adjust spacing around the text */
    }

    .products .row {
        flex-direction: column; /* Stack products vertically */
    }

    .coming_soon-box {
       margin-top: 100px;

    }

    .contact-col div{

      margin-top: 70px;
    }

    .contact-col div .fa{

      margin: 30px;
      margin-right: 30px;
    }


.contact-container {
        flex-direction: column; /* Stack the boxes vertically */
        align-items: center; /* Center-align the boxes */
   
}





    .value-prop {
        display: flex; /* Retain flexbox for alignment */
        flex-direction: column; /* Stack the boxes vertically */
        align-items: center; /* Center-align the boxes */
        gap: 2px; /* Add space between the boxes */
    }

    .value-box {
        width: 200px; /* Fixed width for square shape */
        height: 200px; /* Fixed height to match width */
        margin-top: 40px;
        
    }


.value-box img {
    width: 60%;
    height: 60%;
    margin-bottom: 10px;
margin-top: 10px;
}

    .product-description {
        flex-direction: column; /* Stack image and description vertically */
        align-items: center; /* Center-align content */
        gap: 20px; /* Add space between sections */
        height: auto; /* Allow height to adjust dynamically */
    }

    .product-image_des img {
        width: 100%; /* Adjust the width for smaller screens */
        max-width: 300px; /* Limit the maximum size */
        height: auto; /* Maintain aspect ratio */
        
        margin-left: auto ;
	
	
    }

    .product-info {
        text-align: center; /* Center-align text for better readability */
        width: 100%; /* Ensure the text takes up full width */
	margin-left: auto ;
    }


.product-info p {

text-align: justify;
}


    .buy-now {
        width: auto; /* Make the button adaptive to its content */
        margin-top: 10px; /* Add spacing above the button */
margin: auto auto ;
    }





}

/* Large Screens (min-width: 769px) */
@media (min-width: 769px) {
    .text-box {
        position: relative;
        margin-top: 110px;
    }

    .hero-btn {
        font-size: 2vw;
    }

    .products .row {
        display: flex; /* Keep buttons side by side */
        flex-wrap: wrap; /* Allow wrapping if needed */
        justify-content: center; /* Center the buttons */
        gap: 20px; /* Add space between buttons */
    }

    .product-col1, .product-col2 {
        flex: 0 0 45%; /* Each button takes 45% of the row */
        max-width: 30%; /* Limit width to 45% */
        text-align: center; /* Center-align content */
    }

    .product-image {
        width: 100%; /* Make the images responsive */
        height: auto; /* Maintain aspect ratio */
    }
}













/* ===== Hero + Intro (added) ===== */
:root { --hero-overlay: rgba(0,0,0,.45); --brand:#198f76; }
.hero {
  position: relative;
  min-height: 72vh;
  background: #111 url('../img/hero-warehouse.jpg') center/cover no-repeat;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.35), var(--hero-overlay));
}
.hero .hero-inner {
  position: relative;
  max-width: 1100px;
  padding: 56px 20px;
}
.hero h1 {
  font-size: clamp(32px, 6vw, 56px);
  line-height: 1.05;
  margin: 0 0 14px;
  font-weight: 700;
}
.hero p.lead {
  font-size: clamp(24px, 2.2vw, 22px);
  opacity: 1;
  color: #fff;
  margin: 0 auto 28px;
  max-width: 800px;
}
.btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 10px;
  background: var(--brand);
  background-color: #90EE90;
  color: #000;
  text-decoration: none;
  font-weight: 600;
}
.btn:hover { filter: brightness(1.05); }

.section-intro {
  padding: 48px 20px;
}
.section-intro .container {
  max-width: 1100px;
  margin: 0 auto;
}
.section-intro h2 {
  font-size: clamp(24px, 3.5vw, 34px);
  color: #90EE90;
  margin: 0 0 12px;
}
.section-intro p {
  font-size: 18px;
  line-height: 1.6;
  color: #222;
  margin: 0 0 10px;
}
