/* Global Styles */
*{
  font-family: 'Poppins', sans-serif; /* Set the Poppins font */
  margin: 0;
  padding: 0;
  
}

/* Add the following link tag in your HTML head to include Poppins font from Google Fonts  #E3B4A0  */
/* <link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap"> */

.container {
  width: 100%;
  height: 100vh;
  background-color:transparent;
}

.navbar {
  
  font-family: 'Poppins', sans-serif;
  display: flex;
  align-items: center; /* Centering vertically */
  justify-content: space-between;
  background-color: transparent;
  padding: 10px;
  color: rgb(0, 0, 0);
}

.logo {
  display: flex;
  align-items: center; /* Centering vertically */
}

.logo img {
  height: 60px; /* Adjust the height as needed */
  margin-right: 10px; /* Add some spacing between the logo and text */
}

.logo a {
  text-decoration: none;
  color: rgb(0, 0, 0);
  font-size: 1.2em; /* Adjust the font size as needed */
}

nav {
  font-family: 'Poppins', sans-serif;

  display: flex;
  align-items: center; /* Centering vertically */
}

.nav-links {
  list-style-type: none;
  display: flex;
  margin: 0; /* Remove default margin */
  padding: 0; /* Remove default padding */
}

.nav-links li {
  margin: 0 15px;
}

.nav-links a {
  text-decoration: none;
  color: rgb(255, 255, 255);
}

.burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}


.nav-links li {
  transition: transform 0.4s ease;
}

/* Define hover effect */
.nav-links li:hover {
  transform: scale(1.5);
}








/*
.fixed-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.fixed-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
*/


.fixed-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(./webscreen/16.png);  background-size: cover;
  background-position: center;
  z-index: -1;
}

.services {

  
  padding: 20px 0;
  justify-content: center;
  align-items: center;
  height: 300px;
  background-color: rgb(255, 255, 255);
  background-size: cover;
  background-position: center;

}


.grid-containerad {
  
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  grid-gap: 20px;
  justify-items: center;
}

.cardad img{
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}






/* Define your animation */
.animate {
  opacity: 0;
  transform: translateY(150px);
  transition: opacity 0.5s, transform 0.5s;
}

.animated {
  opacity: 1;
  transform: translateY(0);
}






 /* Grid container */
 .grid-container {
  margin: 20px;
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Responsive grid */
  gap: 20px; /* Gap between grid items */
  padding: 20px; /* Padding to create space around the grid */
  justify-content: center; /* Center the grid horizontally */
}

/* Grid item */
.grid-item img {
  width: 100%; /* Ensure images take full width of their container */
  height: auto; /* Maintain aspect ratio */
  border-radius: 8px; /* Rounded corners for aesthetics */
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1); /* Shadow for each image */
  transition: transform 0.3s ease; /* Transition for scaling */
  cursor: pointer; /* Change cursor to pointer on hover */
}

/* Hover effect */
.grid-item img:hover {
  transform: scale(1.05); /* Scale up image on hover */
}












 /* Grid container */
 .grid-container12 {
  margin: 20px;
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive grid */
  gap: 20px; /* Gap between grid items */
  padding: 20px; /* Padding to create space around the grid */
  justify-content: center; /* Center the grid horizontally */
}

/* Grid item */
.grid-item12 h3 {
  color: #ffffff;
  text-align: center;
  margin: 20px;
  width: 100%; /* Ensure images take full width of their container */
  height: 70px; /* Maintain aspect ratio */
  border-radius: 8px; /* Rounded corners for aesthetics */
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1); /* Shadow for each image */
  transition: transform 0.3s ease; /* Transition for scaling */
  cursor: pointer; /* Change cursor to pointer on hover */
}

/* Hover effect */
.grid-item12 h3:hover {
  transform: scale(1.05); /* Scale up image on hover */
}









 /* Grid container */
 .grid-container13 {
  margin: 20px;
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); /* Responsive grid */
  gap: 20px; /* Gap between grid items */
  padding: 20px; /* Padding to create space around the grid */
  justify-content: center; /* Center the grid horizontally */
}

/* Grid item */
.grid-item13 img {
  width: 100%; /* Ensure images take full width of their container */
  height: auto; /* Maintain aspect ratio */
  border-radius: 8px; /* Rounded corners for aesthetics */
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1); /* Shadow for each image */
  transition: transform 0.3s ease; /* Transition for scaling */
  cursor: pointer; /* Change cursor to pointer on hover */
}

/* Hover effect */
.grid-item13 img:hover {
  transform: scale(1.05); /* Scale up image on hover */
}










.categories-grid {
  margin: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;

  margin-bottom: 20px;
  margin-top: 70px;

}


.category-button {
  padding: 10px;
  background-color: #ffffff;
  border: 1px solid #ffffff;
  cursor: pointer;
  color: rgb(0, 0, 0);
  border-radius: 50px;
  height: 60px;
}

.category-button:hover {
  background-color: #ffffff;
  color: #333;
}

.illustrations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.illustration-card img {
  width: 100%;
  height: auto;
}




.adgrid{
  margin: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
  margin-bottom: 20px;
  margin-top: 70px;
}










.boxss{

  margin-top: 50px;
  height: 30px;
  display: flex;
  margin-left: 60px;
  cursor: pointer;
  padding: 10px 20px;
  background: #fff;
  border-radius: 30px;
  align-items: center;
  width: 200px;
  box-shadow: 0 10px 25px rgba(56, 55, 55, 0.3);

}


.boxss:hover input{
  width:200px
}
.boxss input{
  width:100px;
  outline: none;
  border: none;
  font-weight: 500;
  transition: 0.8s;
  background: transparent;
}
.boxss a.fas{
  color:rgb(0, 0, 0);
  font-size: 18px;
}






#home {
  height: 100vh;
  align-items: center;
  align-content: center;
  text-align: center;
  padding: 20px 0;
  background-color: transparent; /* Light gray background color */
}

.home-content {
  
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
  align-items: center;
  color: rgb(85, 85, 85);
  font-family: 'Poppins', sans-serif;
  
}

.home-text {
  text-align: left; /* Adjusted text alignment */
  margin-left: 20px;
  color: rgb(255, 255, 255);
}


.home-image img {
  max-width: 100%;
  margin: 5px;
  


  /* Ensure the image doesn't exceed its container */
}

.home-images img {
  max-width: 50%;
  border-radius: 50%;


  /* Ensure the image doesn't exceed its container */
}


.cta-button {
  background-color: #ffffff;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  margin-top: 20px;
  display: inline-block;
  border-radius: 5px;
}



.ctaco-button {
  background-color: transparent;
  color: rgb(0, 0, 0);
  padding: 10px 20px;
  text-decoration: none;
  margin-top: 10px;
  display: inline-block;
  border-radius: 5px;
}

.ss-button {
  background-color: white;
  color: rgb(0, 0, 0);
  padding: 10px 20px;
  text-decoration: none;
  margin-top: 10px;
  display: inline-block;
  border-radius: 5px;
}


.ctacos-button {
  background-color: #333;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  margin-top: 10px;
  display: inline-block;
  border-radius: 5px;
}






#second-page {
  height: 100vh;
  align-items: center;
  align-content: center;
  text-align: center;
  text-align: center;
  padding: 20px 0;
  background-color: #ffffff; /* Light gray background color */
}
#third-page {
  text-align: center;
  padding: 20px 0;
  background-color: #ffc420; /* Light gray background color */
}
#fourth-page {
  text-align: center;
  padding: 20px 0;
  background-color: #ffc420; /* Light gray background color */
}

#fith-page {
  text-align: center;
  padding: 20px 0;
  background-color: #ffc420; /* Light gray background color */
}



#six-page {
  text-align: center;
  padding: 20px 0;
  background-color: #ffc420; /* Light gray background color */
}


#se-page {
  text-align: center;
  padding: 20px 0;
  background-color: #ffc420; /* Light gray background color */
}
#ses-page {
  text-align: center;
  padding: 20px 0;
  background-color: #ffc420; /* Light gray background color */
}

#ten-page {
  text-align: center;
  padding: 20px 0;
  background-color: #ffc420; /* Light gray background color */
}

















#adds-page {
  
  text-align:center;
  background-color: #fcfcfc;/* Light blue background color */ /* Light blue background color */
  padding: 20px 0;

 
}

#adds-page2 {

  text-align:center;
  background-color: #fcfcfc;/* Light blue background color */ /* Light blue background color */
  padding: 20px 0;

 
}


#adds-page3 {

  text-align:center;
  background-color: #fcfcfc;/* Light blue background color */ /* Light blue background color */
  padding: 20px 0;

 
}






#shop {
  text-align:center;
  background-color: #fcfcfc;/* Light blue background color */ /* Light blue background color */
  padding: 20px 0;

 
}



.shoptitle{
  text-align: center;
  margin-top: 60px;
  margin-bottom: 25px;
}


label {
  margin-left: 35px;
  font-weight: bold;
  font-size: 30px;
}


#categorySelect {
  width: 200px;
  height: 50px;
  padding: 15px;
  margin-left: 30px;
  font-size: 16px;
  color:#ffffff;
  background-color: rgb(0, 0, 0);
  border-radius: 50px;
  
}

select option {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  background-color: #f8f8f8;
  color: #333;
  padding: 8px 12px;
}









.product-container {
  margin-top: 60px;
  margin: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
}



/*card design each products loaedes cards*/
.product-card {
  border: 1px solid #ccc;
  padding: 15px;
  text-align: center;
  transition: box-shadow 0.3s ease;
  
}

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

.product-image {
  width: 100%; /* Set width to 100% */
  height: 200px; /* Fixed height */
  object-fit: contain; /* Maintain aspect ratio */
  transition: transform 0.3s ease;
   /* Align image to center */
}
/*
.product-image {
  width: 40%;  
  object-fit:cover;
  transition: transform 0.3s ease;
}*/

.product-card:hover .product-image {
  transform: scale(1.1); /* Scale the image on hover */
}
/*
.product-title {
  font-weight: bold;
  
  text-align: center;
  align-items: center;
  margin-top: 10px;
}
*/
.product-title {
  font-weight: bold;
  margin-top: 10px;
  max-width: 370px; /* Adjust the maximum width as needed */
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  
}

.product-rating {
  margin-top: 5px;
}

.product-price {
  margin-top: 5px;
  color: green;
}

.product-links {
  margin-top: 10px;
}





















/*  About us   






/*Read more read less*/

#more{
    display: none;
}
#more1{
    display: none;
}
#more2{
    display: none;
}
#more3{
  display: none;
}























/* Styles for Footer 
footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 10px 0;
  min-height: 20vh;
  flex-shrink: 0; 
}



.social-icons-footer {
  margin-top: 10px;
  display: flex;
  justify-content: center; 
}

.social-icons-footer a {
  margin: 0 10px;
  color: white;
  font-size: 20px;
  text-decoration: none;
}

.social-icons-footer i:hover {
  color: #333; 
}
*/


.footer {
  height: 250px;
  background-color: transparent;
  color: #fff;
  padding: 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
}

.company-info {
  display: grid;
  grid-template-rows: auto auto;
  grid-gap: 10px;
}

.company-details h3 {
  margin-top: 0;
}

.social-media {
  display: flex;
  flex-direction: column;
}

.social-icons {
  display: flex;
}

.social-icons a {
  color: #fff;
  margin-right: 10px;
}

.logo img {
  width: 100px; /* Adjust the size as needed */
  height: auto;
}







.ctas-buttons {
  background-color: #ffffff;
  color: rgb(0, 0, 0);
  padding: 10px 20px;
  text-decoration: none;

  display: inline-block;
  border-radius: 5px;
  font-size: 20px;
}







#adds-page4 {
  
  height: 100vh;
  text-align:center;
  /* Light blue background color */ /* Light blue background color */
  padding: 20px 0;
  background: transparent;
}


.grid-container3 {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Responsive columns */
  grid-gap: 20px;
  background: transparent;
}

.grid-items {
  width: 100%; /* Take full width on smaller screens */
  box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.1); /* Shadow for each image */
  background: transparent;
}

.cardre {
 
  border-radius: 10px;
  padding: 10px;
  background: transparent;
  
}

.cardre-image img {
  border-radius: 50%; /* Makes the image circular */
  width: 150px;
  height: 150px;
  margin: 0 auto;
  display: block;
  background: transparent;
}

.cardre-content {
  margin-top: 20px;
  color: rgb(255, 255, 255);
  text-align: center;
}


.cardre-content h4 {
  margin-top: 10px;
  color: rgb(255, 255, 255);
  font-size: 18px;
}


.cardre-content h3 {
  margin-top: 10px;
  color: rgb(255, 255, 255);
  font-size: 18px;
}

.cardre-content p {
  margin-top: 10px;
  font-size: 14px;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  
}

.ratings {
  margin-top: 25px;
}

.fa-star {
  color: orange;
}

.checked {
  color: orange;
}





























































@media (max-width: 900px) {
  body {
    margin: 0;
    padding: 0;
}


.navbar {
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 60px;
    left: 0;
    background-color: #333;
    z-index: 1;
    padding: 20px 10px;
    text-align: center;
}

.nav-links.show {
  margin-top: 40px;
  background-color: #E3B4A0;
    display: flex;
    height: 130%;
}

.nav-links li {
    margin: 10px 0;
    margin-top: 34px;
    padding: 10px;
}

.burger {
    display: flex;
    flex-direction: column;
    position: absolute;
    right: 20px;
    cursor: pointer;
}

.line1, .line2, .line3 {
    width: 30px;
    height: 3px;
    background-color: white; background-color: #ffffff;
    margin: 5px;
}






#home, #second-page, #fourth-page, #fith-page, #se-page,#ses-page, #shop,#third-page,#ten-page {
  padding: 20px 0;
}


.home-content {
  grid-template-columns: 1fr; /* Change to a single column on small screens */
}



.home-text {
  text-align: left;
}



}






@media (max-width: 600px) {

  body {
    margin: 0;
    padding: 0;
}


.navbar {
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 60px;
    left: 0;
    background-color: #333;
    z-index: 1;
    padding: 20px 10px;
    text-align: center;
}

.nav-links.show {
  margin-top: 40px;
  background-color: #E3B4A0;
    display: flex;
    height: 130%;
}

.nav-links li {
    margin: 10px 0;
    margin-top: 34px;
    padding: 10px;
}


.burger {
    display: flex;
    flex-direction: column;
    position: absolute;
    right: 20px;
    cursor: pointer;
}

.line1, .line2, .line3 {
    width: 30px;
    height: 3px;
    background-color: white; background-color: #ffffff;
    margin: 5px;
}







#home, #second-page, #fourth-page, #fith-page, #se-page,#ses-page, #shop,#third-page,#ten-page {
  padding: 20px 0;
}


.home-content {
  grid-template-columns: 1fr; /* Change to a single column on small screens */
}



.home-text {
  text-align: left;
}

.product-container {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}



/*card design each products loaedes cards*/
.product-card {
  border: 1px solid #ccc;
  padding: 15px;
  text-align: center;
  transition: box-shadow 0.3s ease;
}

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

.product-image {
  width: 100%; /* Set width to 100% */
  height: 200px; /* Fixed height */
  object-fit: contain; /* Maintain aspect ratio */
  transition: transform 0.3s ease;
   /* Align image to center */
}

.product-card:hover .product-image {
  transform: scale(1.1); /* Scale the image on hover */
}

.product-title {
  font-weight: bold;
  margin-top: 10px;
}

.product-rating {
  margin-top: 5px;
}

.product-price {
  margin-top: 5px;
  color: green;
}

.product-links {
  margin-top: 10px;
}








}


@media (max-width: 1200px) {


  body {
    margin: 0;
    padding: 0;
}


.navbar {
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 60px;
    left: 0;
    background-color: #333;
    z-index: 1;
    padding: 20px 10px;
    text-align: center;
}

.nav-links.show {
  margin-top: 40px;
  background-color: #E3B4A0;
    display: flex;
    height: 130%;
}

.nav-links li {
    margin: 10px 0;
    margin-top: 34px;
    padding: 10px;
}


.burger {
    display: flex;
    flex-direction: column;
    position: absolute;
    right: 20px;
    cursor: pointer;
}

.line1, .line2, .line3 {
    width: 30px;
    height: 3px;
    background-color: white; background-color: #ffffff;
    margin: 5px;
}






#home, #second-page, #fourth-page, #fith-page, #se-page,#ses-page, #shop,#third-page,#ten-page {
  padding: 20px 0;
}


.home-content {
  grid-template-columns: 1fr; /* Change to a single column on small screens */
}



.home-text {
  text-align: left;
}



.product-container {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}



/*card design each products loaedes cards*/
.product-card {
  border: 1px solid #ccc;
  padding: 15px;
  text-align: center;
  transition: box-shadow 0.3s ease;
}

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

.product-image {
  width: 100%; /* Set width to 100% */
  height: 200px; /* Fixed height */
  object-fit: contain; /* Maintain aspect ratio */
  transition: transform 0.3s ease;
   /* Align image to center */
}

.product-card:hover .product-image {
  transform: scale(1.1); /* Scale the image on hover */
}

.product-title {
  font-weight: bold;
  margin-top: 10px;
}

.product-rating {
  margin-top: 5px;
}

.product-price {
  margin-top: 5px;
  color: green;
}

.product-links {
  margin-top: 10px;
}









}









/* Media Query for Small Screens */
@media only screen and (max-width: 768px) {
  body {
      margin: 0;
      padding: 0;
  }


  .navbar {
      padding: 10px 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
  }

  .nav-links {
      display: none;
      flex-direction: column;
      width: 100%;
      position: absolute;
      top: 60px;
      left: 0;
      background-color: #333;
      z-index: 1;
      padding: 20px 10px;
      text-align: center;
  }

  .nav-links.show {
    margin-top: 40px;
    background-color: #E3B4A0;
      display: flex;
      height: 130%;
  }

  .nav-links li {
      margin: 10px 0;
      margin-top: 34px;
      padding: 10px;
  }

  .burger {
      display: flex;
      flex-direction: column;
      position: absolute;
      right: 20px;
      cursor: pointer;
  }

  .line1, .line2, .line3 {
      width: 30px;
      height: 3px;
      background-color: white; background-color: #ffffff;
      margin: 5px;
  }






  #home, #second-page, #fourth-page, #fith-page, #se-page,#ses-page, #shop,#third-page,#ten-page {
    padding: 20px 0;
}


.home-content {
    grid-template-columns: 1fr; /* Change to a single column on small screens */
}



.home-text {
    text-align: left;
}


.product-container {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}



/*card design each products loaedes cards*/
.product-card {
  border: 1px solid #ccc;
  padding: 15px;
  text-align: center;
  transition: box-shadow 0.3s ease;
}

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

.product-image {
  width: 100%; /* Set width to 100% */
  height: 200px; /* Fixed height */
  object-fit: contain; /* Maintain aspect ratio */
  transition: transform 0.3s ease;
   /* Align image to center */
}

.product-card:hover .product-image {
  transform: scale(1.1); /* Scale the image on hover */
}

.product-title {
  font-weight: bold;
  margin-top: 10px;
}

.product-rating {
  margin-top: 5px;
}

.product-price {
  margin-top: 5px;
  color: green;
}

.product-links {
  margin-top: 10px;
}











.services {

  margin-top: 250px;
  padding: 20px 0;
  justify-content: center;
  align-items: center;
  height: 300px;
  background-color: rgb(255, 255, 255);
  background-size: cover;
  background-position: center;

}





.footer {
  margin-top: 800px;
  height: 250px;
  background-color: transparent;
  color: #fff;
  padding: 20px;
}











}
