

/* ============================================
   Certifications Section
   ============================================ */
.certifications-section {
    position: relative;
    overflow: hidden;
}

.certifications-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(182, 46, 39, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(182, 46, 39, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.certification-card {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.certification-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #B62E27 0%, #8B1F1A 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.certification-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(182, 46, 39, 0.2);
}

.certification-card:hover::before {
    transform: scaleX(1);
}

.cert-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #B62E27 0%, #8B1F1A 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.certification-card:hover .cert-icon {
    transform: rotate(360deg) scale(1.1);
}

.cert-icon i {
    font-size: 2.5rem;
    color: white;
}

.certification-card h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.certification-card p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* ============================================
   Process Timeline Section
   ============================================ */
.process-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.process-timeline {
    position: relative;
    padding: 40px 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #B62E27 0%, #8B1F1A 100%);
    opacity: 0.2;
}

.process-step {
    position: relative;
    margin-bottom: 80px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-number {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #B62E27 0%, #8B1F1A 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    box-shadow: 0 10px 30px rgba(182, 46, 39, 0.3);
    z-index: 2;
}

.process-content {
    flex: 0 0 calc(50% - 65px);
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
}

.process-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 3px;
    background: #B62E27;
}

.process-step:nth-child(odd) .process-content::before {
    right: -30px;
}

.process-step:nth-child(even) .process-content::before {
    left: -30px;
}

.process-content:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(182, 46, 39, 0.2);
}

.process-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #B62E27 0%, #8B1F1A 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.process-icon i {
    font-size: 1.8rem;
    color: white;
}

.process-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #B62E27;
    margin-bottom: 12px;z
}

.process-content p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 991px) {
    .process-timeline::before {
        left: 35px;
    }
    
    .process-step,
    .process-step:nth-child(even) {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 90px;
    }
    
    .process-number {
        left: 35px;
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
   
        .process-content::before {
            display: none;
        }
}

@media (max-width: 767px) {
    .process-step {
        padding-left: 70px;
    }
    
    .process-number {
        left: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .process-timeline::before {
        left: 20px;
    }
    
    .process-content {
        padding: 20px;
    }
    
    .process-content::before {
        left: -50px !important;
        width: 20px;
    }
}

/* ============================================
   General Animations & Utilities
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Enhanced hover effects */
a, button {
    transition: all 0.3s ease;
}
