/* Common styles for dedicated formation stage pages */
body {
    font-family: 'Quicksand', sans-serif !important;
}

.text-cream { color: #f4ecd8 !important; }
.text-blue { color: #004a99 !important; }
.bg-dark-blue { background-color: #004a99 !important; }

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}
.reveal.show {
    opacity: 1;
    transform: translateY(0);
}

.section-padding {
    padding: 80px 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 50px 0;
    }
}

.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal-up.show {
    opacity: 1;
    transform: translateY(0);
}

/* Cards & Icons */
.info-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.icon-box, .grid-icon {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1965c0;
    transition: all 0.3s ease;
    display: inline-block;
}

.formation-stage-card h5 {
    color: #333;
    font-weight: 700;
    margin-bottom: 12px;
}

.stage-duration {
    font-size: 0.85rem;
    color: #1965c0;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.read-more-link {
    color: #1965c0;
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.read-more-link:hover {
    gap: 12px;
}

.stage-nav-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-decoration: none;
    color: inherit;
}
.stage-nav-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
    color: #1965c0;
}

.section-title {
  font-family: "Quicksand", sans-serif !important;
  font-weight: 700 !important;
  font-style: normal !important;
  font-size: calc(1.325rem + 0.9vw);
  line-height: 1.2;
}
