.intro-section-audiovisual-page {
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: #ffffff;
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.content-wrapper-audiovisual-page {
  max-width: 900px;
  margin-bottom: 3rem;
  animation: fadeInUp-audiovisual-page 1s ease-out;
}

.paragraph-audiovisual-page {
  font-size: 1.1rem;
  line-height: 2;
  color: #e0e0e0;
  margin-bottom: 2.5rem;
  text-align: justify;
  position: relative;
  padding: 1rem 0;
}

.paragraph-audiovisual-page::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 20%;
  height: 1px;
  background-color: #ff6a00; /* Your border color */
}

.paragraph-audiovisual-page::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 20%;
  height: 1px;
  background-color: #ff6a00;
}

.paragraph-audiovisual-page::first-letter {
  font-size: 3rem;
  font-weight: 100;
  float: left;
  line-height: 1;
  margin-right: 8px;
  font-family: 'Poppins', sans-serif;
}

.cta-button-audiovisual-page {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  background: linear-gradient(to right, #ff6a00, #ee0979);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button-audiovisual-page:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Simple fade-in animation */
@keyframes fadeInUp-audiovisual-page {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.image-gallery-audiovisual-page {
  padding: 3rem 1rem;
  background: linear-gradient(135deg, #8eb5c5, #1cb2e3, #2c5364);
}

.image-container-audiovisual-page {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.image-box-audiovisual-page {
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 5px rgba(0, 255, 234, 0.64);
}

.img-audiovisual-page {
  width: 100%;
  height: 250px; /* Increased height */
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.image-box-audiovisual-page:hover .img-audiovisual-page {
  transform: scale(1.05); /* Optional zoom effect */
}

.overlay-audiovisual-page {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.367); /* Keep this if you want the dark overlay */
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1; /* Always visible now */
  transition: none; /* You can remove the transition since it's always visible */
}

.see-more-button-audiovisual-page {
  background: linear-gradient(to right, #713306aa, #360a1f86);
  color: #ffffff;
  border: 0.1px solid white;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  font-weight: 200;
  box-shadow: 0 1px 4px rgba(9, 207, 238, 0.528);
  transition: all 0.3s ease;
}

.see-more-button-audiovisual-page:hover {
  background: none;
  border-radius: 50%;
  color: #ffffff;
  border: none;
}

.audiovisual-services-section-audiovisual-page {
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  padding: 4rem 2rem;
  color: #ffffff;
}

.container-audiovisual-page {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.title-audiovisual-page {
  color: #ff6a00;
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: fadeInDown-audiovisual-page 1s ease-in-out;
}

.services-list-audiovisual-page {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.service-item-audiovisual-page {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 2rem 1.5rem;
  margin-bottom: 2.5rem;
  transition: transform 0.4s, background 0.4s;
  position: relative;
  overflow: hidden;
}

.service-item-audiovisual-page:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.1);
}

.service-title-audiovisual-page {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #ff6a00;
  animation: fadeInUp-audiovisual-page 1.2s ease;
}

.service-description-audiovisual-page {
  font-size: 1rem;
  line-height: 1.6;
  animation: fadeInUp-audiovisual-page 1.5s ease;
  text-align: justify;
}

/* Animations */
@keyframes fadeInDown-audiovisual-page {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp-audiovisual-page {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.audiovisual-contact-section {
  background: #203a43; /* Complementing background to match the design */
  padding: 1rem 2rem;
  text-align: center;
  color: #ffffff;
  opacity: 0;
  margin-bottom: 2rem;
  animation: fadeInUp 1.5s ease-out forwards;
}

.audiovisual-contact-text {
  font-family: 'poppins', sans-serif;
  font-size: 1.25rem;
  line-height: 1.6;
  font-weight: 200;
  max-width: 800px;
  text-transform: uppercase;
  margin: 2rem auto;
  color: #00e6e6; /* Matching the color from the titles */
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#scrollToTopBtn:hover {
  box-shadow: 0 2px 4px white;
  background-color: darkgray;
  background: linear-gradient(to bottom,#0358747c, #edeae780); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

@media (min-width: 768px) {
  .image-container-audiovisual-page {
    grid-template-columns: repeat(2, 1fr);
  }
}