
body {
	background-color: #f8f9fa;
	padding-top: 80px;
}
.logo {
	max-width: 180px;
}
.section-divider {
	width: 120px;
	height: 3px;
	background-color: #000;
	margin: 20px auto;
}
.under-construction {
	background: #fff3cd;
	border: 1px solid #ffeeba;
	padding: 15px;
	border-radius: 5px;
	font-weight: 600;
}
.purpose-img {
	max-width: 100%;
	border-radius: 10px;
}

.scroll-container {
    overflow: hidden;
    width: 100%;
}

.scroll-track {
    display: flex;
    width: max-content;
    animation: scroll-left 25s linear infinite;
}

.scroll-item {
    min-width: 320px;
    margin: 0 15px;
}
.scroll-item img {
    width: 280px;      /* adjust as needed */
    height: 180px;     /* fixed height */
    object-fit: cover; /* keeps image ratio & crops nicely */
}

/* Pause on hover (optional) */
.scroll-container:hover .scroll-track {
    animation-play-state: paused;
}

/* Animation */
@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}



/* IBUF Navbar Style */
.ibuf-navbar {
    background: rgba(255, 255, 255, 0.92); /* NOT fully transparent */
    backdrop-filter: blur(6px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    padding: 12px 0;
    z-index: 9999;
}

.ibuf-navbar .navbar-brand {
    font-size: 1.3rem;
    letter-spacing: 1px;
}

.ibuf-navbar .nav-link {
    color: #000 !important;
    font-weight: 500;
    margin-left: 15px;
    position: relative;
}

/* Hover underline effect */
.ibuf-navbar .nav-link::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: #000;
    left: 0;
    bottom: 0;
    transition: width 0.3s ease;
}

.ibuf-navbar .nav-link:hover::after,
.ibuf-navbar .nav-link.active::after {
    width: 100%;
}

footer a {
    transition: color 0.3s;
}

footer a:hover {
    color: #000; /* highlight on hover */
    text-decoration: underline;
}

footer h6 {
    margin-bottom: 10px;
}

/* Navbar Logo */
.navbar-logo {
    height: 40px; /* Adjust to match menu height */
    width: auto;
}
