/* ===== ABOUT PAGE STYLES ===== */
/* Color Palette: #10163f (dark navy), #ffc107 (gold), #343a40 (dark gray), white */

.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

.stat-tile {
    border-radius: 16px;
    overflow: hidden;
}

.about-img-wrap img {
    border-radius: 16px;
}

/* Why Icon */
.why-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    background: #10163f;
}

.why-icon i {
    color: #ffc107;
}

/* Why Card */
.why-card {
    border-radius: 16px;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(16, 22, 63, 0.1);
}

/* Section Card */
.section-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(16, 22, 63, 0.06);
    height: 100%;
    transition: transform 0.3s ease;
    border: 1px solid rgba(16, 22, 63, 0.05);
}

.section-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(16, 22, 63, 0.1);
}

.section-card h4 {
    color: #10163f;
}

/* Audience Card */
.audience-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    border: 1px solid rgba(16, 22, 63, 0.08);
    transition: all 0.3s ease;
}

.audience-card:hover {
    border-color: #ffc107;
    box-shadow: 0 10px 40px rgba(255, 193, 7, 0.15);
}

.audience-card h5 {
    color: #10163f;
}

/* Audience Icon */
.audience-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background: #10163f;
}

.audience-icon i {
    color: #ffc107;
}

/* Program Section */
.program-section {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
}

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #343a40;
}

.feature-list li i {
    color: #ffc107;
    margin-top: 4px;
    flex-shrink: 0;
}

/* Step Card */
.step-card {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(16, 22, 63, 0.06);
    height: 100%;
}

.step-card h4 {
    color: #10163f;
}

/* Step Number */
.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #10163f;
    color: #ffc107;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

/* Value Item */
.value-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 1rem;
    border: 1px solid rgba(16, 22, 63, 0.05);
}

.value-item i {
    color: #ffc107;
    font-size: 1.25rem;
    margin-top: 2px;
}

.value-item strong {
    color: #10163f;
}

/* Mission Card */
.mission-card {
    background: #10163f;
    color: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
}

.mission-card h4 {
    color: #ffc107;
}

/* Vision Card */
.vision-card {
    background: #343a40;
    color: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
}

.vision-card h4 {
    color: #ffc107;
}

/* Buttons */
.btn {
    border-radius: 12px !important;
}

.btn-primary {
    background: #10163f;
    border-color: #10163f;
}

.btn-primary:hover,
.btn-primary:focus {
    background: #0a0e28;
    border-color: #0a0e28;
}

.btn-outline-primary {
    color: #10163f;
    border-color: #10163f;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    background: #10163f;
    border-color: #10163f;
    color: #fff;
}

.btn.btn-secondary {
    background: #ffc107;
    border-color: #ffc107;
    color: #10163f;
    font-weight: 600;
}

.btn.btn-secondary:hover,
.btn.btn-secondary:focus {
    background: #e0a800;
    border-color: #e0a800;
    color: #10163f;
}

/* Section Titles */
.section-title h6,
.text-secondary {
    color: #ffc107 !important;
}

.section-title h2,
.display-4 {
    color: #10163f;
}

/* Text Colors */
.text-primary {
    color: #10163f !important;
}

.text-warning {
    color: #ffc107 !important;
}

/* Background Classes */
.bg-primary {
    background: #10163f !important;
}

.bg-success {
    background: #10163f !important;
}

.bg-warning {
    background: #ffc107 !important;
}

/* Quote Box */
.quote-box {
    background: #10163f;
    border-radius: 16px;
    padding: 1.5rem;
}

.quote-box p {
    color: #fff;
}

/* Instructor Cards */
.team-item .bg-white h5 {
    color: #10163f;
}

.team-item .bg-white .text-primary {
    color: #ffc107 !important;
}

/* Back to Top */
.back-to-top {
    background: #10163f;
    border-color: #10163f;
}

.back-to-top:hover {
    background: #ffc107;
    border-color: #ffc107;
    color: #10163f;
}

/* Certificate & Location Cards */
.section-card .fa-certificate {
    color: #ffc107 !important;
}

.section-card .fa-map-marker-alt {
    color: #ffc107 !important;
}