ul li a {
  text-decoration: none; /* Ensures no underline by default */
  position: relative; /* Allows positioning of the underline */
}

ul li a::after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: currentColor;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

ul li a:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

@media (max-width: 768px) {
    .mobile-block {
      display: block !important;
    }

}
.footer-section{
  background: linear-gradient(to bottom, rgb(0 0 0 / 49%), rgb(0 0 0 / 64%)), url(../images/background/footer_bg.jpg) no-repeat;
    background-repeat: no-repeat;
    background-attachment: fixed;
    object-fit: contain;
    background-position: top;
    color: white;
}

.widget-social a.facebook {
  color: #3b5998; /* Facebook color */
}
.widget-social a.instagram {
  color: #e4405f; /* Instagram color */
}
.widget-social a.twitter img{
  vertical-align: bottom !important;
  background: white;
    padding: 7px;
    width: 40px;
    border-radius: 22px;
    text-align: -webkit-center;
    height: 42px;
}
.widget-social a i{
  background: white;
    padding: 7px;
    width: 40px;
    border-radius: 22px;
    text-align: -webkit-center;
    height: 42px;
}

.fa-xx{
    color: aqua;
    margin-right: 15px;
    font-size: 1.4rem;
}

.banner .infosys{
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 8px;

}
.txtc{
  color:#cf4c52;
  text-decoration: underline;
}
.txtcs{
  color:rgb(0, 0, 0);
  font-weight: 500;
  text-decoration: underline;
}

/* product card on homepage  */
.product-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  overflow: hidden;
  text-align: center;
  width: 360px;
  transition: transform 0.3s;
  cursor: pointer;
  position: relative;
  margin: 10px;
  padding: 10px;
  border: 1px solid #ddd;
}

.product-card img {
  width: 100%;
  height: auto; /* Maintain aspect ratio */
  transition: opacity 0.3s ease-in-out;
}

.product-card img.main-image {
  height: 400px; /* Fixed height to ensure consistency */
  object-fit: cover; /* Ensure the image covers the area without distortion */
}

.product-card img.hover-image {
  position: absolute;
  top: 10px; /* Adjust to be within padding */
  left: 10px; /* Adjust to be within padding */
  width: calc(100% - 20px); /* Account for padding */
  height: 400px; /* Account for padding and ensure same size as main image */
  object-fit: cover; /* Ensure the image covers the area without distortion */
  opacity: 0;
}

.product-card:hover img.hover-image {
  opacity: 1;
}

.product-info {
  text-align: center;
  font-size: 1.5rem;
}

.product-name {
  font-weight: bold;
  text-transform: uppercase;
  margin: 10px 0 5px;
}

.product-price {
  color: #888;
  margin: 0;
}

/* .active{
  color:#cf4c52 !important;
} */

.main-menu ul .has-children .sub-menu li a {
  line-height: 40px;
  color: #212121;
  text-decoration: none;
  font-size: 1.1rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}

hr{
  color: #212121;
}
.about_content p{
  text-align: justify;
  font-size: 1.3rem;
}

svg {
	height: 23rem;
	margin-right: 4rem;
}





#envelope {
  animation: float 2s ease-in-out infinite;
}

#star1, #star2, #star3, #star4, #star5, #star6 {
  animation: blink 1s ease-in-out infinite;
}
#star2 { animation-delay: 100ms; }
#star3 { animation-delay: 500ms; }
#star4 { animation-delay: 700ms; }
#star5 { animation-delay: 300ms; }
#star6 { animation-delay: 200ms }

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes blink {
  0% {
    opacity: 0;
  }
  50% {
    opacity: .5;
  }
  100% {
    opacity: 1;
  }
}


.form-group {
  margin-bottom: 1rem;
}

form {
	min-width: 25rem;
	
	.title {
		font-family: 'Pacifico', cursive;
		color: #212529;
		font-size: 2.5rem;
	}
	
  .form-control {
    background-color: #f2f6f8;
		border-radius: 2rem;
    border: none;
    box-shadow: 0px 7px 5px rgba(0, 0, 0, 0.11);
		
    &.thick {
      height: 3.3rem;
      padding: .5rem 3.5rem;
    }
		
		&:focus {
			background-color: #f2f6f8;
			border: none;
			box-shadow: 0px 7px 5px rgba(0, 0, 0, 0.11);
		}
  }
	
	.message .form-control {
			padding: .5rem 1.8rem;
	}
	
  ::placeholder {
    font-family: 'Quicksand', sans-serif;
		font-weight: 600;
    font-size: 1.1rem;
    color: #838788;
    position: relative;
    left: 0;
  }
	
  input,
  textarea {
		font-family: 'Quicksand', sans-serif;
    color: #212529;
    font-size: 1.1rem;
  }
	
  .icon {
    color: #57565c;
    height: 1.3rem;
    position: absolute;
    left: 1.5rem;
    top: 1.1rem;
  }
}

.btn.btn-primary {
  font-family: 'Quicksand', sans-serif;
	font-weight: bold;
  height: 2.5rem;
  line-height: 2.5rem;
  padding: 0 3rem;
  border: 0;
  border-radius: 3rem;
  background-image:linear-gradient(131deg, #ffd340, #ff923c, #ff923c, #ff923c);
  background-size: 300% 100%;
  transition: all 0.3s ease-in-out;
}

.btn.btn-primary:hover:enabled {
  box-shadow: 0 0.5em 0.5em -0.4em #ff923cba;
  background-size: 100% 100%;
  transform: translateY(-0.15em);
}

.contact-info-section {
  text-align: center;
}
.contact-info-section {
  position: relative;
  padding: 50px 0px 70px;
}
.contact-info-section .info-box .icon {
  position: relative;
  margin-bottom: 15px;
}

.inner-box h5 {
  position: relative;
  font-size: 20px;
  color: #222222;
  font-weight: 700;
  line-height: 1.3em;
}



.fancybox__button--close {
  display: block !important; /* Override any potential display: none */
  color: #fff !important;
}


/*whatsapp feature */
/* whatsapp feature */
.my-floats:hover {
  transform: scale(1.1);
}
.my-floats {
  width: 80px;
  left: 5px;
  bottom: 80px;
  position: fixed;
  z-index: 999;
  transition: transform 0.5s ease;
}

@media only screen and (max-width: 600px) {
  .my-floats:hover {
    transform: scale(1.1);
  }
  .my-floats {
    width: 80px;
    left: 5px;
    bottom: 0px;
    position: fixed;
    z-index: 999;
    transition: transform 0.5s ease;
  }
}