

    html,
    body {
      position: relative;
      height: 100%;
    }

    body {
      background: white;
      font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
      font-size: 14px;
      color: #000;
      margin: 0;
      padding: 0;
    }

      /* Ensure each slide takes up the full browser width */
      .swiper-container {
          width: 100%; 
          height: 100vh; 
      }

      .swiper-slide {
          width: 100%; 
          height: 100%; 
          display: flex;
        
          align-items: center;
          justify-content: flex-start;
          align-items: flex-start; 
      }

      .swiper-slide img {
          max-width: 100%;  Ensure image scales down to fit smaller screens */
          height: auto;
          object-fit: contain;
      }

     
    /* Change the color of inactive bullets */
    .swiper-pagination-bullet {
        background-color: #777777; 
        opacity: 1; /* Ensure full opacity */
    }

    /* Change the color of the active bullet */
    .swiper-pagination-bullet.swiper-pagination-bullet-active {
        background-color: #cc0000; 
    }



* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
}


/*
.image-container {
    height: 100vh; / * Each image takes up full viewport height * /
    display: flex;
    justify-content: center; / * Center the image horizontally * /
    align-items: center; / * Center the image vertically * /
    overflow: hidden;
}

.image-container img {
    height: 100%;
    width: auto; / * Maintain aspect ratio * /
    display: block;
}
*/



.swiper-container {
  width: 100%;
  height: 90vh; 
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.swiper-slide img {
  height: 100%;
  width: auto;
}

