body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fefefe;
  color: #333;
}

.container {
  width: 90%;
  margin: 0px auto;
  max-width: 1400px;
}

.content {
  background-color: #e9ceea;
  display: flex;
  padding: 20px;
  gap: 20px;
}

.boxed {
  width: 90%;
  margin: 0px auto;
  max-width: 900px; 
}

ul.bullet{
list-style-type: none; 
padding: 0px;
}

li.i{
background-image: url('images/signbrella_bullet_tiny.png');
background-repeat: no-repeat;
margin-bottom: 10px;
padding-bottom: 5px;
padding-left: 40px;
}

li.hl {
background-image: url('images/signbrella_bullet_tiny.png');
background-repeat: repeat;
margin-bottom: 10px;
margin-right: 12px;
padding-bottom: 5px;
padding-left: 40px; 
}

header {
  background-color: #282828;
  color: white;
  padding: 20px 0;
  text-align: center;
}

header nav ul {
  list-style: none;
  padding: 0;
}

header nav ul li {
  display: inline-block;
  padding: 0 30px;
}

header nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: large;
}
   

#heroine {
  background-color: #e9ceea;
  color: black;
}

#hero {
  background-color: #282828;
  color: white;
  text-align: center;
  padding: 60px 0;
}

footer {
  background-color: #282828;
  color: white;
  padding: 10px 0;
  text-align: center;
}

footer a {
  color: #ff6f61;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

.carousel {
      width: 100%;
      height: 500px; /* adjust as needed */
      position: relative;
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
      background: #000; /* black bars if aspect ratio differs */
    }

    .carousel-images {
      position: relative;
      width: 100%;
      height: 100%;
    }

    /* Base state: all hidden */
    .carousel-images img {
      position: absolute;
      top: 50%;
      left: 50%;
      max-width: 100%;
      max-height: 100%;
      transform: translate(-50%, -50%);
      object-fit: contain;
      opacity: 0;
      pointer-events: none;
    }

    /* Fallback: if JS fails, show first image only */
    .carousel-images img:first-child {
      opacity: 1;
      pointer-events: auto;
    }

    /* Fade in / out */
    @keyframes fade {
      0%   { opacity: 0; }
      10%  { opacity: 1; }
      30%  { opacity: 1; }
      40%  { opacity: 0; }
      100% { opacity: 0; }
    }





