.social-icons .fa-linkedin {
    background-color: rgba(255, 255, 255, 0.363);
    color: black;
  }

  .smaller-font {
    font-size: 1.1em;  /* Adjust this value as needed */
  }
  
  .smaller-font h2 {
    font-size: 1.1em;  /* Adjust heading sizes as needed */
  }
  
  .smaller-font h3 {
    font-size: 1.1em;
  }
  
  .smaller-font ul, .smaller-font ol {
    font-size: 0.9em;  /* Adjust list font size if needed */
  }

/* Swiper custom styles for homepage slider */
.mySwiper {
  width: 100%;
  max-width: 1200px;
  height: 350px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}
.mySwiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  height: 100%;
}
.mySwiper .swiper-slide img {
  width: 100%;
  height: 350px;           /* Set your desired height */
  object-fit: cover;       /* Ensures the image covers the area, cropping as needed */
  object-position: center; /* Center the image vertically (default), or use 'top'/'bottom' */
  display: block;
  border-radius: 0;
}