*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, sans-serif;
}
body {
    
 color: white;    
}
   
html {
    scroll-behavior: smooth;
}
nav{
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
}
.logo{
    font-size: 1.5rem;
    font-weight: bold;
}


.nav-links{
        display: flex;
        gap: 2rem;
}
.nav-links a {
    text-decoration: none;
    color: white;
    position: relative;
    padding-bottom: 0.25rem;
}
.nav-links a::after{
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #ffc107;
    transition: width 0.3s ease;
}


.nav-links a:hover::after{
    width: 100%;
}
.nav-links a.active::after{
    width: 100%;
    background-color: #ffc107;
}


.icons i:hover{
    color: #ffc107;
}

nav.scrolled {
    background: #2d5a4d;
    padding: 1rem 5%;
    box-shadow: 0 2px 10px rgb(0, 0, 0);
}
/* section */
 .hero {
    
   min-height: 100vh;
    padding: 8rem 5% 2rem;
    display: flex;
    align-items:center;
    background-color: #2d5a4d;
    gap: 2rem;
}
.hero-content {
    flex: 1;
}
.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}
.hero-content p {
   
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 500px;
}
.buttons {
    text-decoration: none;
}

.image-hero {
    flex: 1;
    text-align: center;
}

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

.buttons{
    display: flex;
    gap: 1rem;

}
.btn{
    padding: 0.8rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}
a.btn-primary {
   border: none;
   text-decoration: none;
   color: black;
   background-color: #ffc107;
   }
   .btn-primary:hover{
    background-color: #ffc107;
    color: white;
   }
 a.btn-secondary{
     border: 1px solid white;
     color: white;

   }
   .btn-secondary:hover{
    background-color: white;
    color: black;
   }
   .hamburger{
    display: none;
    border: none;
    color: white;
    background: none;
    cursor: pointer;
    font-size: 1.5rem;
   
   }


   /* product-style... */

   .products-section{
    /* display: flex; */
    width: 100%;
    background: white;
    padding: 6rem 5%;
   }

   .products-content{
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 4rem;
    align-items: flex-start;
   }
   .section-content {
    flex: 0 0 300px;
}

.section-content h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-content p{
   color: #666;
   line-height: 1.5;
   margin-bottom: 2.1rem;
}

.explore-btn{
    display: inline-block;
    text-decoration: none;
    background-color: #333;
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: 30px;
    transition: all 0.3s ease;
}
.explore-btn:hover{
  background-color: #444;
    transform: translateY(-3px);
}

.products-grid{
    flex: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;

}

.product-card {
   position: relative;
   padding: 1rem;
   transition: all 0.3s ease;
}


.product-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

 .product-card:first-child {
    background: #f8f9fa;
    border-radius: 10px;
 }
 
.product-image{
    height: 300px;
    object-fit: cover;
    width: 100%;
    margin-bottom: 1rem;
}

.product-info{
    text-align: center;
    padding: 0.5rem;
}



.product-name{
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.product-price{
    color: #333;
    font-weight: bold;
    font-size: 1.1rem;
}

.add-to-cart{
  display: flex;
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    background-color: #333;
    height: 40px;
    width: 40px;
    color: white;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}


.product-card:hover .add-to-cart {
    opacity: 1;
}


.testimonail-section {
    max-width: 100%;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
    position: relative;
    background: rgba(215, 215, 215, 0.833);
}

.testimonail-title{
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 40px;
}
.testimonail-container{
    position: relative;
    overflow: hidden;

}

.testimonail-slide{
    display: none;
    animation: fadeeffect 0.5s;
}

.testimonail-slide.active{
  
    display: block;
}

@keyframes fadeeffect {
     
    from{
        opacity: 0.4;

    }
    to{
        opacity: 1;
    }
}
.testimonail-contant{

    max-width: 800px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
    line-height:  1.8;
    color: #666;

}
.testimonial-image{

    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 15px;
    overflow: hidden;
}

.testimonial-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-auther {

    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}
.testimonail-position {
    color: #666;
    font-size: 0.9rem;

}

.nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #f5f5f5;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;

}
.nav-button:hover {
    background-color: #e0e0e0;
}

.pre {
    left: 20px;
}
.next {
    right: 20px;
}

.dot {
    display: inline-block;
    background-color: #bbb;
    height: 10px;
    width: 10px;
    margin: 0 auto;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;

}

.dot.active {
    background-color: #717171;
}
.dots-container{
    margin-top: 20px;
}


.choose-us{

    padding: 4rem 2rem;
    max-width: 100%;
    margin: 0 auto;
}
.section-header{

    /* text-align: center; */
    margin-bottom: 3rem;

}
.section-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
    
}

.section-header p{
    color: #666;
    line-height: 1.6;

}
.feature-grid {

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px , 1fr));
    gap: 2rem;

}

.feature-card{

    padding: 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: #fff;


}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgb(0, 0, 0, 0.30);

}
.icon-wrappre{

    color: white;
    background-color: black;
    display: inline-block;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center; 
    margin-bottom: 1rem;
    transition: all 0.3s ease;

}
.feature-card:hover .icon-wrappre {
    background-color: #007bff;
    color: black;
}
.feature-card h3{
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #333;
}
.feature-card P{
    color: #666;
    line-height: 1.6;
}
@media (max-width:768px){

    .choose-us{
        padding: 2rem;

    }
    .section-header{
        font-size: 2rem;
    }
    .feature-card{
        grid-template-columns: 1fr;
    }
}

.container{

    max-width: 100%;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #e0e0e1;
    color: black;
}

.newssletter{

      display: flex;
      align-items: center;
      gap: 20px;
      margin-bottom: 60px;

}
.newsletter-icon {
    color: #45625c;
    font-size: 24px;

}
.newsletter-title{

    font-size: 1.2rem;
    color: #45625c;
    margin: 0;

}
.newsletter-form {

    display: flex;
    gap: 15px;
    flex: 1;
}
.form-input{

    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    flex: 1;
    min-width: 200px;
}
.submit-btn {

    background: #45625c;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;

}

.submit-btn:hover{

    background-color: #384f4a;
}


.footer{

    display: grid;
    grid-template-columns: 1.5fr repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;

}

.footer-brand h2{

   font-size: 2rem;
   color: #45625c;
   margin: 0 0 20px 0;

}
.footer-brand p{
    color: #666;
   line-height: 1.6;
   margin-bottom: 20px;
}

.social-link{

    display: flex;
    gap: 15px;


}
.social{

    background: #f5f5f5;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #45625c;
    transition: all 0.3s;


}
.social:hover{

     background-color:#45625c;
     color: white ;

    }

    .footer-links h3{
       
       
     color: #333;
     margin-bottom: 20px;
    }    
   
    .footer-links ul{

        list-style: none;
        padding: 0;
        margin: 0;

    }
   .footer-links li{
    margin-bottom: 12px;

   } 
   .footer-links a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
   }
   .footer-links a:hover {
    color:black ;
   }

   .footer-bttom {

    border-top: 1px solid #eee;
    padding-top:20px ;
    display: flex;
    justify-content: space-between;
    color: #666;
   }

   .footer-bttom a{

    color: #666;
    text-decoration: none;


   }
   .footer-bttom a:hover{

    color: black;
   }


   @media (max-width:768px) {
    
     .container{
        padding: 30px 15px;
     }

     .newssletter {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 40px;
     }
     .newsletter-form {
       
        width: 100%;
        flex-direction: column;
     }
     .form-input {

        width: 100%;
        margin-bottom: 10px;
     }
     .submit-btn {
        width: 100%;

     }
     .footer{
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
     }
     .footer-brand{
        grid-column: 1/-1;
     }
     .footer-brand h2 {
        font-size: 1.8rem;
        margin-bottom: 15px;
     }
     .footer-links {
        margin-bottom: 15px;
        font-size: 1.1rem;
     }
     .footer-links li {

        margin-bottom: 10px;
     }
     .social-link{
        gap :12px;

     }
     .social {
        width: 35px;
        height: 35px;
     }
     .footer-bttom {
        flex-direction: column;
        padding-top:15px ;
        margin-top: 30px;
     }


    
}