/* Custom CSS */
@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@400;600;700&display=swap'); /* A modern Bangla font */

body {
    font-family: 'Hind Siliguri', SolaimanLipi, Arial, sans-serif;
    background: #f8f9fa;
    color: #333;
}
.topbar {
    background: #004d40; /* Darker green for professionalism */
    color: #fff;
    font-size: 13px;
    padding: 8px 0;
    border-bottom: 1px solid #00332c;
}
.topbar .pull-right a {
    color: #ffeb3b; /* Golden yellow for highlights */
    margin-left: 15px;
    text-decoration: none;
}
.topbar .pull-right a:hover {
    text-decoration: underline;
}
.navbar-custom {
    background: #006a4e; /* Bangladesh green */
    border: none;
    margin-bottom: 0;
    border-radius: 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.navbar-custom .navbar-nav > li > a,
.navbar-custom .navbar-brand {
    color: #fff !important;
    font-weight: 600;
    padding-top: 20px;
    padding-bottom: 20px;
}
.navbar-nav li a {
    background-color: #006a4e !important;
}
.navbar-custom .navbar-nav > li > a:hover,
.navbar-custom .navbar-nav > li.active > a {
    background-color: #004d40 !important;
    color: #ffeb3b !important;
}
.navbar-custom .navbar-brand {
    font-size: 24px;
    text-transform: uppercase;
}

.navbar-custom .navbar-toggle .icon-bar {
    background-color: #fff;
}
.navbar-custom .navbar-toggle:hover,
.navbar-custom .navbar-toggle:focus {
    background-color: #004d40;
}
/* --- Navbar Toggle Button Style End --- */

.carousel {
    height: 500px; /* Increased height for better visual impact */
    overflow: hidden;
    position: relative;
}
.carousel .item {
    height: 500px;
    background-size: cover;
    background-position: center center;
}
.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5); /* Darker overlay for text readability */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
}
.banner-overlay img {
    max-width: 120px; /* Larger logo */
    margin-bottom: 15px;
    border-radius: 50%;
    border: 3px solid #ffeb3b;
}
.banner-overlay h2 {
    margin: 0;
    font-size: 48px; /* Larger heading */
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}
.banner-overlay p {
    margin: 10px 0 0;
    font-size: 22px; /* Larger subheading */
    font-weight: 400;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
}
.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #006a4e;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}
.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    height: 4px;
    width: 80px;
    background-color: #ffeb3b;
    border-radius: 2px;
}
.counter-box {
    background: #fff;
    padding: 30px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    transition: all .3s ease;
    border-bottom: 4px solid #006a4e;
}
.counter-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.counter-box h2 {
    color: #006a4e;
    font-size: 42px; /* Larger counter numbers */
    margin: 0 0 10px;
    font-weight: 700;
}
.counter-box p {
    font-size: 18px;
    color: #555;
    font-weight: 600;
}
.district-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 30px;
    transition: all .4s ease;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}
.district-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}
.district-card img {
    width: 100%;
    height: 200px; /* Slightly larger image height */
    object-fit: cover;
    border-bottom: 1px solid #eee;
}
.district-card-body {
    padding: 20px;
}
.district-card-body h4 {
    font-size: 24px;
    color: #006a4e;
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: 700;
}
.district-card-body p {
    font-size: 16px;
    color: #666;
    margin-bottom: 15px;
}
.district-card-body .btn-success {
    background-color: #006a4e;
    border-color: #006a4e;
    font-size: 14px;
    padding: 8px 15px;
    border-radius: 5px;
    transition: background-color .3s;
}
.district-card-body .btn-success:hover {
    background-color: #004d40;
    border-color: #004d40;
}
.panel-default {
    border-color: #e0e0e0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 20px;
}
.panel-default > .panel-heading {
    background-color: #f5f5f5;
    border-color: #e0e0e0;
    font-weight: 600;
    color: #006a4e;
}
.notice-list {
    list-style: none;
    padding: 0;
}
.notice-list li {
    padding: 12px 0;
    border-bottom: 1px dashed #ddd;
    font-size: 16px;
}
.notice-list li:last-child {
    border-bottom: none;
}
.notice-list li a {
    color: #337ab7;
    text-decoration: none;
    transition: color .3s;
}
.notice-list li a:hover {
    color: #006a4e;
    text-decoration: underline;
}
.links-box {
    background: #fff;
    padding: 25px;
    text-align: center;
    border-radius: 8px;
    border: 1px solid #eee;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all .3s ease;
}
.links-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.links-box a {
    font-size: 18px;
    font-weight: 600;
    color: #006a4e;
    text-decoration: none;
}
.links-box a:hover {
    color: #004d40;
    text-decoration: underline;
}
.footer {
    background: #004d40; /* Darker green footer */
    color: #fff;
    padding: 40px 0;
    margin-top: 60px;
    font-size: 15px;
}
.footer a {
    color: #ffeb3b;
    margin: 0 8px;
    text-decoration: none;
}
.footer a:hover {
    text-decoration: underline;
}
.footer p {
    margin-bottom: 8px;
}