/* Container to position the background images */
.hero {
    position: relative;
    background-size: cover;
    background-position: center;
  }
  
  /* Background Layer */
  .slide-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    animation: slideAnimation 15s infinite;
    background-size: cover;
    background-position: center;
    opacity: 0.8;
  }
  
  /* Keyframe Animation for Background Image Sliding */
  @keyframes slideAnimation {
    0% {
      background-image: url('../images/hero/1.png');
    }
    33% {
      background-image: url('../images/hero/5.png');
    }
    66% {
      background-image: url('../images/hero/3.jpeg');
    }
    100% {
      background-image: url('../images/hero/4.jpg');
    }
    100% {
      background-image: url('../images/hero/5.jpg');
    }
    100% {
      background-image: url('../images/hero/7.jpg');
    }
  }
  
  /* Optional: Smooth fade-in effect for hero section */
  .fade-in {
    animation: fadeIn 2s ease-in-out;
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }


  /* Lightbox Container */
#lightbox {
  transition: opacity 0.4s ease-in-out;
}

/* Image Zoom Animation */
#lightbox-img {
  transform-origin: center center;
  transition: transform 0.5s ease-in-out;
}


.footer-credit {
  font-family: Arial, sans-serif;
  font-size: 16px;
  color: #555; /* Subtle gray color for the text */
  margin-top: 20px;
}

.footer-credit a {
  text-decoration: none;
  color: #0077cc; /* Professional blue color */
  transition: color 0.3s ease, box-shadow 0.3s ease;
}

.footer-credit a:hover {
  color: #004a99;
  box-shadow: 0px 2px 5px rgba(0, 119, 204, 0.3); /* Adds a subtle shadow on hover */
}

.footer-credit .company-name {
  font-weight: bold;
  color: #0077cc;
}

.footer-credit span {
  display: inline-block;
  padding: 0 4px;
}

.text-center {
  text-align: center;
}

