body, html {
  font-family: "Anek Kannada", sans-serif !important;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
  font-variation-settings:
  "wdth" 100;
}

.my-font, .uni-body, h1, h2, h3, h4, h5, h6 {
  font-family: "Anek Kannada", sans-serif !important;
}

.content-text{
font-size: 18px;
}

.card-title{
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3; /* Number of lines to show */
  -webkit-box-orient: vertical;
}

.card-text{
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4; /* Number of lines to show */
  -webkit-box-orient: vertical;
}

.card-body button{
  margin-bottom:10px;
}

.footer-links a {
  text-decoration: none !important;
  border: 0 !important;
  box-shadow: none !important;
  font-size:18px;
  line-height:32px;
}

.footer-links a:hover,
.footer-links a:focus {
  text-decoration: none !important;
  border: 0 !important;
  box-shadow: none !important;
}

.footer-insta {
  display: flex;
  flex-wrap: wrap;
}

.footer-insta li {
  position: relative;
  width: 30%;
  margin-right: 10px;
  margin-bottom: 10px;
}

.footer-insta li a {
  display: block;
  border-radius: 6px;
}

.footer-insta li a img {
  border-radius: 6px;
}

.footer-insta li span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(255, 255, 255, 0.6);
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  cursor: pointer;
}

.footer-insta li span i {
  font-size: 26px;
  color: black;
}

.footer-insta li:hover span {
  opacity: 1;
}

#v-search-form input, #v-search-form {
    margin: 0 !important;
    padding-top: 2px !important;
    padding-bottom: 2px !important;
}

/*Review*/
.v-rating {
    display: flex;
    flex-direction: row-reverse; /* Positions stars 1-5 left-to-right */
    justify-content: flex-end;
}

/* Hide the actual radio buttons */
.v-rating input {
    display: none;
}

/* Style the labels (the stars) */
.v-rating label {
    cursor: pointer;
    width: 30px;
    font-size: 15px;
    color: #ccc; /* Default empty star color */
    transition: color 0.2s;
}

/* Add the star icon using Unicode */
.v-rating label:before {
    content: '\2605'; /* Full star character */
}

/* Change color on hover */
.v-rating label:hover,
.v-rating label:hover ~ label {
    color: #ffca08; /* Hover gold */
}

/* Change color when a star is selected */
.v-rating input:checked ~ label {
    color: #ffca08; /* Selected gold */
}