.section-card {
    position: relative;
    background-color: #fff; /* White background */
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    cursor: pointer;
}

.section-card:hover {
    transform: translateY(-5px); /* Slightly less dramatic movement */
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1); /* Subtle, soft shadow */
    background-color: #f9f9f9; /* Light grey background */
}

.section-title {
    font-size: 32px;
    color: #333; /* Dark grey */
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 10px;
    border-bottom: 2px solid #000; /* Black underline */
}

.section-text {
    font-size: 18px;
    color: #555; /* Soft grey */
    line-height: 1.6;
    margin-top: 15px;
    font-style: italic;
    padding: 0 15px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-up"] {
    opacity: 1;
    transform: translateY(0);
}

#our-story,
#mission,
#vision {
    padding: 60px 0;
    background-color: #fff; /* White background */
    border-radius: 8px;
    margin-bottom: 40px;
}

#our-story {
    background-color: #f0f0f0; /* Light grey background */
}

#mission {
    background-color: #f7f7f7; /* Slightly lighter grey */
}

#vision {
    background-color: #e5e5e5; /* Light grey with a hint of warmth */
}

.section-text {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: none !important; /* Disable animations temporarily to check visibility */
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.core-values-section {
    background-color: #f8f9fa;
    color: #333;
    padding: 40px 0;
}

.core-values-title {
    font-size: 36px;
    font-weight: 600;
    color: #222;
    margin-bottom: 10px;
}

.core-values-intro {
    font-size: 18px;
    color: #555;
    max-width: 700px;
    margin: 0 auto 30px auto;
}

.core-values-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.core-value-item {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.core-value-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.core-value-icon {
    font-size: 30px;
    color: #000000;
    margin-bottom: 15px;
}

.core-value-item h5 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.core-value-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 767px) {
    .core-values-title {
        font-size: 28px;
    }

    .core-value-icon {
        font-size: 26px;
    }

    .core-value-item {
        padding: 15px;
    }
}
