/* ===== Content Pages - Index ===== */
.resource-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

.resource-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12) !important;
}

.resource-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.resource-icon i {
    font-size: 1.5rem;
    color: white;
}

/* ===== Hero Banner ===== */
.hero-banner {
    position: relative;
    overflow: hidden;
    min-height: 200px;
}

.hero-banner.bg-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
}

.hero-banner.bg-success {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%) !important;
}

.hero-banner.bg-info {
    background: linear-gradient(135deg, #2193b0 0%, #6dd5ed 100%) !important;
}

.hero-banner.bg-warning {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%) !important;
}

.hero-banner.bg-danger {
    background: linear-gradient(135deg, #eb3349 0%, #f45c43 100%) !important;
}

.hero-banner.bg-dark {
    background: linear-gradient(135deg, #232526 0%, #414345 100%) !important;
}

.hero-overlay {
    position: relative;
    z-index: 1;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-text {
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

/* ===== Section Title ===== */
.section-title {
    position: relative;
    padding-bottom: 12px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.text-with-image .section-title::after,
.full-width-text .section-title::after {
    left: 0;
    transform: none;
}

/* ===== Content Cards ===== */
.content-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.content-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1) !important;
}

.card-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon i {
    font-size: 1.4rem;
    color: white;
}

/* ===== Timeline ===== */
.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #667eea, #764ba2);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    display: flex;
    gap: 20px;
    padding-bottom: 30px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-marker {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1rem;
    z-index: 1;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.timeline-marker i {
    font-size: 1.2rem;
}

.timeline-content {
    flex: 1;
    padding-top: 8px;
}

/* ===== Icon Grid ===== */
.icon-grid-item {
    transition: transform 0.2s ease;
}

.icon-grid-item:hover {
    transform: translateY(-3px);
}

.icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.icon-circle i {
    font-size: 1.5rem;
    color: white;
}

/* ===== Stat Cards ===== */
.stat-card {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    transition: transform 0.2s ease;
}

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

.stat-icon {
    font-size: 2rem;
    color: #667eea;
    display: block;
    margin-bottom: 8px;
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.85rem;
    color: #6c757d;
    font-weight: 500;
    margin-top: 4px;
}

/* ===== Accordion ===== */
.accordion-section .accordion-button:not(.collapsed) {
    background-color: rgba(102, 126, 234, 0.08);
    color: #667eea;
    font-weight: 600;
}

.accordion-section .accordion-button:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.15);
}

/* ===== Call to Action ===== */
.cta-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.cta-banner .btn-light {
    padding: 12px 32px;
    border-radius: 50px;
    transition: transform 0.2s ease;
}

.cta-banner .btn-light:hover {
    transform: scale(1.05);
}

/* ===== Gallery ===== */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 8px 12px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    font-size: 0.85rem;
}

/* ===== Section Content ===== */
.section-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4a4a;
}

.section-content p {
    margin-bottom: 1rem;
}

/* ===== Responsive ===== */
@@media (max-width: 768px) {
    .hero-banner {
        padding: 2rem 1.5rem !important;
    }

    .hero-banner h1 {
        font-size: 1.75rem;
    }

    .timeline::before {
        left: 18px;
    }

    .timeline-marker {
        width: 38px;
        height: 38px;
        min-width: 38px;
        font-size: 0.85rem;
    }

    .stat-value {
        font-size: 1.5rem;
    }

    .gallery-item img {
        height: 150px;
    }
}

@@media (max-width: 576px) {
    .timeline-content h5 {
        font-size: 1rem;
    }

    .icon-circle {
        width: 48px;
        height: 48px;
    }

    .icon-circle i {
        font-size: 1.1rem;
    }
}
