body {
    text-align: center;
    background-color: #02181f; /* softer version of reels bg */
    color: #e6f1f2;
}

/* SECTION TITLE */
h2 {
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 20px;
    opacity: 0.9;
}

/* CAROUSEL CONTAINER */

.carousel {
  text-align: center;
}

.carousel-inner img {
  display: block;
  margin: 0 auto;
}


.carousel-inner {
    background: rgba(0, 0, 0, 0.6); /* less harsh than pure black */
    border-radius: 10px;
    padding: 10px;
}

/* EACH SLIDE */
.carousel-inner .item {
    height: 500px;
    display: flex;
    flex-direction: column;  
    align-items: center;
    justify-content: center;
}
/* CENTER IMAGE NICELY */


.carousel-inner .item.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* IMAGE STYLING (MAIN FOCUS) */
.carousel-inner .item img {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;

    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.7); /* depth */
}

/* CONTROLS (ARROWS) */
.carousel-control {
    opacity: 0.4;
    transition: opacity 0.2s ease;
}

.carousel-control:hover {
    opacity: 0.9;
}

/*
.carousel-caption-custom {
  position: static;
  display: block;
  width: 100%;
  text-align: center;
  margin: 10px auto 0 auto;
  margin-top:10px;
  left: auto;
  right: auto;
}*/

.carousel-caption-custom {
  text-align: center;
  margin-top: 12px;
  padding: 8px 14px;

  background: rgba(255, 255, 255, 0.08);  /* subtle light overlay */
  border-radius: 6px;

  display: inline-block;   /* keeps it snug around text */
}


/* INDICATORS (DOTS) */

.carousel-indicators {
  position: static;
  margin: 15px auto 0 auto;   /* centers horizontally */
  text-align: center;
  width: 100%;
}

.carousel-indicators li {
    background-color: #6fa8a8; 
    border: none;
    display: inline-block;    
    float: none;               
    width: 10px;
    height: 10px;
    margin: 5px;
}

.carousel-indicators .active {
    background-color: #94D2BD; /* your accent color */
}

/* BACK BUTTON */
.btn {
    margin-top: 25px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(148,210,189,0.4);
    border-radius: 6px;
    padding: 10px 18px;
    color: #e6f1f2;

    box-shadow: none;
    transition: all 0.2s ease;
}

.btn:hover {
    background: rgba(148,210,189,0.2);
    border-color: #94D2BD;
}

/* FOOTER */
footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    font-size: 0.9em;
    opacity: 0.7;
}

/* FADE TRANSITION INSTEAD OF SLIDE */
/*.carousel.carousel-fade .item {
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}*/

.carousel.carousel-fade .item {
    transition: opacity 1s ease-in-out;
}
.carousel.carousel-fade .item.active {
    opacity: 1;
}

/* Prevent sliding movement */
.carousel.carousel-fade .active.left,
.carousel.carousel-fade .active.right {
    left: 0;
    opacity: 0;
    z-index: 1;
}

.carousel.carousel-fade .next.left,
.carousel.carousel-fade .prev.right {
    opacity: 1;
    z-index: 2;
}

.carousel.carousel-fade .next,
.carousel.carousel-fade .prev {
    left: 0;
}
.carousel.carousel-fade .item,
.carousel.carousel-fade .active,
.carousel.carousel-fade .next,
.carousel.carousel-fade .prev {
    left: 0 !important;
    transform: none !important;
}

.carousel.carousel-fade .item {
    opacity: 0;
    position: absolute;
    width: 100%;
}

.carousel.carousel-fade .item.active {
    position: relative;
}

.box {
    margin-top:10px;
}

.col-md-6, .col-md-4, .col-md-3, .col-md-12 {
    margin-left:5px;
    margin-right:5px;
}