/*** Mission & Vision Section ***/
.mission-vision {
    background: linear-gradient(rgba(245, 248, 242, .95), rgba(245, 248, 242, .95)), 
                url(../img/product-bg.png) center center no-repeat;
    background-size: contain;
}

/* Card Styling */
.mission-card,
.vision-card {
    background-color: #fff;
    border-radius: 1rem;
    padding: 2rem 2.5rem;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
    border-bottom: 5px solid transparent;
    overflow: hidden;
}

.mission-card:hover {
    border-color: var(--primary);
    transform: translateY(-6px);
    box-shadow: 0 1.25rem 2rem rgba(0, 0, 0, 0.12);
}

.vision-card:hover {
    border-color: var(--secondary);
    transform: translateY(-6px);
    box-shadow: 0 1.25rem 2rem rgba(0, 0, 0, 0.12);
}

/* Headings & Text */
.mission-card h3,
.vision-card h3 {
    color: var(--dark);
    font-weight: 700;
}

.mission-card p,
.vision-card p {
    color: var(--dark);
    font-size: 1rem;
    line-height: 1.7;
}

/* Bullet Points */
.mission-vision {
    background: linear-gradient(to right, #f8f9fa, #f2f6f4);
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.card-modern {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    border: 1px solid #e4e4e4;
    transition: all 0.3s ease;
    height: 100%;
}

.card-modern:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

/*** Certificates Section ***/
.certificate-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(187, 128, 50, 0.1);
    border-bottom: 3px solid transparent;
}

.certificate-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-bottom-color: var(--primary);
}

.certificate-card img {
    transition: all 0.3s ease;
    border: 1px solid rgba(187, 128, 50, 0.2);
}

.certificate-card:hover img {
    transform: scale(1.02);
}

.certificate-card h6 {
    color: var(--dark);
    font-weight: 600;
}

.certificate-card .text-muted {
    color: #6c757d !important;
}

