/* Our Mission Specific Styles - Based on Viseven Template */

/* SECTION CONTRASTS */


/* BREADCRUMBS */
.breadcrumb {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    display: inline-block;
}

.breadcrumb a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: var(--primary-blue);
}

.breadcrumb-separator {
    margin: 0 10px;
    opacity: 0.5;
}

/* FEATURE CARD */
.viseven-feature-card {
    background: #ffffff;
    border: 1px solid #dae2ed;
    border-radius: 40px;
    padding: 40px; /* Standardized p-40 */
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.03);
}

.feature-image-box {
    border-radius: 40px;
    overflow: hidden;
    height: 400px;
    width: 100%;
    position: relative;
}

.feature-image-box img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/* WHITE GRID CARDS */
.expertise-card {
    border: 1px solid rgba(0, 0, 0, 0.02);
    background-color: #ffffff !important;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.04);
    height: 100%;
    position: relative;
    z-index: 2;
    box-sizing: border-box;
}

.expertise-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-color: transparent;
}

.expertise-card .icon-box {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.expertise-card:hover .icon-box {
    transform: scale(1.1) translateX(-8px);
}

/* BUTTONS */

.vision-image-box img{
    height:650px;
    object-fit:cover;
}


.news-card-tag {
    font-size: 12px;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: block;
}


@media (max-width: 900px) {
.vision-image-box img {
    height: 400px;
}
}
@media (max-width: 600px) {
.vision-image-box img {
    height: 250px;
}
}