/* .scrollable-news-container {
    display: flex;
    overflow-x: auto;
    gap: 20px; /* Adjust space between items 
}

.single-latest-news-grid-item {
    flex: 0 0 auto;  Prevents items from shrinking 
}*/


.single-service-item-three{
  border-radius: 10px;
}

.preloader{
	display: none !important;
}
.single-service-item-three .thumb img{
  border-radius: 10px 10px 0 0;
}

li a:hover {
  color: #dedede !important;
}

.single-tesitmoial-item:hover {
  transform: scale(1.1);
  transition: all ease-in-out 800ms;
}

.widget-ul-wrapper a{
  line-height: 1.8rem;
}

.support-bar-area{
  display: none;
}

a {
  text-decoration: none !important;
  border: none;
}

.recent_post_item .single-recent-post-item .thumb img{
  height: auto !important;
}
body{
  background-image: url('/assets/uploads/bg_new2.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed; 
  height: 100vh;
  margin: 0;
}

.thumb img {
  height: 100%;
  object-fit: cover;
  width: 100%;
  object-position: center;
}

.thumb{
  height: 250px;
}

.single-recent-wrok-item .thumb {
  width: 100%;
}

.breadcrumb-area{
  padding: 50px 0 !important;
}

 /* Slide in from left */
  @keyframes slideInLeft {
    from {
      transform: translateX(-100%);
      opacity: 0;
    }
    to {
      transform: translateX(0);
      opacity: 1;
    }
  }

  /* Slide in from right */
  @keyframes slideInRight {
    from {
      transform: translateX(100%);
      opacity: 0;
    }
    to {
      transform: translateX(0);
      opacity: 1;
    }
  }

  /* Slide in from bottom */
  @keyframes slideInBottom {
    from {
      transform: translateY(100%);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }

  /* Fade in */
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }

  /* Animation classes */
  .slide-in-left {
    animation: slideInLeft 1s ease-in;
  }

  .slide-in-right {
    animation: slideInRight 1s ease-in;
  }

  .slide-in-bottom {
    animation: slideInBottom 1s ease-in;
  }

  .fade-in {
    animation: fadeIn 1s ease-in-out;
  }

  /* Hover effect for single-header-bottom-item */
  .single-header-bottom-item:hover {
    background-color: white;
    transition: background-color 0.3s, box-shadow 0.3s;
  }

  /* Style for the icon */
  .icon {
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform-origin: bottom; /* Set the origin to the bottom for a lifting effect */
    transform-style: preserve-3d; /* Enable 3D transformations */
  }

  /* Initial state for the icon shadow, simulating ground contact */
  .icon::after {
    content: '';
    position: absolute;
    top: 100%; /* Position directly under the icon */
    left: 50%;
    transform: translateX(-50%);
    width: 100%; /* Shadow size can be adjusted */
    height: 5px; /* Shadow thickness */
    background: rgba(0, 0, 0, 0.15); /* Shadow color and opacity */
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: -1;
  }

  /* Hover effect */
  .icon:hover {
    transform: rotateY(360deg) translateY(-15px); /* Flip around X-axis and rise */
  }

.breadcrumb-area .title {
    color: #fff !important;
  }

.breadcrumb-area .page-list{
  color: #fff !important;
}

.footer-bottom .footer-bottom-inner .copyright-area .copyright-text{
  color: #fff !important;
}

.boxed-btn{
  border-radius: 5px !important;
  color: #fff !important;
}

.boxed-btn a{
  color: #fff !important;
}