/* Start of 1st div */

.first{
  display: flex;
  width: 100%;
}
.img-fluid{
  object-fit: cover;
  height: 350px;
  
  width: 100%;
}
.main-heading{
  font-size: 4rem;
  text-align: center;
  background:none !important;
  margin: 10px 0px;
}

.bk{
  font-size: 10rem;
  line-height: 0.9;
}
.first-left{
  display: flex;
  justify-content: center;
  align-items: center;
}

.head{
  text-align: center; 
}
.qas{
  font-size: 1.5rem;
  line-height: 2;
  font-weight: bold;
  color:#f48221;
}

.first-right{
  display: grid;
  grid-template: 0fr / 1fr 1fr 1fr 1fr;
}

.counter{
  display: flex;
  justify-content: center;
  align-items: center;
}

.count-text{
  text-align: center;
}
.num{
  font-size: 2rem;
  color: #f48221;
}

.num-text{
  font-size: 1.8rem;
}

.bg-mri-img{
  background-image: url('../Assets/Images/bk_mri_1_modified.jpeg');
  background-repeat: no-repeat;
  background-size: cover;
  /* height: 300px; */
  width: 100%;
  border-radius: 5px;
}

.bk, .main-heading, .qas{
  text-align: center;
  color: white;
  background-color: transparent;
  /* font-family: 'Poppins', sans-serif; */
  /* font-weight: 700; */
  /* apply little black text shadow to the text */ 
  text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5), 0px 0px 10px rgba(0, 0, 0, 0.5), 0px 0px 15px rgba(0, 0, 0, 0.5);
  }
  .qas{
    color: #f48221;
  }
  .bk-mac{
    width: 100%;
  }
  .mobile_only{
    display: none;
  }
  .desktop_only{
    display: block;
  }
  .stomp-in {
    /* display: inline-block; */
    animation: stomp 1s ease-out forwards;
    transform: scale(0);
    /* opacity: 0; */
  }
  
  @keyframes stomp {
    0% {
      transform: scale(3);
      opacity: 0;
    }
    60% {
      transform: scale(0.9);
      opacity: 1;
    }
    80% {
      transform: scale(1.05);
    }
    100% {
      transform: scale(1);
    }
  }
  
/* End of 1st */

.serv-intro-img{
  height: auto;
  width: 300px;
  border: 2px solid gray;
  border-radius: 5px;
  transition: transform 0.3s ease;  /* Smooth transition for scaling */
}
.serv-intro-img:hover {
  transform: scale(1.1);  /* Scale the image by 20% */
}
/* Class to scale the image when clicked */
.serv-intro-img.clicked img {
  transform: scale(1.1);  /* Scale the image by 50% */
}

.see-more-btn{
  font-size: 1.3rem;
  font-weight: 700;
  text-decoration: underline;
}

.bg-logo-img{
  background-image: url('../Assets/Images/Logo.png');
  background-repeat: no-repeat;

}

.app-para{
  text-align: justify;
  margin: 0px 25px;
}

.we-text{
  margin-top: 50px;
}


/* For mobile friendly */
@media only screen and (max-width: 600px) {
  .first,.second{
    display: block;
  }
  .bg-img{
    object-fit: cover;
    height: 400px;
  }
  .first-left, .first-right{
    width: 100%;
  }
  .num{
    font-size: 2rem;
  }
  .num-text{
    font-size: 1rem;
  } 
  .bk{
    font-size: 7rem;
  }
  .diagnostics, .main-heading{
    font-size: 3.5rem;
    opacity: none !important;
  }
  .qas{
    font-size: 1.2rem;
  }
  .img-fluid{
    object-fit: contain;
  }
  .first-right{
    display: grid;
    grid-template: 1fr 1fr / 1fr 1fr;
  }
  .app-para{
    padding: 5px 5px;
  }
  .computer_only{
    display: none;
  }
  .mobile_only{
    display: block;
    width: 100%;
  }
  .bk-mac-mobile{
    width: auto;
    height: 200px;
  }

  .marg{
    margin-top: 50px;
  }
  
  @keyframes scroll-left {
    0% {
      transform: translateX(10%);
    }
    100% {
      transform: translateX(-90%);
    }
  }
  
}


