.profile-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.profile-page {
    min-height: 100vh;
}

.profile-page main {
    padding-top: 6.5rem !important;
    margin-top: 0 !important;
}

.profile-page section.py-4 {
    padding-top: 2rem !important;
}

.profile-page .profile-card {
    padding: 1.25rem !important;
}

.profile-page .profile-card h5 {
    margin-bottom: 0.75rem !important;
}

.profile-page .profile-detail {
    padding: 0.6rem 0;
}

.profile-page .form-label {
    margin-bottom: 0.35rem;
}

.profile-page .form-control,
.profile-page .form-select {
    padding-top: 0.45rem !important;
    padding-bottom: 0.45rem !important;
}

.profile-page .row.g-4 {
    --bs-gutter-x: 28px;
    --bs-gutter-y: 28px;
}

.profile-page .left-stack {
    gap: 1.25rem !important;
}

.profile-page .about-you-card {
    padding-bottom: 1rem !important;
}

.profile-page .about-you-card .mb-3 {
    margin-bottom: 0.75rem !important;
}

.profile-page .about-you-card .mb-4 {
    margin-bottom: 0.9rem !important;
}

.profile-page .profile-avatar {
    width: 80px;
    height: 80px;
}
.profile-avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: rgba(193, 255, 114, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.profile-detail {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.profile-detail:last-child {
    border-bottom: none;
}

.profile-detail .label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.profile-detail .value {
    color: #fff;
    font-weight: 600;
}

@media (max-width: 991.98px) {
    .profile-page main {
        padding-top: 5.5rem !important;
    }

    .profile-page .row.g-4 {
        --bs-gutter-x: 20px;
        --bs-gutter-y: 20px;
    }

    .profile-avatar {
        width: 72px;
        height: 72px;
    }

    .profile-detail {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.35rem;
    }
}

@media (max-width: 575.98px) {
    .profile-page main {
        padding-top: 5rem !important;
    }

    .profile-page .profile-card {
        padding: 1rem !important;
    }

    .profile-page .profile-card h5 {
        font-size: 1rem;
    }

    .profile-avatar {
        width: 64px;
        height: 64px;
    }
}

