@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
}

.visa-services {
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 40px 20px;
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    max-width: 1000px;
    width: 100%;
}

.card {
    background: linear-gradient(145deg, #f3f4f6, #ffffff);
    border-radius: 25px;
    padding: 27px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: "";
    position: absolute;
    top: -30%;
    left: -30%;
    width: 160%;
    height: 160%;
    background: #d7d6d6;
    /* background: radial-gradient(circle at top left, #ff9966, #ff5e62, #4facfe, #00f2fe); */
    opacity: 0.25;
    z-index: 0;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
}

.card-content {
    position: relative;
    z-index: 1;
}

.profile {
    display: flex;
    align-items: center;
    gap: 15px;
}

.profile-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.profile-icon-btn {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #e5e7eb;
    cursor: pointer;
    transition: all 0.3s ease;
}

.profile-icon-btn:hover {
    background: #f3f4f6;
}

.profile-icon-btn i {
    font-size: 28px;
    color: #111;
}

.profile h3 {
    font-size: 18px;
    font-weight: 600;
    color: #111;
}

.tags {
    margin-top: 8px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tag {
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 12px;
    background: #e5e7eb;
    font-weight: 500;
}

.tag.purple {
    background: #ede9fe;
    color: #6d28d9;
}

.tag.gold {
    background: #fef3c7;
    color: #b45309;
}

.description {
    margin: 15px 0;
    font-size: 14px;
    color: #4b5563;
    line-height: 1.5;
    text-align: justify;
    text-justify: inter-word;
}

.actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-follow {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 25px;
    background: #111;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-follow:hover {
    background: #333;
}

.icon-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #e5e7eb;
    cursor: pointer;
    transition: all 0.3s ease;
}

.icon-btn:hover {
    background: #f3f4f6;
}

.icon-btn i {
    font-size: 18px;
    color: #111;
}

@media (max-width: 600px) {
    .profile {
        flex-direction: column;
        align-items: flex-start;
    }
}