.elementor-1009 .elementor-element.elementor-element-a384e64{--display:flex;}.elementor-1009 .elementor-element.elementor-element-725c2e6{background-color:#F7F7F7;}/* Start custom CSS for html, class: .elementor-element-725c2e6 *//**
 * Profile Card Component CSS
 * Compatible with WordPress and Elementor
 * Can be used as a standalone component on any page
 * 
 * CUSTOMIZATION:
 * Edit the CSS variables in the HTML <style> tag to customize:
 * - --card-border-radius: Controls card corner roundness
 * - --icon-border-radius: Controls social icon corner roundness
 * - --border-color: Controls border color
 * - --card-background: Controls card background (transparent or solid color)
 */

/* Default values (can be overridden in HTML) */
:root {
    --card-border-radius: 24px;
    --icon-border-radius: 8px;
    --border-color: #403E3E;
    --card-background: transparent;
}

/* Wrapper with optional dotted background */
/* Wrapper with optional dotted background */
.profile-card-wrapper {
    position: relative;
    padding: 40px 20px;
    background-color: white;  /* Change to: white, transparent, or #ffffff */
}

/* Optional dotted background pattern */
.profile-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.3;
    background-image: radial-gradient(circle, #999 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

/* Main Profile Card - Transparent with border, no shadow */
.profile-card {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
    padding: 48px;
    background: white;  /* or use: transparent */
    border-radius: var(--card-border-radius);
    border: 1px solid var(--border-color);
    /* Shadow removed as per request */
}

/* Avatar */
.profile-avatar {
    flex-shrink: 0;
}

.profile-avatar img {
    width: 176px;
    height: 176px;
    border-radius: 50%;
    background-color: #c1f2ed;
    object-fit: cover;
    display: block;
}

/* Content Area */
.profile-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 8px;
    flex: 1;
}

/* Header with name and badge */
.profile-header {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.profile-name {
    font-size: 32px;
    font-weight: 400;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.2;
}

.profile-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 16px;
    background-color: transparent;
    color: #006400;
    border-radius: 14px;
    border: 1.5px solid #006400;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

/* Description */
.profile-description {
    font-size: 15px;
    color: #666666;
    line-height: 1.6;
    max-width: 500px;
    margin: 0;
}

/* Social Icons with rounded borders */
.profile-social {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1.5px solid var(--border-color);
    border-radius: var(--icon-border-radius);
    color: #4a4a4a;
    text-decoration: none;
    transition: all 0.2s ease;
    background-color: transparent;
}

.social-icon:hover {
    color: #1a1a1a;
    border-color: #1a1a1a;
    background-color: rgba(0, 0, 0, 0.05);
}

.social-icon svg {
    width: 18px;
    height: 18px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .profile-card {
        flex-direction: column;
        align-items: center;
        gap: 24px;
        padding: 32px 24px;
        border-radius: 20px;
    }

    .profile-avatar img {
        width: 144px;
        height: 144px;
    }

    .profile-content {
        align-items: center;
        text-align: center;
        padding-top: 0;
    }

    .profile-header {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }

    .profile-name {
        font-size: 28px;
    }

    .profile-description {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .profile-card-wrapper {
        padding: 20px 16px;
    }

    .profile-card {
        padding: 24px 20px;
        border-radius: 16px;
    }

    .profile-avatar img {
        width: 120px;
        height: 120px;
    }

    .profile-name {
        font-size: 24px;
    }

    .profile-description {
        font-size: 14px;
    }

    .social-icon {
        width: 36px;
        height: 36px;
    }

    .social-icon svg {
        width: 16px;
        height: 16px;
    }
}

/* WordPress/Elementor Compatibility */
/* Remove default margins that might conflict */
.profile-card * {
    box-sizing: border-box;
}

/* Ensure it works within Elementor containers */
.elementor-widget-container .profile-card-wrapper,
.elementor-element .profile-card-wrapper {
    width: 100%;
}/* End custom CSS */