.image-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  padding: 20px;
}

.rotating-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  animation: spin 8s linear infinite;
  z-index: 2;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.roundproduct a.tea-link {
  color: black;
  font-size: 25px;
  text-decoration: none;
  font-family: "Yeseva One", serif;
  margin-top: 20px;
}

.roundproduct a.tea-link:hover {
  background-position: right;
  background: linear-gradient(90deg, #12532b, #289854);
  background-size: 200%;
  background-position: left;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: background-position 0.5s ease-in-out;
}

.roundproduct {
  background-color: #dff3e6;
  border-radius: 15px;
  border: 1.5px solid #ddd;
  padding: 20px;
  display: inline-block;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  user-select: none;
  width: 100%;
}

.roundproduct:hover {
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.25);
  transform: translateX(-8px) scale(1.03);
  background: linear-gradient(150deg, #dff3e6, #fff);
}

/*innerproduct*/
.tea-section .tea-section-content {
  text-align: center;
}
.tea-section .tea-section-content .tea-head {
  font-size: 35px;
  font-weight: 800;
  color: #081c15;
  margin-bottom: 15px;
  margin-top: 15px;
  font-family: "Yeseva One", serif;
}

/*tea page*/
.tea-img {
  border: 1px solid rgba(211, 211, 211, 1);
}

.product-tea {
  overflow: hidden;
  border-radius: 20px;
}

.product-teaimg {
  overflow: hidden;
}
.product-teaimg img {
  transition: transform 0.5s ease;
}
.product-tea:hover .product-teaimg img {
  transform: scale(1.05);
}
.tea-name {
  padding: 10px;
  background: rgba(18, 83, 43, 0.5);
  color: black;
  transition: color 0.5s ease;
  transition: background-color 0.5s ease;
}
.product-tea:hover .tea-name {
  color: #fff;
  background: rgba(18, 83, 43, 0.8);
}
.tea-name h5 {
  margin: 0;
}
.tea-name h5 a {
  font-size: 15px;
}

/*all tea page*/
.accordion-button:focus {
  box-shadow: none;
  outline: none;
}
.accordion-button {
  background-color: #cde3d5; /* pastel version of #12532B */
  color: #12532b;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.accordion-button:not(.collapsed) {
  background-color: #b5d3c0;
  color: #0e3f20;
}

.accordion-body {
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-link {
  color: #12532b;
  text-decoration: none;
  transition: color 0.3s ease;
}

.product-link:hover {
  color: #81b29a; /* pastel green hover */
}
.inquirybtntea a {
  background: #12532b;
  padding: 0px 20px;
  color: white;
  border-radius: 20px;
}
.table-head h5 {
  margin: 15px 0;
  font-family: "Yeseva One", serif;
}

/*millets spices page*/
.millets-page {
  padding: 30px 0px;
}
.millets-page .millets-img {
  overflow: hidden;
}

.millets-page .millets-img img {
  transition: transform 0.7s ease-in-out, border-radius 0.7s ease-in-out;
  width: 100%;
  display: block;
}

.millets-page:hover .millets-img img {
  transform: scale(1.05);
}
.millets-img {
  padding: 20px;
}

.rotating-svg-millets {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  animation: spin 8s ease infinite;
  z-index: 2;
}
/*.millets-page:hover .rotating-svg-millets {
  animation: spin 5s ease  infinite;
}
*/
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.millets-spices-table tr th,
td {
  font-size: 14px;
  padding: 4px 10px;
}
.millets-spices-content {
  padding: 10px 0;
}
.millets-spices-content ul li {
  margin: 10px 0;
}
.millets-spices-content ul li i {
  margin: 10px 0;
  color: #12532b;
}
.millets-spices-content h5 {
  font-family: "Yeseva One", serif;
  font-size: 25px;
  color: #12532b;
}

.button-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.contact-button {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  color: white;
  transition: transform 0.3s ease, background 0.3s ease;
}

.contact-button i {
  font-size: 18px;
}

.whatsapp {
  background-color: #25d366;
}

.call {
  background-color: #007bff;
}

.whatsapp:hover {
  background-color: #1ebe5b;
  transform: translateY(-3px);
}

.call:hover {
  background-color: #0063cc;
  transform: translateY(-3px);
}
.discover-ullist h5{
  font-family: "Yeseva One", serif;
  color: #12532B;
  font-size: 25px;
}
.discover-ullist ul li {
  margin: 10px 0;
}
.discover-ullist ul li i {
  margin: 10px 0;
  color: #12532b;
}

@media (max-width: 600px) {
  .button-container {
    flex-direction: column;
    gap: 15px;
  }

  .contact-button {
    width: 60%;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }
}

/*.millets-img:hover {
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.25);
  transform: translateX(-8px) scale(1.03);
  background: linear-gradient(150deg, #dff3e6, #fff);
}*/

/*font-family: "Playfair Display", serif;
font-family: "Yeseva One", serif;
12532B   rgba(18, 83, 43, 1)

https://wa.me/919409504222

*/
