/* ==========================================================================
   UNITED AI ACADEMY - FULL WEBSITE CSS
   ========================================================================== */

.values-section{
    background: var(--secondary);
    padding: 7rem 0rem;
}

.title-short-v-1{
    font-size: 2.5rem;
    color: white;
    font-weight: 700;

}

.title-short-v-2{
    font-size: 2.5rem;
    color: var(--dark);
    font-weight: 700;

}

.title-short-v-3{
    font-size: 1.2rem;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif !important;
}

.para-short-v-1{
 
    color: white;
    
}

.card-title-short-1{
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 700;

}


.learning-process-section, .what-we-do-section, .mission-vision-section{
    padding: 6rem 0rem;

}

/* --- 2. WHY CHOOSE US (Advantages) --- */
.why-choose-section{
    padding: 6rem 0rem;
}

.choose-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #eee;
    height: 100%;
}

.choose-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border-color: var(--primary);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: var(--btn-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    border-radius: 50%;
    font-size: 1.8rem;
    transition: transform 0.3s ease;
}

.choose-card:hover .card-icon {
    transform: rotateY(180deg);
}

/* --- 3. CERTIFICATES SECTION --- */
.certificates-section{
    padding: 7rem 0rem;
}

.cert-card {
    background: var(--white);
    padding: 15px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(109, 109, 109, 0.1);
    border: 1px solid rgba(212, 160, 30, 0.2);
    transition: all 0.3s ease;
    border-top: 5px solid var(--primary);
}

.cert-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.cert-card:hover {
    transform: scale(1.03);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(1, 34, 79, 0.1);
    transform: translateY(-10px);
}




.value-card {
    padding: 35px 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    text-align: center;
    transition: 0.3s;
    height: 100%;
    color: var(--white);
}

.value-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.value-card p {
    font-size: 0.95rem;
    color: var(--white) !important;
    line-height: 1.7;
    margin: 0;
    color: var(--secondary);
    
}
.value-card i {
    font-size: 2.5rem;
    background: var(--btn-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    display: inline-block;
}

.value-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
}


/* --- 6. MISSION & VISION --- */
.mission-card {
    padding: 40px;
    border-radius: 25px;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.mission-list {
    list-style: none;
    padding: 0;
}

.mission-list li {
    margin-bottom: 10px;
}

.mission-list li i {
    color: #10b981;
    margin-right: 8px;
}

/* --- 7. WHO WE HELP & TESTIMONIALS --- */
.help-card {
    padding: 20px;
    background: var(--white);
    border-radius: 15px;
    border: 1px solid #eee;
    margin-bottom: 15px;
    transition: 0.3s;
}

.help-card:hover {
    background: var(--secondary);
    color: white;
}

.testimonial {
    background: #fdf8eb;
    padding: 30px;
    border-radius: 20px;
    border-left: 5px solid var(--primary);
}

/* --- 8. HOW LEARNING WORKS (Timeline) --- */
.process-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 40px 0;
    gap: 7%;
    --line-progress: 0%; /* JS isko handle karega */
}

/* Base Line */
.process-timeline::before {
    content: '';
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #e9ecef;
}

/* Animated Progress Line (Pani wala effect) */
.process-timeline::after {
    content: '';
    position: absolute;
    top: 70px;
    left: 0;
    width: var(--line-progress);
    height: 2px;
    background: var(--general-gradient);
    z-index: 0;
    transition: width 0.8s linear; /* Bilkul smooth chalne ke liye */
}

.step-item {
    position: relative;
    z-index: 1;
    text-align: center;
    flex: 1;
    opacity: 0.3; /* Shuru mein halka dikhega */
    transition: all 0.6s ease;
}

.step-item.active {
    opacity: 1;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--white);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-weight: 800;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Active Step Number */
.step-item.active .step-number {
    background: var(--general-gradient);
    color: white;
    border: none;
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(255, 174, 0, 0.4);
}

/* Boom Animation Class */
.boom-active {
    animation: final-boom 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes final-boom {
    0% { transform: scale(1.1); }
    50% { transform: scale(1.4); filter: brightness(1.2); }
    100% { transform: scale(1.2); box-shadow: 0 0 30px var(--primary); }
}

/* --- RESPONSIVE --- */
@media (max-width: 991px) {
    .process-timeline { flex-direction: column; }
    .process-timeline::before { display: none; }
    .step-item { margin-bottom: 30px; }
}