/* ====== About Page Specific Styles ====== */

/* Stylish Image Wrapper with Yellow Offset Border */
.about-img-wrapper {
    position: relative;
    padding-right: 30px;
    padding-bottom: 30px;
    z-index: 1;
}

.about-img-wrapper::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 70%;
    height: 80%;
    border: 5px solid var(--primary-color);
    z-index: -1;
    border-radius: 8px;
}

.about-img {
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    width: 100%;
}

/* Mission & Vision Dark Cards */
.vision-card {
    background: var(--secondary-color);
    color: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    height: 100%;
    transition: all 0.4s ease;
    border-bottom: 4px solid var(--primary-color);
}

.vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(10, 28, 58, 0.2);
}

.vision-icon {
    font-size: 45px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

/* Custom Checkmark List */
.list-custom {
    list-style: none;
    padding: 0;
    margin: 0;
}

.list-custom li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 18px;
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 500;
}

.list-custom li i {
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--primary-color);
    font-size: 1.4rem;
}