/* About Image Styles */
.about-image-wrapper {
    position: relative;
}

.about-image {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #d9a444;
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: 30px;
    background: #d9a444;
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(217, 164, 68, 0.3);
}

.experience-badge .number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Stats Styles */
.stat-item {
    text-align: center;
    padding: 1.5rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    border-color: #d9a444;
    transform: translateY(-5px);
}

.stat-item .number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #d9a444;
    margin-bottom: 0.5rem;
}

.stat-item .label {
    color: #6b7280;
    font-size: 0.9rem;
}

/* Values Section Styles */
.value-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #d9a444;
}

.value-card .icon {
    width: 60px;
    height: 60px;
    background: #d9a444;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
}

.value-card h3 {
    color: #d9a444;
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.value-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .experience-badge {
        right: 50%;
        transform: translateX(50%);
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
} 