body {
    font-family: 'Hind Siliguri', sans-serif;
    direction: ltr;
}

.probashi-header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.probashi-header .navbar-brand {
    font-weight: 700;
    color: #488dbd;
    font-size: 1.5rem;
}

.probashi-header .nav-link {
    color: #333;
    font-weight: 500;
    margin: 0 10px;
    position: relative;
}

.probashi-header .nav-link:hover,
.probashi-header .nav-link.active {
    color: #f7c445;
}

.probashi-header .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #f7c445;
    border-radius: 3px;
}

.probashi-footer {
    background-color: #488dbd;
    color: #fff;
    padding: 40px 0 20px;
}

.probashi-footer h5 {
    color: #f7c445;
    margin-bottom: 20px;
    font-weight: 600;
}

.probashi-footer .footer-links {
    list-style: none;
    padding: 0;
}

.probashi-footer .footer-links li {
    margin-bottom: 10px;
}

.probashi-footer .footer-links a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
}

.probashi-footer .footer-links a:hover {
    color: #f7c445;
    padding-left: 5px;
}

.probashi-footer .social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: all 0.3s;
}

.probashi-footer .social-links a:hover {
    background-color: #f7c445;
    color: #488dbd;
    transform: translateY(-3px);
}

.probashi-footer hr {
    border-color: rgba(255,255,255,0.1);
    margin: 20px 0;
}