/* Premium Success Stories Styling */

.stories-hero-premium {
    min-height: 65vh;
    padding: 160px 0 100px;
    background: radial-gradient(circle at 0% 0%, rgba(248, 150, 30, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 100% 100%, rgba(45, 156, 219, 0.05) 0%, transparent 50%);
    background-color: #fdfaf7;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-title-main {
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--primary-bg);
    line-height: 1.1;
    letter-spacing: -1.5px;
}

/* Impact Stats Grid */
.stats-premium-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.stat-premium-card {
    background: white;
    border-radius: 30px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.4s ease;
    border: 1px solid rgba(0,0,0,0.02);
}

.stat-premium-card:hover {
    transform: translateY(-10px);
}

.stat-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-bg);
    margin-bottom: 0;
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 0;
    letter-spacing: 1px;
}

/* Scholar Cards */
.scholar-card {
    background: white;
    border-radius: 40px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0,0,0,0.02);
}

.scholar-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 40px 80px rgba(10, 37, 64, 0.12);
}

.scholar-img-container {
    height: 350px;
    position: relative;
    overflow: hidden;
}

.scholar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.scholar-card:hover .scholar-img {
    transform: scale(1.1);
}

.scholar-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
}

/* Course Impact Cards */
.course-impact-card {
    padding: 40px 30px;
    border-radius: 35px;
    transition: var(--transition-premium);
    border-bottom: 4px solid var(--gold);
}

.course-impact-card:hover {
    transform: translateY(-10px);
    background-color: var(--primary-bg) !important;
}

.course-impact-card:hover h5, 
.course-impact-card:hover p {
    color: white !important;
}

.course-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

/* Impact Feature Box */
.icon-sq {
    width: 75px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.impact-feature-box {
    transition: all 0.4s ease;
}

.impact-feature-box:hover {
    transform: translateY(-12px);
    border-color: var(--gold) !important;
}

.bg-light-primary { background-color: rgba(13, 110, 253, 0.08); }
.bg-light-warning { background-color: rgba(248, 150, 30, 0.1); }

@media (max-width: 991px) {
    .hero-title-main { font-size: 3.5rem; }
    .stories-hero-premium { min-height: 50vh; padding: 120px 0 60px; }
}

@media (max-width: 767px) {
    .hero-title-main { font-size: 2.8rem; }
    .scholar-img-container { height: 280px; }
}
