/* Story Section Redesign */
.story-wrapper {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

/* Background Elements */
.story-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px; /* Large Blob */
    height: 800px;
    background: radial-gradient(circle, rgba(13, 110, 253, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Typography Focused Story Side */
.story-content {
    padding-right: 20px;
}

.story-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(13, 110, 253, 0.1);
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.story-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #0d6efd 0%, #0dcaf0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.story-lead {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 25px;
    font-weight: 300;
    border-left: 4px solid var(--accent-orange);
    padding-left: 20px;
}

.story-text {
    color: #777;
    margin-bottom: 30px;
    line-height: 1.8;
}

/* Visual Side (Mission/Vision Grid) */
.mv-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.mv-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.5);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.mv-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.mv-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 60px rgba(13, 110, 253, 0.15);
}

.mv-card:hover::after {
    transform: scaleX(1);
}

.mv-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.4s;
}

.mv-card:hover .mv-icon {
    transform: rotate(10deg) scale(1.1);
    background: var(--primary-color);
    color: white;
}

.mv-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #222;
}

.mv-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
    .story-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .story-content {
        padding-right: 0;
        margin-bottom: 50px;
    }

    .story-lead {
        border-left: none;
        padding-left: 0;
    }
}
