﻿.history {
            padding: 5rem 0;
        }
        
        .section-title {
            color: var(--baye-green);
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 30px;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 3px;
            background: var(--baye-yellow);
        }
        
        .about-image {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .about-image img {
            transition: transform 0.5s ease;
        }
        
        .about-image:hover img {
            transform: scale(1.03);
        }
        
        .mission-vision {
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            margin-top: 30px;
        }
        
        .mission, .vision {
            margin-bottom: 20px;
        }
        
        .mission h3, .vision h3 {
            color: var(--baye-green);
            font-size: 1.5rem;
            margin-bottom: 15px;
        }
        
        .timeline {
            position: relative;
            margin-top: 30px;
        }
        
        .timeline:before {
            content: '';
            position: absolute;
            left: 15px;
            top: 0;
            height: 100%;
            width: 2px;
            background: var(--baye-yellow);
        }
        
        .timeline-item {
            position: relative;
            margin-bottom: 30px;
            padding-left: 40px;
        }
        
        .timeline-dot {
            position: absolute;
            left: 8px;
            top: 5px;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: var(--baye-green);
            border: 3px solid var(--baye-yellow);
            z-index: 1;
        }
        
        .timeline-content h4 {
            color: var(--baye-green);
            margin-bottom: 10px;
        }
        
        .core-values {
            margin-top: 50px;
        }
        
        .value-card {
            background: white;
            padding: 30px 20px;
            border-radius: 10px;
            height: 100%;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .value-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .value-icon {
            width: 70px;
            height: 70px;
            background: rgba(26, 93, 26, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }
        
        .value-icon i {
            font-size: 30px;
            color: var(--baye-green);
        }
        
        .value-card h4 {
            color: var(--baye-green);
            margin-bottom: 15px;
        }

.impact-box {
    transition: transform 0.3s ease;
}

    .impact-box:hover {
        transform: translateY(-5px);
    }

    .impact-box h4 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }

    .impact-box i {
        font-size: 2.5rem;
    }
.service-card img {
    height: 200px;
    object-fit: cover;
}

.service-card .card-title {
    font-size: 1.2rem;
    font-weight: 600;
}

html.dark-background .card {
    background-color: #23272b !important; /* Bootstrap's bg-dark */
    color: #fff !important;
    border-color: #2c3035 !important;
}

    html.dark-background .card .card-title,
    html.dark-background .card .card-text {
        color: #fff !important;
    }

html.dark-background .card-img-top {
    /* Optional: adjust image brightness for dark mode */
    filter: brightness(0.95);
}

html.dark-background .table,
html.dark-background .table-bordered,
html.dark-background .table-striped {
    background-color: #23272b !important;
    color: #f8f9fa !important;
}

    html.dark-background .table th,
    html.dark-background .table td {
        background-color: #23272b !important;
        color: #f8f9fa !important;
        border-color: #343a40 !important;
    }

    html.dark-background .table-striped > tbody > tr:nth-of-type(odd) > * {
        background-color: #2c3035 !important;
    }

html.dark-background .table-bordered {
    border-color: #343a40 !important;
}

html.dark-background .modal-content {
    background-color: #23272b !important;
    color: #f8f9fa !important;
    border-color: #343a40 !important;
}

html.dark-background .modal-header,
html.dark-background .modal-footer {
    background-color: #23272b !important;
    color: #f8f9fa !important;
    border-color: #343a40 !important;
}

html.dark-background .modal-body {
    background-color: #23272b !important;
    color: #f8f9fa !important;
}

html.dark-background .form-control,
html.dark-background .form-select {
    background-color: #2c3035 !important;
    color: #f8f9fa !important;
    border-color: #444950 !important;
}

    html.dark-background .form-control:focus,
    html.dark-background .form-select:focus {
        background-color: #23272b !important;
        color: #fff !important;
        border-color: #1e90ff !important;
    }

html.dark-background label,
html.dark-background .modal-title {
    color: #f8f9fa !important;
}