      /* Carousel */
      .carousel-inner {
        position: relative;
        width: 100%;
        /* height: 900px;  */
        overflow: hidden;
      }

      .carousel-item {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 80%;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.7s ease, visibility 0s 0.7s;
      }

      .carousel-item.active {
        opacity: 1;
        visibility: visible;
        transition: opacity 0.7s ease, visibility 0s 0s;
      }


      .carousel-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      .carousel-toggle {
        position: absolute;
        top: 0;
        right: 0;
        margin: 0.5rem;
        z-index: 5;
        border-radius: 4px;
        font-size: 0.875rem;
        font-weight: 500;
        background-color: rgba(255, 255, 255, 0.85);
        padding: 4px 10px;
        transition: background-color 0.3s ease, color 0.3s ease;
      }

      .carousel-toggle:hover {
        background-color: #e2e6ea;
        color: #000;
        text-decoration: none;
      }
      
      .scheme-strip {
        margin-top: 20px;
        margin-bottom: 20px;
      }
      
/* Kill any left alignment coming from .left or bootstrap */
.scheme-box,
.scheme-box * {
  text-align: center !important;
}

/* Make sure the card itself is centered layout-wise */
.scheme-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Bigger diamond */
.scheme-diamond {
  width: 78px !important;
  height: 78px !important;
  margin: 0 auto 14px;
}

/* Center icon perfectly */
.scheme-diamond {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Huge golden icon */
.scheme-diamond i {
  font-size: 34px !important;
  color: #d4af37 !important; /* gold */
  text-shadow: 0 0 8px rgba(212,175,55,0.65);
}

/* Force white text */
.scheme-box h3,
.scheme-box p {
  color: #ffffff !important;
}