:root {
    --primary-black: #222222;
    --primary-yellow: #e8dbb8;
    --primary-grey: #317b53;
    --light-grey: #f8f9fa;
    --dark-grey: #333333;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.td,.serv{
    background-color: #F4EBD3;
}
.td:hover{
    background-color: transparent;
    color: #fff;
}
.serv{
    background-color: var(--dark-grey);
    color: var(--primary-yellow);
}
.serv:hover{
    background-color: var(--primary-yellow);
    transition-delay: 0.1s;
}
/* Header Styles */
.top-bar {
    background:#317b53;
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

.top-bar a {
    color: white;
    text-decoration: none;
    margin-right: 15px;
}

.top-bar a:hover {
    color: var(--primary-yellow);
}

/* Navigation */
.navbar {
    background-color: white !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    height: 60px;
    width: 80%;
}

.nav-link {
    color: var(--primary-black) !important;
    font-weight: 600;
    padding: 10px 15px !important;
    text-transform: uppercase;
    font-size: 14px;
}

.nav-link:hover, .nav-link:focus {
    color: var(--primary-yellow) !important;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.dropdown-item {
    color: var(--primary-black);
    font-weight: 500;
}

.dropdown-item:hover {
    background-color: var(--primary-yellow);
    color: var(--primary-black);
}


    /* Hero Section Styling */
    .hero-section {
        padding: 100px 0;
        background: #317b53;
        color: white;
        position: relative;
    }
    
    .hero-content {
        padding-right: 30px;
    }
    
    .hero-title {
        font-size: 2.8rem;
        font-weight: 700;
        margin-bottom: 20px;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 30px;
        opacity: 0.9;
    }
    
    .hero-buttons .btn {
        padding: 12px 25px;
        font-weight: 600;
        border-radius: 4px;
    }
    
    /* Slideshow Styling */
    .hero-slideshow {
        position: relative;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 10px 30px --primary-black;
        height: 400px;
    }
    
    .hero-slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        opacity: 0;
        transition: opacity 1s ease-in-out;
    }
    
    .hero-slide.active {
        opacity: 1;
    }
    
    .slide-caption {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(0,0,0,0.6);
        padding: 20px;
        color: white;
    }
    
    .slide-caption h3 {
        margin: 0;
        font-size: 1.4rem;
    }
    
    .slide-controls {
        position: absolute;
        top: 50%;
        width: 100%;
        display: flex;
        justify-content: space-between;
        transform: translateY(-50%);
        padding: 0 15px;
        z-index: 10;
    }
    
    .slide-controls button {
        background: rgba(232, 219, 184, 0.8);
        color: var(--primary-black);
        border: none;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s;
    }
    
    .slide-controls button:hover {
        background: var(--primary-yellow);
    }
    
    .slide-indicators {
        position: absolute;
        bottom: 20px;
        left: 0;
        right: 0;
        display: flex;
        justify-content: center;
        gap: 10px;
        z-index: 10;
    }
    
    .slide-indicators .indicator {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: rgba(255,255,255,0.5);
        cursor: pointer;
        transition: all 0.3s;
    }
    
    .slide-indicators .indicator.active {
        background: var(--primary-yellow);
        transform: scale(1.2);
    }
    
    @media (max-width: 991.98px) {
        .hero-section {
            padding: 80px 0;
        }
        .hero-content {
            padding-right: 0;
            margin-bottom: 40px;
            text-align: center;
        }
        .hero-buttons {
            justify-content: center;
        }
        .hero-title {
            font-size: 2.2rem;
        }
    }
    
    @media (max-width: 767.98px) {
        .hero-title {
            font-size: 1.8rem;
        }
        .hero-subtitle {
            font-size: 1rem;
        }
        .hero-slideshow {
            height: 300px;
        }
    }


/* Quick Links */
.quick-links {
    background-color: var(--primary-black);
    padding: 20px 0;
    color: white;
}

.quick-link-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.quick-link-icon {
    background-color: var(--primary-yellow);
    color: var(--primary-black);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

/* Services Section */
.services-section {
    padding: 60px 0;
    background-color: var(--light-grey);
}

.section-title {
    color: var(--primary-black);
    font-weight: 700;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--primary-yellow);
    bottom: -10px;
    left: 0;
}

.service-card {
    background-color: white;
    border: none;
    border-radius: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: transform 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-yellow);
    margin-bottom: 15px;
}

.service-title {
    color: var(--primary-black);
    font-weight: 700;
    margin-bottom: 15px;
}

/* News Section */
.news-section {
    padding: 60px 0;
}

.news-card {
    border: none;
    border-radius: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.news-date {
    background-color: var(--primary-yellow);
    color: var(--primary-black);
    padding: 5px 15px;
    font-weight: 600;
    position: absolute;
    top: 15px;
    left: 15px;
}

.news-title {
    color: var(--primary-black);
    font-weight: 700;
}

.news-title a {
    color: inherit;
    text-decoration: none;
}

.news-title a:hover {
    color: var(--primary-yellow);
}

/* Footer */
.footer {
    background-color: var(--primary-black);
    color: white;
    padding: 60px 0 0;
}

.footer-title {
    color: var(--primary-yellow);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
}

.footer-links a:hover {
    color: var(--primary-yellow);
}

.footer-contact-item {
    display: flex;
    margin-bottom: 15px;
}

.footer-contact-icon {
    color: var(--primary-yellow);
    margin-right: 15px;
    width: 20px;
}

.social-icons a {
    color: white;
    background-color: var(--primary-grey);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.social-icons a:hover {
    background-color: var(--primary-yellow);
    color: var(--primary-black);
}

.copyright {
    background-color: var(--dark-grey);
    padding: 20px 0;
    margin-top: 30px;
}

/* Emergency Banner */
.emergency-banner {
    background-color: red;
    color: white;
    padding: 15px 0;
    text-align: center;
    font-weight: 600;
}

.emergency-banner a {
    color: white;
    text-decoration: underline;
}

/* about page */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Header Styles */

/* Navigation */
.navbar {
    background-color: white !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    height: 60px;
}

.nav-link {
    color: var(--primary-black) !important;
    font-weight: 600;
    padding: 10px 15px !important;
    text-transform: uppercase;
    font-size: 14px;
}

.nav-link:hover, .nav-link:focus {
    color: var(--primary-yellow) !important;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.dropdown-item {
    color: var(--primary-black);
    font-weight: 500;
}

.dropdown-item:hover {
    background-color: var(--primary-yellow);
    color: var(--primary-black);
}

/* Page Header */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-yellow);
}

.breadcrumb {
    background: transparent;
    justify-content: center;
}

.breadcrumb-item a {
    color: white;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--primary-yellow);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: white;
}

/* About Section */
.about-section {
    padding: 40px 0;
}

.section-title {
    color: var(--primary-black);
    font-weight: 700;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--primary-yellow);
    bottom: -10px;
    left: 0;
}

.about-img {
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    /* width: 300px; */
    overflow: hidden;
}

.about-img img {
    transition: transform 0.5s ease;
}

.about-img:hover img {
    transform: scale(1.05);
}

.highlight-box {
    background-color: var(--primary-black);
    color: white;
    padding: 30px;
    border-left: 5px solid var(--primary-yellow);
    margin: 30px 0;
}

.mission-vision {
    background-color: var(--light-grey);
    padding: 80px 0;
}

.mv-card {
    background-color: white;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    border-top: 5px solid var(--primary-yellow);
}

.mv-icon {
    font-size: 2.5rem;
    color: var(--primary-yellow);
    margin-bottom: 20px;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1576091160399-112ba8d25d1d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.stat-item {
    margin-bottom: 30px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-yellow);
    margin-bottom: 10px;
}

/* Team Section */
.team-section {
    padding: 80px 0;
}

.team-card {
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-img {
    overflow: hidden;
}

.team-img img {
    transition: transform 0.5s ease;
    width: 100%;
}

.team-card:hover .team-img img {
    transform: scale(1.1);
}

.team-info {
    padding: 20px;
    text-align: center;
}

.team-name {
    color: var(--primary-black);
    font-weight: 700;
    margin-bottom: 5px;
}

.team-position {
    color: var(--primary-grey);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.team-social a {
    color: var(--primary-grey);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--primary-grey);
    transition: all 0.3s ease;
}

.team-social a:hover {
    background-color: var(--primary-yellow);
    color: var(--primary-black);
    border-color: var(--primary-yellow);
}

/* Footer */
.footer {
    background-color: var(--primary-black);
    color: white;
    padding: 60px 0 0;
}

.footer-title {
    color: var(--primary-yellow);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
}

.footer-links a:hover {
    color: var(--primary-yellow);
}

.footer-contact-item {
    display: flex;
    margin-bottom: 15px;
}

.footer-contact-icon {
    color: var(--primary-yellow);
    margin-right: 15px;
    width: 20px;
}

.social-icons a {
    color: white;
    background-color: var(--primary-grey);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.social-icons a:hover {
    background-color: var(--primary-yellow);
    color: var(--primary-black);
}

.copyright {
    background-color: var(--dark-grey);
    padding: 20px 0;
    margin-top: 30px;
}
/* board */
/* Page Header */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-yellow);
}

.breadcrumb {
    background: transparent;
    justify-content: center;
}

.breadcrumb-item a {
    color: white;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--primary-yellow);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: white;
}

/* Board Section */
.board-section {
    padding: 80px 0;
}

.section-title {
    color: var(--primary-black);
    font-weight: 700;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--primary-yellow);
    bottom: -10px;
    left: 0;
}

.board-member {
    margin-bottom: 50px;
}

.board-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--primary-yellow);
    margin-bottom: 20px;
}

.board-name {
    color: var(--primary-black);
    font-weight: 700;
    margin-bottom: 5px;
}

.board-position {
    color: var(--primary-yellow);
    font-weight: 600;
    margin-bottom: 15px;
}

.board-bio {
    margin-bottom: 15px;
}

.board-details {
    background-color: var(--light-grey);
    padding: 30px;
    border-left: 5px solid var(--primary-yellow);
}

.board-details-item {
    margin-bottom: 15px;
}

.board-details-label {
    font-weight: 600;
    color: var(--primary-black);
}

/* Footer */
.footer {
    background-color: var(--primary-black);
    color: white;
    padding: 60px 0 0;
}

.footer-title {
    color: var(--primary-yellow);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
}

.footer-links a:hover {
    color: var(--primary-yellow);
}

.footer-contact-item {
    display: flex;
    margin-bottom: 15px;
}

.footer-contact-icon {
    color: var(--primary-yellow);
    margin-right: 15px;
    width: 20px;
}

.social-icons a {
    color: white;
    background-color: #317b53;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.social-icons a:hover {
    background-color: var(--primary-yellow);
    color: var(--primary-black);
}

.copyright {
    background-color: var(--dark-grey);
    padding: 20px 0;
    margin-top: 30px;
}