/* about-images.css - Round frame styling for images */

/* Team member images */
.team-member img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #2c3e50;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: block;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.team-member img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Split section image */
.split-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 50%;
    border: 5px solid #e67e22;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    display: block;
}

/* Value card icons */
.value-icon svg {
    background-color: #f1c40f;
    padding: 12px;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    fill: #fff;
    margin-bottom: 15px;
}

/* Feature box icons */
.feature-icon svg {
    background-color: #3498db;
    padding: 12px;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    fill: #fff;
    margin-bottom: 15px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .team-member img {
        width: 150px;
        height: 150px;
    }
    
    .split-image img {
        max-width: 300px;
        margin-top: 30px;
    }
}

@media (max-width: 480px) {
    .team-member img {
        width: 120px;
        height: 120px;
    }
    
    .split-image img {
        max-width: 250px;
    }
    
    .value-icon svg,
    .feature-icon svg {
        width: 50px;
        height: 50px;
        padding: 10px;
    }
}

/* Animation for images */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.team-member img {
    animation: float 4s ease-in-out infinite;
}

.split-image img {
    animation: float 5s ease-in-out infinite;
    animation-delay: 0.5s;
}