body {
    font-family: 'Hind Siliguri', sans-serif;
    background-color: #f8f9fa;
}

.header-bg {
    background-color: #0f3041;
}

.nav-bg {
    background-color: #29708c;
}

.footer-bg {
    background-color: #0f3041;
}

.nav-link.active {
    background-color: #ffc107;
    color: #212529 !important;
}

.nav-link:hover {
    background-color: #ffc107;
    color: #212529 !important;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: #ffc107 !important;
    transition: color 0.3s ease;
}

.footer-link-special {
    color: #ffc107;
}

.footer-link-special:hover {
    text-decoration: underline;
}

.dropdown-menu {
    background-color: #29708c;
    border: none;
}

.dropdown-item {
    color: white;
}

.dropdown-item:hover {
    background-color: #ffc107;
    color: #212529 !important;
}

.navbar-toggler {
    background-color: rgba(255, 255, 255, 0.2);
}

.navbar-toggler-icon {
    filter: invert(1);
}

/* Vertical carousel override */
.carousel-vertical .carousel-inner {
    display: flex;
    flex-direction: column;
    height: 200px;
    overflow: hidden;
}

.carousel-vertical .carousel-item {
    transition: transform 0.6s ease-in-out;
}

.carousel-vertical .carousel-item-next.carousel-item-start,
.carousel-vertical .carousel-item-prev.carousel-item-end {
    transform: translateY(0);
}

.carousel-vertical .active.carousel-item-end {
    transform: translateY(-100%);
}

.carousel-vertical .active.carousel-item-start {
    transform: translateY(100%);
}

.carousel-vertical .carousel-item-next,
.carousel-vertical .carousel-item-prev {
    position: absolute;
    top: 0;
    width: 100%;
}

#slides .item {
    padding: 20px 0px !important;
}


.link-list-title {
    font-weight: 600;
    border-bottom: 2px solid #3b82f6;
    /* blue line */
    padding-bottom: 5px;
    margin-bottom: 15px;
}

.link-list-item {
    background-color: #1e78b9;
    /* blue background */
    color: white;
    padding: 10px 15px;
    margin-bottom: 8px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.link-list-item:hover {
    background-color: #166699;
    /* darker blue on hover */
    text-decoration: none;
    color: white;
}

.link-list-icon {
    margin-right: 12px;
    font-size: 18px;
    width: 24px;
    text-align: center;
}

.border-bottom-custom {
    border-bottom: 2px solid #2177A3;
    /* display: inline-block; */
}

.view-more {
    text-align: right;
    margin-top: 10px;
}

.view-more a{
    font-weight: 600;
    text-decoration: none;
    color: #29708C;
}