*{
margin: 0;
padding: 0;
box-sizing: border-box;
}

body{
    max-width: 1100px;
    margin: 0px auto;
    font-family: sans-serif;
    line-height: 1.5;
    background-color: #111;
    color:#fff
   
}

html{
 font-size: 1rem;
scroll-behavior: smooth;
}

nav {
    position: sticky;
    top: 0;

}

.nav-container{
    max-width: 900px;
    display: flex;
    flex-direction: row;
    justify-items: center;
    align-items: center;
    justify-content: space-between;
    padding: 8px;
    margin: 0 auto;
    border-radius: 32px;
   background-color: rgba(0, 0, 0, 1.9);
   
    
}

.nav-container img{
    width: 150px;
    height: auto;
}

.navlinks{
    display: flex;
    gap: 50px;
    margin: 0  auto;
}

.navlinks a{
    text-decoration: none;
    color: #fff;
    font-family: Arial;
    transition: 0.3s all ease-in-out;
    
}

.navlinks a:hover{
    color: #08e77f;
}


/* Hamburger Styling */
.hamburger {
    display: none; /* Hidden on desktop */
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
}




/* hero section */

.hero-container{
    max-width: 100%;
    display: flex;
    padding: 10px;
    justify-content: space-between;
    align-items: center;
    background-color: #979696;
    margin: 0 auto;
}

.heading{
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-left: 50px;
    color: #000;
}


header{
    position: sticky;
    top: 0px;
    z-index: 999;
}

/* Hero section */


h1{
    font-size: 3rem;
    font-family: arial;
    line-height: 1.2;
    text-align: center;
    text-shadow: #111;
    
}
.hero {
  position: relative;
  width: 100%;
  height: 100vh; /* Full screen height */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; /* Keeps the video from leaking out */
  color: white;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* The secret sauce */
  z-index: -1; /* Puts video behind content */
}

.hero-content {
    width: 100%;
  text-align: center;
  z-index: 1;
  background: rgba(0, 0, 0, 0.6); /* Optional: Darkens video for text readability */
  padding: 2rem;
  border-radius: 10px;
}

.hero-content p{
    margin-top: 10px;
    font-style: italic;
    font-size: 1.6rem;
    text-align: center;
    color: #08e77f;
    
}

.hero-content a, .natural-context a{
    text-decoration: none;
    background-color: rgb(18, 80, 66);
    padding: 12px 24px;
    border-radius: 12px;
    color: #fff;
    transition: 0.3s ease-out;

}

.hero-content a:hover, .featured-container a:hover, .natural-context a:hover{
    background-color: #89f3c1;
    color:  rgb(18, 80, 66);
}

.heading img{
    width: 180px;
    height: auto;
}


/* main */

/* service supports */

.service-support{
    padding: 8px;
    max-width: 1000px;
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
    display: flex;
    justify-content: space-between;
    
}

.supports li::marker{
    content: 'O';
     color: #08e77f;
    font-size: 1.4rem;
    font-weight: bold;

}

/* Featured Products */

.featured-container{
    max-width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    padding: 0 auto;
    margin-top: 50px;
    transition: 0.5s ease-out;
    font-family: 'Arial';
    font-size: 1rem;
    justify-content: space-between;
    line-height: 1;
    margin-bottom: 60px;
    text-align: center;
    padding: 8px;
    
    
}

.featured1, .featured2, .featured3, .featured4{
    background-color: rgba(248, 244, 244, 0.1);
    width: 250px;
    height: 430px;
    border-radius: 16px;

}

.featured1 img, .featured2 img, .featured3 img, .featured4 img{
    width: 220px;
    height: auto;
}

.featured-container a{
    text-decoration: none;
    background-color: rgb(18, 80, 66);
    color: #fff;
    padding: 4px 8px;
    border-radius: 6px;
    font-family: sans-serif;
    font-size: 0.8rem;
    transition: 0.3s ease-in-out;
}

/* why velora */

.why-velora-container{
    display: flex;
    flex-direction: row;
    margin: 60px auto;
    padding: 8px;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.why-velora-container span{
    color: #08e77f;
}
.why-velora img{
    width: 300px;
    height: auto;

}

h2{
    font-size: 2.5rem;
}

h3, h4{
    font-size: 1.5rem;
    
}

/* Natural */

.natural-container{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 50px;
    margin-bottom: 60px;
}

.natural-image img{
    width: 400px;
    height: auto;
}

.natural-context{
    text-align: center;
}


/* ABout  */


h2{
background-color: #08e77f;
color: #111;
text-align: center;
font-size: 2.5rem;
margin-top: 60px;
margin-bottom: 20px;
}

.about-container{
    max-width: 950px;
    margin: 0 auto;
    display: flex;
    flex-direction: row-reverse;
    gap: 50px;
    justify-content: center;
    align-items: center;
    padding: 10px;

}

.about-content{
    margin-bottom: 60px;
    line-height: 2;
}


/* Footer */

.footer-container{
    background-color: rgba(248, 244, 244, 0.1);
    padding: 10px;
}

.footer-container img{
    width: 300px;
    height: auto;
    margin-left: 400px;
   
}

.footer-links-container{
    margin: 20px auto;
    justify-content: center;
    align-content: center;
}

.footer-links,.social-links{
    display: flex;
    flex-direction: row;
    margin-bottom: 20px;
    gap: 40px;
    justify-content: center;
}

.footer-links a{
    text-decoration: none;
    color: #fff;
}

h4{
    font-size: 1.5rem;
    text-align: center;
    
}


.social-links svg{
    color: #fff;
    width: 50px;
    height: auto;
    
}

.social-links svg:hover{
    color: darkblue;
    background-color: #fff;
}



    @media (min-width: 320px) and (max-width: 480px){
        /* body */
    body{
    max-width: 480px;
    overflow-x: hidden;
    overflow-y: auto;
}

html{
    font-size: 1rem;

}

/* Hamburger menu */

    .hamburger { display: flex; }

    .navlinks {
        display: none; /* Hidden by default on mobile */
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: black;
        padding: 20px;
        text-align: center;
        gap: 10px;
    }

    .navlinks.active {
        display: flex; /* Show when 'active' class is toggled */
    }



/* Hero section */


h1{
    font-size: 2.5rem;
    
}


/* main */

/* service supports */

.service-support{
    padding: 10px;
    width: 100%;
   font-size: 0.8rem;
   justify-content: space-between;
   gap: 20px;
    margin 0 auto;
}

.supports li::marker{
    font-size: 1rem;
    

}

/* Featured Products */

.featured-container{
    width: 100%;
    display: block;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    padding: 10px;
    justify-items: center;
    
    
}

.featured1, .featured2, .featured3, .featured4{
    width: 250px;
    height: auto;
    background-color: rgba(248, 244, 244, 0.1);
    border-radius: 16px;
    margin-bottom: 20px;

}

.featured1 img, .featured2 img, .featured3 img, .featured4 img{
    width: 220px;
    height: auto;
}

.featured-container a{
    text-decoration: none;
    background-color: rgb(18, 80, 66);
    color: #fff;
    padding: 4px 8px;
    border-radius: 6px;
    font-family: sans-serif;
    font-size: 0.8rem;
    transition: 0.3s ease-in-out;
}



/* why velora */

.why-velora-container{
    display: flex;
    flex-direction: column;
    padding: 10px;
    text-align: left;
   
}


.why-velora img{
    width: 100%;
    height: auto;
    justify-content: center;
    align-content: center;
    justify-items: center;


}

h2{
    font-size: 1.8rem;
}


/* Natural */

.natural-container{
    display: flex;
    flex-direction: column-reverse;
   
}

.natural-image img{
    width: 100%;
    height: auto;
}

.natural-context{
    text-align: center;
}

/* about */


h2{

margin-top: 10px;
margin-bottom: 20px;
}


.about-container{
    width: 100%;
    display: block;
    flex-direction: column-reverse;
    text-align: center;
    justify-items: center;
    padding: 10px;
}

.footer-container img{
    width: 100%;
    height: auto;
    margin: 0 auto;
   
}
    }