:root {
    --primary-color: #016016;
    --secondary-color: #f8b739;
    --accent-color: #e63946;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
}

h1, h2, h3, h4, h5 {
    font-family: 'Roboto Slab', serif;
    font-weight: 600;
}

.navbar {
    background-color: var(--primary-color);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
}

.nav-link {
    font-weight: 500;
    margin: 0 5px;
    transition: all 0.3s;
}

.nav-link:hover {
    color: var(--secondary-color) !important;
}

.hero-section {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.carousel-item {
    height: 500px;
}

.carousel-item img {
    object-fit: cover;
    height: 100%;
}

.carousel-caption {
    background: rgba(0,0,0,0.6);
    padding: 30px;
    border-radius: 10px;
    bottom: 20%;
}

.section-title {
    position: relative;
    margin-bottom: 40px;
    padding-bottom: 15px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
}

.notice-board {
    background-color: var(--light-color);
    border-radius: 10px;
    padding: 0px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.notice-item {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.notice-item:last-child {
    border-bottom: none;
}

.board-member {
    text-align: center;
    margin-bottom: 30px;
}

.board-member img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid var(--light-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.card {
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    margin-bottom: 20px;
}

.card:hover {
    transform: translateY(-5px);
}

.download-item {
    padding: 15px;
    border-radius: 8px;
    background-color: var(--light-color);
    margin-bottom: 15px;
    transition: all 0.3s;
}

.download-item:hover {
    background-color: #e9ecef;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 20px;
}

.gallery-item img {
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.link-item {
    padding: 10px 15px;
    background-color: var(--light-color);
    border-radius: 8px;
    margin-bottom: 10px;
    transition: all 0.3s;
}

.link-item:hover {
    background-color: var(--primary-color);
    color: white;
}

.contact-info {
    margin-bottom: 20px;
}

.contact-info i {
    color: var(--primary-color);
    margin-right: 10px;
}

footer {
    background-color: var(--primary-color);
    color: white;
    padding: 50px 0 20px;
}

.footer-links a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: all 0.3s;
}

.social-icons a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.badge-new {
    background-color: var(--accent-color);
}

.quick-links {
    background-color: var(--primary-color);
    color: white;
    padding: 15px 0;
}

.quick-link-item {
    text-align: center;
    padding: 10px;
    transition: all 0.3s;
}

.quick-link-item:hover {
    background-color: rgba(255,255,255,0.1);
    border-radius: 5px;
}

.quick-link-item i {
    font-size: 1.5rem;
    margin-bottom: 10px;
    display: block;
}

    .carousel-item img {
    height: 570px;
    object-fit: cover;
}

.office-members {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
}

.office-header {
    background: linear-gradient(135deg, #198754, #146c43);
    color: white;
    text-align: center;
    padding: 15px;
}

.office-body {
    padding: 10px;
}

.member-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f8f9fa;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.member-card:hover {
    background: #e9f7ef;
    transform: translateY(-2px);
}

.member-card img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #198754;
}

.member-info h6 {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: #212529;
}

.member-info span {
    font-size: 13px;
    color: #6c757d;
}

.stats-section{
    background: linear-gradient(135deg,#0d6efd,#198754);
    position: relative;
    overflow: hidden;
}

.stats-section::before{
    content:'';
    position:absolute;
    width:300px;
    height:300px;
    background:rgba(255,255,255,.08);
    border-radius:50%;
    top:-100px;
    left:-100px;
}

.stats-section::after{
    content:'';
    position:absolute;
    width:250px;
    height:250px;
    background:rgba(255,255,255,.08);
    border-radius:50%;
    bottom:-80px;
    right:-80px;
}

.stat-card{
    background:rgba(255,255,255,.15);
    backdrop-filter: blur(10px);
    border:1px solid rgba(255,255,255,.2);
    border-radius:20px;
    text-align:center;
    padding:30px 20px;
    color:#fff;
    height:100%;
    transition:all .4s ease;
}

.stat-card:hover{
    transform:translateY(-10px);
    background:rgba(255,255,255,.25);
    box-shadow:0 15px 30px rgba(0,0,0,.2);
}

.icon-box{
    width:80px;
    height:80px;
    margin:auto;
    border-radius:50%;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:20px;
}

.icon-box i{
    font-size:2.2rem;
    color:#198754;
}

.stat-card h2{
    font-size:2.8rem;
    font-weight:700;
    margin-bottom:5px;
}

.stat-card span{
    font-size:1rem;
    opacity:.9;
}

@media(max-width:768px){
    .stat-card h2{
        font-size:2rem;
    }

    .icon-box{
        width:65px;
        height:65px;
    }

    .icon-box i{
        font-size:1.8rem;
    }
}

@media (max-width: 768px) {
    .hero-section, .carousel-item {
        height: 400px;
    }
    
    .carousel-caption {
        bottom: 10%;
        padding: 15px;
    }
    
    .carousel-caption h2 {
        font-size: 1.5rem;
    }
}