/* Icons and Graphics Enhancements */

/* Service icons */
.service-icon-small {
    width: 50px;
    height: 50px;
    background-color: rgba(197, 213, 230, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.service-icon-small i {
    font-size: 24px;
    color: #222;
}

/* Country flag icons for services */
.service-flag {
    width: 24px;
    height: 24px;
    margin-right: 8px;
    border-radius: 50%;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.service-flag img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Enhanced testimonial cards */
.testimonial-card {
    position: relative;
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(197, 213, 230, 0.3);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    background-color: #C5D5E6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-avatar i {
    font-size: 24px;
    color: #fff;
}

.author-info {
    flex: 1;
}

.author-info h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.author-info span {
    color: #64748b;
    font-size: 0.9rem;
}

/* Feature icons */
.feature-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(197, 213, 230, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.feature-icon i {
    font-size: 20px;
    color: #222;
}