
body{
  user-select: none;
}

.blue-color {
  background-color: #2f4c6a !important;
  color: #2f4c6a !important;
  border-color: #2f4c6a !important;

}

.blue-color1 {
  border-color: #2f4c6a !important;
  color: #2f4c6a !important;
}




.PopUpHide{
  display: none;
}



/* ... existing styles ... */

/* Blog Carousel Styles */
.blog-carousel {
  position: relative;
  padding: 0 1rem;
}

.carousel-container {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

/* .blog-card {
  flex: 0 0 auto;
} */

/* .carousel-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
} */

/* .carousel-nav-btn:hover {
  background-color: #2f4c6a;
}

.carousel-nav-btn:hover .arrow-icon {
  color: white;
}

.arrow-icon {
  font-size: 20px;
  color: #2f4c6a;
  transition: color 0.3s ease;
} */



.pagination-dots button {
  transition: all 0.3s ease;
}

.pagination-dots button.active {
  background-color: #baa170;
  transform: scale(1.2);
}

/* Line clamp utilities */
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 768px) {
  .carousel-nav-btn {
      width: 40px;
      height: 40px;
  }
  
  .arrow-icon {
      font-size: 16px;
  }
}




#checkbox {
    display: none;
  }
  
  .toggle {
    position: relative;
    width: 35px;
    height: 35px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition-duration: .3s;
  }
  
  .bars {
    width: 100%;
    height: 2px;
    background-color: #baa170;  
    border-radius: 5px;
    transition-duration: .3s;
  }
  
  #checkbox:checked + .toggle .bars {
    margin-left: 13px;
  }
  
  #checkbox:checked + .toggle #bar2 {
    transform: rotate(135deg);
    margin-left: 0;
    transform-origin: center;
    transition-duration: .3s;
  }
  
  #checkbox:checked + .toggle #bar1 {
    transform: rotate(45deg);
    transition-duration: .3s;
    transform-origin: left center;
  }
  
  #checkbox:checked + .toggle #bar3 {
    transform: rotate(-45deg);
    transition-duration: .3s;
    transform-origin: left center;
  }
  


  .marquecarousel h1{
    animation: marque 14s linear infinite;
    
    line-height: 1.2;
    letter-spacing: 0.7px;
    font-family: "Helvetica";
    font-weight: 400;
  }


  .runningTitle{
    line-height: 1.2;
  }

  @media (max-width: 768px) {
    .marquecarousel h1{
      animation: marque 6s linear infinite;
    }  
  }

  @media (max-width: 1024px) {
    .marquecarousel h1{
      animation: marque 9s linear infinite;
    }  
  }





  @keyframes marque {
    0% {
        transform: translateX(102%);
    }
    100% {
        transform: translateX(-200%);
    }
  }

  .SideBar{
    z-index: 999;
  }



  .HeaderPart{
    z-index: 9999;
  }


  

  .TestimonialSection {
    /* background-color: #000; */
    position: relative;
  }
  
  .TestimonialSection::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('./path-to-your-starry-background.jpg');
    opacity: 0.1;
    pointer-events: none;
  }
  
  #testimonialCarousel {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
  }
  
  .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    transition: opacity 0.3s ease;
  }
  
  .carousel-btn .arrow {
    color: #2f4c6a;
    font-size: 24px;
    line-height: 1;
  }
  
  .carousel-btn:hover {
    opacity: 0.7;
  }
  
  #prevBtn {
    left: 4px;
  }
  
  #nextBtn {
    right: 4px;
  }




  .ItemsForCarousel{
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: 700ms opacity ease-in-out;
  }


  .ActiveItemForCarousel{
    display: block;
  }


  .ItemsForCarousel[data-active]{
    opacity: 1;
  }

  .ProjectSelection[data-selected]{
    border: 4px solid #baa170;
    div{
        display: none;
    }
  }


  .circleAnimation{ 
    animation: circle 2s ease-in-out infinite alternate;
    scale: 1;
  }

  .SquareAnimation{
    animation: square 2s ease-in-out infinite alternate;
    scale: 1.3;
  }


  
  @keyframes square {
    from{
    
      scale: 1.3;
    }
    to{
     
      scale: 1;
    }
    
  }


  @keyframes circle {
    from{
    
      scale: 1;
    }
    to{
     
      scale: 1.3;
    }
    
  }


  #logoContainer {
    /* position: relative; */
    min-height: 80px; /* Adjust this value based on your logo's height */
  }

#stickyLogo {
    position: fixed;
    bottom: 10px;
    left: 65px; 
    z-index: 40;
    transition: all 0.3s ease;
}

#stickyLogo.in-footer {
    position: absolute;
    bottom: auto;
    top: -10px;
    left: 65px;
}

@media (max-width: 1024px) {

  #stickyLogo {
    left: 10px; 
   
}

  #stickyLogo.in-footer {
    position: absolute;
    bottom: auto;
    top: -10px;
    left: 42%;
    
  }
}





#testimonialCarousel {
  overflow: hidden;
}

.testi {
  display: flex;
  transition: transform 0.3s ease-in-out;
}

.testimonials {
  flex: 0 0 100%;
  max-width: 100%;
}



.ContactsHeader .LetsTalkBTN, .HeaderInHospitalSec .LetsTalkBTN{
  color: #2f4c6a;
  border-color: #2f4c6a;
}

.ContactsHeader .bars, .HeaderInHospitalSec .bars{
  background-color: #2f4c6a ;
}



.FooterInContactUs .CompanyLogoHere{
   border: 1px solid #2f4c6a;

   padding: 7px 7px;
}

.FooterInContactUs .contactForm{
  display: none;
}

#AllImagesPreview img {
   height: 600px;
   width: 800px;   
    transition: all 0.7s ease-in-out;   
}

@media (max-width:  768px) {

  #AllImagesPreview img{
    height: 500px;
  }
  
}
@media (max-width : 570px) {

  #AllImagesPreview img{
    height: 450px;
  }
  
}




/* Geekboy :start */
.geekboy {
    color: #fff;
    font-family: Consolas, Menlo, Monaco, monospace;
    font-weight: bold;
    font-size: 20px;
   }

  .geekboy span {
    display: inline-block;
    opacity: 0.8;
    color:#baa170;
    animation: pulse 0.4s alternate infinite ease-in-out;
  }
  .geekboy span:nth-child(odd) {
    animation-delay: 0.4s;
    z-index: 1100;
  }
  @keyframes pulse {
    to {
      transform: scale(0.8);
      opacity: 0.5;
    }
  }
  .geekboy.hidden {
    animation: fadeOut 1s;
    animation-fill-mode: forwards;
  }
  @keyframes fadeOut {
    100% {
      opacity: 0;
      visibility: hidden;
    }
  }
  /* Geekboy */



  .HeroSection {
    position: relative;
    overflow: hidden;
    height: 777px; /* Adjust as needed */
    background-size: cover;
    background-position: center;
    animation: backgroundAnimation 10s infinite alternate;
  }
  
  @keyframes backgroundAnimation {
    0% {
      background-image: url('../Images/HeroSectionImages/1.jpg');
    }
    20% {
      background-image: url('../Images/HeroSectionImages/2.jpg');
    }
    40% {
      background-image: url('../Images/HeroSectionImages/3.jpg');
    }
    60% {
      background-image: url('../Images/HeroSectionImages/4.jpg');
    }
    80% {
      background-image: url('../Images/HeroSectionImages/1.jpg');
    }
    100% {
      background-image: url('../Images/HeroSectionImages/2.jpg');
    }
  }

