.hero-about {
    background-size: cover !important;
    background-position: center !important;
    min-height: 60vh;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
}

.hero-about::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, transparent, white);
}

.hero-about div {
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

/* Start About */
.about-img {
    position: relative;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.about-img img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.about-img:hover img {
    transform: scale(1.03);
}

/* Start mission-vision */
.mission-vision {
    border-radius: 20px;
}

/* Card Styles */
.card {
    border-radius: 10px;
    transition: all 0.3s ease;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Background Icon */
.icon-bg {
    position: absolute;
    top: -5px;
    left: 30px;
    z-index: 0;
    color: rgba(38, 94, 151, 0.05);
    transition: all 0.5s ease;
    font-size: 120px;
}

.card:hover .icon-bg {
    transform: scale(1.1);
    color: rgba(38, 94, 151, 0.1);
}



/* Animations */
.pulse-animation {
    animation: pulse 2s infinite ease-in-out;
}

.bullseye-animation {
    animation: bullseye 2s infinite ease-in-out;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        ;
    }

    70% {
        transform: scale(1.08);
        ;
    }

    100% {
        transform: scale(1);
        ;
    }
}

@keyframes bullseye {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1) rotate(10deg);
    }

    100% {
        transform: scale(1);
    }
}

/* Card Content */
.card-body {
    position: relative;
    z-index: 2;
}

.card-body h3 {
    font-weight: 700;
    color: var(--primary-dark);
}

.card-body p {
    position: relative;
    z-index: 2;
}


/* Stat Achievements */
.feature-box {
    border-bottom: 2px solid var(--primary-color);
}

.iso-badge {
    width: 150px;
    height: auto;
}

/* Start Quality */
.quality-img {
    position: relative;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.quality-img img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.quality-img:hover img {
    transform: scale(1.03);
}