/* styles.css */

/* General Reset */
body, ul {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white; /* White background */
  padding: 2px 2px;
  color: #4b4c4f; /* Text color */
 
}

.logo {
  

  
   font-size: 1.8em; /* Slightly larger size for emphasis */
  font-weight: bold;
 font-family: 'Bungee', cursive;
  color: #4b4c4f;
  letter-spacing: 1px; /* Optional: Adds spacing between letters */
}

.menu {
  list-style: none;
  display: flex;
  gap: 20px;
}

.menu li a {
  text-decoration: none;
   font-size: 1.2em;
  color: #1d3596; /* Text color for menu items */
  padding: 5px 10px;
  transition: background 0.3s ease;
}

.menu li a:hover {
  background: #e6e8ff; /* Light blue background on hover */
  border-radius: 5px;
}

/* Hamburger Menu */
#menu-toggle {
  display: none;
}

.hamburger {
  display: none;
  font-size: 1.8em;
  cursor: pointer;
  color: #1d3596; /* Hamburger menu color */
}

/* Responsive Styling */
@media (max-width: 768px) {
  .menu {
    display: none;
    flex-direction: column;
    gap: 10px;
    background-color: white; /* White background for dropdown */
    position: absolute;
    top: 50px;
    right: 30px;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Optional: Shadow for dropdown */
  }

  #menu-toggle:checked ~ .menu {
    display: flex;
  }

  .hamburger {
    display: block;
  }
}






















body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.product-display {
  display: flex;
  flex-wrap: wrap;
  padding: 20px;
 
 
  margin: 20px;
  background-color: #f9f9f9;
   background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}



.product-image {
    flex: 1 1 50%;
    max-width: 50%;
    background-color: #f9f9f9;
    display: flex;
    justify-content: center;
    align-items: center;
}




.product-image img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}


.product-details {
  flex: 1;
  padding: 0 50px;
}

.product-details h2 {
  font-size: 2.1em;
  margin-bottom: 10px;
}

.rating {
  margin-bottom: 15px;
}

.rating .star {
  color: #ffcc00;
  font-size: 1.2em;
}

.rating .star.empty {
  color: #ddd;
}

.product-features {
  list-style: none;
  padding: 0;
}

.product-features li {
  margin-bottom: 4px;
  font-size: 1.5em;
}


@media (max-width: 768px) {
  .product-display {
    flex-direction: column;
    align-items: center ;
    text-align: ;
  }

  .product-details {
    padding: 20px 0 0;
  }
  
  
  
  

.product-image {
   
    max-width: 100%;

}
  
  
  
  
}




.rating .star {
  color: #ddd; /* Default empty star color */
  font-size: 1.9em;
  display: inline-block;
  position: relative;
}

.rating .star.filled {
  color: #ffcc00; /* Fully filled star color */
}

.rating .star.partially-filled {
  background: linear-gradient(to right, #ffcc00 60%, #ddd 40%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.rating .star.partially-filled::after {
  content: '★'; /* Add the star again for overlay effect */
  color: transparent; /* Make the overlay transparent */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}






#review-link {
  color: #007bff;
  text-decoration: underline;
}

#review-link:hover {
  color: #0056b3;
}








.product-section {
  max-width: 800px;
  margin: 20px auto;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.tabs {
  display: flex;
  justify-content: center;

  margin-bottom: 20px;
}

.tab {
  flex: 1;
  text-align: center;
  padding: 10px;
  cursor: pointer;
  font-size: 1.2em;
  background: #f9f9f9;
  border: none;
  outline: none;
  transition: background 0.3s, color 0.3s;
  border-bottom: 3px solid #1d3596;
}

.tab.active {
  background: #fff;
  color: #1d3596;
  font-weight: bold;
  border-right: 3px solid #1d3596;
   border-top: 3px solid #1d3596;
    border-left: 3px solid #1d3596;
	border-bottom: none;
	
}

.tab-content {
  padding: 20px;
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}

.rating .star {
  color: #ddd; /* Default empty star color */
  font-size: 1.5em;
}

.rating .star.filled,
.rating .star:not(.empty) {
  color: #ffcc00;
}

.rating .star.partially-filled {
  background: linear-gradient(to right, #ffcc00 70%, #ddd 30%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.review {
  margin-bottom: 20px;
  padding: 10px;
  background: #f3f3f3;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.review p {
  margin: 5px 0;
}

@media (max-width: 768px) {
  .tabs {
    flex-direction: column;
  }

  .tab {
    font-size: 1em;
	border-bottom: none;
  }
  

 
  .mobhide
  {
	  display: none;
  }
  
  
  
}














.testimonials-section {
  padding: 10px 20px;
  background: #fff;
  text-align: center;
}

.section-title {
  font-size: 2em;
  margin-bottom: 20px;
  color: #333;
}

.reviews-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.review-card {
  background: #f3f3f3;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  max-width: 300px;
  flex: 1;
  min-width: 280px;
  text-align: left;
}

.rating {
  margin-bottom: 15px;
}

.rating .star {
  color: #ddd;
  font-size: 1.5em;
}

.rating .star.filled {
  color: #ffcc00;
}

.rating .star.partially-filled {
  background: linear-gradient(to right, #ffcc00 50%, #ddd 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.review-text {
  font-size: 1em;
  color: #555;
  margin: 10px 0;
  line-height: 1.5;
}

.reviewer-name {
  font-size: 0.9em;
  font-weight: bold;
  color: #333;
}

@media (max-width: 768px) {
  .review-card {
    max-width: 100%;
  }

  .section-title {
    font-size: 1.5em;
  }
}