.gallery img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 20px;
}

.services {
  margin-top: 0px;
  margin-bottom: 60px;
}

.services h2 {
  font-size: 32px;
  text-align: center;
  margin-bottom: 40px;
  color: #3b2d3c; /* deep plum like original */
}

.service-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.service {
  flex: 1;
  min-width: 280px;
  max-width: 32%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.service h3 {
  background-color: black;
  color: white;
  font-size: 18px;
  padding: 10px;
  text-align: center;
  width: 100%;
  margin-bottom: 0;
}

.service img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
}

.service p {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}


.features {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 40px 0;
  text-align: center;
}

.feature {
  color: white;
  font-weight: bold;
  font-size: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.feature i {
  font-size: 96px;
  padding: 20px;
  color: white;
  margin-bottom: 15px;
}

.feature p {
  margin: 0;
}

.affiliations-image {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}

a {
  color: #6a1b9a;
}

a:hover {
  color: #8e24aa;
}

.slideshow {
  position: relative;
  aspect-ratio: 16 / 9;
  background-color: black;
  padding: 10px, 10px;
  margin: 20px auto;
  display: flex;
  align-items: center;     
  justify-content: center; 
  box-sizing: border-box;
  overflow: hidden;
}


.slideshow img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border: 5px solid white;
  background-color: black;
  display: none;
}

.slideshow img.active {
  display: block;
}


.slideshow img.active {
  opacity: 1;
}


.slideshow-buttons {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 12px;
  z-index: 2;
}

.slideshow-buttons .dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #777;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}

.slideshow-buttons .dot.active {
  background-color: #774077;
}


.slideshow-buttons .dot.active {
  background-color: #754c84; /* Purple or accent color for active dot */
}


.fade {
  animation: fadeEffect 1.5s ease-in-out;
}

@keyframes fadeEffect {
  from { opacity: 0.3; }
  to { opacity: 1; }
}

.page-container {
  width: 60%;
  margin: 0 auto;
}

@media (max-width: 992px) {


  body {
    font-size: 15px;
    line-height: 1.5;
  }

  .page-container, 
  .footer-container, 
  .header-inner {
    width: 90%;
  }

  .header-inner {
    flex-direction: column;
    gap: 20px;
  }

  .nav {
    flex-direction: column;
    gap: 10px;
  }

.slideshow {
  width: 100vw;
  background-color: black !important;
  margin: 0 auto;
  padding: 0;
}


  .slideshow img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-width: 3px;
  }

  .services h2,
  .why-unico h2 {
    font-size: 24px;
  }

  .service-grid {
    flex-direction: column;
    gap: 30px;
  }

  .service {
    max-width: 100%;
    text-align: center;
    align-items: center;
  }

  .footer-columns {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-column {
    font-size: 14px;
  }

  .footer-links-text {
    font-size: 14px;
    padding: 0 10px;
  }

.slideshow {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: black !important;
  padding: 10px, 10px;
  margin: 20px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.slideshow img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  border: 5px solid white;
  background-color: black !important;
  display: none;
}

.slideshow img.active {
  display: block;
}


}