

/* Global Styles */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #008000; /* Green text color */
}

/* Container Styles */

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

.logo img {
  width: 150px; /* Increased logo size */
  height: auto;
  transition: transform 0.3s ease-in-out;
}

.logo img:hover {
  transform: scale(1.2); /* Increase logo size on hover */
}

.items ul {
  list-style: none;
  display: flex;
}

.items li {
  margin-right: 20px;
}

.items a {
  text-decoration: none;
  color: #008000; /* Green link color */
  transition: color 0.3s ease-in-out;
}

.items a:hover {
  color: #cccccc; /* Light grey link color on hover */
}

/* Background Styles */

.background {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 50px;
}

.royal {
  flex-basis: 50%;
  text-align: center;
}

#second {
  padding: 50px;
}

#third img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease-in-out;
}

#third img:hover {
  transform: scale(1.2); /* Increase image size on hover */
}

/* Product Styles */

.product {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.picture {
  flex-basis: 25%;
  margin: 20px;
  text-align: center;
}

.picture img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease-in-out;
}

.picture img:hover {
  transform: scale(1.2); /* Increase image size on hover */
}

/* Review Styles */

.review-section {
    text-align: center;
    padding: 40px;
  }
  
  .review-section h2 {
    font-size: 36px;
    margin-bottom: 10px;
  }
  
  .review-intro {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
  }
  
  .review {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .review-card {
    margin: 20px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: calc(33.33% - 40px);
  }
  
  .review-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 20px;
  }
  
  .review-card p {
    font-size: 16px;
    color: #333;
  }
  

/* Media Queries */

@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }
  
  .items ul {
    flex-direction: column;
  }
  
  .items li {
    margin-right: 0;
    margin-bottom: 10px;
  }
  
  .background {
    flex-direction: column;
  }
  
  .royal {
    flex-basis: 100%;
  }
  
  .picture {
    flex-basis: 50%;
  }
  
  .review-card {
    flex-basis: 100%;
  }
}

@media (max-width: 480px) {
  .picture {
    flex-basis: 100%;
  }
}


  @media only screen and (max-width: 768px) {
    .services-grid {
      grid-template-columns: 1fr;
    }
  }
  
  @media only screen and (max-width: 480px) {
    .services-grid {
      grid-template-columns: 1fr;
      gap: 10px;
    }
  }
  @media (max-width:768px){
    .service-card {flex-basis: 100%;}
  }
  
* Footer Styles */

.footer {
  background: linear-gradient(to bottom, #008000 50%, #964B00 50%);
  padding: 50px;
  text-align: center;
  color: #fff;
}


.footer p {
  margin-bottom: 20px;
}

.social-icons img {
    margin-right: 20px;
    transition: opacity 0.3s ease-in-out;
  }
  
  .social-icons img:hover {
    opacity: 0.7;
  }
  
  .services-section {
    text-align: center;
    padding: 40px;
  }
  
  .services-section h2 {
    font-size: 36px;
    margin-bottom: 10px;
  }
  
  .services-intro {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
  }
  
  .services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    
  }
  
  .service-card {
    width:100%;
    max-width: 600px;
    background-color: #f7f7f7;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    
  }
  
  .service-card img {
    width: 50%;
    height: auto;
    object-fit: cover;
    max-height: 150px;
    border-radius: 10px 10px 0 0;
  }
  
  .service-card h3 {
    font-size: 16px;
    margin-bottom: 5px;
  }
  
  .service-card p {
    font-size: 14px;
    color: #666;
  }
  .product-section {
    text-align: center;
    padding: 40px;
  }
  
  .product-section h2 {
    font-size: 36px;
    margin-bottom: 10px;
  }
  
  .product-intro {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
  }
  
  .product {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  
  
  .product-info {
    padding: 20px;
  }
  
  .product-price {
    font-size: 24px;
    margin-bottom: 10px;
  }
  
  .product-description {
    font-size: 16px;
    color: #666;
  }
  .product-section {
    text-align: center;
    padding: 40px;
  }
  
  .product-section h2 {
    font-size: 36px;
    margin-bottom: 10px;
  }
  
  .product-intro {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
  }

  #about {
  padding: 50px 0;
  background-color: #f7f7f7;
}

#about .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

#about h2 {
  text-align: start;
  margin-bottom: 20px;

}

#about .about-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#about .about-image {
  flex-basis: 40%;
  margin-right: 20px;
}

#about .about-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

#about .about-text {
  flex-basis: 60%;
  margin: 20px;
}

#about .about-text h3 {
  margin-top: 20px;
}

#about .about-text ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#about .about-text li {
  margin-bottom: 10px;
}

#about .about-text li:before {
  content: "\2713";
  margin-right: 10px;
  color: #8BC34A;
}
  
  