@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;400;500;600;700&display=swap');

:root {
    --primary-color: #07ab3e;
    --accent-color: #10fd5f;
    --text-color: #333333;
    --link-color:#6AAF36;
    --background-color: #ffffff;
    --light-gray: #f0f0f0;
    --gray: #808080;
    --dark-gray: #555;
    --yellow-green:#a4dc24;
    --faint-yellow:#b4e44d;
  }

  
  * {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    overflow-x: none;
}

body{
    height: 100vh;
    text-align: center;
    background-color: var(--background-color);
    padding: 0.1rem;
    overflow-x: none;
}

/* .header{
    border: 1px solid black;
} */

.header-content{
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
}

.logo{
    display: flex;
    align-items: center;
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-color);
    text-decoration:none ;
    gap: 0.625rem;
}

.logo-icon{
    height: 5.875rem;
    width: 2.538rem;
}

.logo-text{
    font-size: 2rem;
    font-weight: bold;
}

.nav{
    display: flex;
    gap: 1.5rem;

}

@media screen and (max-width:768px) {
    .nav{
        display: none;
    }
}

.nav-link{
    color: #718096;
    font-size: 1.125rem;
    font-weight: 600;
    transform: color 0.1s;
}

.nav-link:hover{
    color: var(--link-color);
}

.contact-button{
    display: block;
    border: none;
    border-radius: 0.375rem;
    background-color: var(--primary-color);
    color: var(--background-color);
    transform: all  0.1s;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
}

@media screen and (max-width:768px) {
    .contact-button{
        display: none;
    }
}

.contact-button:hover{
    background-color: #5254f8;
}

.menu-button{
    display: none;
    border:none;
    border-radius: 0.400rem;
    background-color: var(--background-color);
    font-size: 3.5rem;
    padding: 0.5rem 0.9rem;
    font-weight: 600;
  }
  
  @media screen and (max-width:768px) {
      .menu-button{
          display: block;
        }
  }
  
  .menu-icon{
      height: 1.7rem;
      width: 1.7rem;
  }
  

  li{
    list-style: none;
  }

  .dropdown_menu a{
    text-decoration: none;
    color: var(--text-color);
    font-size: 1rem;
  }

  .dropdown_menu a:hover{
    color: var(--link-color);
  }
  
  .dropdown_menu{
    display: none;
  position: absolute;
  right: 0; /* Adjust the right value to position the dropdown */
  top: 100px;
  height: 0;
  width: 100%; /* Set the width to 100% */
  background: rgba(66, 61, 61, 0.1);
  border-radius: 10px;
  overflow: hidden;
  transition: height 0.5s cubic-bezier(0.175, 0.800, 0.32, 1.275);
 }

 .dropdown_menu.open{
    height: 240px;
 }



 .drop_contact{
    display: flex;
    border: none;
    border-radius: 0.375rem;
    background-color: var(--primary-color);
    color: var(--background-color);
    transform: all  0.1s;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    width: 100%;
    justify-content: center;
 }

 .dropdown_menu li{
    padding: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    
 }

 
.dropdown_menu{
    display: block;
}


@media screen and (max-width:576px) {
.dropdown_menu{
    left: 2rem;
    width: unset;
}
}

.page-content {
    transition: transform 0.5s cubic-bezier(0.175, 0.800, 0.32, 1.275);
  }
  
  .dropdown_menu.open + .page-content {
    transform: translateY(240px); /* Adjust the translateY value based on the height of the dropdown menu */
  }
  


.main-section{
    max-width: 1280px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 0.6rem;
    align-items: center;
    margin: 0 auto;
}

.content-left{
    text-align: center;
    animation: slideFromLeft 1s ease forwards;
    opacity: 0;
}

@keyframes slideFromLeft {

    0%{
        opacity: 0;
        transform: translateX(-100%);
    }

    100%{
        opacity: 1;
        transform: translateX(0);
    }
    
}

.section-label{
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary-color);
}

.section-title{
    font-size: 2rem;
    padding: 1.0rem;
    color: var(--text-color);
}

.section-description{
    color: var(--gray);
    font-size: 1.10rem;
}

.button-group{
    display: flex;
    gap: 2rem;
    padding: 1rem;
    margin-top: 1rem;
    align-items: center;
    justify-content: center;

}

 .start-button,.tour-button{

    
    border: none;
    border-radius: 0.375rem;
    background-color: var(--primary-color);
    color: var(--background-color);
    transform: all  0.1s;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
} 

.tour-button{
    background-color: var(--dark-gray);
}

.start-button:hover{
    background-color: #5254f8;
}

.tour-button:hover{
    background-color: var(--gray);
}

.content-right{
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-container{
    
    border-radius: 0.625rem;
    overflow: hidden;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    height: 45vh;
}

.section-image{
    height: 100%;
    width: 100%;
}

@media screen and (min-width:768px) {
    .main-section{
        flex-direction:row ;
    }

    .content-left{
        max-width: 40%;
        text-align: left;
    }
    .section-title{
        padding-left: 0;
    }
    .button-group{
        justify-content: start;
        padding-left: 0;
    }
    .section-label{
        font-size: 1rem ;
    }
    .section-title{
        font-size: 3rem;
    }

    .image-container{
        height: 50vh;
    }

    .section-description{
        font-size: 1.1rem;
        color: var(--gray);
        width: 78%;
    }
}

@media screen and (min-height:1300px){
    .image-container{
        height: 20vh;
    }
}
 

.feature-container{
    margin-top: 2.5rem;
    padding: 2rem 0;
    text-align: center;
    background-color: var(--light-gray);
}

.feature-content{
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.main-title{
    font-size: 2.2rem;
    font-weight: bold;
    
   
}

.main-para{
    color: var(--gray);
    font-size: 1.1rem;
}

.main-info{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-grid{
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2,1fr);
    grid-gap: 2rem;
    margin-top: 1.3rem;
    
}

.feature-card{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #555;
    padding: 1.6rem;
    border-radius: 1rem;
    gap: 1rem;

}

.feature-info{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.icon-container{
    background-color: var(--background-color);
    height: 3rem;
    width: 3rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.feature-svg{
    width: 1.5rem;
    height: 1.2rem;
}

.feature-title{
    color: white;
    font-size: 1.3rem;
    font-weight: bold;
}
.feature-description{
    color: white;
}

.feature-card:nth-child(1){
    background-color: #4a90e2;
}

.feature-card:nth-child(2){
    background-color: #ff6289;
}
.feature-card:nth-child(3){
    background-color: #fcbf58;
}
.feature-card:nth-child(4){
    background-color: #44bfc3;
}
.feature-card:nth-child(5){
    background-color: #77b05d;
}
.feature-card:nth-child(6){
    background-color: #7d78b1;
}


@media screen  and (max-width:768px){
    .feature-grid{
        
       grid-template-columns: repeat(1,1fr);
    }
}


.testimonial-container{
   
    background-color: var(--background-color);
    padding: 0  2rem;
    margin: 0 auto;
    max-width: 1280px;

}

.testimonial-title{
    font-size: 1.875rem;
    font-weight: bold;
    margin-top: 0.5rem;
    color: var(--text-color);

}

.testimonial-subtitle{
    color: var(--primary-color);
}

.testimonial-grid{
    display: grid;
    margin-bottom: 50px;
    grid-template-columns: repeat(auto-fill,minmax(300px ,1fr));
    grid-gap: 2rem;
}

.testimonial-content{
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    
    
    
}

.testimonial-card{
   display: flex;
   flex-direction: column;
   border: 1px solid rgb(129, 125, 125);
   border-radius:1rem ;
   box-shadow: rgba(0, 0, 0, 0.1);
   padding:1rem;
   gap: 1rem;
   transition: transform 0.3s ease, box-shadow 0.3s ease;
   
}

.testimonial-card:hover{
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 2);
    border: 1px solid green;
}

.testimonial-avatar img{
    height: 5rem;
    width: 5rem;
}

.testimonial-text{
    color: #555;
    font-size: 0.875rem;
    font-weight: bold;
    padding-left:1.5rem ;
    padding-right: 1.5rem;
    
}

.testimonial-card h3{
    font-size: 1rem;
    color: #efefef;
    background-color: #d16b40;
    border-radius: 2px;
    padding: 0.225rem;
}

.testimonial-card p{
    font-size: 0.875rem;
    color: #777;
}



.footer {
    background-color: var(--light-gray);
    color: var(--text-color);
    padding: 20px;
    text-align: center;
    position: relative;
    bottom: 0; 
   
    
}

.footer p {
    margin: 0;
}

@media (max-width: 767px) {
    .footer {
        position: static;
    }
}


.contact-footer {
    background-color: var(--light-gray);
    color: var(--text-color);
    
    padding: 20px;
    text-align: center;
    position: fixed;
    bottom: 0; 
   width: 100%;
   overflow: none;
    
}

.contact-footer p {
    margin: 0;
}

@media (max-width: 767px){
    .contact-footer {
        position: static;
    }
}



.aboutheader{
    font-size: 2rem;
    display: flex;
    justify-content: left;
    margin: 3rem;
    color: var(--primary-color);
    animation: slideFromLeft 1s ease forwards;
}



.about-section{
    max-width: 1280px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;

    padding: 0.6rem;
    align-items: center;
    margin: 0 auto;
}

.about-story{
    font-size: 1.1rem;
    word-spacing: 0.3rem;
    padding: 1.0rem;
    margin: 2rem;
    color: var(--text-color);
    text-align: left;
}

.about-right{
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-img{
    border: none;
    height: 53vh;
    border-radius: 0.625rem;
    overflow: hidden;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.ab-img{
    height: 100%;
    width: 100%;
}



@media screen and (min-width:768px) {
    .about-section{
        flex-direction: row;
        max-width: fit-content;
        margin: 0 100px;
    }

    .about-left{
        max-width: 65%;
        
    }
   
    .about-story{
        text-align: left;
        width: 90%;
    }
    
    .about-right{
        margin-left: 50px;
    }

   
}





@media screen and (min-height:1300px){
    .about-img{
        height: 12vh;
        width: fit-content;
    }
}

.gallery{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 20px;
}

.gallery-img{

    width: 30%;
    margin-bottom: 20px;
    transition: transform 0.3s ease-in-out;
}

.gallery-img:hover{
    transform: scale(1.1);
}


@media (max-width: 768px) {
    .gallery-img {
        width: 48%; /* Two images in a row for smaller screens */
    }
}

@media (max-width: 480px) {
    .gallery-img {
        width: 100%; /* One image in a row for even smaller screens */
    }
}


.gallery-header{
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 3rem;
    color: var(--primary-color);
    animation: slideFromLeft 1s ease forwards;
}


/* product */

  
  .article-card {
    width: 300px;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    font-family: Arial, Helvetica, sans-serif;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    transition: all 300ms;
  }
  
  .article-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
  }
  
  .article-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .article-card .content {
    box-sizing: border-box;
    width: 100%;
    position: absolute;
    padding: 30px 20px 20px 20px;
    height: auto;
    bottom: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
  }
  
  .article-card .date,
  .article-card .title {
    margin: 0;
  }
  
  .article-card .date {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 4px;
  }
  
  .article-card .title {
    font-size: 17px;
    color: #fff;
  }
  

  .product{
    
    margin: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-around;
    padding: 30px;
    
  }


  /* contact us */

  .main-contact{
    max-width: 1280px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 0.6rem;
    align-items: center;
    margin: 0 auto;
}

.contact-left{
    text-align: center;
    animation: slideFromLeft 1s ease forwards;
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
   
}




.contact-label{
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary-color);
}

.contact-title{
    font-size: 2rem;
    padding: 1.0rem;
    color: var(--text-color);
}
.contact-details{
    color: var(--text-color);
    font-size: 1.10rem;
    display: flex;
    flex-direction: column;

    gap: 0.825rem;
}

.contact-dropline{
    text-align: center;
    animation: slideFromLeft 1s ease forwards;
    opacity: 0;
    color: var(--primary-color);
}


.contact-right{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60%;

}

.form-container{
    height: 100%;
    width: 100%;
}




  form {
    display: grid;
    gap: 15px;

}

label {
    font-weight: bold;
}

input,
textarea {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.sendMessageButton {
    background-color: #4caf50;
    color: #fff;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.sendMessageButton:hover {
    background-color: #45a049;
}



@media screen and (min-width:768px) {
    .main-contact{
        flex-direction:row ;
    }

    .contact-left{
        max-width: 40%;
        text-align: left;
    }


   
    .contact-title{
        padding-left: 0;
    }
   
   .contact-dropline{
    margin: 1rem;
   }

    .contact-details{
        font-size: 1.1rem;
        color: var(--gray);
        width: 100%;
    }
    .form-container{
        height: 100%;
        width: 60%;
    }
}
