/* ========================================
   Homepage Styles
   ======================================== */

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}
.sec-in {
    animation: fadeUp 0.6s ease-out both;
}

.section-header .badge-section {
    display: inline-block;
    color: #a900a9;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}
.section-header h2 {
    font-size: 34px;
    font-weight: 800;
    color: #013A40;
    margin-bottom: 10px;
}
.section-header h2 span {
    color: #a900a9;
}
.section-header p {
    font-size: 16px;
    color: #6C757D;
    max-width: 600px;
    margin: 0 auto;
}

/* Hero Slides */
.hero-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Stats */
.stats-item {
    text-align: center;
    padding: 20px;
}
.stats-number {
    font-size: 42px;
    font-weight: 900;
    color: #013A40;
    line-height: 1;
    margin-bottom: 6px;
}
.stats-label {
    font-size: 15px;
    color: #6C757D;
    font-weight: 600;
}

/* Lab Image Grid */
.lab-img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    border-radius: 12px;
}
.lab-img-card {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}
.lab-img-card-lg {
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.1);
}

/* Hub Section */
.hub-header .badge {
    display: inline-block;
    background: rgba(184, 24, 89, 0.08);
    color: #B81859;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 50px;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
}

/* Tracks */
.track-card {
    border-radius: 16px;
    padding: 36px 28px;
    min-height: 340px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: 0.4s;
    cursor: pointer;
}
.track-card:hover {
    transform: translateY(-6px);
}

/* Dashboard */
.dashboard-stat-item {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    border-bottom: 1px solid var(--border);
    color: #1A1A2E;
}
.dashboard-stat-item:last-child {
    border-bottom: none;
}

/* CTA Section */
.cta-section .cta-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Feature Card */
.feat-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border: 1px solid #E8EDEC;
    transition: 0.3s;
}
.feat-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.07);
    transform: translateY(-3px);
}
.feat-card .feat-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 18px;
}

@media (max-width: 991px) {
    .section-header h2 {
        font-size: 26px;
    }
    .stats-number {
        font-size: 32px;
    }
}
