.image-box {
  width: 300px;
  height: 300px;
  background-image: url('../images/shalini.webp'); /* your image */
  background-size: cover;
  background-position: center;
  border-radius: 10% 70% 30% 50%;
  animation: blobMorph 15s infinite ease-in-out;
  transition: border-radius 8s ease-in-out !important;
}

.image-box-2 {
  width: 300px;
  height: 300px;
  background-image: url('../images/shalinitarot.webp'); /* your image */
  background-size: cover;
  background-position: center;
  border-radius: 10% 70% 30% 50%;
  animation: blobMorph 15s infinite ease-in-out;
  transition: border-radius 8s ease-in-out !important;
}

/* Blob-like rounded shape morphing using border-radius */
@keyframes blobMorph {
  0%   { border-radius: 60% 40% 35% 65% / 55% 45% 55% 45%; }    /* blobby oval */
  10%  { border-radius: 45% 55% 65% 35% / 50% 60% 40% 50%; }    /* leaning blob */
  20%  { border-radius: 30% 70% 40% 60% / 60% 50% 50% 40%; }    /* kidney‑bean */
  30%  { border-radius: 65% 35% 60% 40% / 40% 45% 55% 60%; }    /* teardrop */
  40%  { border-radius: 70% 30% 50% 50% / 50% 35% 65% 50%; }    /* pear‑like */
  50%  { border-radius: 50% 50% 70% 30% / 35% 60% 40% 65%; }    /* puffed square */
  60%  { border-radius: 35% 65% 45% 55% / 70% 40% 60% 30%; }    /* lopsided blob */
  70%  { border-radius: 60% 40% 60% 40% / 55% 55% 45% 45%; }    /* squircle */
  80%  { border-radius: 40% 60% 30% 70% / 60% 50% 50% 40%; }    /* soft triangle */
  90%  { border-radius: 55% 45% 35% 65% / 45% 65% 35% 55%; }    /* jellybean */
  100% { border-radius: 50% 70% 30% 50% / 60% 30% 70% 40%; }    /* back to start */
}
