/* About & Process Section Styles */
.about-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    overflow: hidden;
}

.about-image-grid {
    position: relative;
}

.about-image-grid img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-image-1 {
    width: 100%;
    max-width: 250px;
    position: relative;
    z-index: 2;
}

.about-image-2 {
    position: absolute;
    top: 0;
    right: 0;
    width: 70%;
    z-index: 1;
}

.experience-badge {
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    width: 110px;
    height: 110px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 3;
}

.experience-badge h3 {
    font-size: 42px;
    font-weight: 700;
    color: #002d62;
    margin: 0;
    line-height: 1;
}

.experience-badge span {
    font-size: 12px;
    color: #666;
    margin-top: 5px;
}

.about-content h5 {
    color: #e61f1f;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
    color: #222;
}

.about-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #666;
}

.about-features {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.feature-icon {
    background-color: #e8f0fe;
    color: #002d62;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 15px;
    flex-shrink: 0;
}

.feature-text {
    flex-grow: 1;
}

.feature-text h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.feature-text p {
    font-size: 14px;
    margin-bottom: 0;
    color: #666;
}

.btn-details {
    display: inline-block;
    background-color: #e61f1f;
    color: #fff;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    margin-top: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-details:hover {
    background-color: #c41818;
    transform: translateY(-3px);
    color: #fff;
}

/* Process Section */
.process-section {
    padding: 80px 0;
    text-align: center;
    background-color: #fff;
}

.process-section h5 {
    color: #e61f1f;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.process-section h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 50px;
    line-height: 1.2;
    color: #222;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    position: relative;
}

.process-step {
    flex: 1;
    max-width: 220px;
    padding: 0 15px;
    position: relative;
    z-index: 2;
}

.process-icon {
    width: 100px;
    height: 100px;
    background-color: #002d62;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    transition: all 0.3s ease;
}

.process-step:hover .process-icon {
    background-color: #e61f1f;
    transform: translateY(-10px);
}

.process-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.process-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.process-arrow {
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 1;
    padding: 0 120px;
}

.arrow-line {
    border-top: 2px dashed #ddd;
    width: 100%;
    position: relative;
}

.arrow-point {
    position: absolute;
    top: -9px;
    right: -5px;
    width: 0; 
    height: 0; 
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid #ddd;
}

/* Responsive styles */
@media (max-width: 992px) {
    .about-section {
        padding: 60px 0;
    }
    
    .about-image-grid {
        margin-bottom: 40px;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .about-content h2 {
        font-size: 32px;
    }
    
    .feature-item {
        align-items: center;
    }
    
    .process-section {
        padding: 50px 0;
    }
    
    .process-section h2 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 50px 0;
    }
    
    .about-content h2 {
        font-size: 28px;
    }
    
    .about-content p {
        font-size: 15px;
    }
    
    .experience-badge {
        width: 90px;
        height: 90px;
        padding: 15px;
    }
    
    .experience-badge h3 {
        font-size: 36px;
    }
    
    .process-steps {
        flex-wrap: wrap;
    }
    
    .process-step {
        width: 50%;
        margin-bottom: 30px;
    }
    
    .process-arrow {
        display: none;
    }
}

@media (max-width: 576px) {
    .about-section {
        padding: 40px 0;
    }
    
    .about-content h5 {
        font-size: 14px;
    }
    
    .about-content h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .feature-item {
        margin-bottom: 15px;
    }
    
    .feature-text h5 {
        font-size: 16px;
    }
    
    .feature-text p {
        font-size: 14px;
    }
    
    .process-step {
        width: 100%;
    }
    
    .process-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}
