* { box-sizing: border-box; margin: 0; padding: 0; }

.bput-container {
    max-width: 1140px; /* BPUT uses a standard bootstrap-width container */
    margin: 0px auto;
    border: 1px solid #ddd;
    position: relative;
    background: #fff;
	
}

.bput-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.bput-slide {
    display: none; /* Hidden by default */
}

/* Ensure image stays proportional on mobile and desktop */
.bput-slide img {
    display: block;
    height: auto; /* This makes it look the same on mobile and desktop */
    width: 100%;
}

/* BPUT Style Caption Bar */
.bput-text {
    background: rgba(0, 51, 102, 0.85); /* Dark Blue BPUT Theme */
    color: #ffffff;
    font-size: 15px;
    padding: 5px 2px;
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: left;
    border-top: 3px solid #ff9900; /* Orange Accent line */
}

.bput-text h3 {
    margin: 0 0 5px 0;
    font-size: 18px;
    color: #ff9900; /* BPUT Secondary Color */
}

/* Navigation Arrows */
.bput-prev, .bput-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0,0,0,0.3);
    z-index: 2;
}

.bput-next { right: 0; border-radius: 3px 0 0 3px; }
.bput-prev:hover, .bput-next:hover { background-color: #003366; }

/* Navigation Dots */
.bput-dots {
    position: absolute;
    bottom: 70px; /* Positioned above the blue text bar */
    right: 20px;
    z-index: 3;
}

.bput-dot {
    cursor: pointer;
    height: 13px;
    width: 13px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}
.bput-dot.active { background-color: #ff9900; width: 30px; border-radius: 10px; }
.bput-dot:hover { background-color: #ff9900; }

/* Fading animation */
.bput-fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
}

/* Mobile Responsiveness */
@media only screen and (max-width: 600px) {
    .bput-text { padding: 8px 12px; }
    .bput-text h3 { font-size: 14px; }
    .bput-text p { font-size: 11px; }
    .bput-dots { bottom: 10px; }
}